SourceForge logo
SourceForge logo
Menu

phpwiki-checkins

From: <var...@us...> - 2009年10月19日 15:11:59
Revision: 7223
 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7223&view=rev
Author: vargenau
Date: 2009年10月19日 15:11:50 +0000 (2009年10月19日)
Log Message:
-----------
Add template usage
Modified Paths:
--------------
 trunk/themes/default/templates/categorypage.tmpl
 trunk/themes/default/templates/forumadd.tmpl
Modified: trunk/themes/default/templates/categorypage.tmpl
===================================================================
--- trunk/themes/default/templates/categorypage.tmpl	2009年10月19日 14:37:50 UTC (rev 7222)
+++ trunk/themes/default/templates/categorypage.tmpl	2009年10月19日 15:11:50 UTC (rev 7223)
@@ -1,5 +1,6 @@
 <?php
 rcs_id('$Id$');
+ // This template is used for the CategoryPage plugin.
 ?>
 <div class="categorypage categorypage-form">
 
Modified: trunk/themes/default/templates/forumadd.tmpl
===================================================================
--- trunk/themes/default/templates/forumadd.tmpl	2009年10月19日 14:37:50 UTC (rev 7222)
+++ trunk/themes/default/templates/forumadd.tmpl	2009年10月19日 15:11:50 UTC (rev 7223)
@@ -1,7 +1,7 @@
 <?php
 rcs_id('$Id$');
+ // This template is used for the WikiForum plugin.
 ?>
-
 <div class="wikiforum wikiforum-reply">
 <form action="<?=$request->getPostURL()?>" method="post" class="wikiaction"
 accept-charset="<?=CHARSET?>">
@@ -25,4 +25,3 @@
 </table>
 </form>
 </div>
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <var...@us...> - 2010年06月27日 17:37:53
Revision: 7585
 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7585&view=rev
Author: vargenau
Date: 2010年06月27日 17:37:47 +0000 (2010年6月27日)
Log Message:
-----------
No noshade for <hr>
Modified Paths:
--------------
 trunk/themes/default/templates/blogform.tmpl
 trunk/themes/default/templates/browse-footer.tmpl
 trunk/themes/default/templates/editpage.tmpl
 trunk/themes/default/templates/login.tmpl
 trunk/themes/default/templates/savepage.tmpl
Modified: trunk/themes/default/templates/blogform.tmpl
===================================================================
--- trunk/themes/default/templates/blogform.tmpl	2010年06月27日 17:32:09 UTC (rev 7584)
+++ trunk/themes/default/templates/blogform.tmpl	2010年06月27日 17:37:47 UTC (rev 7585)
@@ -19,7 +19,7 @@
 name="edit[save]" class="wikiaction" />
 </div>
 
-<hr noshade="noshade" />
+<hr />
 <div id="newMarkup" class="wiki-edithelp">
 <p><?= fmt("See %s tips for editing.", WikiLink(_("Help/GoodStyle"))) ?></p>
 <?plugin IncludePage page=_("Help/TextFormattingRules") section=_("Synopsis") quiet=1?>
Modified: trunk/themes/default/templates/browse-footer.tmpl
===================================================================
--- trunk/themes/default/templates/browse-footer.tmpl	2010年06月27日 17:32:09 UTC (rev 7584)
+++ trunk/themes/default/templates/browse-footer.tmpl	2010年06月27日 17:37:47 UTC (rev 7585)
@@ -1,13 +1,13 @@
 <?php // -*-php-*-
 // rcs_id('$Id$');
 ?>
-<hr class="printer" noshade="noshade" />
+<hr class="printer" />
 <p class="editdate"><?= $WikiTheme->getOwnerMessage($page) ?> <?= $WikiTheme->getLastModifiedMessage($revision) ?> <?= $WikiTheme->getAuthorMessage($revision) ?></p>
 <?php
 global $HIDE_TOOLBARS;
 if (!$HIDE_TOOLBARS) {
 ?>
-<hr class="toolbar" noshade="noshade" />
+<hr class="toolbar" />
 <div class="toolbar">
 <?= Template('actionbar') ?>
 </div>
Modified: trunk/themes/default/templates/editpage.tmpl
===================================================================
--- trunk/themes/default/templates/editpage.tmpl	2010年06月27日 17:32:09 UTC (rev 7584)
+++ trunk/themes/default/templates/editpage.tmpl	2010年06月27日 17:37:47 UTC (rev 7585)
@@ -9,9 +9,9 @@
 <?= fmt("Please continue editing. (You'll find your %s at the bottom of the page.)",
 /* HTML::a(array("href" => "#editarea"), */ _("edit area") /*) */) ?>
 </p>
- <hr class="printer" noshade="noshade" />
+ <hr class="printer" />
 <?= $PREVIEW_CONTENT ?>
- <hr class="printer" noshade="noshade" />
+ <hr class="printer" />
 <?php } ?>
 
 <?= $PAGE_LOCKED_MESSAGE ?>
@@ -94,7 +94,7 @@
 </form>
 <div style="width:100%;text-align:center;"><?php /*plugin UpLoad autolink=0 mode=edit size=30 */?></div>
 
-<hr noshade="noshade" />
+<hr />
 
 <script type="text/javascript">
 <!--
Modified: trunk/themes/default/templates/login.tmpl
===================================================================
--- trunk/themes/default/templates/login.tmpl	2010年06月27日 17:32:09 UTC (rev 7584)
+++ trunk/themes/default/templates/login.tmpl	2010年06月27日 17:37:47 UTC (rev 7585)
@@ -3,7 +3,7 @@
 ?>
 <?php if ($fail_message) { ?>
 <p><strong><?=$fail_message?></strong></p>
- <hr noshade="noshade" />
+ <hr />
 <?php } ?>
 <br class="clear-floats" />
 
Modified: trunk/themes/default/templates/savepage.tmpl
===================================================================
--- trunk/themes/default/templates/savepage.tmpl	2010年06月27日 17:32:09 UTC (rev 7584)
+++ trunk/themes/default/templates/savepage.tmpl	2010年06月27日 17:37:47 UTC (rev 7585)
@@ -19,5 +19,5 @@
 <p><?=$LOCK_CHANGED_MSG?></p>
 <?php } ?>
 
-<hr noshade="noshade" />
+<hr />
 <?= Template('browse') ?>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
From: <var...@us...> - 2012年09月28日 16:12:33
Revision: 8317
 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8317&view=rev
Author: vargenau
Date: 2012年09月28日 16:12:27 +0000 (2012年9月28日)
Log Message:
-----------
Remove $Id$
Modified Paths:
--------------
 trunk/themes/default/templates/actionbar.tmpl
 trunk/themes/default/templates/addcomment.tmpl
 trunk/themes/default/templates/blogform.tmpl
 trunk/themes/default/templates/body.tmpl
 trunk/themes/default/templates/bottom.tmpl
 trunk/themes/default/templates/browse-footer.tmpl
 trunk/themes/default/templates/browse.tmpl
 trunk/themes/default/templates/categorypage.tmpl
 trunk/themes/default/templates/comment.tmpl
 trunk/themes/default/templates/content.tmpl
 trunk/themes/default/templates/debug.tmpl
 trunk/themes/default/templates/dialog.tmpl
 trunk/themes/default/templates/editpage.tmpl
 trunk/themes/default/templates/forumadd.tmpl
 trunk/themes/default/templates/frameset.tmpl
 trunk/themes/default/templates/head.tmpl
 trunk/themes/default/templates/homepage.tmpl
 trunk/themes/default/templates/html.tmpl
 trunk/themes/default/templates/htmldump.tmpl
 trunk/themes/default/templates/info.tmpl
 trunk/themes/default/templates/login.tmpl
 trunk/themes/default/templates/navbar.tmpl
 trunk/themes/default/templates/nochanges.tmpl
 trunk/themes/default/templates/online.tmpl
 trunk/themes/default/templates/pagelink.tmpl
 trunk/themes/default/templates/redirect.tmpl
 trunk/themes/default/templates/savepage.tmpl
 trunk/themes/default/templates/signin.tmpl
 trunk/themes/default/templates/top.tmpl
 trunk/themes/default/templates/userprefs.tmpl
 trunk/themes/default/templates/viewsource.tmpl
 trunk/themes/default/templates/wikiblog.tmpl
 trunk/themes/default/templates/wikiforum.tmpl
Modified: trunk/themes/default/templates/actionbar.tmpl
===================================================================
--- trunk/themes/default/templates/actionbar.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/actionbar.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php if (!$WikiTheme->DUMP_MODE) { ?>
 <?php /* I would like not to have to use these tables, and managed to
 * get this stuff to work more or less correctly using
Modified: trunk/themes/default/templates/addcomment.tmpl
===================================================================
--- trunk/themes/default/templates/addcomment.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/addcomment.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*- php -*-
-// $Id$
+<?php
 $request->setArg('action',false);
 ?>
 <div class="wikicomment wikicomment-form">
Modified: trunk/themes/default/templates/blogform.tmpl
===================================================================
--- trunk/themes/default/templates/blogform.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/blogform.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*- php -*-
-// $Id$
-?>
 <div class="wikiblog wikiblog-form">
 <form action="<?php echo $request->getPostURL()?>" method="post" name="editpage"
 accept-charset="<?php echo $charset?>" id="wikiblog-form">
Modified: trunk/themes/default/templates/body.tmpl
===================================================================
--- trunk/themes/default/templates/body.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/body.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <body<?php echo $WikiTheme->getMoreAttr('body') ?>>
 
 <div id="header">
Modified: trunk/themes/default/templates/bottom.tmpl
===================================================================
--- trunk/themes/default/templates/bottom.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/bottom.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <!-- Add your Disclaimer here -->
 <?php if (!$WikiTheme->DUMP_MODE) { ?>
 <?php echo empty($WARNINGS) ? '' : $WARNINGS ?>
Modified: trunk/themes/default/templates/browse-footer.tmpl
===================================================================
--- trunk/themes/default/templates/browse-footer.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/browse-footer.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <hr class="printer" />
 <p class="editdate"><?php echo $WikiTheme->getOwnerMessage($page) ?> <?php echo $WikiTheme->getLastModifiedMessage($revision) ?> <?php echo $WikiTheme->getAuthorMessage($revision) ?></p>
 <?php
Modified: trunk/themes/default/templates/browse.tmpl
===================================================================
--- trunk/themes/default/templates/browse.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/browse.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,7 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
-
 <?php if ($revision and !$revision->isCurrent()) { ?>
 <p><strong><?php echo _("Note:")?></strong>
 <?php echo _("You are viewing an old revision of this page.")?>
Modified: trunk/themes/default/templates/categorypage.tmpl
===================================================================
--- trunk/themes/default/templates/categorypage.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/categorypage.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,5 @@
 <?php
-// $Id$
- // This template is used for the CategoryPage plugin.
+// This template is used for the CategoryPage plugin.
 ?>
 <div class="categorypage categorypage-form">
 
Modified: trunk/themes/default/templates/comment.tmpl
===================================================================
--- trunk/themes/default/templates/comment.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/comment.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*- php -*-
-// $Id$
+<?php
 $CDATE = $WikiTheme->formatDateTime($COMMENT_CTIME);
 $buttons = $modified = '';
 
Modified: trunk/themes/default/templates/content.tmpl
===================================================================
--- trunk/themes/default/templates/content.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/content.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php echo $CONTENT ?>
 <?php echo Template('bottom') ?>
 </body>
Modified: trunk/themes/default/templates/debug.tmpl
===================================================================
--- trunk/themes/default/templates/debug.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/debug.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php global $RUNTIMER; ?>
 <table width="100%" border="0" cellpadding="0" cellspacing="0">
 <tr><td>
Modified: trunk/themes/default/templates/dialog.tmpl
===================================================================
--- trunk/themes/default/templates/dialog.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/dialog.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,7 +1,6 @@
-<?php // -*-php-*-
-// $Id$
+<?php
 /* 
- * A "popup" dialog. (Though it doesn't pop up yet.)
+ * A "popup" dialog. (Though it does not pop up yet.)
 */
 printf("<?xml version=\"1.0\" encoding=\"%s\"?>\n", CHARSET);
 ?>
Modified: trunk/themes/default/templates/editpage.tmpl
===================================================================
--- trunk/themes/default/templates/editpage.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/editpage.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php if (isset($PREVIEW_CONTENT)) { ?>
 <p><strong><?php echo _("Preview only! Changes not saved.")?></strong>
 <!-- FIXME: it would be nice to put a link to the #editarea anchor below,
Modified: trunk/themes/default/templates/forumadd.tmpl
===================================================================
--- trunk/themes/default/templates/forumadd.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/forumadd.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 // This template is used for the WikiForum plugin.
 ?>
 <div class="wikiforum wikiforum-reply">
Modified: trunk/themes/default/templates/frameset.tmpl
===================================================================
--- trunk/themes/default/templates/frameset.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/frameset.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*-php-*-
-// $Id$
+<?php
 // This template is used for the FrameInclude plugin.
 
 $topurl = $request->getURLtoSelf(array('frame' => 'header'));
Modified: trunk/themes/default/templates/head.tmpl
===================================================================
--- trunk/themes/default/templates/head.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/head.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <head>
 <?php if (ENABLE_XHTML_XML and strstr($request->get('HTTP_ACCEPT'),'application/xhtml+xml')) { ?>
 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=<?php echo $charset?>" />
Modified: trunk/themes/default/templates/homepage.tmpl
===================================================================
--- trunk/themes/default/templates/homepage.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/homepage.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*-php-*-
-// $Id$
+<?php
 /**
 * Note: Automatic homepage creation is not yet functional.
 */
Modified: trunk/themes/default/templates/html.tmpl
===================================================================
--- trunk/themes/default/templates/html.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/html.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*-php-*-
-// $Id$'
+<?php
 /*
 * This template is responsible mainly for the outer level <html> stuff.
 */
Modified: trunk/themes/default/templates/htmldump.tmpl
===================================================================
--- trunk/themes/default/templates/htmldump.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/htmldump.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*-php-*-
-// $Id$
+<?php
 /*
 * This template is used only for html file dumps, and is responsible
 * mainly for the outer level <html> stuff and the and <head>.
Modified: trunk/themes/default/templates/info.tmpl
===================================================================
--- trunk/themes/default/templates/info.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/info.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php
 if (empty($revision)) $revision = $page->getCurrentRevision(false);
 $modifed = $WikiTheme->formatDateTime($revision->get('mtime'));
Modified: trunk/themes/default/templates/login.tmpl
===================================================================
--- trunk/themes/default/templates/login.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/login.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php if ($fail_message) { ?>
 <p><strong><?php echo $fail_message?></strong></p>
 <hr />
Modified: trunk/themes/default/templates/navbar.tmpl
===================================================================
--- trunk/themes/default/templates/navbar.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/navbar.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <!-- The top navigation/search bar -->
 <div id="navbuttons">
 <?php if (ENABLE_DISCUSSION_LINK) { ?>
Modified: trunk/themes/default/templates/nochanges.tmpl
===================================================================
--- trunk/themes/default/templates/nochanges.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/nochanges.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <p><strong><?php echo _("Edit aborted.")?></strong>
 <?php echo _("You have not made any changes so no new version has been saved.")?></p>
 <?php if (!empty($LOCK_CHANGED_MSG)) { ?>
Modified: trunk/themes/default/templates/online.tmpl
===================================================================
--- trunk/themes/default/templates/online.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/online.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php
 // Formatting and idea borrowed from postnuke.
 
Modified: trunk/themes/default/templates/pagelink.tmpl
===================================================================
--- trunk/themes/default/templates/pagelink.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/pagelink.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,4 @@
-<?php // -*-php-*-
-// $Id$
-
+<?php
 /**
 * Themable paging "|<< << - i/sum - >> >>|" links
 *
Modified: trunk/themes/default/templates/redirect.tmpl
===================================================================
--- trunk/themes/default/templates/redirect.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/redirect.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
 <?php
-// $Id$
 /* 
 * Redirect output.
 */
Modified: trunk/themes/default/templates/savepage.tmpl
===================================================================
--- trunk/themes/default/templates/savepage.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/savepage.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
 <?php
 $signatureURL = $WikiTheme->getImageURL('signature');
 ?>
Modified: trunk/themes/default/templates/signin.tmpl
===================================================================
--- trunk/themes/default/templates/signin.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/signin.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,4 @@
-<?php // -*-php-*-
-// $Id$
-
+<?php
 if (empty($FORMNAME))
 $FORMNAME = 'signin';
 else
Modified: trunk/themes/default/templates/top.tmpl
===================================================================
--- trunk/themes/default/templates/top.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/top.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,6 +1,4 @@
-<?php // -*-php-*-
-// $Id$
-
+<?php
 global $HIDE_TOOLBARS;
 if (!$HIDE_TOOLBARS) {
 ?>
Modified: trunk/themes/default/templates/userprefs.tmpl
===================================================================
--- trunk/themes/default/templates/userprefs.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/userprefs.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*-php-*-
-// $Id$
+<?php
 // Todo: Move the logic and code to the plugin
 // This is very experimental and the read-only part an ugly hack so far.
 foreach (explode(',','errmsg,isForm') as $var) {
Modified: trunk/themes/default/templates/viewsource.tmpl
===================================================================
--- trunk/themes/default/templates/viewsource.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/viewsource.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,7 +1,3 @@
-<?php // -*-php-*-
-// $Id$
-?>
-
 <?php if ($page->get('locked') && !$user->isAdmin()) { ?>
 <p class="warning_msg"><strong><?php echo _("Note:")?></strong>
 <?php echo _("This page has been locked and cannot be edited.")?>
Modified: trunk/themes/default/templates/wikiblog.tmpl
===================================================================
--- trunk/themes/default/templates/wikiblog.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/wikiblog.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*- php -*-
-// $Id$
+<?php
 $CDATE = $WikiTheme->formatDateTime($BLOG_CTIME);
 $buttons = $modified = '';
 
Modified: trunk/themes/default/templates/wikiforum.tmpl
===================================================================
--- trunk/themes/default/templates/wikiforum.tmpl	2012年09月28日 16:07:01 UTC (rev 8316)
+++ trunk/themes/default/templates/wikiforum.tmpl	2012年09月28日 16:12:27 UTC (rev 8317)
@@ -1,5 +1,4 @@
-<?php // -*- php -*-
-// $Id$
+<?php
 /* 
 navigation headline: "MainForum / SubPage / ThisTopic" comes for free
 
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /