Revision history for RegexpindexAction


Revision [20100]

Last edited on 2008-06-27 16:05:26 by DomBonj [v0.93: optimization; 1.1.6.5 compatibility]
Additions:
- Wikka 1.1.6.2 to 1.1.6.5
# @version 0.93
$display_title = isset($vars['opts']) && preg_match('/t/i', $vars['opts']);
$display_owner = isset($vars['opts']) && preg_match('/o/i', $vars['opts']);
if ($display_title)
$title = '';
$pagecontent = $page['body'];
$formatting_tags = array('**', '//', '__', '##', '""', '++', '#%', '@@', '\'\'');
$title = str_replace($formatting_tags, '', $title[2]);
if ($display_owner)
Deletions:
- Wikka 1.1.6.2 & 1.1.6.3 & 1.1.6.4
# @version 0.92
if (isset($vars['opts']) && (preg_match('/t/i', $vars['opts'])))
$title = "";
$pagecontent = $page["body"];
$formatting_tags = array("**", "//", "__", "##", "''", "++", "#%", "@@", "\"\"");
$title = str_replace($formatting_tags, "", $title[2]);
if (isset($vars['opts']) && (preg_match('/o/i', $vars['opts'])))


Revision [19753]

Edited on 2008-03-28 18:24:43 by DomBonj [v0.92: bugfix; 1.1.6.4 compatibility]

No Differences

Revision [19752]

Edited on 2008-03-28 18:22:31 by DomBonj [v0.92: bugfix]
Additions:
- Wikka 1.1.6.2 & 1.1.6.3 & 1.1.6.4
# @version 0.92
if (!defined('RI_PAGE_OWNER')) define('RI_PAGE_OWNER', ' . . . . Owner: %s');
if (!defined('RI_ERROR_NO_PAGES_FOUND')) define('RI_ERROR_NO_PAGES_FOUND', 'No pages found.');
$query = 'SELECT body, tag, owner FROM '. $this->config['table_prefix'] .'pages WHERE ((latest = \'Y\') AND (CAST(tag AS BINARY) REGEXP \''. mysql_real_escape_string($vars['re']) .'\')'. $wherecat .') ORDER BY '. $orderby;
if (ereg( "(=){3,5}([^=\n]+)(=){3,5}", $pagecontent, $title))
Deletions:
- Wikka 1.1.6.2 & 1.1.6.3
# @version 0.91
if (!defined('RI_PAGE_OWNER')) define('RI_PAGE_OWNER', " . . . . Owner: %s");
if (!defined('RI_ERROR_NO_PAGES_FOUND')) define('RI_ERROR_NO_PAGES_FOUND', "No pages found.");
$query = 'SELECT body, tag, owner FROM '. $this->config['table_prefix'] .'pages WHERE ((latest = \'Y\') AND (tag REGEXP \''. mysql_real_escape_string($vars['re']) .'\')'. $wherecat .') ORDER BY '. $orderby;
if (ereg( "(=){3,5}([^=\n]+)(=){3,5}", $pagecontent, $title)) {


Revision [19359]

Edited on 2008-01-28 00:15:25 by DomBonj [Modified links pointing to docs server]

No Differences

Revision [17551]

Edited on 2007-09-29 16:20:17 by DomBonj [v0.91: bugfix; slight layout change]
Additions:
# Displays a list of pages whose tag matches a regular expression
# @version 0.91
if (!defined('RI_PAGE_OWNER')) define('RI_PAGE_OWNER', " . . . . Owner: %s");
if (!defined('RI_NO_TITLE')) define('RI_NO_TITLE', '');
|| ( isset($vars['re']) && (preg_match("/^\s*$/i", $vars['re'])) )
|| ( isset($vars['cat']) && (preg_match("/^\s*$/i", $vars['cat'])) )
$output .= ($title ? ': '. strip_tags($this->Format($title)) : '<i>'.RI_NO_TITLE.'</i>');
Deletions:
# Displays a list of pages whose tag matches a regular epxression
# @version 0.9
if (!defined('RI_PAGE_OWNER')) define('RI_PAGE_OWNER'," . . . . Owner: %s");
|| ( isset($vars['cat']) && (preg_match("/^\s+$/i", $vars['cat'])) )
$output .= ' - '. ($title ? strip_tags($this->Format($title)) : $page['tag']);


Revision [17518]

The oldest known version of this page was created on 2007-09-26 16:38:29 by DomBonj [v0.91: bugfix; slight layout change]
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki