]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/templates/editpage.tmpl
fixed PageChange Notification
[SourceForge/phpwiki.git] / themes / default / templates / editpage.tmpl
1 <!-- -*-html-*- -->
2 <!-- $Id: editpage.tmpl,v 1.40 2004-04-08 01:22:54 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   <div id="editarea-size">
62   <?php if (isset($JS_SEARCHREPLACE)) { ?>
63   <span id="search-replace">
64     <?php /*TODO: use image icons here instead of text */ ?>
65     <input class="gridbutton" name="rck" type="button" value="(<?= _("Undo") ?>)" onfocus="if(this.blur && pretxt_anzahl==0) this.blur()" onclick="rueck()"><input class="gridbutton" type="button" value="<?= _("Redo") ?>" onclick="speich()">
66     <input type="button" class="gridbutton" value="<?=_("Search & Replace")?>" onclick="replace()">
67   </span>
68   <?php } ?>
69     <?=_("Edit Area Size:")?>
70     <b><?=_("H")?></b> <?=$HeightI?>
71     <b><?=_("W")?></b> <?=$WidthI?>
72     <noscript><?=Button("submit:", _("Adjust"), 'wikiaction')?></noscript>
73   </div>
74   <a name="editarea" id="editarea"><?=$EDIT_TEXTAREA?></a>
75
76 <!-- FIXME: fix layout, move CSS to CSS -->
77 <div class="toolbar" style="text-align: center;">
78   <?=_("Summary:")?> <?=$SUMMARY_INPUT?>
79 </div>
80 <table summary="Toolbar: Page editing options." class="toolbar" width="100%"
81        cellpadding="0" cellspacing="0" border="0">
82 <tr valign="middle">
83   <td> 
84     <?=$MINOR_EDIT_CB ?> <?=_("This is a minor change.")?><br />
85     <?=$OLD_MARKUP_CB?>  <?=_("Use old markup")?>
86   </td>
87   <td align="center">
88     <?= $PREVIEW_B ?>
89     <?php if ($SAVE_B)  { ?> 
90       <?=$s?><?= $SAVE_B ?>
91     <?php } ?>
92   </td>
93   <td align="right">
94     <?= $user->isSignedIn()
95         ? ''
96         : fmt("Author will be logged as %s.", HTML::em($user->getId())) ?>
97     <?= Template('signin', array('FORMNAME' => 'editpage')) ?>
98   </td>
99 </tr>
100 <?php if ($user->isadmin()) { ?>
101   <tr>
102     <td><?= $LOCKED_CB ?> <?=_("Locked")?></td>
103   </tr>
104 <?php } ?>
105 </table>
106
107 <hr noshade="noshade" />
108
109 <script language="JavaScript1.3" type="text/javascript">
110 <!--
111 function showOldMarkupRules(show) {
112   if (document.getElementById) {
113     if (!show) {
114       document.getElementById('newMarkup').style.display="block";
115       document.getElementById('oldMarkup').style.display="none";
116     } else {
117       document.getElementById('newMarkup').style.display="none";
118       document.getElementById('oldMarkup').style.display="block";
119     }
120   }
121 }
122 // -->
123 </script>
124
125 <div id="oldMarkup" class="wiki-edithelp">
126 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
127 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"))) ?></p>
128 <?plugin IncludePage page=_("OldTextFormattingRules") section=_("Synopsis") quiet=1?>
129 </div>
130 <div id="newMarkup" class="wiki-edithelp">
131 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
132 <p><?= fmt("See %s tips for editing.", WikiLink(_("GoodStyle"))) ?></p>
133 <?plugin IncludePage page=_("TextFormattingRules") section=_("Synopsis") quiet=1?>
134 </div>
135 <?=$HIDDEN_INPUTS?>
136 </form>
137
138 <script language="JavaScript1.3" type="text/javascript">
139 <!--
140 if (document.getElementById) {
141   showOldMarkupRules(document.getElementById('useOldMarkup').checked);
142 }
143 // -->
144 </script>