| 1 |
# $Id: site-install-windows-sample.properties,v 1.1 2007/08/20 19:02:43 allisterbeharry Exp $
|
| 2 |
# @file
|
| 3 |
# This is the Windows sample properties file for the site-install.xml build file. Modify this file with the properties you want to use to # #
|
| 4 |
# configure the build.
|
| 5 |
# You can create a base properties file - site-install-base.properties, which will automatically be loaded every time the build
|
| 6 |
# file is run; in addition to the usual site-install.properties file. Any property defined in site-install-base.properties can be overriden
|
| 7 |
# by a property defined in site-install.properties. Any properties not defined in site-install.properties will be inherited from
|
| 8 |
# site-install-base.properties.
|
| 9 |
# By default site-install looks for site-install-base.properties and site-install.properties files in the DAST_HOME directory; If you want to
|
| 10 |
# keep you properties files elsewhere use D"basePropertiesFile=<absolute path to file>" and D"propertiesFile=<absolute path to file>".
|
| 11 |
|
| 12 |
#----------------------------------REQUIRED PROPERTIES------------------------------------------------#
|
| 13 |
# build.log.defaultdir; drupal.dir; drupal.Url; drupal.locale; drupal.profile; drupal.settings.location
|
| 14 |
# drupal.database.Url, drupal.profiles.path, drupal.profile.fetch
|
| 15 |
#-----------------------------------------------------------------------------------------------------#
|
| 16 |
|
| 17 |
#This is the default dir where log files from the various tasks will be placed
|
| 18 |
build.log.defaultdir = E:\var\log\DAST
|
| 19 |
|
| 20 |
#The directory which contains the Drupal site code-tree:
|
| 21 |
drupal.dir = E:\Webs\drupal52\dev\dast\test\install
|
| 22 |
|
| 23 |
#The Url of the Drupal site (must include trailing slash if no file specified)
|
| 24 |
drupal.Url = http://localhost/drupal52/dev/dast/test/install/
|
| 25 |
|
| 26 |
#The path to the settings file to use as a template (like default-settings.php), relative to drupal.dir. Keep commented to use settings.php #directly
|
| 27 |
#drupal.settings.source = sites${php.directory_separator}default${php.directory_separator}default.settings.php
|
| 28 |
|
| 29 |
#The path to place the newly configures settings.php file relative to drupal.dir
|
| 30 |
drupal.settings.location = sites${php.directory_separator}default${php.directory_separator}settings.php
|
| 31 |
|
| 32 |
#The database Url to be inserted into settings.php
|
| 33 |
drupal.database.Url = mysql://joe:cool/localhost/DRUPAL52
|
| 34 |
|
| 35 |
#Code for the locale Drupal will use
|
| 36 |
drupal.locale = en
|
| 37 |
|
| 38 |
#Drupal profile to use
|
| 39 |
drupal.profile = drupalorg_testing
|
| 40 |
|
| 41 |
#yes/no on whether to fetch the specified profile from CVS
|
| 42 |
drupal.profile.fetch = yes
|
| 43 |
|
| 44 |
#The path relative to drupal.dir where the profiles will be stored
|
| 45 |
drupal.profiles.path = profiles
|
| 46 |
|
| 47 |
#The CVSROOT for connecting to the repository hosting the Drupal profile
|
| 48 |
drupal.profiles.Cvs.CvsRoot = :pserver:anonymous:anonymous@cvs.drupal.org:/cvs/drupal
|
| 49 |
|
| 50 |
#The path to the profiles in the CVS repository, this will be prefixed to the profile name when performing
|
| 51 |
#a CVS export or checkout
|
| 52 |
drupal.profiles.Cvs.Path = "contributions/profiles/"
|
| 53 |
|
| 54 |
#CVS command to run to fetch profile - either export or checkout
|
| 55 |
drupal.profiles.Cvs.Command = checkout
|
| 56 |
|
| 57 |
#CVS Branch/Tag revision of profile to retrieve
|
| 58 |
drupal.profiles.Cvs.Revision = HEAD
|
| 59 |
|
| 60 |
#The port to use for profile CVS operations - default is 2401
|
| 61 |
drupal.profiles.Cvs.Port = 2401
|
| 62 |
|
| 63 |
#CVS compression level to use - default 6
|
| 64 |
drupal.profiles.Cvs.CompressionLevel = 6
|
| 65 |
|
| 66 |
#CVS warnings/errors will be reported
|
| 67 |
drupal.profiles.Cvs.Quiet = false
|
| 68 |
|
| 69 |
#CVS errors will cause the build to fail - it's recommended this be left as true
|
| 70 |
drupal.profiles.Cvs.FailOnError = true
|
| 71 |
|
| 72 |
#File to write profile CVS operations output to, == stdout. Currently this file path CANNOT CONTAIN SPACES
|
| 73 |
#on *nix or Windows.
|
| 74 |
drupal.profiles.Cvs.Output = ${build.log.defaultdir}${php.directory_separator}site-install-cvs-profile-output.log
|
| 75 |
|
| 76 |
#File to write profile CVS operations error to == stderror. Currently this file path, CANNOT CONTAIN SPACES
|
| 77 |
drupal.modules.Cvs.Error = ${build.log.defaultdir}${php.directory_separator}site-install-cvs-profile-error
|