| 1 |
# $Id: site-patch-windows-sample.properties,v 1.3 2007/09/13 10:52:03 allisterbeharry Exp $
|
| 2 |
# @file
|
| 3 |
# This is the Windows sample for the site-patch.xml build file. Modify this file with the properties you want to use to configure the build.
|
| 4 |
|
| 5 |
# You can create a base properties file - site-patch-base.properties, which will automatically be loaded every time
|
| 6 |
# the build file is run; in addition to the usual site-patch.properties file. Any property defined in site-patch-base.properties can be overriden
|
| 7 |
# by a property defined in site-patch.properties. Any properties not defined in site-patch.properties will be inherited from site-patch-base.properties.
|
| 8 |
# By default site-patch looks for site-patch-base.properties and site-patch.properties files in the DAST_HOME directory; If you want to
|
| 9 |
# keep you properties files elsewhere use D"basePropertiesFile=<absolute path to file>" and D"propertiesFile=<absolute path to file>".
|
| 10 |
|
| 11 |
#----------------------------------REQUIRED PROPERTIES------------------------------------------------#
|
| 12 |
# build.log.defaultdir; patch.method; patch.file; patch.properties; drupal.dir;
|
| 13 |
#-----------------------------------------------------------------------------------------------------#
|
| 14 |
|
| 15 |
#dir for DAST log files
|
| 16 |
build.log.defaultdir = E:\var\log\DAST
|
| 17 |
|
| 18 |
#The method to fetch the patch file - if HTTP then the patch will be downloaded from patch.Url; if file
|
| 19 |
#then patch.file will be used. If skip, then Drupal won't be patched
|
| 20 |
patch.method = HTTP
|
| 21 |
|
| 22 |
#Name of the patch file to apply (REQUIRED):
|
| 23 |
patch.file = db-change-field-162432-55.patch
|
| 24 |
|
| 25 |
#Command-line options passed to the patch command.
|
| 26 |
patch.options = p0
|
| 27 |
|
| 28 |
#The full HTTP Url of the patch file, used if patch.method = HTTP:
|
| 29 |
patch.Url = http://drupal.org/files/issues/db-change-field-162432-55.patch
|
| 30 |
|
| 31 |
#The full absolute location of the patch file on the filesystem, used if patch.method=file
|
| 32 |
patch.file.path =
|
| 33 |
${dast.home}${php.directory_separator}tests${php.directory_separator}etc${php.directory_separator}db-change-field-162432-55.patch
|
| 34 |
|
| 35 |
#The directory which will contain the Drupal code to be patched:
|
| 36 |
drupal.dir = E:\Webs\drupal6\dev\dast\test\patch
|