# HG changeset patch # User Dan # Date 1213109504 14400 # Node ID 6ba792bc90712b7d5e2d1454f61c919697b08080 # Parent 3700f7124c2b95f2dab66f63e0be8786ca38abc9 Updated image tag parser a bit. Handles recursion of brackets properly now, allows custom parameters from plugins, and takes parameters in any order due to new keyword-based parser diff -r 3700f7124c2b -r 6ba792bc9071 includes/render.php --- a/includes/render.php Tue Jun 10 00:21:34 2008 -0400 +++ b/includes/render.php Tue Jun 10 10:51:44 2008 -0400 @@ -868,7 +868,13 @@ $taglist = array(); // Wicked huh? - $regex = '/\[\[:' . str_replace('/', '\\/', preg_quote($paths->nslist['File'])) . '([\w\s0-9_\(\)!@%\^\+\|\.-]+?)((\|thumb)|(\|([0-9]+)x([0-9]+)))?(\|left|\|right)?(\|raw|\|(.+))?\]\]/i'; + $ns_file = str_replace('/', '\\/', preg_quote($paths->nslist['File'])); + $regex = '/ + \[\[ # starting delimiter + :' . $ns_file . '([\w\s0-9_\(\)!@%\^\+\|\.-]+?\.(?:png|gif|jpg|jpeg)) # image filename + (?:(?:\|(?:.+?))*) # parameters + \]\] # ending delimiter + /ix'; preg_match_all($regex, $text, $matches); @@ -877,11 +883,75 @@ $full_tag =& $matches[0][$i]; $filename =& $matches[1][$i]; - $scale_type =& $matches[2][$i]; - $width =& $matches[5][$i]; - $height =& $matches[6][$i]; - $clear =& $matches[7][$i]; - $caption =& $matches[8][$i]; + + // apply recursion (hack? @todo could this be done with (?R) in PCRE?) + $tag_pos = strpos($text, $full_tag); + $tag_end_pos = $tag_pos + strlen($full_tag); + while ( get_char_count($full_tag, ']') < get_char_count($full_tag, '[') && $tag_end_pos < strlen($text) ) + { + $full_tag .= substr($text, $tag_end_pos, 1); + $tag_end_pos++; + } + if ( $tag_end_pos > strlen($text) ) + { + // discard tag, not closed fully + continue; + } + + // init the various image parameters + $width = null; + $height = null; + $scale_type = null; + $raw_display = false; + $clear = null; + $caption = null; + + // trim tag and parse particles + $tag_trim = rtrim(ltrim($full_tag, '['), ']'); + // trim off the filename from the start of the tag + $filepart_len = 1 + strlen($paths->nslist['File']) + strlen($filename) + 1; + $tag_trim = substr($tag_trim, $filepart_len); + // explode and we should have parameters + $tag_parts = explode('|', $tag_trim); + + // for each of the parameters, see if it matches a known option. If so, apply it; + // otherwise, see if a plugin reserved that parameter and if not treat it as the caption + foreach ( $tag_parts as $param ) + { + switch($param) + { + case 'left': + case 'right': + $clear = $param; + break; + case 'thumb': + $scale_type = 'thumb'; + break; + case 'raw': + $raw_display = true; + break; + default: + // height specification + if ( preg_match('/^([0-9]+)x([0-9]+)$/', $param, $dims) ) + { + $width = intval($dims[1]); + $height = intval($dims[2]); + break; + } + // not the height, so see if a plugin took this over + // this hook requires plugins to return true if they modified anythin + $code = $plugins->setHook('img_tag_parse_params'); + foreach ( $code as $cmd ) + { + if ( eval($cmd) ) + break 2; + } + // we would have broken out by now if a plugin properly handled this, + // so just set the caption now. + $caption = $param; + break; + } + } if ( !isPage( $paths->nslist['File'] . $filename ) ) { @@ -889,7 +959,7 @@ continue; } - if ( $scale_type == '|thumb' ) + if ( $scale_type == 'thumb' ) { $r_width = 225; $r_height = 225; @@ -927,14 +997,14 @@ $complete_tag = ''; - if ( !empty($scale_type) && $caption != '|raw' ) + if ( !empty($scale_type) && !$raw_display ) { $complete_tag .= '
0 ) + // die('
' . htmlspecialchars($text) . '
'); + return $text; }