]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/viewsource.tmpl
css class and id adjustments
[SourceForge/phpwiki.git] / themes / default / templates / viewsource.tmpl
1 <?php // -*-html-*- ?>
2 <!-- $Id: viewsource.tmpl,v 1.19 2002-02-12 07:13:34 carstenklapp 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->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="<?=BASE_URL?>" accept-charset="<?=CHARSET?>">
16 <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?>
17 <br clear="both" />
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
26 <div id="actionbar" class="toolbar">
27 <hr class="printer" noshade="noshade" />
28 <p class="editdate"><?= $Theme->getLastModifiedMessage($revision) ?></p>
29 <hr class="toolbar" noshade="noshade" />
30 <?= Template('actionbar') ?>
31 <!-- RELATEDPAGES were here. -->
32 </div>
33 <?= HiddenInputs($request->getArgs()) ?>
34 </form>