24c3, ihr pfeifen !

git-svn-id: http://yolanda.mister-muffin.de/svn@222 7eef14d0-6ed0-489d-bf55-20463b2d70db
This commit is contained in:
erlehmann 2007-12-27 15:01:49 +00:00
parent f49a7367e9
commit 85193bf24e
3 changed files with 15 additions and 13 deletions

View file

@ -156,7 +156,7 @@
<string id="watch_cortadoapplet">use java applet</string> <string id="watch_cortadoapplet">use java applet</string>
<string id="license_conditions">license conditions</string> <string id="license_conditions">license conditions</string>
<string id="protip_embed">To embed the video on another web page, use the following HTML code:</string> <string id="protip_embed">To embed the video on another web page, use the following HTML code:</string>
<string id="comment_on_video">Flamewar area below. Proceed with caution.</string> <string id="login_to_comment">login to comment</string>
<string id="comment_post">post</string> <string id="comment_post">post</string>
<!-- embedded video page--> <!-- embedded video page-->

View file

@ -97,7 +97,8 @@ div
div.loginform, div.loginform,
div.registerform, div.registerform,
div.settingsform, div.settingsform,
div.uploadform div.uploadform,
div.commentform
{ {
line-height: 2.5em; line-height: 2.5em;
margin: 1.5em; margin: 1.5em;

View file

@ -193,12 +193,8 @@ not implemented right now
</span> </span>
</div> </div>
<!--
too ugly right now
<xsl:call-template name="comments"/>
<xsl:call-template name="commentform"/> <xsl:call-template name="commentform"/>
--> <xsl:call-template name="comments"/>
</xsl:if> </xsl:if>
</xsl:template> </xsl:template>
@ -206,10 +202,6 @@ not implemented right now
<xsl:template name="comments"> <xsl:template name="comments">
<div class="comments"> <div class="comments">
<span class="protip">
<xsl:value-of select="$locale_strings[@id='comment_on_video']" />
</span>
<br />
<xsl:for-each select="//comments/comment"> <xsl:for-each select="//comments/comment">
<div class="comment"> <div class="comment">
<a> <a>
@ -228,7 +220,8 @@ not implemented right now
<xsl:template name="commentform"> <xsl:template name="commentform">
<xsl:if test="not(//@username='')"> <xsl:choose>
<xsl:when test="not(//@username='')">
<div class="commentform"> <div class="commentform">
<form method="post"> <form method="post">
<xsl:attribute name="action"> <xsl:attribute name="action">
@ -246,7 +239,15 @@ not implemented right now
</fieldset> </fieldset>
</form> </form>
</div> </div>
</xsl:if> </xsl:when>
<xsl:otherwise>
<div class="commentform">
<span class="protip">
<xsl:value-of select="$locale_strings[@id='login_to_comment']" />
</span>
</div>
</xsl:otherwise>
</xsl:choose>
</xsl:template> </xsl:template>