From: andi <bin...@li...> - 2001-10-07 14:06:48
|
andi Sun Oct 7 07:06:42 2001 EDT Added files: /r2/binarycloud/user/conf ImageRepository.php.xml Modified files: /r2/binarycloud/user Makefile Log: Added conf/ImageRepository.php.xml and related processing (xml2php) Index: r2/binarycloud/user/Makefile diff -u r2/binarycloud/user/Makefile:1.10 r2/binarycloud/user/Makefile:1.11 --- r2/binarycloud/user/Makefile:1.10 Wed Oct 3 15:03:45 2001 +++ r2/binarycloud/user/Makefile Sun Oct 7 07:06:42 2001 @@ -1,5 +1,5 @@ # {{{ Header -# -File $Id: Makefile,v 1.10 2001/10/03 22:03:45 alex Exp $ +# -File $Id: Makefile,v 1.11 2001/10/07 14:06:42 andi Exp $ # -License LGPL (http://www.gnu.org/copyleft/lesser.html) # -Copyright 2001, Intacct Corp. # -Author odysseas tsatalos, ody...@ya... @@ -18,7 +18,7 @@ USERFILES=`find $(USERDIRS) -name '*' | grep '[.]' | grep -v htdocs` XML_PAGEDEF_FILES=`find htdocs -name '*.php.xml' | grep '[.]'` -all: site user xml_page_def xml_conf_def +all: user xml_page_def xml_conf_def site site: @echo "in user/htdocs"; cd htdocs; make --no-print-directory @@ -39,4 +39,5 @@ @$(XML2PHP) $(SITEBUILD_DIR) lang_def $(USER_DIR)/conf/Languages.php.xml $(USERBUILD_DIR)/conf/Languages.php.xml @$(XML2PHP) $(SITEBUILD_DIR) datasources_def $(USER_DIR)/conf/Datasources.php.xml $(USERBUILD_DIR)/conf/Datasources.php.xml @$(XML2PHP) $(SITEBUILD_DIR) operations_def $(USER_DIR)/conf/Operations.php.xml $(USERBUILD_DIR)/conf/Operations.php.xml + @$(XML2PHP) $(SITEBUILD_DIR) images_def $(USER_DIR)/conf/ImageRepository.php.xml $(USERBUILD_DIR)/conf/ImageRepository.php.xml Index: r2/binarycloud/user/conf/ImageRepository.php.xml +++ r2/binarycloud/user/conf/ImageRepository.php.xml <?xml version="1.0"?> <!-- Header {{{ ******************************************************************************* ** -File $Id: ImageRepository.php.xml,v 1.1 2001/10/07 14:06:42 andi Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... ****************************************************************************** }}} --> <!-- binarycloud image repository example file --> <images> <image> <id>bcFire</id> <src>resources/images/binarycloud/tmpl/fire.jpg</src> <name>ImageName</name> <alt> <en>binarycloud fire</en> <de>binarycloud Feuer</de> </alt> <align>left</align> <hspace>10</hspace> <vspace>10</vspace> <border>0</border> <usemap>#moo</usemap> <width>400</width> <height>20</height> </image> <image> <id>StormHeader</id> <src>resources/images/binarycloud/strom/storm_header.gif</src> <name>stromHeader</name> <alt> <en>Storm Header</en> <de>Storm Header</de> </alt> <align>left</align> <hspace>false</hspace> <vspace>false</vspace> <border>0</border> <usemap>false</usemap> <width>auto</width> <height>auto</height> </image> </images> |