From: <ru...@us...> - 2009-06-05 07:17:11
|
Revision: 6899 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6899&view=rev Author: rurban Date: 2009-06-05 07:16:56 +0000 (Fri, 05 Jun 2009) Log Message: ----------- add more wikilens templates Added Paths: ----------- trunk/themes/wikilens/templates/newuserwelcomepage.tmpl trunk/themes/wikilens/templates/ratings.tmpl Added: trunk/themes/wikilens/templates/newuserwelcomepage.tmpl =================================================================== --- trunk/themes/wikilens/templates/newuserwelcomepage.tmpl (rev 0) +++ trunk/themes/wikilens/templates/newuserwelcomepage.tmpl 2009-06-05 07:16:56 UTC (rev 6899) @@ -0,0 +1,28 @@ +<?php // -*-php-*- + rcs_id('$Id$'); + $dbi = $request->getDbh(); +?> +<div> +<h2>Welcome <?= $FRIEND ?></h2> +<p>Welcome to <?= WIKI_NAME ?>. A good place to learn about <?= WIKI_NAME ?> is to check out the <a href="<?= WikiUrl(WIKI_NAME.'/' +._("Tutorial"), '', true); ?>"><?= WIKI_NAME ?> Tutorial</a></p> +<br /> +<?php if ($PAGE1 || $PAGE2 || $PAGE3) { ?> +Here are pages on <?= WIKI_NAME ?> that <?= $SENDER ?> thinks you will be interested in:<br /> +<?php + foreach (array($PAGE1, $PAGE2, $PAGE3) as $pagename) { + if ($dbi->isWikiPage($pagename)) { +?> + <a href="<?= WikiUrl($pagename, '', true); ?>"><?= $pagename ?></a><br> +<?php + } + } + } +?> +<br /> +<?php if ($dbi->isWikiPage($SENDERUSERNAME)) { ?> +<p>Also, <?= $SENDER; ?> has his own homepage at <?= WIKI_NAME ?>: <a href="<?= WikiUrl($SENDERUSERNAME, '', true); ?>"><?= $SENDER ?>'s page</a></p> +<?php } ?> +<br> +<p>To create your own login on <?= WIKI_NAME ?>, you can <a href="<?= WikiUrl('NewUserRegister', '', true) ?>">Register</a></p> +</div> Property changes on: trunk/themes/wikilens/templates/newuserwelcomepage.tmpl ___________________________________________________________________ Added: svn:keywords + Id Added: trunk/themes/wikilens/templates/ratings.tmpl =================================================================== --- trunk/themes/wikilens/templates/ratings.tmpl (rev 0) +++ trunk/themes/wikilens/templates/ratings.tmpl 2009-06-05 07:16:56 UTC (rev 6899) @@ -0,0 +1,8 @@ +<?php // -*-php-*- +rcs_id('$Id$'); +?> +<!-- Ratings --> +<?php if (!$WikiTheme->DUMP_MODE) { + $loader = new WikiPluginLoader(); + printXML($loader->expandPI("<"."?plugin RateIt show=top imgPrefix=BStar ?".">", $request, $dbi->_markup)); +} ?> Property changes on: trunk/themes/wikilens/templates/ratings.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...> - 2010-04-07 18:14:48
|
Revision: 7322 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7322&view=rev Author: vargenau Date: 2010-04-07 18:14:42 +0000 (Wed, 07 Apr 2010) Log Message: ----------- Valid XHTML Modified Paths: -------------- trunk/themes/wikilens/templates/body.tmpl trunk/themes/wikilens/templates/navbar.tmpl Modified: trunk/themes/wikilens/templates/body.tmpl =================================================================== --- trunk/themes/wikilens/templates/body.tmpl 2010-04-07 15:22:41 UTC (rev 7321) +++ trunk/themes/wikilens/templates/body.tmpl 2010-04-07 18:14:42 UTC (rev 7322) @@ -12,7 +12,7 @@ <div class="toolbar"> <?= Template('navbar') ?> </div> -<hr> +<hr /> <?plugin IncludePage page="LeftbarContent" quiet="true" ?> </td><td class="content"> Modified: trunk/themes/wikilens/templates/navbar.tmpl =================================================================== --- trunk/themes/wikilens/templates/navbar.tmpl 2010-04-07 15:22:41 UTC (rev 7321) +++ trunk/themes/wikilens/templates/navbar.tmpl 2010-04-07 18:14:42 UTC (rev 7322) @@ -30,7 +30,7 @@ ?><?=$NSEP?><?= WikiLink($UserCalPageTodayTitle, "button", _("Today")) ?> <?php }} ?><?php if (!empty($user) && $user->isAdmin()) { ?> <?=$NSEP?><?= WikiLink(_("PhpWikiAdministration"), "button", _("Admin")) ?> -<?php } ?></div> +<?php } ?> <?php if (DEBUG & 2) { if (isset($links)) { $p = $links->next(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2012-09-28 14:49:17
|
Revision: 8301 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8301&view=rev Author: vargenau Date: 2012-09-28 14:49:06 +0000 (Fri, 28 Sep 2012) Log Message: ----------- Remove $Id$ Modified Paths: -------------- trunk/themes/wikilens/templates/body.tmpl trunk/themes/wikilens/templates/categorypage.tmpl trunk/themes/wikilens/templates/head.tmpl trunk/themes/wikilens/templates/navbar.tmpl trunk/themes/wikilens/templates/newuserwelcomepage.tmpl trunk/themes/wikilens/templates/ratings.tmpl trunk/themes/wikilens/templates/top.tmpl Modified: trunk/themes/wikilens/templates/body.tmpl =================================================================== --- trunk/themes/wikilens/templates/body.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/body.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,6 +1,3 @@ -<?php // -*-php-*- -// $Id$ -?> <body<?php echo $WikiTheme->getMoreAttr('body') ?>> <table><tr><td colspan="2" class="header"> Modified: trunk/themes/wikilens/templates/categorypage.tmpl =================================================================== --- trunk/themes/wikilens/templates/categorypage.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/categorypage.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,6 +1,3 @@ -<?php -// $Id$ -?> <div class="categorypage categorypage-form"> <p>This page represents the <?php echo $SINGULAR?> category.</p> Modified: trunk/themes/wikilens/templates/head.tmpl =================================================================== --- trunk/themes/wikilens/templates/head.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/head.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,6 +1,3 @@ -<?php // -*-php-*- -// $Id$ -?> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET?>" /> <?php $ROBOTS_CONTENT = isset($ROBOTS_META) ? $ROBOTS_META : "noindex,nofollow"; ?> Modified: trunk/themes/wikilens/templates/navbar.tmpl =================================================================== --- trunk/themes/wikilens/templates/navbar.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/navbar.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,5 +1,4 @@ -<?php // -*-php-*- -// $Id$ +<?php $NSEP = HTML::br(); ?> <!-- The left navigation/search bar --> Modified: trunk/themes/wikilens/templates/newuserwelcomepage.tmpl =================================================================== --- trunk/themes/wikilens/templates/newuserwelcomepage.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/newuserwelcomepage.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,5 +1,4 @@ -<?php // -*-php-*- -// $Id$ +<?php $dbi = $request->getDbh(); ?> <div> Modified: trunk/themes/wikilens/templates/ratings.tmpl =================================================================== --- trunk/themes/wikilens/templates/ratings.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/ratings.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,6 +1,3 @@ -<?php // -*-php-*- -// $Id$ -?> <!-- Ratings --> <?php if (!$WikiTheme->DUMP_MODE) { $loader = new WikiPluginLoader(); Modified: trunk/themes/wikilens/templates/top.tmpl =================================================================== --- trunk/themes/wikilens/templates/top.tmpl 2012-09-28 14:00:54 UTC (rev 8300) +++ trunk/themes/wikilens/templates/top.tmpl 2012-09-28 14:49:06 UTC (rev 8301) @@ -1,5 +1,4 @@ -<?php // -*-php-*- -// $Id$ +<?php global $HIDE_TOOLBARS; if (!$HIDE_TOOLBARS) { ?> <!-- The logo --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |