]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/MonoBook/templates/viewsource.tmpl
Change old Sidebar theme to new MonoBook-based layout
[SourceForge/phpwiki.git] / themes / MonoBook / templates / viewsource.tmpl
1 <?php // -*-html-*- ?>
2 <!-- $Id: viewsource.tmpl,v 1.25 2007/01/02 13:29:14 rurban Exp $ -->
3
4 <?php if ($page->get('locked') && !$user->isAdmin()) { ?>
5   <p><strong><?=_("Note:")?></strong>
6   <?=_("This page has been locked by the administrator and cannot be edited.")?>
7   </p>
8   <?php } ?>
9 <?php if ($revision and !$revision->isCurrent()) { ?>
10   <p><?=_("You are viewing an old revision of this page.")?>
11   <?= Button('edit', _("View the current version"), $page) ?>.
12   </p>
13   <?php } ?>
14 <!-- Dummy form else NS4 does not like the textarea -->
15 <form method="post" action="<?=$request->getPostURL()?>" accept-charset="<?=CHARSET?>">
16 <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?>
17 <br clear="all" class="clear-floats" />
18 <!-- wrap=virtual is not HTML4, but without it NS4 does not wrap long lines -->
19 <textarea class="wikiedit"
20 name="content"
21 rows="<?=$request->getPref('editHeight')?>"
22 cols="<?=$request->getPref('editWidth')?>"
23 readonly="readonly"
24 wrap="virtual"><?= $PAGE_SOURCE ?></textarea>
25 <?=$HIDDEN_INPUTS?>
26 </form>