| 1 |
# $Id: dast-patch-windows-sample.properties,v 1.3 2007/08/20 15:38:03 allisterbeharry Exp $
|
| 2 |
|
| 3 |
#This is the Windows sample properties file for the dast-patch-base build file. Modify this file with the deault properties you want to use
|
| 4 |
#to configure the build. Any property defined here can be overridden in the dast-patch-user file or at the command line using -D"<property>=<key>".
|
| 5 |
|
| 6 |
#This is the default dir where log files from the various tasks will be placed = foo
|
| 7 |
build.log.defaultdir = E:\var\log\DAST
|
| 8 |
|
| 9 |
#Indicate if you want to run the clean target before the core and modules fetch which will delete all files in drupal.dir.
|
| 10 |
#Default is yes
|
| 11 |
build.run.clean = yes
|
| 12 |
|
| 13 |
#The method to fetch the patch file - if HTTP then the patch will be downloaded from patch.Url; if file
|
| 14 |
#then patch.file will be used. If skip, then Drupal won't be patched
|
| 15 |
patch.method = HTTP
|
| 16 |
|
| 17 |
#Name of the patch file to apply (REQUIRED):
|
| 18 |
patch.file = 151394-2.patch
|
| 19 |
|
| 20 |
#The full HTTP Url of the patch file, used if patch.method = HTTP:
|
| 21 |
patch.Url = http://drupal.org/files/issues/151394-2.patch
|
| 22 |
|
| 23 |
#The full absolute location of the patch file on the filesystem, used if patch.method=file:
|
| 24 |
patch.file.path = E:\My Documents\Web Development Projects\Drupal\Patches\151394-2.patch
|
| 25 |
|
| 26 |
#The directory which will contain the Drupal code to be patched:
|
| 27 |
drupal.dir = E:\Webs\drupal-510\dev\dast\test\dast_patch
|
| 28 |
|
| 29 |
#The Url of the newly created Drupal site (must include trailing slash if no file specified)
|
| 30 |
drupal.Url = http://localhost/drupal-510/dev/dast/test/dast_patch
|
| 31 |
|
| 32 |
#The RDBMS which will host the Drupal site database - currently can be mysql, mysqli, mssql
|
| 33 |
drupal.database.driver = mysql
|
| 34 |
|
| 35 |
#The name of the server which will host the database - this name is RDBMS specific, e.g MySQL uses simple
|
| 36 |
#hostnames while MSSQL mau use aliases defined in the MSSQL client setup, Oracle may use TNSNames...
|
| 37 |
drupal.database.host = localhost
|
| 38 |
|
| 39 |
#The name of the database to create which will be used by the Drupal site
|
| 40 |
drupal.database.name = DRUPAL51
|
| 41 |
|
| 42 |
#The database user which will be used by the Drupal site
|
| 43 |
drupal.database.user = joe
|
| 44 |
|
| 45 |
#The host that the user will be connecting from
|
| 46 |
drupal.database.user.host = localhost
|
| 47 |
|
| 48 |
#The password fot database user which will be used by the Drupal site
|
| 49 |
drupal.database.user.pass = cool
|
| 50 |
|
| 51 |
#The name of the user which will be used to run the DROP/CREATE scripts to (re)create the Drupal database and user
|
| 52 |
#The user account must have sufficient rights to perfom the operations in this script
|
| 53 |
drupal.database.CreateScript.user = root
|
| 54 |
|
| 55 |
#The password for the drupal.database.CreateScript.user
|
| 56 |
drupal.database.CreateScript.user.pass = all!ster
|
| 57 |
|
| 58 |
#The database where the create script will be executed, e.g. mysql in MySQL or master in MSSQL
|
| 59 |
drupal.database.CreateScript.name = mysql
|
| 60 |
|
| 61 |
#This method denotes how the core source code should be fetched, - CVS means that the build will connect to the Drupal CVS repository
|
| 62 |
#to retrieve the code. directory means that a local directory containing the code will be used instead
|
| 63 |
drupal.core.method = CVS
|
| 64 |
|
| 65 |
#The ABSOLUTE path to the directory containing the local Drupal 6 core code tree to be fetched;
|
| 66 |
#this will be used if drupal.core.method = directory:
|
| 67 |
drupal.core.sourcedir = E:\My Documents\Web Development Projects\Drupal\drupalCVS\HEAD\drupal
|
| 68 |
|
| 69 |
#The CVSROOT for connecting to the repository hosting the Drupal core
|
| 70 |
drupal.core.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal
|
| 71 |
|
| 72 |
#CVS command to run to fetch core - either export or checkout
|
| 73 |
drupal.core.Cvs.Command = export
|
| 74 |
|
| 75 |
#CVS Branch/Tag revision of core to retrieve
|
| 76 |
drupal.core.Cvs.Revision = DRUPAL-5-1
|
| 77 |
|
| 78 |
#The port to use for core CVS operations - default is 2401
|
| 79 |
drupal.core.Cvs.Port = 2401
|
| 80 |
|
| 81 |
#CVS compression level to use - default 6
|
| 82 |
drupal.core.Cvs.CompressionLevel = 6
|
| 83 |
|
| 84 |
#CVS warnings/errors will be reported
|
| 85 |
drupal.core.Cvs.Quiet = false
|
| 86 |
|
| 87 |
#CVS errors will cause the build to fail - it's recommended this be left as true
|
| 88 |
drupal.core.Cvs.FailOnError = true
|
| 89 |
|
| 90 |
#File to write core CVS operations output to, == stdout. Currently this file path CANNOT CONTAIN SPACES
|
| 91 |
#on *nix or Windows.
|
| 92 |
drupal.core.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}dast-patch-cvs-core-output.log
|
| 93 |
|
| 94 |
#File to write core CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 95 |
#on *nix or Windows.
|
| 96 |
drupal.core.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}dast-patch-cvs-core-error.log
|
| 97 |
|
| 98 |
#Directory that will contain the Drupal modules - this path is specified RELATIVE to the drupal.dir path
|
| 99 |
drupal.modules.dir = sites/all/modules
|
| 100 |
|
| 101 |
#The list of modules to retrieve from the directory/CVS contrib- repository - comma delimited.
|
| 102 |
drupal.modules.list=devel,simpletest,ulink
|
| 103 |
|
| 104 |
#The ABSOLUTE path to the directory containing the local Drupal 6 modules code tree to be fetched;
|
| 105 |
#this will be used if drupal.modules.method = directory:
|
| 106 |
drupal.modules.method = CVS
|
| 107 |
|
| 108 |
#The ABSOLUTE path to the directory containing the local Drupal 6 modules to fetch;
|
| 109 |
#Used if drupal.modules.method = directory:
|
| 110 |
drupal.modules.sourcedir = E:\My Documents\Web Development Projects\Drupal\drupalCVS\HEAD\modules
|
| 111 |
|
| 112 |
#The CVSROOT for connecting to the repository hosting the Drupal coontrib- modules
|
| 113 |
drupal.modules.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal-contrib
|
| 114 |
|
| 115 |
#The path to the modules in the CVS repository, this will be prefixed to the module name when performing
|
| 116 |
#a CVS export or checkout
|
| 117 |
drupal.modules.Cvs.Path = "contributions/modules/"
|
| 118 |
|
| 119 |
#CVS command to run to fetch modules - either export or checkout
|
| 120 |
drupal.modules.Cvs.Command = export
|
| 121 |
|
| 122 |
#CVS Branch/Tag revision of modules to retrieve - this applies to all modules currently -
|
| 123 |
#the next release will ad <Modules> element for specifying details of each module to fetch
|
| 124 |
drupal.modules.Cvs.Revision = DRUPAL-5
|
| 125 |
|
| 126 |
#The port to use for modules' CVS operations - default is 2401
|
| 127 |
drupal.modules.Cvs.Port = 2401
|
| 128 |
|
| 129 |
#CVS compression level to use - default 6
|
| 130 |
drupal.modules.Cvs.CompressionLevel = 6
|
| 131 |
|
| 132 |
#CVS warnings/errors will be reported
|
| 133 |
drupal.modules.Cvs.Quiet = false
|
| 134 |
|
| 135 |
#CVS errors encountered when fetching and individual will not cause the build to fail -
|
| 136 |
#it's recommended this be left as false
|
| 137 |
drupal.modules.Cvs.FailOnError = true
|
| 138 |
|
| 139 |
#File to write modules' CVS operations output to, == stdout. Currently this file path, CANNOT CONTAIN SPACES
|
| 140 |
drupal.modules.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}/dast-patch-cvs-modules-output.log
|
| 141 |
|
| 142 |
#File to write modules' CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 143 |
drupal.modules.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}/dast-patch-cvs-modules-error.log
|
| 144 |
|
| 145 |
#If this is yes, then settings.php in drupal.dir/sites/default will be modified to set $db_url = drupal.database.url
|
| 146 |
drupal.settings.addDbUrl = yes
|
| 147 |
|
| 148 |
#The path to the settings file to use as a template, relative to drupal.dir.
|
| 149 |
drupal.settings.source = sites${php.directory_separator}default${php.directory_separator}default.settings.php
|
| 150 |
|
| 151 |
#The path to place the newly configures settings.php file relative to drupal.dir
|
| 152 |
drupal.settings.location = sites${php.directory_separator}default${php.directory_separator}settings.php
|
| 153 |
|
| 154 |
#If yes, the script will call drupal.Urlinstall.php?profile=${drupal.profile}&locale=${drupal.locale} which will
|
| 155 |
#complete the database, profile, and locale install.
|
| 156 |
drupal.install = yes
|
| 157 |
|
| 158 |
#Drupal locale code
|
| 159 |
drupal.locale = en
|
| 160 |
|
| 161 |
#Drupal profile to use
|
| 162 |
drupal.profile = default
|