]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/editpage.tmpl
New class .numeric for right-aligning numeric text input.
[SourceForge/phpwiki.git] / themes / default / templates / editpage.tmpl
1 <!-- -*-html-*- -->
2 <!-- $Id: editpage.tmpl,v 1.22 2002-02-08 23:04:13 carstenklapp 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
21 $s = $Theme->getButtonSeparator();
22 ?>
23
24 <?php if (isset($PREVIEW_CONTENT)) { ?>
25   <p><strong><?=_("Preview only!  Changes not saved.")?></strong>
26 <!-- FIXME: it would be nice to put a link to the #editarea anchor below,
27      but it does not work currently with the <base> declared in top.tmpl.
28      I think we need to do away with using <base> altogether... -->
29      Please continue editing.  (You'll find your <!--a href="#editarea"-->edit area<!--/a--> at the bottom of the page.)
30   </p>
31   <div class="wikitext"><?= $PREVIEW_CONTENT ?></div>
32 <?php } ?>
33
34 <?= $PAGE_LOCKED_MESSAGE ?>
35 <?= $CONCURRENT_UPDATE_MESSAGE ?>
36
37 <?php if (! $IS_CURRENT) { ?>
38   <p><strong><?=_("Warning: You are editing an old revision.")?>
39         <?=_("Saving this page will overwrite the current version.")?></strong></p>
40   <hr class="ignore" noshade="noshade" />
41 <?php } ?>
42
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" name="editpage"
56       action="<?=WikiURL($page,array('action'=>'edit'))?>"
57       accept-charset="<?=CHARSET?>">
58   <!-- FIXME: fix layout, move CSS to CSS -->
59   <div style="text-align: right; vertical-align: top;">
60     <small><?=_("Edit Area Size:")?> <b><?=_("H")?></b></small>
61     <?=$HeightI?>
62     <small><b><?=_("W")?></b></small>
63     <?=$WidthI?>
64     <noscript><?=Button("submit:", _("Adjust"))?></noscript>
65   </div>
66
67   <a name="editarea" id="editarea"><?=$EDIT_TEXTAREA?></a>
68
69 <!-- FIXME: fix layout, move CSS to CSS -->
70 <div class="toolbar" style="text-align: center;">
71   <?=_("Summary:")?> <?=$SUMMARY_INPUT?>
72 </div>
73 <table summary="Toolbar: Page editing options." class="toolbar" width="100%"
74        cellpadding="0" cellspacing="0" border="0">
75 <tr valign="middle">
76   <td> 
77     <?=$MINOR_EDIT_CB ?> <?=_("This is a minor change.")?><br />
78     <?=$NEW_MARKUP_CB?>  <?=_("Use new markup")?>
79   </td>
80   <td align="center">
81     <?= $PREVIEW_B ?>
82     <?php if ($SAVE_B)  { ?> 
83       <?=$s?><?= $SAVE_B ?>
84     <?php } ?>
85   </td>
86   <td align="right">
87     <?= $user->isSignedIn()
88         ? ''
89         : fmt("Author will be logged as %s.", HTML::em($user->getId())) ?>
90     <?= Template('signin', array('FORMNAME' => 'editpage')) ?>
91   </td>
92 </tr>
93 <?php if ($user->isadmin()) { ?>
94   <tr>
95     <td><?= $LOCKED_CB ?> <?=_("Locked")?></td>
96   </tr>
97 <?php } ?>
98 </table>
99
100 <hr noshade="noshade" />
101
102 <div class="wiki-edithelp">
103 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
104 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"), "button")) ?></p>
105 <?plugin IncludePage page=_("TextFormattingRules") section=_("Synopsis") quiet=1?>
106 </div>
107 <?=$HIDDEN_INPUTS?>
108 </form>