]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/templates/viewsource.tmpl
bugfix
[SourceForge/phpwiki.git] / themes / Portland / templates / viewsource.tmpl
1 <!-- -*-html-*- -->
2 <!-- $Id: viewsource.tmpl,v 1.12 2002-02-08 16:07:21 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.")?></p>
7 <?php } ?>
8
9 <?php if (! $revision->isCurrent()) { ?>
10   <p><?=_("You are viewing an old revision of this page.")?>
11   <?= Button('viewsource', _("View the current version"), $page)?>.</p>
12 <?php } ?>
13
14 <!-- Dummy form else NS4 does not like the textarea -->
15 <form method="post" action="<?=BASE_URL?>" accept-charset="<?=CHARSET?>">
16 <!-- wrap=virtual is not HTML4, but without it NS4 does not wrap long lines -->
17 <textarea class="wikiedit"
18           name="content"
19           rows="<?=$request->getPref('editHeight')?>"
20           cols="<?=$request->getPref('editWidth')?>"
21           readonly="readonly"
22           wrap="virtual"><?= $PAGE_SOURCE ?></textarea>
23 <?php
24   $mtime = $revision->get('mtime');
25   $fmtime = $Theme->formatDateTime($mtime);
26   // Suppress object to string conversion error.
27   // Once the temporary asterisk denoting timezone conversion is removed, the @ can be removed.
28   $PageHistoryB = @Button(_("PageHistory"), $fmtime);
29
30   if ($revision->isCurrent())
31       $LastModifiedMsg = fmt("(last edited %s)", $PageHistoryB);
32   else {
33     if (istoday($mtime) || isyesterday($mtime))
34       $LastModifiedMsg = fmt("version %s, saved %s.",
35                              $revision->getVersion(), $PageHistoryB);
36     else
37       $LastModifiedMsg = fmt("version %s, saved on %s.",
38                              $revision->getVersion(), $PageHistoryB);
39 }
40 ?>
41 <?= HiddenInputs($request->getArgs()) ?>
42 </form>
43 <hr />
44 <?= $LastModifiedMsg ?><br />