From: <var...@us...> - 2009-04-01 07:55:47
|
Revision: 6755 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6755&view=rev Author: vargenau Date: 2009-04-01 07:55:32 +0000 (Wed, 01 Apr 2009) Log Message: ----------- Warning banner Added Paths: ----------- trunk/themes/gforge/templates/browse.tmpl Added: trunk/themes/gforge/templates/browse.tmpl =================================================================== --- trunk/themes/gforge/templates/browse.tmpl (rev 0) +++ trunk/themes/gforge/templates/browse.tmpl 2009-04-01 07:55:32 UTC (rev 6755) @@ -0,0 +1,28 @@ +<?php // -*-html-*- +rcs_id('$Id$'); +?> + +<?php if ($revision and !$revision->isCurrent()) { ?> + <p><strong><?=_("Note:")?></strong> + <?=_("You are viewing an old revision of this page.")?> + <?= Button('browse', _("View the current version"), $page)?>. + </p> +<?php } ?> +<?php if (!empty($redirected)) { ?> + <p><?= $redirected ?></p> +<?php } ?> + +<?php if (WIKI_NAME == "cssforge") { ?> +<table width="100%" bgcolor="#e9fbff" style="border-style:solid;border-color:blue;border-width:2px"> +<tr> +<td><p align="center"><em><b>This Help page is located in the main Forge wiki. You are not in your project's wiki.</b></em></p> +</td> +</tr> +</table> +<?php } ?> + +<?=$CONTENT?> + +<div id="footer"><?php // for top & bottom toolbars stylesheet ?> + <?=Template('browse-footer')?> +</div> Property changes on: trunk/themes/gforge/templates/browse.tmpl ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-04-02 12:51:35
|
Revision: 6765 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6765&view=rev Author: vargenau Date: 2009-04-02 12:51:20 +0000 (Thu, 02 Apr 2009) Log Message: ----------- PageTrail Modified Paths: -------------- trunk/themes/gforge/templates/browse.tmpl Modified: trunk/themes/gforge/templates/browse.tmpl =================================================================== --- trunk/themes/gforge/templates/browse.tmpl 2009-04-02 12:50:10 UTC (rev 6764) +++ trunk/themes/gforge/templates/browse.tmpl 2009-04-02 12:51:20 UTC (rev 6765) @@ -1,6 +1,9 @@ <?php // -*-html-*- rcs_id('$Id$'); ?> +<?php +$curuserprefs = $user->getPreferences(); +?> <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?=_("Note:")?></strong> @@ -13,14 +16,19 @@ <?php } ?> <?php if (WIKI_NAME == "cssforge") { ?> -<table width="100%" bgcolor="#e9fbff" style="border-style:solid;border-color:blue;border-width:2px"> +<div class="browsebanner"> +<table> <tr> -<td><p align="center"><em><b>This Help page is located in the main Forge wiki. You are not in your project's wiki.</b></em></p> -</td> +<td>This Help page is located in the Forge main wiki. You are not in your project's wiki.</td> </tr> </table> +</div> <?php } ?> +<?php if ($curuserprefs->get('pageTrail')) { ?> +<?plugin PageTrail ?> +<?php } ?> + <?=$CONTENT?> <div id="footer"><?php // for top & bottom toolbars stylesheet ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2009-06-01 09:48:57
|
Revision: 6832 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6832&view=rev Author: vargenau Date: 2009-06-01 09:48:55 +0000 (Mon, 01 Jun 2009) Log Message: ----------- Help is located in project "help" Modified Paths: -------------- trunk/themes/gforge/templates/browse.tmpl Modified: trunk/themes/gforge/templates/browse.tmpl =================================================================== --- trunk/themes/gforge/templates/browse.tmpl 2009-06-01 09:08:51 UTC (rev 6831) +++ trunk/themes/gforge/templates/browse.tmpl 2009-06-01 09:48:55 UTC (rev 6832) @@ -15,11 +15,11 @@ <p><?= $redirected ?></p> <?php } ?> -<?php if (WIKI_NAME == "cssforge") { ?> +<?php if (WIKI_NAME == "help") { ?> <div class="browsebanner"> <table> <tr> -<td>This Help page is located in the Forge main wiki. You are not in your project's wiki.</td> +<td>This Help page is located in the Forge Help wiki. You are not in your project's wiki.</td> </tr> </table> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-07-02 09:04:31
|
Revision: 7593 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7593&view=rev Author: vargenau Date: 2010-07-02 09:04:25 +0000 (Fri, 02 Jul 2010) Log Message: ----------- Add warning_msg CSS class Modified Paths: -------------- trunk/themes/gforge/templates/browse.tmpl Modified: trunk/themes/gforge/templates/browse.tmpl =================================================================== --- trunk/themes/gforge/templates/browse.tmpl 2010-07-02 08:24:28 UTC (rev 7592) +++ trunk/themes/gforge/templates/browse.tmpl 2010-07-02 09:04:25 UTC (rev 7593) @@ -6,7 +6,7 @@ ?> <?php if ($revision and !$revision->isCurrent()) { ?> - <p><strong><?php echo _("Note:")?></strong> + <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("You are viewing an old revision of this page.")?> <?php echo Button('browse', _("View the current version"), $page)?>. </p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |