]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/templates/viewsource.tmpl
rcs_id no longer makes sense with Subversion global version number
[SourceForge/phpwiki.git] / themes / Portland / templates / viewsource.tmpl
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 ?>
4
5 <?php if ($page->get('locked') && !$user->isAdmin()) { ?>
6   <p><strong><?=_("Note:")?></strong>
7   <?=_("This page has been locked by the administrator and cannot be edited.")?></p>
8 <?php } ?>
9
10 <?php if ($revision and !$revision->isCurrent()) { ?>
11   <p><?=_("You are viewing an old revision of this page.")?>
12   <?= Button('viewsource', _("View the current version"), $page)?>.</p>
13 <?php } ?>
14
15 <!-- Dummy form else NS4 does not like the textarea -->
16 <form method="post" action="<?=$request->getPostURL()?>" accept-charset="<?=CHARSET?>">
17 <textarea class="wikiedit"
18           name="content"
19           rows="<?=$request->getPref('editHeight')?>"
20           cols="<?=$request->getPref('editWidth')?>"
21           readonly="readonly"
22           ><?= $PAGE_SOURCE ?></textarea>
23 <?= HiddenInputs($request->getArgs()) ?>
24 </form>
25 <hr />
26 <a href="<?=WikiURL($page,array('action'=>_("PageHistory")))?>"
27    ><?= $WikiTheme->getLastModifiedMessage($revision) ?></a>
28 <br />