Changeset 566
- Timestamp:
- 04/19/07 18:43:44 (1 year ago)
- Files:
-
- trunk/config/php/config-dist.php (modified) (2 diffs)
- trunk/src/main/php/_test/TestXMLPageElement.php (modified) (1 diff)
- trunk/src/main/resources/xsl/master.xsl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/config/php/config-dist.php
r511 r566 43 43 /** 44 44 * this method should return the path to the cache directory 45 * 45 * 46 46 * By default its /path/to/stubbles/cache. 47 47 * … … 55 55 /** 56 56 * this method should return the path to the config directory 57 * 57 * 58 58 * By default its /path/to/stubbles/config. 59 59 * trunk/src/main/php/_test/TestXMLPageElement.php
r408 r566 29 29 return array('foo' => 'Hello World!'); 30 30 } 31 31 32 32 /** 33 33 * returns a list of form values trunk/src/main/resources/xsl/master.xsl
r341 r566 9 9 <xsl:import href="stub.xsl"/> 10 10 <xsl:namespace-alias stylesheet-prefix="ixsl" result-prefix="xsl" /> 11 11 12 12 <xsl:param name="__path" select="@path"/> 13 13 <xsl:param name="__sessid" select="@sessid"/> … … 15 15 <xsl:param name="page" select="@page"/> 16 16 <xsl:param name="lang" select="@lang"/> 17 17 18 18 <xsl:output method="xml"/> 19 19 <xsl:template match="/"> 20 20 <xsl:apply-templates select="node()"/> 21 21 </xsl:template> 22 22 23 23 </xsl:stylesheet>
