2007-11-26 14:25:31 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
|
|
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-12-19 23:12:39 +00:00
|
|
|
<xsl:template name="settings">
|
2007-12-20 17:08:11 +00:00
|
|
|
|
|
|
|
<div class="settingsform">
|
|
|
|
|
|
|
|
<span class="heading">
|
|
|
|
<xsl:value-of select="$locale_strings[@id='settings_heading']" />
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<form method="POST">
|
|
|
|
<xsl:attribute name="action">
|
|
|
|
<xsl:value-of select="$site_strings[@id='page_settings']" />
|
|
|
|
</xsl:attribute>
|
|
|
|
|
|
|
|
<xsl:value-of select="$locale_strings[@id='settings_instruction_locale']" />
|
2007-12-19 23:12:39 +00:00
|
|
|
<br />
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
<select name="locale" size="2">
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
<option value="en-us">
|
2007-12-19 23:18:26 +00:00
|
|
|
<xsl:if test="//settings/@locale='en-us'">
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:attribute name="selected">
|
|
|
|
selected
|
|
|
|
</xsl:attribute>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:value-of select="$locale_strings[@id='language_en-us']" />
|
|
|
|
</option>
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
<option value="de-de">
|
2007-12-19 23:18:26 +00:00
|
|
|
<xsl:if test="//settings/@locale='de-de'">
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:attribute name="selected">
|
|
|
|
selected
|
|
|
|
</xsl:attribute>
|
|
|
|
</xsl:if>
|
|
|
|
<xsl:value-of select="$locale_strings[@id='language_de-de']" />
|
|
|
|
</option>
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
</select>
|
|
|
|
<br />
|
2007-12-20 17:08:11 +00:00
|
|
|
|
|
|
|
<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 />
|
|
|
|
|
|
|
|
<xsl:value-of select="$locale_strings[@id='settings_instruction_method']" />
|
|
|
|
<br />
|
|
|
|
|
2007-12-27 14:50:08 +00:00
|
|
|
<input type="radio" name="cortado" value="true">
|
|
|
|
<xsl:if test="//settings/@cortado='true'">
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:attribute name="checked">
|
|
|
|
checked
|
2007-11-26 14:25:31 +00:00
|
|
|
</xsl:attribute>
|
2007-12-19 23:12:39 +00:00
|
|
|
</xsl:if>
|
|
|
|
</input>
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:value-of select="$locale_strings[@id='watch_cortadoapplet']" />
|
|
|
|
<br />
|
2007-12-27 14:50:08 +00:00
|
|
|
<input type="radio" name="cortado" value="false">
|
|
|
|
<xsl:if test="//settings/@cortado='false'">
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:attribute name="checked">
|
|
|
|
checked
|
2007-11-26 14:25:31 +00:00
|
|
|
</xsl:attribute>
|
2007-12-19 23:12:39 +00:00
|
|
|
</xsl:if>
|
|
|
|
</input>
|
2007-12-20 17:08:11 +00:00
|
|
|
|
2007-12-19 23:12:39 +00:00
|
|
|
<xsl:value-of select="$locale_strings[@id='watch_browserplugin']" />
|
2007-12-20 17:08:11 +00:00
|
|
|
<br />
|
2007-12-19 23:12:39 +00:00
|
|
|
<input name="submit" type="submit" />
|
2007-12-20 17:08:11 +00:00
|
|
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2007-11-26 14:25:31 +00:00
|
|
|
</xsl:template>
|
|
|
|
|
|
|
|
</xsl:stylesheet>
|