From: <var...@us...> - 2010-08-31 16:13:59
|
Revision: 7667 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7667&view=rev Author: vargenau Date: 2010-08-31 16:13:53 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Replace TroubleShooting and HowTo Modified Paths: -------------- trunk/themes/Sidebar/templates/navbar.tmpl Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2010-08-31 16:02:45 UTC (rev 7666) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2010-08-31 16:13:53 UTC (rev 7667) @@ -23,8 +23,8 @@ <h5><?php echo _("Main Categories")?></h5> <div class="pBody"> <ul> - <li><?php echo WikiLink("TroubleShooting") ?></li> - <li><?php echo WikiLink("HowTo") ?></li> + <li><?php echo WikiLink("CategoryWikiPlugin") ?></li> + <li><?php echo WikiLink("CategoryActionPage") ?></li> </ul> </div> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2014-10-14 16:44:46
|
Revision: 9261 http://sourceforge.net/p/phpwiki/code/9261 Author: vargenau Date: 2014-10-14 16:44:38 +0000 (Tue, 14 Oct 2014) Log Message: ----------- Remove border Modified Paths: -------------- trunk/themes/Sidebar/templates/navbar.tmpl Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2014-10-14 16:28:30 UTC (rev 9260) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2014-10-14 16:44:38 UTC (rev 9261) @@ -56,7 +56,7 @@ // Do not display the pdf icon $btn = new Button(_("Display as Pdf"), WikiURL($page->getName(), array('action' => 'pdf')), 'wikiaction'); ?> - <li><?php echo $btn ?> <?php echo WikiLink("Help/Display as Pdf","",HTML::img(array('src'=>$WikiTheme->_findData('images/mini_help.png'),'border'=>0,'width'=>12,'height'=>13,'alt'=>'pdf-help','title'=>"How to generate multi-page PDFs"))) ?></li> + <li><?php echo $btn ?> <?php echo WikiLink("Help:PDF","",HTML::img(array('src'=>$WikiTheme->_findData('images/mini_help.png'),'width'=>12,'height'=>13,'alt'=>'PDF help','title'=>'PDF help'))) ?></li> <?php } ?> <li><?php echo WikiLink(_("AllPages")) ?></li> <?php if (!empty($user) && $user->isAdmin()) { ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2014-11-05 15:37:44
|
Revision: 9283 http://sourceforge.net/p/phpwiki/code/9283 Author: vargenau Date: 2014-11-05 15:37:36 +0000 (Wed, 05 Nov 2014) Log Message: ----------- No title identical to link Modified Paths: -------------- trunk/themes/Sidebar/templates/navbar.tmpl Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2014-11-05 15:30:15 UTC (rev 9282) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2014-11-05 15:37:36 UTC (rev 9283) @@ -40,7 +40,7 @@ <div class="pBody" id="p-tb-body"> <ul> <li><?php $link = WikiLink(_("RecentChanges"), "",_("RecentChanges")); $link->setAttr("accesskey","r"); $link->addTooltip(_("The list of recent changes in the wiki.")." [$p-r]"); ?><?php echo $link ?> </li> - <li><?php echo WikiLink(_("RecentNewPages"), "",_("RecentNewPages")) ?></li> + <li><?php echo WikiLink(_("RecentNewPages")) ?></li> <?php if (!empty($revision)) { ?> <li id="t-whatlinkshere"><?php echo Button(array('action'=>_("BackLinks")), _("What links here"), $page->getName()) ?></li> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2021-10-28 11:00:07
|
Revision: 10639 http://sourceforge.net/p/phpwiki/code/10639 Author: vargenau Date: 2021-10-28 11:00:05 +0000 (Thu, 28 Oct 2021) Log Message: ----------- Add label for RecentNewPages in Sidebar theme Modified Paths: -------------- trunk/themes/Sidebar/templates/navbar.tmpl Modified: trunk/themes/Sidebar/templates/navbar.tmpl =================================================================== --- trunk/themes/Sidebar/templates/navbar.tmpl 2021-10-20 08:07:01 UTC (rev 10638) +++ trunk/themes/Sidebar/templates/navbar.tmpl 2021-10-28 11:00:05 UTC (rev 10639) @@ -45,7 +45,7 @@ <div class="pBody" id="p-tb-body"> <ul> <li><?php $link = WikiLink(__("RecentChanges"), "", _("Recent Changes")); $link->addTooltip(_("The list of recent changes in the wiki.")); ?><?php echo $link ?> </li> - <li><?php echo WikiLink(__("RecentNewPages")) ?></li> + <li><?php echo WikiLink(__("RecentNewPages"), "", _("Recent new pages")) ?></li> <?php if (!empty($revision)) { ?> <li><?php echo Button(array('action'=>__("BackLinks")), _("What links here"), $page->getName()) ?></li> <?php } ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |