'editfck', 'Width' => '100%', 'Height' => '400', 'BaseImagePath' => 'http://'.$_SERVER[HTTP_HOST], 'BasePath' =>'/wiki/pub/fckeditor/FCKeditor/', 'UserFilesPath' => '/wiki/uploads/', 'ToolBar'=> 'PmWiki', 'EditorAreaCSS' => '/wiki/pub/fckeditor/pm_fckstyles.css', 'StylesXmlPath' => '/wiki/pub/fckeditor/pm_fckstyles.xml', 'CustomConfigurationsPath' => '/wiki/pub/fckeditor/pm_fckconfig.js', 'TextTranslation' => array(summary => 'Summary:', author => 'Author:', minor => 'This is a minor edit', editfck => "WysIsWyg Edit") )); SDVA($HandleActions,array($PmFCK['EditFckAction'] => 'HandleEditFck')); SDVA($HandleAuth,array($PmFCK['EditFckAction'] => 'edit')); SDVA($MarkupToDisable, array(count($MarkupToDisable) =>'if', 'redirect', 'include', 'nogroupfooter', 'nogroupheader', 'groupheader', 'groupfooter', 'noright', 'noleft', 'notitle', 'nofooter', 'noaction', 'spacewikiwords', 'messages', 'linebreaks', 'linkwikiwords', 'noheader', 'varindex', 'pagelist', 'searchresults', 'input', 'comment', 'title')); function HandleEditFck($pagename, $auth = 'edit') { global $IsPagePosted, $EditFields, $ChangeSummary, $EditFunctions, $EnablePost, $EnablePostAuthorRequired, $FmtV, $Now, $EditRedirectFmt, $Author, $PageEditForm, $HandleEditFmt, $PageStartFmt, $PageEditFmt, $PageEndFmt,$PmFCK,$MarkupToDisable,$MarkupTable,$MarkupRules,$MessagesFmt; SDV($EditRedirectFmt, '$FullName'); if (@$_POST['cancel']) { Redirect(FmtPageName($EditRedirectFmt, $pagename)); return; } Lock(2); $IsPagePosted = false; $page = RetrieveAuthPage($pagename, $auth, true); if (!$page) Abort("?cannot edit $pagename"); PCache($pagename,$page); $new = $page; if (isset($_POST['FCKeditor1'])) $new['text']=HTMLToMarkups($pagename,str_replace("\r",'',stripmagic($_POST['FCKeditor1']))); $new['csum'] = $ChangeSummary; if ($ChangeSummary) $new["csum:$Now"] = $ChangeSummary; $EnablePost &= preg_grep('/^post/', array_keys(@$_POST)); // $Editfunctions if (IsEnabled($EnablePostAuthorRequired,0)) { RequireAuthor($pagename, $page, $new); } SaveAttributes($pagename,$page,$new); PostPage($pagename,$page,$new); PostRecentChanges($pagename,$page,$new); Lock(0); if ($IsPagePosted && !@$_POST['postedit']) { Redirect(FmtPageName($EditRedirectFmt, $pagename)); return; } $FmtV['$DiffClassMinor'] = (@$_POST['diffclass']=='minor') ? "checked='checked'" : ''; $FmtV['$EditText'] = str_replace('$','$',htmlspecialchars(@$new['text'],ENT_NOQUOTES)); $FmtV['$EditBaseTime'] = $Now; /* if (@$PageEditForm) { $form = ReadPage(FmtPageName($PageEditForm, $pagename), READPAGE_CURRENT); // $FmtV['$EditForm'] = MarkupToHTML($pagename, $form['text']); }*/ // Config $oFCKeditor = new FCKeditor('FCKeditor1'); $oFCKeditor->Config['EditorAreaCSS'] = $PmFCK['EditorAreaCSS']; $oFCKeditor->Config['StylesXmlPath'] = $PmFCK['StylesXmlPath']; $oFCKeditor->Config['CustomConfigurationsPath'] = $PmFCK['CustomConfigurationsPath']; $oFCKeditor->BasePath = $PmFCK['BasePath']; $oFCKeditor->Width = $PmFCK['Width']; $oFCKeditor->Height = $PmFCK['Height'] ; $oFCKeditor->Config['ToolBar'] = $PmFCK['ToolBar']; $TmpMarkupTable=$MarkupTable; // Disable selected markups during the conversion $TmpMarkupRules=$MarkupRules; DisableMarkup($MarkupToDisable); $html= MarkupToHTML($pagename,$new['text']); // Convert Wiki Markups to normal HTML, using the standard fonction $html = preg_replace("/]*)><\/div>/i", "",$html); // Remove some stuff that causes problem when translating from HTML to Wiki after the edit $html = preg_replace("/]*)><\/p>/i", "",$html); $MarkupTable=$TmpMarkupTable; // Restore the markups for the page to be properly displayed $MarkupRules=$TmpMarkupRules; $oFCKeditor->Value = $html; $PageEditFmt= "

$[Editing {\$FullName}]

".$MessagesFmt[0]." ".$oFCKeditor->CreateHtml(). "
".$PmFCK['TextTranslation']['summary']."
".$PmFCK['TextTranslation']['author']." ".$PmFCK['TextTranslation']['minor']."
"; SDV($HandleEditFmt, array(&$PageStartFmt, &$PageEditFmt , &$PageEndFmt)); PrintFmt($pagename, $HandleEditFmt); // } function HTMLToMarkups($pagename,$html) { global $HTML_Markups,$ScriptUrl; // Delete all the \r\n ibetween markups to avoid problem when converting table markups // This has to be done before replacement of non-block markups, which mays produces compulsory \r\n inside a cell for example $html = preg_replace_callback("/([ ]*<[\/]{0,1}(table|thead|tbody|tr|th|td){1}[^>]*>[\r\n]*)/i", "LinesBreaksRemove" ,$html ); // Replacement of all non-block markups foreach ($HTML_Markups as $markup => $attributes) { if (isset($attributes['alias'])) $attributes=$HTML_Markups[$attributes['alias']]; if (@$attributes['type'] == 'single') $html = preg_replace("/<$markup([^>]*)>/i", @$attributes['start'], $html); if (@$attributes['type'] == 'noattr') $html = preg_replace("/<$markup([^>]*)>(.*?)<\/$markup>/i", @$attributes['start']."$2".@$attributes['end'], $html); if (@$attributes['type'] == 'attr') { preg_match_all("/<$markup(([ ]*[a-zA-Z]+=[\"'](.*?)[\"'])*?)[ ]*>(.*?)<\/$markup>/i", $html , $matches); // [ ]?([a-zA-Z]+='(.+?)') $strmatch = $matches[0]; $markup_attr = $matches[1]; $markup_txt = $matches[4]; $i=0; while ($i]+?)[\"']/",$markup_attr[$i],$attr_match); list($tmp,$markup_listattr,$markup_listparam)=$attr_match; $j=0; $attrisset=0; while ($j markup - nothing else !! { preg_match_all("/(.*?)<\/a>/i", $html , $matches); // [ ]?([a-zA-Z]+='(.+?)') $strmatch = $matches[0]; $markup_attr = $matches[1]; $markup_txt = $matches[4]; $i=0; while ($i]+?)[\"|']/",$markup_attr[$i],$attr_match); list($tmp,$markup_listattr,$markup_listparam)=$attr_match; $j=0; while ($j local link eregi("[a-z]+[/\.]{1}[a-z]+$",$linkparam['href'],$page); // Check if the link as a text description or if it's just the pagename if ($page[0]==trim($markup_txt[$i])) $wikilink=$attributes['normal']['start'].$page[0].$attributes['normal']['end']; else $wikilink=$attributes['normal']['start'].$page[0].$attributes['normal']['middle'].$markup_txt[$i].$attributes['normal']['end']; // Normal Url } else $wikilink=$attributes['normal']['start'].$linkparam['href'].$attributes['normal']['middle'].$markup_txt[$i].$attributes['normal']['end']; // Normal Url } else if (isset($linkparam['name']) || isset($linkparam['id'])) { // Anchor $linkparam['name'] = ($linkparam['name']!='') ? $linkparam['name']:$linkparam['id']; if (trim($markup_txt[$i])!="") $wikilink = $attributes['anchor']['middle'] . $markup_txt[$i]; $wikilink = $attributes['anchor']['start'].$linkparam['name'].$wikilink.$attributes['anchor']['end']; } else { /* Unknow ? - do nothing */ } if (@$linkparam['target']=='_blank') $wikilink = @$attributes['newwin']['start']. $wikilink . @$attributes['newwin']['end']; $html=str_replace($strmatch[$i],$wikilink,$html); $i++; } } // End of "if (@$attributes['type'] == 'link')" } // List markups $html = preg_replace_callback("/([ ]*<[\/]{0,1}(ul|ol|li){1}>?)/i", "ListMarkupReplace" ,$html ); // Table markups $html = preg_replace_callback("/[ ]*<([\/]{0,1})(table|tr|th|td)([^>]*)>/i", "TableMarkupReplace" ,$html ); // Img markups $html = preg_replace_callback("/[ ]*]*)>/i", "ImgMarkupReplace" ,$html ); // Avoid space to become too present $html = str_replace(" ", " ",$html); // Remove non recognized markups $html = strip_tags ($html); return $html; } SDV($ListDepth,0); SDV($BulletType,''); function ListMarkupReplace($matches) { global $ListDepth,$BulletType; $ret_html=''; $ListBullets = array( 'ul' => '*', 'ol' => '#', 'dl' => ':'); switch (trim($matches[0])){ case "
  • ": $ret_html=str_repeat($BulletType, $ListDepth); break; case "
  • ": $ret_html=""; break; case "
      ": $ListDepth++; $BulletType = $ListBullets['ul']; break; case "
        ": $ListDepth++; $BulletType = $ListBullets['ol']; break; case "
        ": $ListDepth++; $BulletType = $ListBullets['dl']; break; case "
    ": $ListDepth--; break; case "": $ListDepth--; break; case "": $ListDepth--; break; } return $ret_html; } SDV($NewLineCreated,0); // Set to 1 if a
    has just been matched, to display a (:cellnr:) instead of a (:cellr:) function TableMarkupReplace($matches) { global $HTML_Markups,$NewLineCreated; $ret_html=''; $opclose=$matches[1]; $markup=$matches[2]; $params=$matches[3]; if (trim($params)!="" && $opclose != "/") { preg_match_all("/([a-zA-Z]+?)=[\"|']([^\"'>]+?)[\"|']/",$params,$attr_match); $i=0; while ($i$attr_val) { if (in_array($attr_name,$HTML_Markups[$markup]['autorizedparam'])) $wikiparam.=" $attr_name=$attr_val"; } } else $wikiparam=""; if ($opclose=="") { switch ($markup) { case "table": $ret_html="(:table$wikiparam:)\r\n"; break; case "tr": $NewLineCreated=1; break; case "th": $ret_html= ($NewLineCreated==1) ? "(:cellnr$wikiparam:)" : "(:cell$wikiparam:)"; $NewLineCreated=0; break; case "td": $ret_html= ($NewLineCreated==1) ? "(:cellnr$wikiparam:)" : "(:cell$wikiparam:)"; $NewLineCreated=0; break; } } else { switch ($markup) { case "table": $ret_html="(:tableend:)\r\n"; break; case "th": $ret_html="\r\n"; break; case "td": $ret_html="\r\n"; break; } } return $ret_html; } function ImgMarkupReplace($matches) { global $HTML_Markups,$PmFCK; $ret_html=''; preg_match_all("/([a-zA-Z]+?)=[\"|']([^\"'>]+?)[\"|']/",$matches[1],$attr_match); $i=0; while ($i$attr_val) { if (in_array($attr_name,$HTML_Markups['img']['autorizedparam'])) $wikiparam.=" $attr_name=$attr_val"; } $wikialt = ($listattr['alt']!='') ? "\"$listattr[alt]\"":''; $wikiparam=trim($wikiparam); $ret_html="%$wikiparam%$wikisrc$wikialt"; } return $ret_html; } function LinesBreaksRemove($matches) { return str_replace("\r\n","",trim($matches[0])); } /* $HTML_Markups : type attribute - noattr : direct replacement - the markup doesn't have significant attributes - attr : replacement may change depending of markup attributes (ex class, style) - single : it's a single markup. There isn't an openning markup and a closing one with some stuff between */ $HTML_Markups = array( 'b' => array( 'start' => "'''", 'end' => "'''" , 'type' => 'noattr'), 'strong' => array( 'alias' => 'b' ), 'i' => array( 'start' => "''", 'end' => "''", 'type' => 'noattr' ), 'em' => array( 'alias' => 'i' ), 'tt' => array( 'start' => '@@', 'end' => '@@', 'type' => 'noattr' ), 'code' => array( 'alias' => 'tt' ), 'small' => array( 'start' => "'+", 'end' => "+'", 'type' => 'noattr' ), 'big' => array( 'start' => "'-", 'end' => "-'", 'type' => 'noattr' ), 'sup' => array( 'start' => "'^", 'end' => "^'", 'type' => 'noattr' ), 'sub' => array( 'start' => "'_", 'end' => "_'", 'type' => 'noattr' ), 'ins' => array( 'start' => '{+', 'end' => '+}', 'type' => 'noattr' ), 'u' => array( 'alias' => 'ins'), 'del' => array( 'start' => '{-', 'end' => '-}', 'type' => 'noattr' ), 'strike' => array( 'alias' => 'del'), 'p' => array( 'type' => 'attr', 'attr_class' => array( 'vspace' => array ('start' => "", 'end' => "\r\n\r\n"), 'default' => array ('start' => '%p class=$param%', 'end' => "%%\r\n\r\n")), 'attr_align' => array( 'justify' => array ('start' => "%block text-align=justify%", 'end' => "%%\r\n\r\n"), 'center' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'right' => array ('start' => "%block text-align=right%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'attr_style' => array ('text-align: center;' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'no_attr_def' => array( 'start' => "", 'end' => "\r\n\r\n")), 'div' => array( 'type' => 'attr', 'attr_class' => array( 'vspace' => array ('start' => "", 'end' => "\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'attr_align' => array( 'justify' => array ('start' => "%block text-align=justify%", 'end' => "%%\r\n\r\n"), 'center' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'right' => array ('start' => "%block text-align=right%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'no_attr_def' => array( 'start' => "", 'end' => "\r\n\r\n")), 'span' => array( 'type' => 'attr', 'attr_class' => array( 'wikiword' => array ('start' => "", 'end' => ""), 'default' => array ('start' => '%class=$param%', 'end' => "%%")), 'attr_style' => array( 'font-size: 144%;' => array ('start' => "[++", 'end' => "++]"), // Need to translate the 'font-size: 120%;' => array ('start' => "[+", 'end' => "+]"), // size markups of PmWiki 'font-size: 83%;' => array ('start' => "[-", 'end' => "-]"), // 'font-size: 69%;' => array ('start' => "[--", 'end' => "--]"), // 'default' => array ('start' => "", 'end' => "")), 'no_attr_def' => array( 'start' => "", 'end' => "")), 'font' => array( 'type' => 'attr', 'attr_size' => array( '1' => array ('start' => "[--", 'end' => "--]"), // Need to translate the size '2' => array ('start' => "[-", 'end' => "-]"), // bar of FCKEditor '3' => array ('start' => "", 'end' => "-]"), '4' => array ('start' => "[+", 'end' => "+]"), '5' => array ('start' => "[++", 'end' => "++]"), 'default' => array ('start' => "", 'end' => "")), 'no_attr_def' => array( 'start' => "", 'end' => "")), 'h1' => array( 'start' => '! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h2' => array( 'start' => '!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h3' => array( 'start' => '!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h4' => array( 'start' => '!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h5' => array( 'start' => '!!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h6' => array( 'start' => '!!!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'br' => array( 'start' => "\\\\\\\r\n", 'type' => 'single' ), 'hr' => array( 'start' => '----' , 'type' => 'single' ), 'a' => array( 'type' => 'link', 'normal' => array('start' => '[[', 'middle' =>'|', 'end' =>']]'), // standard link [[link|text]] 'raw_url' => array('start' => '', 'middle' =>'', 'end' =>''), // only an url 'newwin' => array('start' => '%newwin%'), // add %newwin% is target='_blank' is found 'anchor' => array('start' => '[[#', 'middle' =>'|', 'end' =>']]')), // anchor link [[#anchor]] or [[#anchor|text]] 'table' => array( 'type' => 'block', 'autorizedparam' => array('border', 'bordercolor', 'cellspacing', 'cellpadding', 'width', 'bgcolor', 'align', 'summary')), 'td' => array( 'type' => 'block', 'autorizedparam' => array('align', 'valign', 'colspan', 'rowspan', 'bgcolor', 'width')), 'tbody' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), // "Unuseful" Markups : not translated in PmWiki 'thead' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), 'tbody' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), 'img' => array( 'type' => 'block', 'autorizedparam' => array('width', 'height', 'border', 'vspace', 'hspace')) ); ?> pat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/epat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]*\[([=@])(.*?)\3\]/seipat=/\(:markup(\s+([^ ]*?))?:\)[^\S ]* (.*?)\(:markupend:\)/seipat=/( [^\S ]*)?\[([=@])(.*?)\2\]/sepat=/^\(:closeall:\)$/epat=/\$\[(?>([^\]]+))\]/epat=/\{(!?[-\w.\/]*)(\$\w+)\}/epat=/<(\/?(script)(?![a-z!])((['"]).*?\4|.*?)*?)>/iepat=/\(:(if[^ ]*?):\)(.*?)(?=\(:if[^ ]*?:\)|$)/seipat=/\(:redirect\s+(\S.*?):\)/eipat=/\(:include\s+(\S.*?):\)/eipat=/\(:nogroupheader:\)/eipat=/\(:nogroupfooter:\)/eipat=/\(:groupheader:\)/eipat=/\(:groupfooter:\)/eipat=/\\(?>(\\*)) /epat=/^\(:thisweek(?:\s+([-+]?\d+))?:\)\s*$/epat=/^(?=%define=)((?:%%|%[A-Za-z][-,=:#\w\s'"().]*%)\s*)+$/epat=/\(:noheader:\)/eipat=/\(:nofooter:\)/eipat=/\(:(no)?linkwikiwords:\)/eipat=/\(:searchbox(\s.*?)?:\)/epat=/\(:pagelist(\s+.*?)?:\)/eipat=/\(:searchresults(\s+.*?)?:\)/eipat=/\(:varindex:\)/eipat=/\(:attachlist\s*(.*?):\)/eipat=/\(:input\s+(\w+)(.*?):\)/eipat=/\(:noright:\)/eipat=/\(:noleft:\)/eipat=/\(:noaction:\)/eipat=/\(:(no)?spacewikiwords:\)/eipat=/^\(:messages:\)/eipat=/\(:notitle:\)/eipat=/\(:(no)?linebreaks:\)/eipat=/^\(:wikilog(?:news)?\s+([[:upper:]][\w]*(?:-\w+)*)[.\/]([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog(?:news)?\s+([[:upper:]\d][\w]*(?:-\w+)*):\)\s*$/epat=/^\(:wikilog:\)\s*$/epat=/\(:\wikilogtitle:\)/epat=/\(:keywords?\s+(.+?):\)/eipat=/\(:description\s+(.+?):\)/eipat=/\(:title\s(.*?):\)/eipat=/\(:publishcalendar:\)/epat=/([^\/\)=]|^)(\d\d\d\d)([-.\/])(\d\d)\3(\d\d)/epat=/\[(([-+])+)(.*?)\1\]/epat=/\^\|([^|]+|\[\[(.+?)\]\])\|\^/epat=/<<\|([^|]+|\[\[(.+?)\]\])\|>>/epat=/^\(:wikilognav(?:\s+([[:upper:]][\w]*(?:-\w+)*)(?:[.\/]([[:upper:]\d][\w]*(?:-\w+)*))?)?:\)/epat=/<\|([^|]+|\[\[(.+?)\]\])\|>/epat=/\[\[((?:[[:upper:]][\w]*(?:-\w+)*\/)?([0-9]{8}))\]\]/epat=/\[\[([[:upper:]][\w]*(?:-\w+)*(?:[\/.])[0-9]{8})\|(.*?)\]\]/epat=/(?>\[\[([^|\]]+))\|\s*\+\s*]]/epat=/(?>\[\[([^|\]]+))\|\s*#\s*\]\]/epat=/(?>\[\[([^|\]]*)\|\s*)(.*?)\s*\]\]((?:-?[[:alnum:]]+)*)/epat=/\[\[!(.*?)\]\]/epat=/(?>\[\[#([A-Za-z][-.:\w]*))\]\]/epat=/(?>\[\[([^\]]+?)\s*-+>\s*)(.*?)\]\]((?:-?[[:alnum:]]+)*)/epat=/(?>\[\[\s*(.*?)\]\])((?:-?[[:alnum:]]+)*)/epat=/\bmailto:([^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]'])/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))([^\s<>"{}|\\^`()[\]']+\.(?:gif|jpg|jpeg|png|GIF|JPG|JPEG|PNG))("([^"]*)")?/epat=/\b(?>(http:|https:|mailto:|ftp:|news:|gopher:|nap:|file:|<:page>|Attach:|PmWiki:|Cookbook:|Wiki:|UseMod:|Meatball:|Wikipedia:|PITS:|Path:))[^\s<>"{}|\\^`()[\]']*[^\s.,?!<>"{}|\\^`()[\]']/epat=/`(([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*))/epat=/\$([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)\b/epat=/\b([[:upper:]][\w]*(?:-\w+)*([\/.]))?([[:upper:]][[:alnum:]]*(?:[[:upper:]][[:lower:]0-9]|[[:lower:]0-9][[:upper:]])[[:alnum:]]*)/epat=/^\(:(table|cell|cellnr|tableend|div\d*(?:end)?)(\s.*?)?:\)/iepat=/\(:wikilogbox(chrono)?\s*(.*?):\)/epat=/^(\s+)/epat=/^\|\|.*\|\|.*$/epat=/^(!{1,6})\s?(.*)$/epat=/^((?>(\s+|%%|%[A-Za-z][-,=:#\w\s'".]*%)*)(\d+L))(\s*\|\s?)?(.*)$/epat=/^\|\|(.*)$/epat=/^(?=\s*\S)(<:([^>]+)>)?/epat=/(\d+L)/epat=/(\d.*?)/e Picowireless Wiki: PmWiki/File Permissions
    PmWiki

    File Permissions

    Indice? This page briefly describes PmWiki's settings for file and directory permissions in a typical Unix environment.

    First, let's look at PmWiki 2 without any cookbook scripts loaded. PmWiki needs to be able to write into the wiki.d/ directory to be able to save pages. And it needs to be able to write into the uploads/ directory to save uploads. Those are the *only* directories that need to be writable by the webserver. It doesn't matter to PmWiki who owns or creates those directories, as long as it has write permission to them.

    All other directories should be owned by the account holder, and be accessible by the webserver (but normally not writable by the webserver).

    That's it -- everything else depends on the specific PHP configuration and running environment, which is detailed below (and which is why there isn't a definitive answer that applies to every situation). But the above two rules are absolute and answer 95% of the questions about directory permissions.

    In the example of "What ownerships should a pub/css/ directory have?", we simply ask "Does PmWiki need to create files in that directory?" The answer is "no", so the directory can (should) be owned by the administrator and only have basic read permissions (r-x) to the webserver. This means PmWiki shouldn't be responsible for creating the directory, because then the webserver would own the directory and not the administrator.

    Okay, with that out of the way, here are some configuration specific details. If someone is on a Unix host, then the webserver typically runs with a userid and groupid that is different from the account holder (e.g, "apache", "www", or "httpd"). Thus, if the account holder creates the wiki.d/ and uploads/ directories, then they must also to set the directories to be world-writable (rwx) permissions in order for PmWiki (running as the webserver account) to create files there.

    $ pwd
    /home/pmichaud/public_html/pmwiki
    $ mkdir uploads
    $ mkdir wiki.d
    $ chmod 777 uploads wiki.d        
    $ ls -ld . uploads wiki.d
    drwxr-xr-x   12 pmichaud pmichaud     1024 Feb 10 11:51 .         
    drwxrwxrwx    8 pmichaud pmichaud     1024 Jan 23 11:58 uploads             
    drwxrwxrwx    2 pmichaud pmichaud    54272 Feb 10 15:29 wiki.d      
    

    However, lots of people don't like having those world-writable (rwx) permissions on directories. Thus, one way to get around that is to let the webserver own the directory directly, so that world-writable permissions aren't needed to save files there. However, most unix systems don't allow normal users to change file ownerships, so the way to get the webserver to own the directories is to let PmWiki create them, by temporarily granting write permissions to the parent and then running the pmwiki.php script to create the needed directories:

    $ pwd
    /home/pmichaud/public_html/pmwiki
    $ chmod 777 .  
    $ ls -ld .
    drwxrwxrwx   12 pmichaud pmichaud     1024 Feb 10 11:51 .
    # <-- execute pmwiki.php script from web browser -->
    $ ls -ld . uploads wiki.d
    drwxrwxrwx   12 pmichaud pmichaud     1024 Feb 10 11:51 .
    drwxrwxr-x    8 apache   apache       1024 Jan 23 11:58 uploads
    drwxrwxr-x    2 apache   apache      54272 Feb 10 15:29 wiki.d    
    $ chmod 755 .
    $ ls -ld . uploads wiki.d
    drwxr-xr-x   12 pmichaud pmichaud     1024 Feb 10 11:51 .
    drwxrwsr-x    8 apache   pmichaud     1024 Jan 23 11:58 uploads       
    drwxrwsr-x    2 apache   pmichaud    54272 Feb 10 15:29 wiki.d         
    

    Now the two directories are owned by apache and we don't have world-writable permissions on them, but pmichaud still has write permissions to the files and directories by virtue of the group ownership and permissions. The setgid bit also ensures that any files or subdirectories created within uploads/ or wiki.d/ will belong to the same (pmichaud) group.

    HOWEVER, if a site is running in PHP's "safe_mode", then the "let PmWiki create the directories" solution doesn't work, as PHP will only create files in directories that are owned by the same user that owns the pmwiki.php script itself. Thus, PmWiki (apache) cannot create the directories in this case, or safe_mode will complain when PmWiki attempts to write a file into those directories. The *only* way for things to work in safe_mode is to manually create the needed directories and set their permissions to 777, as outlined at the beginning of this section.

    And for those select webservers/PHP installations that are configured such that the PmWiki script runs with the same identity as the account holder, then everything "just works" without doing anything manually. PmWiki creates any directories as needed (each owned by the account holder), and permissions aren't generally an issue at all.

    Okay, now let's look at cookbook scripts. If a cookbook script has files that it wants to make available to browsers, such files should generally be placed somewhere within the 'pub/' hierarchy and referenced via '$PubDirUrl'.

    If a cookbook recipe needs to *write* files to disk, then the same rules apply to that directory as for the wiki.d/ and uploads/ directories above, with the exact ownerships and permissions depending on the webserver and PHP configuration. In general the cookbook recipe should do the same as PmWiki, and just call PmWiki's mkdirp($dir) function. PmWiki will then take care of creating the directory (if it can) or prompting for its creation as appropriate.

    For example, if cookbook recipe 'frobot' wants to distribute a .css file, then that file should go somewhere like pub/css/frobot.css or pub/frobot/frobot.css. The directories and files in this case should be created and owned by the account owner, since the cookbook recipe doesn't need to create or modify any of the files when it runs.

    As an alternate example, the Cookbook:MimeTeX recipe wants to be able to create cached images for the math markup, and those images need to be available to the browser. Thus, MimeTeX uses a pub/cache/ directory, which should be created in whatever manner was used to create the wiki.d/ and uploads/ directories (i.e., according to the webserver and PHP configuration). Again, Cookbook:MimeTeX just solves this by calling mkdirp("pub/cache"), and letting that function create the directory or prompt the administrator for the appropriate action based upon the server settings encountered.