|
From: alex <bin...@li...> - 2001-09-29 00:37:48
|
alex Fri Sep 28 17:37:37 2001 EDT
Added files:
/r2/binarycloud/user/bcdev/conf MakeConf.php.xml
Log:
MakeConf
Index: r2/binarycloud/user/bcdev/conf/MakeConf.php.xml
+++ r2/binarycloud/user/bcdev/conf/MakeConf.php.xml
<?xml version="1.0" ?>
<!--
// {{{ Header
-File $Id: MakeConf.php.xml,v 1.1 2001/09/29 00:37:37 alex Exp $
-License LGPL (http://www.gnu.org/copyleft/lesser.html)
-Copyright 2001, The Turing Studio, Inc.
-Author alex black, en...@tu...
// }}}
-->
<makeconf>
<!-- 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>
</makeconf>
|
|
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>
|
|
From: alex <bin...@li...> - 2001-10-01 19:22:57
|
alex Mon Oct 1 12:22:51 2001 EDT
Modified files:
/r2/binarycloud/user/bcdev/conf MakeConf.php.xml
Log:
Added Symlinks.
Index: r2/binarycloud/user/bcdev/conf/MakeConf.php.xml
diff -u r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.2 r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.3
--- r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.2 Mon Oct 1 09:50:51 2001
+++ r2/binarycloud/user/bcdev/conf/MakeConf.php.xml Mon Oct 1 12:22:51 2001
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<!--
// {{{ Header
--File $Id: MakeConf.php.xml,v 1.2 2001/10/01 16:50:51 alex Exp $
+-File $Id: MakeConf.php.xml,v 1.3 2001/10/01 19:22:51 alex Exp $
-License LGPL (http://www.gnu.org/copyleft/lesser.html)
-Copyright 2001, The Turing Studio, Inc.
-Author alex black, en...@tu...
@@ -80,6 +80,13 @@
<!-- use shared binarycloud core? -->
<use_shared>false</use_shared>
</core>
+
+ <symlinks>
+ <link>
+ <source>/path/to/htdocs/in/build</source>
+ <target>/usr/local/apache/htdocs/en</target>
+ </link>
+ </symlinks>
</distribution>
|
|
From: alex <bin...@li...> - 2001-10-06 23:23:16
|
alex Sat Oct 6 16:23:10 2001 EDT
Modified files:
/r2/binarycloud/user/bcdev/conf MakeConf.php.xml
Log:
Updated MakeConf with fs perm options
Index: r2/binarycloud/user/bcdev/conf/MakeConf.php.xml
diff -u r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.4 r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.5
--- r2/binarycloud/user/bcdev/conf/MakeConf.php.xml:1.4 Mon Oct 1 16:37:01 2001
+++ r2/binarycloud/user/bcdev/conf/MakeConf.php.xml Sat Oct 6 16:23:10 2001
@@ -1,14 +1,14 @@
<?xml version="1.0" ?>
<!--
// {{{ Header
--File $Id: MakeConf.php.xml,v 1.4 2001/10/01 23:37:01 alex Exp $
+-File $Id: MakeConf.php.xml,v 1.5 2001/10/06 23:23:10 alex Exp $
-License LGPL (http://www.gnu.org/copyleft/lesser.html)
-Copyright 2001, The Turing Studio, Inc.
-Author alex black, en...@tu...
// }}}
-->
-<makeconf>
+<MakeConf>
<!-- This is a freetext site name -->
<site_name>Freetext Site Name</site_name>
@@ -41,6 +41,31 @@
-->
<use_bcc>true</use_bcc>
+
+ <!--
+ used by Make to set file permissions on files in the build tree
+ -->
+ <fsperms>
+ <file>
+ <match>*.php</match>
+ <perms>
+ <user>rw</user>
+ <group>rw</group>
+ <all>r</all>
+ </perms>
+ </file>
+ <location>
+ <!-- this is the path from lang_code root in the build dir -->
+ <path>/htdocs</path>
+ <resursive>true</recursive>
+ <perms>
+ <user>rw</user>
+ <group>rw</group>
+ <all>r</all>
+ </perms>
+ </location>
+ </fsperms>
+
</globals>
<development>
@@ -99,4 +124,4 @@
</distribution>
-</makeconf>
+</MakeConf>
|