From 0c6b58a847e74cc5f51616e9a6f71935806dece0 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sat, 21 Jan 2006 13:14:35 +0100 Subject: removed graphical list bullet Unordered lists used a graphic for the list bullet. Using the same technique as in the ordered lists we don't need an image just to have the color. This has two advantages: 1. The list bullets still have the correct color when colors are adjusted in style.ini 2. List bullets grow and shrink correctly with the fontsize It has a disadvantage as well: All list items need to be marked up like this:
  • getInfo(); - $renderer->doc .= '
  • '; + $renderer->doc .= '
  • '; $renderer->externallink($info['url'],$info['name']); $renderer->doc .= ' '; $renderer->doc .= ''.$info['date'].''; @@ -120,7 +120,7 @@ class syntax_plugin_info extends DokuWiki_Syntax_Plugin { $renderer->emaillink($info['email'],$info['author']); $renderer->doc .= '
    '; $renderer->doc .= strtr(htmlspecialchars($info['desc']),array("\n"=>"
    ")); - $renderer->doc .= '
  • '; + $renderer->doc .= ''; unset($po); } diff --git a/lib/plugins/plugin/admin.php b/lib/plugins/plugin/admin.php index cffcf8057..0f25cbc85 100644 --- a/lib/plugins/plugin/admin.php +++ b/lib/plugins/plugin/admin.php @@ -388,7 +388,7 @@ class ap_manage { ptln('

    '.$this->lang['downloads'].'

    '); ptln(''); } else { // none found in download @@ -546,7 +546,7 @@ class ap_manage { ptln('

    '.$this->lang['updates'].'

    '); ptln(''); } else { // none found in download -- cgit v1.2.3