Lines Matching refs:x_comment

2090                         $x_comment = $this->convertlabel($issue[$issue_id]['description']);
2107 …ass="itd_comment_tr" colSpan="2" style="padding-left:0.45em;">'.$this->xs_format($x_comment).'</td>
2122 $issue_initial_description .= $this->it_wysiwyg_edit_toolbar($x_comment);
2127 …description_mod" type="text" cols="106" rows="7" value="">'.strip_tags($x_comment).'</textarea><br…
2324 $x_comment = $this->_get_one_value($a_comment,'comment');
2325 $x_comment = $this->convertlabel($x_comment);
2399 $issue_comments_log .= $this->xs_format($x_comment).NL.'</td></tr>'.NL;
2433 …me="comment_mod" type="text" cols="106" rows="7" value="">'.strip_tags($x_comment).'</textarea><br…
3083 function xs_format($x_comment) argument
3085 $x_comment = preg_replace('/\[([bius])\]/i', '<\\1>', $x_comment);
3086 $x_comment = preg_replace('/\[\/([bius])\]/i', '</\\1>', $x_comment);
3088 $x_comment = preg_replace('/\[ol\]/i', '<ol>', $x_comment);
3089 $x_comment = preg_replace('/\[\/ol\]/i', '</ol>', $x_comment);
3091 $x_comment = preg_replace('/\[ul\]/i', '<ul>', $x_comment);
3092 $x_comment = preg_replace('/\[\/ul\]/i', '</ul>', $x_comment);
3094 $x_comment = preg_replace('/\[li\]/i', '<li>', $x_comment);
3095 $x_comment = preg_replace('/\[\/li\]/i', '</li>', $x_comment);
3097 $x_comment = preg_replace('/\[sup\]/i', '<sup>', $x_comment);
3098 $x_comment = preg_replace('/\[\/sup\]/i', '</sup>', $x_comment);
3100 $x_comment = preg_replace('/\[sub\]/i', '<sub>', $x_comment);
3101 $x_comment = preg_replace('/\[\/sub\]/i', '</sub>', $x_comment);
3103 $x_comment = preg_replace('/\[hr\]/i', '<hr>', $x_comment);
3105 $x_comment = preg_replace('/\[blockquote\]/i', '<blockquote>', $x_comment);
3106 $x_comment = preg_replace('/\[\/blockquote\]/i', '</blockquote>', $x_comment);
3108 $x_comment = preg_replace('/\[code\]/i', '<div class="it_code"><code>', $x_comment);
3109 $x_comment = preg_replace('/\[\/code\]/i', '</code></div>', $x_comment);
3111 $x_comment = preg_replace('/\[red\]/i', '<span style="color:red;">', $x_comment);
3112 $x_comment = preg_replace('/\[\/red\]/i', '</span>', $x_comment);
3114 $x_comment = preg_replace('/\[grn\]/i', '<span style="color:green;">', $x_comment);
3115 $x_comment = preg_replace('/\[\/grn\]/i', '</span>', $x_comment);
3117 $x_comment = preg_replace('/\[bgy\]/i', '<span style="background:yellow;">', $x_comment);
3118 $x_comment = preg_replace('/\[\/bgy\]/i', '</span>', $x_comment);
3120 $x_comment = preg_replace('/\[blu\]/i', '<span style="color:blue;">', $x_comment);
3121 $x_comment = preg_replace('/\[\/blu\]/i', '</span>', $x_comment);
3127 $x_comment = preg_replace($urlsuch, $urlreplace, $x_comment);
3128 …$x_comment = preg_replace("/\[link\]www.(.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"http://w…
3129 …$x_comment = preg_replace("/\[link=www.(.*?)\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"ht…
3130 …$x_comment = preg_replace("/\[link\](\:.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"doku.php?i…
3131 …$x_comment = preg_replace("/\[link=(\:.*?)\]\[\/link\]/si", "<a target=\"_blank\" href=\"doku.php?…
3132 …$x_comment = preg_replace("/\[link=(\:.*?)\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"doku…
3133 …$x_comment = preg_replace("/\[link\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"\\1\">\\1</a…
3134 …$x_comment = preg_replace("/\[link=(.*?)\](.*?)\[\/link\]/si", "<a target=\"_blank\" href=\"\\1\">…
3136 …$x_comment = preg_replace("/\[img\](http.*?)\[\/img\]/si", "<img src=\"\\1\"title=\"\\1\" alt=\"\\…
3137 …$x_comment = preg_replace("/\[img=(http.*?)\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\2\" a…
3138 …$x_comment = preg_replace("/\[img\](file.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\1\" alt=\"\…
3139 …$x_comment = preg_replace("/\[img=(file.*?)\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\2\" a…
3140x_comment = preg_replace("/\[img\](\:.*?)\[\/img\]/si", "<img src=\"". DOKU_URL . "lib/exe/fetch.p…
3141x_comment = preg_replace("/\[img=(\:.*?)\](.*?)\[\/img\]/si", "<img src=\"". DOKU_URL . "lib/exe/f…
3142 …$x_comment = preg_replace("/\[img\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\1\" style=\"max…
3143 …$x_comment = preg_replace("/\[img=(.*?)\](.*?)\[\/img\]/si", "<img src=\"\\1\" title=\"\\2\" style…
3152 return $x_comment;
3165 $x_comment=strtr($xa_comment, $trans);
3168 $it_edit_tb = str_ireplace('<p>&nbsp;</p>',$x_comment,$it_edit_tb);