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