From: alex <bin...@li...> - 2001-10-01 16:50:57
|
alex Mon Oct 1 09:50:51 2001 EDT Modified files: /r2/binarycloud/user/bcdev/conf MakeConf.php.xml Log: Moo Index: r2/binarycloud/user/bcdev/conf/MakeConf.php.xml diff -u r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.1 r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.2 --- r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.1 Fri Sep 28 17:37:37 2001 +++ r2/binarycloud/user/bcdev/conf/MakeConf.php.xml Mon Oct 1 09:50:51 2001 @@ -1,7 +1,7 @@ <?xml version="1.0" ?> <!-- // {{{ Header --File $Id: MakeConf.php.xml,v 1.1 2001/09/29 00:37:37 alex Exp $ +-File $Id: MakeConf.php.xml,v 1.2 2001/10/01 16:50:51 alex Exp $ -License LGPL (http://www.gnu.org/copyleft/lesser.html) -Copyright 2001, The Turing Studio, Inc. -Author alex black, en...@tu... @@ -13,45 +13,74 @@ <!-- This is a freetext site name --> <site_name>Freetext Site Name</site_name> - <!-- use zend encoder to encode all php files in build --> - <encode> - <command>/path/to/encoder -flag</command> - </encode> - - <!-- strip comments from code --> - <strip_comments>true</strip_comments> - - <!-- automatically run phpdoc on each file if the make target is 'all' --> - <autodoc>true</autodoc> - - <core> - <!-- use shared binarycloud core? --> - <use_shared>true</use_shared> - <!-- if so, where should the symlink point to? --> - <path>/path/to/somewhere/</path> - </core> - - <!-- - during make, compare this site source tree with the - default site source tree, and add any missing files to - the build directory - --> - <use_default>true</use_default> - - <!-- as per http://www.w3.org/International/O-charset-lang.html --> - <!-- - this allows a developer to _develop_ a source tree that is - intended fr multi-language makes, but only make one language - during development. this is convenient if you are making lots of logic - changes that don't require you to see/make all of the languages you have - in Languages.php.xml - --> - <make_force_lang>en</make_force_lang> - - <!-- - Parse source files with bcc to search for binarycloud and other custom - tags? - --> - <use_bcc>true</use_bcc> + <globals> + + <!-- + during make, compare this site source tree with the + default site source tree, and add any missing files to + the build directory + --> + <use_default>true</use_default> + + + <!-- automatically run phpdoc on each file if the make target is 'all' --> + <autodoc>true</autodoc> + + <!-- + Parse source files with bcc to search for binarycloud and other custom + tags? + --> + <use_bcc>true</use_bcc> + + </globals> + + <development> + + <core> + <!-- use shared binarycloud core? --> + <use_shared>true</use_shared> + <!-- if so, where should the symlink point to? --> + <path>/path/to/somewhere/</path> + </core> + + <!-- as per http://www.w3.org/International/O-charset-lang.html --> + <!-- + this allows a developer to _develop_ a source tree that is + intended fr multi-language makes, but only make one language + during development. this is convenient if you are making lots of logic + changes that don't require you to see/make all of the languages you have + in Languages.php.xml + --> + <make_force_lang>en</make_force_lang> + + </development> + + <distribution> + + <!-- if false, timstamp is added to fname --> + <release>true</release> + + <!-- after the build is complete, create a tarball? --> + <tarball> + <!-- where to put the tarball --> + <path>BC_PATH.'/make'</path> + <!-- what type of tarball --> + <type>tar.gz|tar.bz2</type> + </tarball> + + <!-- use zend encoder to encode all php files in build --> + <encode> + <command>/path/to/encoder -flag</command> + </encode> + + <!-- strip comments from code --> + <strip_comments>true</strip_comments> + + <core> + <!-- use shared binarycloud core? --> + <use_shared>false</use_shared> + </core> + + </distribution> </makeconf> |