git-svn-id: http://yolanda.mister-muffin.de/svn@58 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
erlehmann 2007-10-12 13:09:07 +00:00
parent 24994ab419
commit 670989df53
2 changed files with 60 additions and 9 deletions

View file

@ -11,8 +11,14 @@
<!-- <str id=""></str> <!-- <str id=""></str>
<str id=""></str> <str id=""></str>
<str id=""></str>--> <str id=""></str>-->
<str id="page_account">account</str>
<str id="page_bookmarks"></str> <str id="page_bookmarks"></str>
<str id="page_login">login.pl</str> <str id="page_login">login.pl</str>
<str id="page_login-openid">login-openid.pl</str>
<str id="page_logout">login.pl?action=logout</str>
<str id="page_gnutube-authors">INSERT LINK TO GNUTUBE AUTHORS HERE</str>
<str id="page_gnutube-license">INSERT LINK TO GNUTUBE LICENSE HERE</str>
<str id="page_gnutube-source-code">USE THE SOURCE</str>
<str id="page_register">register.pl</str> <str id="page_register">register.pl</str>
<str id="page_results">search.pl?query=</str> <str id="page_results">search.pl?query=</str>
<str id="page_upload">upload.pl</str> <str id="page_upload">upload.pl</str>

View file

@ -66,12 +66,27 @@
</a> </a>
</div> </div>
<div class="header2"> <div class="header2">
<a href="register.pl"><xsl:value-of select="$locale_strings/str[@id='register']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_register']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='register']" />
</a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<a href="login.pl"><xsl:value-of select="$locale_strings/str[@id='login']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_login']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='login']" />
</a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<img class="openid-icon" src="./images/openid-icon.png" alt="open id logo" /> <img class="openid-icon" src="./images/openid-icon.png" alt="open id logo" />
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='login_openid']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_login-openid']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='login_openid']" />
</a>
</div> </div>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
@ -90,7 +105,12 @@
<xsl:value-of select="$locale_strings/str[@id='bookmarks']" /> <xsl:value-of select="$locale_strings/str[@id='bookmarks']" />
</a> </a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='account_details']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_account']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='account_details']" />
</a>
</div> </div>
<div class="header2"> <div class="header2">
<xsl:value-of select="$locale_strings/str[@id='logged_in_as']" /> <xsl:value-of select="$locale_strings/str[@id='logged_in_as']" />
@ -101,7 +121,12 @@
<xsl:value-of select="//@username" /> <xsl:value-of select="//@username" />
</a> </a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<a href="login.pl?action=logout"><xsl:value-of select="$locale_strings/str[@id='logout']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_logout']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='logout']" />
</a>
</div> </div>
</xsl:otherwise> </xsl:otherwise>
</xsl:choose> </xsl:choose>
@ -111,11 +136,26 @@
<xsl:apply-templates /> <xsl:apply-templates />
<div class="footer"> <div class="footer">
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='gnutube_authors']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_gnutube-authors']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='gnutube_authors']" />
</a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='gnutube_license']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_gnutube-license']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='gnutube_license']" />
</a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='gnutube_source_code']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_gnutube-source-code']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='gnutube_source_code']" />
</a>
</div> </div>
</body> </body>
@ -151,7 +191,12 @@
</div> </div>
<div class="toplists"> <div class="toplists">
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='query_latestadditions']" /></a> <a>
<xsl:attribute name="href">
<xsl:value-of select="$site_strings/str[@id='page_query_latestadditions']" />
</xsl:attribute>
<xsl:value-of select="$locale_strings/str[@id='query_latestadditions']" />
</a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />
<a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='query_mostdownloads']" /></a> <a href="about:blank"><xsl:value-of select="$locale_strings/str[@id='query_mostdownloads']" /></a>
<xsl:value-of select="$locale_strings/str[@id='separator']" /> <xsl:value-of select="$locale_strings/str[@id='separator']" />