From: Michael Tremer Date: Wed, 25 Feb 2009 22:28:14 +0000 (+0100) Subject: Define "heading" XML tag to set as HTML-anchor X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93083e6bba8e7d88a475256f1ef836405121b3ba;p=ipfire.org.git Define "heading" XML tag to set as HTML-anchor --- diff --git a/www/data/development.xml b/www/data/development.xml index 053e6341..2eec96f1 100644 --- a/www/data/development.xml +++ b/www/data/development.xml @@ -25,17 +25,17 @@
  • git
  • -
  • sourcecode
  • +
  • sourcecode
  • bugtracker
  • -
  • nighty builds
  • +
  • nighty builds
  • ]]>
  • Git
  • -
  • Sourcecode
  • +
  • Sourcecode
  • Bugtracker
  • -
  • Nighty-Builds
  • +
  • Nighty-Builds
  • ]]>
    @@ -54,7 +54,7 @@ ]]> - Git + git git. @@ -73,7 +73,7 @@ ]]> - Source-Code + source-code http://source.ipfire.org/.
    @@ -88,7 +88,7 @@ ]]>
    - Bugtracker + bugtracker bugtracker.
    It is important for development to create detailed bug reports that @@ -103,7 +103,7 @@ ]]>
    - Nightly-Builds + nightly-builds diff --git a/www/ipfire.py b/www/ipfire.py index 1e8b5376..12d207cf 100755 --- a/www/ipfire.py +++ b/www/ipfire.py @@ -70,7 +70,7 @@ class Body(SItem): for paragraph in self.paragraphs: for heading in paragraph.childs("Heading"): if heading.attr("lang") in (self.lang, ""): - self.write("

    " + heading.text() + "

    ") + self.write('

    ' + heading.text() + '

    ') for content in paragraph.childs("Content"): if content.attr("lang") in (self.lang, ""): if content.attr("raw"): diff --git a/www/style.css b/www/style.css index 6393e5a5..2df99734 100644 --- a/www/style.css +++ b/www/style.css @@ -17,7 +17,7 @@ width: 90% !important; div.fixed { -width: 965px !important; +width: 970px !important; margin: 0; } @@ -382,13 +382,13 @@ table { width: 980px; } #sh-tl { - background: url(ipfire3/sh-tl.png) right bottom; + background: url(ipfire3/sh-tl.png) no-repeat right bottom; } #sh-top { background: url(ipfire3/sh-top.png) repeat-x bottom; } #sh-tr { - background: url(ipfire3/sh-tr.png) left bottom; + background: url(ipfire3/sh-tr.png) no-repeat left bottom; } #sh-lft { background: url(ipfire3/sh-lft.png) repeat-y right; @@ -397,13 +397,13 @@ table { background: url(ipfire3/sh-rgt.png) repeat-y left; } #sh-bl { - background: url(ipfire3/sh-bl.png) right top; + background: url(ipfire3/sh-bl.png) no-repeat right top; } #sh-btn { background: url(ipfire3/sh-btn.png) repeat-x top; } #sh-br { - background: url(ipfire3/sh-br.png) left top; + background: url(ipfire3/sh-br.png) no-repeat left top; } #no-sh { /* background: url(ipfire3/sh-br.png) left top; */ @@ -411,8 +411,8 @@ background-color: #f5f5f5; padding: 1.5em; } #sh-tl, #sh-top, #sh-tr, #sh-lft, #sh-rgt, #sh-bl, #sh-btn, #sh-br { - width: 12px; - height: 12px; + width: 16px; + height: 16px; padding: 0px; border-width: 0px; border-style: none;