From: andi <bin...@li...> - 2001-09-12 18:16:25
|
andi Wed Sep 12 11:16:19 2001 EDT Added files: /r2/binarycloud/user/conf Configuration.php.xml Datasources.php.xml Languages.php.xml Operations.php.xml Log: Added new config files Index: r2/binarycloud/user/conf/Configuration.php.xml +++ r2/binarycloud/user/conf/Configuration.php.xml <?xml version="1.0" ?> <!-- Header {{{ ******************************************************************************* ** -File $Id: Configuration.php.xml,v 1.1 2001/09/12 18:16:19 andi Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... ****************************************************************************** }}} --> <constants> <!-- values --> <constant> <name>BC_RUN_MODE</name> <value>foo</value> </constant> <constant> <name>BC_DIR_INDEX_FILENAME</name> <value>index.php</value> </constant> <constant> <name>BC_LOGGED_IN_LIMIT</name> <value>foo</value> </constant> <constant> <name>BC_INACTIVITY_LIMIT</name> <value>foo</value> </constant> <constant> <name>BC_ADMIN_EMAIL</name> <value>foo</value> </constant> <constant> <name>BC_ADMIN_FROM_EMAIL</name> <value>foo</value> </constant> <constant> <name>BC_SHOW_CORE_ERRORS_TO</name> <value>foo</value> </constant> <!-- /values --> <!-- flags --> <constant> <name>BC_SET_INI</name> <flag>TRUE</flag> </constant> <constant> <name>BC_DEBUG</name> <flag>FALSE</flag> </constant> <constant> <name>BC_DB_FAILURE_REDIRECT</name> <flag>TRUE</flag> </constant> <constant> <name>BC_USE_SMTP_MAIL_CLASS</name> <value>TRUE</value> </constant> <constant> <name>BC_LOG_ALL_ERRORS_TO_FILE</name> <value>foo</value> </constant> <constant> <name>BC_SEND_ADMIN_ERROR_EMAILS</name> <value>foo</value> </constant> <constant> <name>BC_SEND_DB_FAILURE_EMAILS</name> <value>foo</value> </constant> <!-- /flags --> <!-- paths --> <constant> <name>BC_PATH_STORM</name> <value>"/storm/"</value> </constant> <constant> <name>BC_PATH_DB_FAILURE_REDIRECT</name> <value>"/global/db_failure.php"</value> </constant> <constant> <name>BC_PATH_WEBALIZER_OUTPUT</name> <value>BC_PATH_HTDOCS."storm/apache_logs/output/"</value> </constant> <constant> <name>BC_PATH_APACHE_LOG</name> <value>"/usr/local/apache/logs/access_log"</value> </constant> <constant> <name>BC_SIGN_IN_REDIRECT</name> <value>"/index.php"</value> </constant> <!-- /paths --> </constants> Index: r2/binarycloud/user/conf/Datasources.php.xml +++ r2/binarycloud/user/conf/Datasources.php.xml <?xml version="1.0" ?> <!-- Header {{{ ******************************************************************************* ** -File $Id: Datasources.php.xml,v 1.1 2001/09/12 18:16:19 andi Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... ****************************************************************************** }}} --> <datasources> <!-- dummy entry, if only one entry xml2php behaves not right --> <datasource> <name>dummy</name> <default>false</default> <database>test</database> </datasource> <!-- uncomment if you use oci --> <!-- <datasource> <name>query_example</name> <default>true</default> <database>test</database> <Type>oci</Type> <User>r2</User> <Password>testpassword</Password> <IncludePath>BC_PATH."/ext/metabase"</IncludePath> <Persistent>true</Persistent> <options> <sid>EXAMPLE_SID</sid> <home>/path/oracle/product/8.1.6</home> <dbauser>example_username</dbauser> <dbapassword>example_password</dbapassword> <mcryptkey>some_very_secret_key</mcryptkey> <mcryptmode>MCRYPT_MODE_CFB</mcryptmode> <mcryptcipher>MCRYPT_TripleDES</mcryptcipher> <mcryptiv>string</mcryptiv> </options> </datasource> --> <!-- uncomment if you use mysql --> <datasource> <name>query_example</name> <default>true</default> <database>test</database> <!-- this options are metabase specific and case sensitive --> <Type>mysql</Type> <Host>localhost</Host> <User>root</User> <Password>sql</Password> <IncludePath>BC_PATH."/ext/metabase"</IncludePath> <Persistent>true</Persistent> <!-- end metabase stuff --> </datasource> </datasources> Index: r2/binarycloud/user/conf/Languages.php.xml +++ r2/binarycloud/user/conf/Languages.php.xml <?xml version="1.0" ?> <!-- Header {{{ ******************************************************************************* ** -File $Id: Languages.php.xml,v 1.1 2001/09/12 18:16:19 andi Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... ****************************************************************************** }}} --> <langs> <lang> <default>false</default> <description>Danish</description> <native>Dansk</native> <code>da</code> <charset>ISO-8859-1</charset> <datespec>j/n/Y</datespec> <timespec>G:i</timespec> <currency_name>Dollar</currency_name> <currency_symbol>$</currency_symbol> </lang> <lang> <default>true</default> <description>English</description> <native>English</native> <code>en</code> <charset>ISO-8859-1</charset> <datespec>n/j/Y</datespec> <timespec>g:ia</timespec> <currency_name>US Dollar</currency_name> <currency_symbol>$</currency_symbol> </lang> </langs> Index: r2/binarycloud/user/conf/Operations.php.xml +++ r2/binarycloud/user/conf/Operations.php.xml <?xml version="1.0" ?> <!-- Header {{{ ******************************************************************************* ** -File $Id: Operations.php.xml,v 1.1 2001/09/12 18:16:19 andi Exp $ ** -License LGPL (http://www.gnu.org/copyleft/lesser.html) ** -Copyright 2001, The Turing Studio, Inc. ** -Author alex black, en...@tu... ****************************************************************************** }}} --> <operations> <operation> <name><lang>operation_name.home</lang></name> <path>/</path> </operation> <operation> <name><lang>operation_name.orders</lang></name> <path>/orders/</path> </operation> <operation> <name><lang>operation_name.users</lang></name> <path>/users/</path> </operation> <operation> <name><lang>operation_name.editor</lang></name> <path>/editor/</path> </operation> </operations> |