Lines Matching full:tt

13  * <tt>syntax_plugin_diff.php </tt>- A PHP4 class that implements a
14 * plugin for highlighting <tt>diff</tt> output in <tt>DokuWiki</tt>
19 * a <tt>diff</tt> file into a Wiki page. While this could be done by
20 * using the <tt>code</tt> tag this plugin additionally provides some
25 * Three types of <tt>diff</tt> output formats are supported:
28 * <dt><tt>unified</tt></dt>
29 * <dd>The output of the <tt>diff</tt> program with the <tt>-u</tt>
31 * <dt><tt>context</tt></dt>
32 * <dd>The output of the <tt>diff</tt> program with the <tt>-c</tt>
34 * <dt><tt>context</tt></dt>
35 * <dd>The output of the <tt>diff</tt> program with the <tt>-n</tt>
37 * <dt><tt>simple</tt></dt>
38 * <dd>The output of the <tt>diff</tt> program without any commandline
57 * @version <tt>$Id: syntax_plugin_diff.php,v 1.11 2010/02/22 10:49:59 matthias Exp $</tt>
73 * <tt>doc</tt> property.
74 * @return Boolean <tt>TRUE</tt>.
183 * <tt>$aMode</tt> within its own markup.
186 * This method returns <tt>FALSE</tt> since no other (DokuWiki)
187 * types are allowed within a <tt>diff</tt> section.
190 * @return Boolean <tt>FALSE</tt> (always).
219 * <tt>YYYY-MM-DD</tt> format</dd>
252 * @return String <tt>'block'</tt> .
264 * This method returns <tt>174</tt> an arbitrary value between
265 * <tt>Doku_Parser_Mode_unformatted</tt> and
266 * <tt>Doku_Parser_Mode_php</tt> (180).
268 * @return Integer <tt>174</tt>.
279 * @return String <tt>'protected'</tt>.
291 * The <tt>$aState</tt> parameter gives the type of pattern which
295 * <dd>a pattern set by <tt>addEntryPattern()</tt></dd>
297 * <dd> a pattern set by <tt>addExitPattern()</tt></dd>
306 * @return Array Index <tt>[0]</tt> holds the current
307 * <tt>$aState</tt>, index <tt>[1]</tt> the diff type (i.e. either
308 * <tt>'c'</tt> for 'context' format, <tt>'u'</tt> for 'unified'
309 * format or <tt>'s'</tt> for the 'simple' format) and
310 * index <tt>[2]</tt> holding the diff's patch text.
379 * The method checks for the given <tt>$aMode</tt> and returns
380 * <tt>FALSE</tt> when a mode isn't supported. <tt>$aRenderer</tt>
382 * handling the rendering. The contents of <tt>$aData</tt> is the
383 * return value of the <tt>handle()</tt> method.
387 * @param $aData Array The data created by the <tt>handle()</tt>
389 * @return Boolean <tt>TRUE</tt> if rendered correctly, or
390 * <tt>FALSE</tt> otherwise.