]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Crao/templates/editpage.tmpl
replace php vers with tags, better accessibility by using labels
[SourceForge/phpwiki.git] / themes / Crao / templates / editpage.tmpl
1 <!-- -*-html-*- -->
2 <!-- $Id: editpage.tmpl,v 1.6 2005-01-25 07:22:49 rurban Exp $ -->
3 <?php if (isset($PREVIEW_CONTENT)) { ?>
4   <p><strong><?=_("Preview only!  Changes not saved.")?></strong>
5 <!-- FIXME: it would be nice to put a link to the #editarea anchor below,
6      but it does not work currently with the <base> declared in top.tmpl.
7      I think we need to do away with using <base> altogether... -->
8      <?= fmt("Please continue editing.  (You'll find your %s at the bottom of the page.)",
9           /* HTML::a(array("href" => "#editarea"), */ _("edit area") /*)  */) ?>
10   </p>
11   <hr class="printer" noshade="noshade" />
12   <?= $PREVIEW_CONTENT ?>
13   <hr class="printer" noshade="noshade" />
14 <?php } ?>
15 <?= $PAGE_LOCKED_MESSAGE ?>
16 <?= $CONCURRENT_UPDATE_MESSAGE ?>
17 <?php if (! $IS_CURRENT) { ?>
18   <p><strong><?=_("Warning: You are editing an old revision.")?>
19         <?=_("Saving this page will overwrite the current version.")?></strong></p>
20 <?php } ?>
21 <?php /*
22  * FIXME: Hack! 
23  * The funky URL used for the form action parameter is bogus.
24  * This is needed, otherwise the redirect to the real browser
25  * page won't work with some browsers. (NS4 and Mozilla 0.97 won't accept
26  * a redirect from a page to itself.)
27  */ ?>
28 <form method="post" id="editpage" name="editpage"
29       action="<?= $request->getPostURL() ?>"
30       accept-charset="<?=CHARSET?>">
31   <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?>
32   <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?>
33   <br clear="all" class="clear-floats" />
34   <table width="100%">
35     <tr><td><?= $EDIT_TOOLBAR ?></td>
36         <td align="right"><div id="editarea-size">
37     <?=_("Size").':'?>
38     <label for="pref[editHeight]"><b><?=_("H")?></b></label> <?=$HEIGHT_PREF?> 
39     <label for="pref[editWidth]"><b><?=_("W")?></b></label> <?=$WIDTH_PREF?>
40     <noscript><?=Button("submit:", _("Adjust"), 'wikiaction')?></noscript>
41   </div></td></tr></table>
42   <fieldset class="editarea">
43   <legend><?=_("Page Content: ")?></legend>
44   <a name="editarea"></a><?=$EDIT_TEXTAREA?>
45 </fieldset>
46 <!-- FIXME: fix layout, move CSS to CSS -->
47  <fieldset class="editarea">
48 <legend><?=_("Summary").':'?></legend>
49 <br /> <?=$SUMMARY_INPUT?>
50 </fieldset>
51   <fieldset class="toolbar"> 
52     <?=$MINOR_EDIT_CB ?> <label for="edit[minor_edit]"><?=_("This is a minor change.")?></label>&nbsp;&nbsp;
53     <?=$OLD_MARKUP_CB?>  <label for="useOldMarkup"><?=_("Use old markup")?></label> <?=$OLD_MARKUP_CONVERT?>
54   </fieldset>
55   <fieldset class="toolbar">
56     <?= $PREVIEW_B ?>
57     <?php if ($SAVE_B)  { ?> 
58       <?=$SEP?><?= $SAVE_B ?>
59     <?php } ?>
60   </fieldset>
61   <fieldset class="toolbar">
62     <?=$AUTHOR_MESSAGE?>
63     <label><?= Template('signin', array('FORMNAME' => 'editpage')) ?></label>
64   </fieldset>
65 <?php if ($user->isAdmin()) { ?>
66   <fieldset class="toolbar">
67     <?= $LOCKED_CB ?> <label for="edit[lock]"><?=_("Locked")?></label>
68   </fieldset>
69 <?php } ?>
70 <hr noshade="noshade" />
71 <script language="JavaScript1.3" type="text/javascript">
72 <!--
73 function showOldMarkupRules(show) {
74   if (document.getElementById) {
75     if (!show) {
76       document.getElementById('newMarkup').style.display="block";
77       document.getElementById('oldMarkup').style.display="none";
78     } else {
79       document.getElementById('newMarkup').style.display="none";
80       document.getElementById('oldMarkup').style.display="block";
81     }
82   }
83 }
84 // -->
85 </script>
86 <div id="oldMarkup" class="wiki-edithelp">
87 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
88 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"))) ?></p>
89 <?plugin IncludePage page=_("OldTextFormattingRules") section=_("Synopsis") quiet=1?>
90 </div>
91 <div id="newMarkup" class="wiki-edithelp">
92 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
93 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"))) ?></p>
94 <?plugin IncludePage page=_("TextFormattingRules") section=_("Synopsis") quiet=1?>
95 </div>
96 <?=$HIDDEN_INPUTS?>
97 </form>
98 <script language="JavaScript1.3" type="text/javascript">
99 <!--
100 if (document.getElementById) {
101   showOldMarkupRules(document.getElementById('useOldMarkup').checked);
102 }
103 // -->
104 </script>