]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Wordpress/templates/editpage.tmpl
Use CSS
[SourceForge/phpwiki.git] / themes / Wordpress / templates / editpage.tmpl
1 <?php
2 /*
3  * FIXME: Hack!
4  * The funky URL used for the form action parameter is bogus.
5  * This is needed, otherwise the redirect to the real browser
6  * page won't work with some browsers. (NS4 and Mozilla 0.97 won't accept
7  * a redirect from a page to itself.)
8  */
9 ?>
10
11 <div class="wikitext" id="editform">
12 <form method="post" name="editpage" id="editpage"
13       action="<?php echo $request->getPostURL() ?>"
14       accept-charset="UTF-8">
15   <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1">'; ?>
16 <table class="toolbar fullwidth">
17 <tr align="bottom">
18   <td>
19     <?php echo $PAGE_LOCKED_MESSAGE ?>
20     <?php echo $CONCURRENT_UPDATE_MESSAGE ?>
21     <?php if (!$IS_CURRENT) { ?>
22       <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?>
23             <?php echo _("Saving this page will overwrite the current version.")?></strong></p>
24     <?php } ?>
25   </td>
26   <td>
27     <?php echo $PREVIEW_B ?>
28     <?php if ($SAVE_B) { ?>
29       <?php echo $SEP?> <?php echo $SAVE_B ?>
30     <?php } ?>
31   </td>
32 </tr>
33 </table>
34 <table class="fullwidth">
35     <tr><td><?php echo $EDIT_TOOLBAR ?></td>
36         <td align="right"><div id="editarea-size">
37     <?php echo _("Size").':'?>
38     <label for="pref-editHeight"><b><?php echo _("H")?></b></label> <?php echo $HEIGHT_PREF?> 
39     <label for="pref-editWidth"><b><?php echo _("W")?></b></label> <?php echo $WIDTH_PREF?>
40     <noscript><?php echo Button("submit:", _("Adjust"), 'wikiaction')?></noscript>
41   </div></td></tr></table>
42 </p>
43 <a id="editarea"><?php echo $EDIT_TEXTAREA?></a>
44 <br /><small>
45 <?php echo _("Summary")?>: <?php echo $SUMMARY_INPUT ?>
46 <br />
47 <?php if (ENABLE_CAPTCHA) { ?>
48   <?php echo $CAPTCHA_IMAGE ?><br/>
49   <?php echo $CAPTCHA_LABEL ?><?php echo $CAPTCHA_INPUT ?><br/>
50 <?php } ?>
51 <?php echo fmt("Author will be logged as %s.", HTML::em($user->getId())) ?>
52 <br />
53 <?php echo $MINOR_EDIT_CB ?>
54   <label for="edit-minor_edit">
55   <?php echo fmt("I'm just doing minor edits. Please divert the usual logging to %s instead.",
56         WikiLink(_("RecentEdits"))) ?></label>
57 <br />
58 <?php echo $OLD_MARKUP_CB?> <label for="useOldMarkup"><?php echo _("Use old markup")?> </label> <?php echo $OLD_MARKUP_CONVERT?> 
59   <?php if ($user->isAdmin()) { ?> 
60     <?php echo $SEP?><?php echo $LOCKED_CB ?> <label for="edit-locked"><?php echo _("Locked")?></label>
61    <?php } ?>
62 </small>
63 <br />
64 <?php if (isset($PREVIEW_CONTENT)) { ?>
65   <hr />
66   <p><strong><?php echo _("Preview only!  Changes not saved.")?></strong></p>
67   <?php echo $PREVIEW_CONTENT ?>
68   <hr />
69 <?php } ?>
70
71 <script type="text/javascript">
72 <!--
73 function showOldMarkupRules(show) {
74   if (document.getElementById) {
75     if (!show) {
76       document.getElementById('newMarkup').style.display="block";
77       document.getElementById('oldMarkup').style.display="none";
78     } else {
79       document.getElementById('newMarkup').style.display="none";
80       document.getElementById('oldMarkup').style.display="block";
81     }
82   }
83 }
84 // -->
85 </script>
86
87 <div id="oldMarkup" class="wiki-edithelp">
88 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
89 <p><?php echo fmt("See %s tips for editing.", WikiLink(_("Help")."/"._("GoodStyle"))) ?></p>
90 <?plugin IncludePage page=_("Help")."/"._("OldTextFormattingRules") section=_("Synopsis") quiet=1?>
91 </div>
92 <div id="newMarkup" class="wiki-edithelp">
93 <!-- FIXME: do we need this at all?  If so, it could probably be moved to TextFormattingRules -->
94 <p><?php echo fmt("See %s tips for editing.", WikiLink(_("Help")."/"._("GoodStyle"))) ?></p>
95 <?plugin IncludePage page=_("Help")."/"._("TextFormattingRules") section=_("Synopsis") quiet=1?>
96 </div>
97 <?php echo $HIDDEN_INPUTS?>
98 </form>
99 </div>
100
101 <script type="text/javascript">
102 <!--
103 if (document.getElementById) {
104   showOldMarkupRules(document.getElementById('useOldMarkup').checked);
105 }
106 // -->
107 </script>
108
109 <hr />