0byt3m1n1
Path:
/
data
/
applications
/
aps
/
phpwiki
/
1.3.14-6
/
standard
/
htdocs
/
themes
/
Wordpress
/
templates
/
[
Home
]
File: editpage.tmpl
<!-- -*-html-*- --> <!-- $Id: editpage.tmpl,v 1.7 2007/01/07 18:42:10 rurban Exp $ --> <?php /* * FIXME: Hack! * The funky URL used for the form action parameter is bogus. * This is needed, otherwise the redirect to the real browser * page won't work with some browsers. (NS4 and Mozilla 0.97 won't accept * a redirect from a page to itself.) */ ?> <div class="wikitext" id="editform"> <form method="post" name="editpage" id="editpage" action="<?= $request->getPostURL() ?>" accept-charset="<?=CHARSET?>"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <table summary="Toolbar: Save, Preview, and edit warnings." class="toolbar" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr align="bottom"> <td> <?= $PAGE_LOCKED_MESSAGE ?> <?= $CONCURRENT_UPDATE_MESSAGE ?> <?php if (!$IS_CURRENT) { ?> <p><strong><?=_("Warning: You are editing an old revision.")?> <?=_("Saving this page will overwrite the current version.")?></strong></p> <?php } ?> </td> <td> <?= $PREVIEW_B ?> <?php if ($SAVE_B) { ?> <?=$SEP?> <?= $SAVE_B ?> <?php } ?> </td> </tr> </table> <table width="100%"> <tr><td><?= $EDIT_TOOLBAR ?></td> <td align="right"><div id="editarea-size"> <?=_("Size").':'?> <label for="pref-editHeight"><b><?=_("H")?></b></label> <?=$HEIGHT_PREF?> <label for="pref-editWidth"><b><?=_("W")?></b></label> <?=$WIDTH_PREF?> <noscript><?=Button("submit:", _("Adjust"), 'wikiaction')?></noscript> </div></td></tr></table> </p> <a name="editarea" id="editarea"><?=$EDIT_TEXTAREA?></a> <br /><small> <?=_("Summary")?>: <?= $SUMMARY_INPUT ?> <br /> <?php if (ENABLE_CAPTCHA) { ?> <?php echo $CAPTCHA_IMAGE ?><br/> <?php echo $CAPTCHA_LABEL ?><?= $CAPTCHA_INPUT ?><br/> <?php } ?> <?= fmt("Author will be logged as %s.", HTML::em($user->getId())) ?> <br /> <?= $MINOR_EDIT_CB ?> <label for="edit-minor_edit"> <?= fmt("I'm just doing minor edits. Please divert the usual logging to %s instead.", WikiLink(_("RecentEdits"))) ?></label> <br /> <?=$OLD_MARKUP_CB?> <label for="useOldMarkup"><?=_("Use old markup")?> </label> <?=$OLD_MARKUP_CONVERT?> <?php if ($user->isAdmin()) { ?> <?=$SEP?><?= $LOCKED_CB ?> <label for="edit-locked"><?=_("Locked")?></label> <?php } ?> </small> <br /> <?php if (isset($PREVIEW_CONTENT)) { ?> <hr /> <p><strong><?=_("Preview only! Changes not saved.")?></strong></p> <?= $PREVIEW_CONTENT ?> <hr /> <?php } ?> <script language="JavaScript1.3" type="text/javascript"> <!-- function showOldMarkupRules(show) { if (document.getElementById) { if (!show) { document.getElementById('newMarkup').style.display="block"; document.getElementById('oldMarkup').style.display="none"; } else { document.getElementById('newMarkup').style.display="none"; document.getElementById('oldMarkup').style.display="block"; } } } // --> </script> <div id="oldMarkup" class="wiki-edithelp"> <!-- FIXME: do we need this at all? If so, it could probably be moved to TextFormattingRules --> <p><?= fmt("See %s tips for editing.", WikiLink(_("Help/GoodStyle"))) ?></p> <?plugin IncludePage page=_("Help/OldTextFormattingRules") section=_("Synopsis") quiet=1?> </div> <div id="newMarkup" class="wiki-edithelp"> <!-- FIXME: do we need this at all? If so, it could probably be moved to TextFormattingRules --> <p><?= fmt("See %s tips for editing.", WikiLink(_("Help/GoodStyle"))) ?></p> <?plugin IncludePage page=_("Help/TextFormattingRules") section=_("Synopsis") quiet=1?> </div> <?=$HIDDEN_INPUTS?> </form> </div> <script language="JavaScript1.3" type="text/javascript"> <!-- if (document.getElementById) { showOldMarkupRules(document.getElementById('useOldMarkup').checked); } // --> </script> <hr />