andi Wed Sep 12 11:17:32 2001 EDT
Added files:
/r2/binarycloud/user/htdocs query_example.php.xml
xml2phptest.php.xml
Log:
Added new php.xml pagedefs
Index: r2/binarycloud/user/htdocs/query_example.php.xml
+++ r2/binarycloud/user/htdocs/query_example.php.xml
<?xml version="1.0" ?>
<page>
<init>
<debug>true</debug>
<ini>true</ini>
<auth>false</auth>
<perm>false</perm>
<sess>true</sess>
<lang>true</lang>
<cache>false</cache>
<database>true</database>
</init>
<database>
<source>query_example</source>
<mcrypt>false</mcrypt>
<manage>false</manage>
</database>
<templates>
<default>
<name>exmaple</name>
<package>html.masters</package>
<type>html</type>
</default>
<print>
<name>print</name>
<package>html.masters</package>
<type>html</type>
</print>
</templates>
<modules>
<content>
<layout>
<name>exmaple</name>
<package>html.layouts</package>
</layout>
<load>
<module>
<id>Querytest</id>
<name>QueryExample</name>
<package>query_example</package>
<load_order>1</load_order>
</module>
<module>
<id>Querytest2</id>
<name>QueryExample</name>
<package>query_example</package>
<load_order>2</load_order>
</module>
</load>
</content>
</modules>
</page>
Index: r2/binarycloud/user/htdocs/xml2phptest.php.xml
+++ r2/binarycloud/user/htdocs/xml2phptest.php.xml
<?xml version="1.0" ?>
<!-- Header {{{
*******************************************************************************
** -File $Id: xml2phptest.php.xml,v 1.1 2001/09/12 18:17:32 andi Exp $
** -License LGPL (http://www.gnu.org/copyleft/lesser.html)
** -Copyright 2001, The Turing Studio, Inc.
** -Author alex black, en...@tu...
******************************************************************************
}}} -->
<page>
<!--
Core components can be excluded from the load process by setting these
tags to FALSE. If the tags aren't defined, init assumes that their value is "TRUE"
-->
<init>
<ini>TRUE</ini>
<auth>FALSE</auth>
<perm>FALSE</perm>
<sess>FALSE</sess>
<output>FALSE</output>
<debug>FALSE</debug>
</init>
<!--
the "default" template is loaded automatically, unless one of the other tag names
exists in the query string: ?print for example, would cause the master template to
be switched to "masters/print.phtml"
-->
<template>
<def>
<path>masters/binarycloud.phtml</path>
<handler>html</handler>
</def>
<print>
<path>masters/print.phtml</path>
<handler>html</handler>
</print>
<other>
<path>masters/other.phtml</path>
<handler>wml</handler>
</other>
</template>
<modules>
<content>
<layout>tmpl/html/layouts/example.html</layout>
<module>
<path>static_pages/static_pages.cls</path>
<order>1</order>
<options>
<file>foo.phtml</file>
<string>1</string>
</options>
</module>
<module>
<path>static_pages/static_pages.cls</path>
<order>2</order>
<options>
<file>haa.phtml</file>
<string>1</string>
</options>
</module>
</content>
<left>
<module>
<path>static_pages/static_pages.cls</path>
<order>3</order>
<options>
<template>hello.phtml</template>
<string>2</string>
</options>
</module>
</left>
</modules>
</page>
|