Home
last modified time | relevance | path

Searched refs:geshi (Results 1 – 24 of 24) sorted by relevance

/plugin/ckgedit/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js1geshi.window_title,minWidth:600,minHeight:350,contents:[{id:"tab-basic",label:k.lang.geshi.basic_s…
H A Dgeshi.js.unc71 title: editor.lang.geshi.window_title,
80 label: editor.lang.geshi.basic_settings,
89 id: 'geshi',
90 label: editor.lang.geshi.code,
92 validate: CKEDITOR.dialog.validate.notEmpty(editor.lang.geshi.code_empty)
131 label: editor.lang.geshi.file || 'File name',
137 label: editor.lang.geshi.which,
138 …items: [ [ editor.lang.geshi.codeblock, 'block' ], [ editor.lang.geshi.snippet, 'snippet' ], [ edi…
156 …tor.lang.geshi.nonumbers, 'nonumbers' ], [ editor.lang.geshi.numonly, 'numonly' ], [ editor.lang.g…
183 dialog.getContentElement( 'tab-basic', 'geshi' ).setValue( text );
[all …]
/plugin/code2/
H A Dsyntax.php868 if ($geshi->error()) {
870 $geshi = NULL; // release memory
875 $geshi->enable_classes();
876 $geshi->set_encoding('utf-8');
888 $geshi = NULL; // release memory
923 $geshi->parse_code(), 2);
1002 if ($geshi->error()) {
1004 $geshi = NULL; // release memory
1009 $geshi->enable_classes();
1010 $geshi->set_encoding('utf-8');
[all …]
/plugin/ckgdoku/ckeditor/plugins/geshi/dialogs/
H A Dgeshi.js1geshi.code,validate:CKEDITOR.dialog.validate.notEmpty(k.lang.geshi.code_empty)},{type:"hbox",width…
H A Dgeshi.js.unc88 id: 'geshi',
89 label: editor.lang.geshi.code,
91 validate: CKEDITOR.dialog.validate.notEmpty(editor.lang.geshi.code_empty)
100 label: "Select language", //editor.lang.geshi.lang,
112geshi.tooltip+"' style = 'color:blue;text-decoration:underline;' onmouseover='this.style.cursor=\…
130 label: editor.lang.geshi.file || 'File name',
136 label: editor.lang.geshi.which,
137 … items: [ [ editor.lang.geshi.codeblock, 'block' ], [ editor.lang.geshi.snippet, 'snippet' ] ],
158 dialog.getContentElement( 'tab-basic', 'geshi' ).setValue( text );
172 var text = dialog.getValueOf( 'tab-basic', 'geshi' );
/plugin/xssnipper/
H A Dsyntax.php128 $geshi = new GeSHi($code_lines, $xssnipper['type']);
129 $geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
130 $geshi->set_overall_class('xssnipper');
131 $geshi->set_header_type(GESHI_HEADER_DIV);
133 $geshi->start_line_numbers_at($xssnipper['from']);
136 $text = $geshi->parse_code();
/plugin/codedoc/
H A Dblock.php12 var $geshi = false; variable in syntax_plugin_codedoc_block
96 list($match, $this->geshi) = explode(':',$match);
97 $match = "$match " . $this->geshi;
103 if($this->geshi) {
104 $renderer->doc .= p_xhtml_cached_geshi($match, $this->geshi,'');
/plugin/repo/
H A Dsyntax.php205 $geshi = new GeSHi($code, strtolower($lang), DOKU_INC .'vendor/geshi/geshi/src/geshi');
206 $geshi->set_encoding('utf-8');
207 $geshi->enable_classes();
208 $geshi->set_header_type(GESHI_HEADER_PRE);
209 $geshi->set_overall_class("code $language");
210 $geshi->set_link_target($conf['target']['extern']);
212 $hi_code = $geshi->parse_code();
/plugin/src/
H A Dsyntax.php118 $geshi = new GeSHi($code, $lang, DOKU_INC . 'inc/geshi');
119 $geshi->set_encoding('utf-8');
120 $geshi->enable_classes();
121 $geshi->set_header_type(GESHI_HEADER_PRE);
122 $geshi->set_link_target($conf['target']['extern']);
125 $code = trim(preg_replace('!^<pre[^>]*>|</pre>$!', '', $geshi->parse_code()), "\n\r");
H A Dplugin.info.txt6 desc Includes a source uploaded file using the geshi highlighter
/plugin/projects/lib/
H A Dtools.php69 $geshi = new GeSHi($code, $lang);
70 $geshi->set_header_type(GESHI_HEADER_DIV);
71 $geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
72 $renderer->doc .= $geshi->parse_code();
/plugin/ckgdoku/ckeditor/plugins/geshi/
H A Dplugin.js24 label: editor.lang.geshi.title,//'Insert Geshi',
/plugin/ckgedit/ckeditor/plugins/geshi/
H A Dplugin.js24 label: editor.lang.geshi.title,//'Insert Geshi',
/plugin/rstudio/
H A Dplugin.info.txt6 desc inserts rstudio parameter into code blocks for RStudio geshi css
/plugin/pycode/
H A Dmethod.php327 $geshi = new GeSHi($code, $lang, $lib_geshi);
328 $geshi->set_encoding("utf-8");
329 $geshi->enable_classes();
330 $geshi->set_header_type(GESHI_HEADER_PRE);
332 $geshi_code = trim(preg_replace('!^<pre[^>]*>|</pre>$!','',$geshi->parse_code()),"\n\r");
/plugin/codebutton2/
H A Dadmin.php60 …lbar the following format:<br><pre class="code">&lt;button name&gt; = &lt;geshi code name&gt;<br><…
/plugin/odp/
H A Drenderer.php978 $geshi = new GeSHi($text, $language, DOKU_INC . 'inc/geshi');
979 $geshi->set_encoding('utf-8');
981 $geshi->set_header_type(GESHI_HEADER_PRE);
982 $geshi->enable_keyword_links(false);
986 … $highlighted_code = trim(preg_replace('!^<pre[^>]*>|</pre>$!','',$geshi->parse_code()),"\n\r");
/plugin/ckgdoku/scripts/
H A Dparse_wiki.js.unc226 geshi: false,
462 this.geshi = true;
1250 if(this.geshi) {
1251 this.geshi = false;
1485 var geshi =text.match(/^\s*geshi:\s+(.*)$/m);
1486 if(geshi) {
1487 … results= results.replace(/<(code|file)>\s*$/, '<' + "$1" + ' ' + geshi[1] + '>');
1488 text = text.replace( geshi[0], "");
H A Dparse_wiki-cmpr.js1geshi:false,downloadable_code:false,export_code:false,code_snippet:false,downloadable_file:"",exte…
/plugin/ckgedit/scripts/
H A Dparse_wiki.js.unc313 geshi: false,
551 this.geshi = true;
1272 if (this.geshi) {
1273 this.geshi = false;
1491 var geshi = text.match(/^\s*geshi:\s+(.*)$/m);
1492 if (geshi) {
1493 … results = results.replace(/<(code|file)>\s*$/, '<' + "$1" + ' ' + geshi[1] + '>');
1494 text = text.replace(geshi[0], "");
H A Dparse_wiki-cmpr.js1geshi:false,downloadable_code:false,export_code:false,code_snippet:false,downloadable_file:"",exte…
/plugin/fckg/
H A DChanges108 Created an IE CSS hack for geshi snippets in IE8+ and HTML5
273 Corrected fckconfig.js to use editor/lang/<iso.js> files for geshi and keyboard plugins.
283 missing span tag in geshi plugin.
/plugin/ckgdoku/ckeditor/
H A Dconfig.js.unc106 …s = 'signature,footnote,shortcuts,fontAssist,tags,timestamp,headerbuttons,geshi,wrap'; //,pasteba…
/plugin/ckgedit/ckeditor/
H A Dconfig.js.unc111 …s = 'signature,footnote,shortcuts,fontAssist,tags,timestamp,headerbuttons,geshi,wrap,truetype'; //…