at some page, browse this page, * enter the name of the page to create, then click the button. * * Usage: * @authors: Dan Frankowski, Reini Urban */ class WikiPlugin_CreatePage extends WikiPlugin { function getName() { return _("CreatePage"); } function getDescription() { return _("Create a Wiki page by the provided name."); } function getVersion() { return preg_replace("/[Revision: $]/", '', "\$Revision: 1.6 $"); } function getDefaultArguments() { return array('s' => false, 'initial_content' => '', 'template' => false, 'vars' => false, 'overwrite' => false, //'buttontext' => false, //'method' => 'POST' ); } function run($dbi, $argstr, &$request, $basepage) { extract($this->getArgs($argstr, $request)); if (!$s) return ''; // Prevent spaces at the start and end of a page name $s = trim($s); $param = array('action' => 'edit'); if ($template and $dbi->isWikiPage($template)) { $param['template'] = $template; } elseif (!empty($initial_content)) { // Warning! Potential URI overflow here on the GET redirect. Better use template. $param['initial_content'] = $initial_content; } // If the initial_content is too large, pre-save the content in the page // and redirect without that argument. // URI length limit: // http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.2.1 $url = WikiURL($s, $param, 'absurl'); if (strlen($url) > 255 or preg_match('/%\w+%/',$initial_content)) // need variable expansion { unset($param['initial_content']); $url = WikiURL($s, $param, 'absurl'); $page = $dbi->getPage($s); $current = $page->getCurrentRevision(); $version = $current->getVersion(); if ($version and !$overwrite) { return $this->error(fmt("%s already exists", WikiLink($s))); } else { $user = $request->getUser(); $meta = array('markup' => 2.0, 'author' => $user->getId()); if ($param['template'] and !$initial_content) { $tmplpage = $dbi->getPage($template); $currenttmpl = $tmplpage->getCurrentRevision(); $initial_content = $currenttmpl->getPackedContent(); $meta['markup'] = $currenttmpl->_data['markup']; } $meta['summary'] = _("Created by CreatePage"); // expand variables in $initial_content if (preg_match('/%\w+%/', $initial_content)) { $var = array(); if (!empty($vars)) { foreach (split("&",$vars) as $pair) { list($key,$val) = split("=",$pair); $var[$key] = $val; } } if (empty($var['pagename'])) $var['pagename'] = $s; if (empty($var['ctime']) and preg_match('/%ctime%/', $initial_content)) $var['ctime'] = $GLOBALS['WikiTheme']->formatDateTime(time()); if (empty($var['author']) and preg_match('/%author%/', $initial_content)) $var['author'] = $user->getId(); foreach ($var as $key => $val) { $initial_content = preg_replace("/%$key%/",$val,$initial_content); } // need to destroy the template so that editpage doesn't overwrite it. unset($param['template']); $url = WikiURL($s, $param, 'absurl'); } $page->save($initial_content, $version+1, $meta); } } return HTML($request->redirect($url, true)); } }; // $Log: not supported by cvs2svn $ // Revision 1.5 2004/07/08 20:30:07 rurban // plugin->run consistency: request as reference, added basepage. // encountered strange bug in AllPages (and the test) which destroys ->_dbi // // Revision 1.4 2004/04/21 16:14:50 zorloc // Prevent spaces at the start and end of a created page name -- submitted by Dan Frankowski (dfrankow). // // Revision 1.3 2004/03/24 19:41:04 rurban // fixed the name // // Revision 1.2 2004/03/17 15:37:41 rurban // properly support initial_content and template with URI length overflow workaround // // Revision 1.3 2004/03/16 16:25:05 dfrankow // Support initial_content parameter // // Revision 1.2 2004/03/09 16:28:45 dfrankow // Merge the RATING branch onto the main line // // Revision 1.1 2004/03/08 18:57:59 rurban // Allow WikiForm overrides, such as method => POST, targetpage => [pagename] // in the plugin definition. // New simple CreatePage plugin by dfrankow. // // Revision 1.1.2.2 2004/02/23 21:22:29 dfrankow // Add a little doc // // Revision 1.1.2.1 2004/02/21 15:29:19 dfrankow // Allow a CreatePage edit box, as GUI syntactic sugar // // Revision 1.1.1.1 2004/01/29 14:30:28 dfrankow // Right out of the 1.3.7 package // // Local Variables: // mode: php // tab-width: 8 // c-basic-offset: 4 // c-hanging-comment-ender-p: nil // indent-tabs-mode: nil // End: ?>