// // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 2 of the License, or (at // your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // http://www.gnu.org/copyleft/gpl.html // // --------------------------------------------------------------------- // // $Id: edit.tpl.php,v 1.7 2005/07/29 14:34:34 pmjones Exp $ // // ===================================================================== ?> loadTemplate('header.tpl.php') ?> Wiki Synax Guide (Opens in new Window)

Editing _($this->yawiki->area . ':' . $this->yawiki->page) ?>

You are _($this->yawiki->username) ?>; you have an edit lock on this page for the next _($this->lock_timeout) ?> minutes.

plugin('form', 'set', 'class', null); $this->plugin('form', 'set', 'float', null); $this->plugin('form', 'set', 'clear', null); $this->plugin('form', 'start'); $this->plugin('form', 'hidden', 'op', 'Preview'); // the default action $this->plugin('form', 'text', 'title', $this->title, 'Title', 'size="80" maxlength="255"'); $this->plugin('form', 'textarea', 'body', $this->body, 'Body', 'rows="24" cols="80"'); $this->plugin('form', 'text', 'note', $this->note, 'Note', 'size="80" maxlength="255"'); $this->plugin('form', 'group', 'start'); $this->plugin('form', 'submit', 'op', $this->submit['preview']); $this->plugin('form', 'submit', 'op', $this->submit['cancel']); $this->plugin('form', 'submit', 'op', $this->submit['save']); $this->plugin('form', 'group', 'end'); $this->plugin('form', 'group', 'start', 'Revert...'); $this->plugin('form', 'select', 'dt', $this->dt, null, $this->dt_options); $this->plugin('form', 'submit', 'op', $this->submit['revert']); $this->plugin('form', 'group', 'end'); $this->plugin('form', 'end'); ?>
title) != '') { echo "

"; $this->_($this->title); echo "

"; } ?> html ?> loadTemplate('footer.tpl.php') ?>