]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/editpage.tmpl
moved formatting of editarea size controls to css
[SourceForge/phpwiki.git] / themes / default / templates / editpage.tmpl
1 <!-- -*-html-*- -->
2 <!-- $Id: editpage.tmpl,v 1.23 2002-02-09 23:53:58 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   <div id="editarea-size">
59     <?=_("Edit Area Size:")?>
60     <b><?=_("H")?></b> <?=$HeightI?>
61     <b><?=_("W")?></b> <?=$WidthI?>
62     <noscript><?=Button("submit:", _("Adjust"))?></noscript>
63   </div>
64
65   <a name="editarea" id="editarea"><?=$EDIT_TEXTAREA?></a>
66
67 <!-- FIXME: fix layout, move CSS to CSS -->
68 <div class="toolbar" style="text-align: center;">
69   <?=_("Summary:")?> <?=$SUMMARY_INPUT?>
70 </div>
71 <table summary="Toolbar: Page editing options." class="toolbar" width="100%"
72        cellpadding="0" cellspacing="0" border="0">
73 <tr valign="middle">
74   <td> 
75     <?=$MINOR_EDIT_CB ?> <?=_("This is a minor change.")?><br />
76     <?=$NEW_MARKUP_CB?>  <?=_("Use new markup")?>
77   </td>
78   <td align="center">
79     <?= $PREVIEW_B ?>
80     <?php if ($SAVE_B)  { ?> 
81       <?=$s?><?= $SAVE_B ?>
82     <?php } ?>
83   </td>
84   <td align="right">
85     <?= $user->isSignedIn()
86         ? ''
87         : fmt("Author will be logged as %s.", HTML::em($user->getId())) ?>
88     <?= Template('signin', array('FORMNAME' => 'editpage')) ?>
89   </td>
90 </tr>
91 <?php if ($user->isadmin()) { ?>
92   <tr>
93     <td><?= $LOCKED_CB ?> <?=_("Locked")?></td>
94   </tr>
95 <?php } ?>
96 </table>
97
98 <hr noshade="noshade" />
99
100 <div class="wiki-edithelp">
101 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
102 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"), "button")) ?></p>
103 <?plugin IncludePage page=_("TextFormattingRules") section=_("Synopsis") quiet=1?>
104 </div>
105 <?=$HIDDEN_INPUTS?>
106 </form>