2007-11-26 14:25:31 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<xsl:stylesheet version="1.0"
|
2008-02-14 22:23:25 +00:00
|
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
xmlns:cc="http://web.resource.org/cc/"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
2007-11-26 14:25:31 +00:00
|
|
|
>
|
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:template name="settings">
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2008-02-14 22:23:25 +00:00
|
|
|
<div class="settingsform">
|
|
|
|
|
|
|
|
<span class="heading">
|
|
|
|
<xsl:value-of select="$locale_strings[@id='settings_heading']" />
|
2008-04-03 13:30:33 +00:00
|
|
|
<xsl:value-of select="//page/@username" />
|
2008-02-14 22:23:25 +00:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
<xsl:attribute name="action">
|
|
|
|
<xsl:value-of select="$site_strings[@id='path_settings']" />
|
|
|
|
</xsl:attribute>
|
|
|
|
|
|
|
|
<xsl:value-of select="$locale_strings[@id='settings_instruction_pagesize']" />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<input name="pagesize" type="text" size="7">
|
|
|
|
<xsl:attribute name="value">
|
|
|
|
<xsl:value-of select="//settings/@pagesize" />
|
|
|
|
</xsl:attribute>
|
|
|
|
</input>
|
|
|
|
<br />
|
|
|
|
|
|
|
|
<input name="submit" type="submit" />
|
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-11-26 14:25:31 +00:00
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|