]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/editpage.tmpl
shorten size msg
[SourceForge/phpwiki.git] / themes / default / templates / editpage.tmpl
1 <!-- -*-html-*- -->
2 <!-- $Id: editpage.tmpl,v 1.46 2004-06-03 11:34:20 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  * <textarea wrap="virtual"> is not valid xhtml but Netscape 4 requires it
51  * to wrap long lines.
52  *
53  */ ?>
54
55 <form method="post" id="editpage" name="editpage"
56       action="<?= $request->getPostURL() ?>"
57       accept-charset="<?=CHARSET?>">
58   <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?>
59   <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?>
60   <br clear="all" class="clear-floats" />
61   <table width="100%">
62     <tr><td><?= $EDIT_TOOLBAR ?></td>
63         <td align="right"><div id="editarea-size">
64     <?=_("Size").':'?>
65     <b><?=_("H")?></b> <?=$HeightI?>
66     <b><?=_("W")?></b> <?=$WidthI?>
67     <noscript><?=Button("submit:", _("Adjust"), 'wikiaction')?></noscript>
68   </div></td></tr></table>
69   <a name="editarea"></a><?=$EDIT_TEXTAREA?>
70 <!-- FIXME: fix layout, move CSS to CSS -->
71 <div class="toolbar" style="text-align: center;">
72   <?=_("Summary").':'?> <?=$SUMMARY_INPUT?>
73 </div>
74 <table summary="Toolbar: Page editing options." class="toolbar" width="100%"
75        cellpadding="0" cellspacing="0" border="0">
76 <tr valign="middle">
77   <td> 
78     <?=$MINOR_EDIT_CB ?> <?=_("This is a minor change.")?><br />
79     <?=$OLD_MARKUP_CB?>  <?=_("Use old markup")?>
80   </td>
81   <td align="center">
82     <?= $PREVIEW_B ?>
83     <?php if ($SAVE_B)  { ?> 
84       <?=$s?><?= $SAVE_B ?>
85     <?php } ?>
86   </td>
87   <td align="right">
88     <?= $user->isSignedIn()
89         ? ''
90         : fmt("Author will be logged as %s.", HTML::em($user->getId())) ?>
91     <?= Template('signin', array('FORMNAME' => 'editpage')) ?>
92   </td>
93 </tr>
94 <?php if ($user->isadmin()) { ?>
95   <tr>
96     <td><?= $LOCKED_CB ?> <?=_("Locked")?></td>
97   </tr>
98 <?php } ?>
99 </table>
100
101 <hr noshade="noshade" />
102
103 <script language="JavaScript1.3" type="text/javascript">
104 <!--
105 function showOldMarkupRules(show) {
106   if (document.getElementById) {
107     if (!show) {
108       document.getElementById('newMarkup').style.display="block";
109       document.getElementById('oldMarkup').style.display="none";
110     } else {
111       document.getElementById('newMarkup').style.display="none";
112       document.getElementById('oldMarkup').style.display="block";
113     }
114   }
115 }
116 // -->
117 </script>
118
119 <div id="oldMarkup" 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=_("OldTextFormattingRules") section=_("Synopsis") quiet=1?>
123 </div>
124 <div id="newMarkup" class="wiki-edithelp">
125 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
126 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"))) ?></p>
127 <?plugin IncludePage page=_("TextFormattingRules") section=_("Synopsis") quiet=1?>
128 </div>
129 <?=$HIDDEN_INPUTS?>
130 </form>
131
132 <script language="JavaScript1.3" type="text/javascript">
133 <!--
134 if (document.getElementById) {
135   showOldMarkupRules(document.getElementById('useOldMarkup').checked);
136 }
137 // -->
138 </script>