/plugin/syntaxhighlighter/Styles/ |
H A D | SyntaxHighlighter.css | 1 .dp-highlighter 13 .dp-highlighter ol, 14 .dp-highlighter ol li, 15 .dp-highlighter ol li span 22 .dp-highlighter a, 23 .dp-highlighter a:hover 31 .dp-highlighter .bar 42 .dp-highlighter ol 58 .dp-highlighter ol li, 77 .dp-highlighter .columns [all …]
|
/plugin/syntaxhighlighter/Uncompressed/ |
H A D | shCore.js | 22 var dp = { class 38 dp.SyntaxHighlighter = dp.sh; 44 dp.sh.Toolbar.Commands = { 83 else if(dp.sh.ClipboardSwf != null) 137 doc.write(dp.sh.Strings.AboutDialog.replace('{V}', dp.sh.Version)); 151 for(var name in dp.sh.Toolbar.Commands) 194 dp.sh.RegexLib = { 216 dp.sh.Highlighter = function() 565 dp.sh.BloggerMode = function() 567 dp.sh.isBloggerMode = true; [all …]
|
H A D | shBrushCss.js | 1 dp.sh.Brushes.CSS = function() 36 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments 37 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings 38 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings 53 dp.sh.Highlighter.prototype.GetKeywordsCSS = function(str) 58 dp.sh.Highlighter.prototype.GetValuesCSS = function(str) 63 dp.sh.Brushes.CSS.prototype = new dp.sh.Highlighter(); 64 dp.sh.Brushes.CSS.Aliases = ['css'];
|
H A D | shBrushCSharp.js | 1 dp.sh.Brushes.CSharp = function() 19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments 20 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments 21 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings 22 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings 31 dp.sh.Brushes.CSharp.prototype = new dp.sh.Highlighter(); 32 dp.sh.Brushes.CSharp.Aliases = ['c#', 'c-sharp', 'csharp'];
|
H A D | shBrushJScript.js | 1 dp.sh.Brushes.JScript = function() 10 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments 11 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments 12 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings 13 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings 21 dp.sh.Brushes.JScript.prototype = new dp.sh.Highlighter(); 22 dp.sh.Brushes.JScript.Aliases = ['js', 'jscript', 'javascript'];
|
H A D | shBrushPhp.js | 1 dp.sh.Brushes.Php = function() 47 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments 48 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments 49 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings 50 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings 59 dp.sh.Brushes.Php.prototype = new dp.sh.Highlighter(); 60 dp.sh.Brushes.Php.Aliases = ['php'];
|
H A D | shBrushJava.js | 1 dp.sh.Brushes.Java = function() 12 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments 13 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments 14 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings 15 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings 27 dp.sh.Brushes.Java.prototype = new dp.sh.Highlighter(); 28 dp.sh.Brushes.Java.Aliases = ['java'];
|
H A D | shBrushCpp.js | 19 dp.sh.Brushes.Cpp = function() 59 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments 60 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments 61 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings 62 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings 72 dp.sh.Brushes.Cpp.prototype = new dp.sh.Highlighter(); 73 dp.sh.Brushes.Cpp.Aliases = ['cpp', 'c', 'c++'];
|
H A D | shBrushXml.js | 1 dp.sh.Brushes.Xml = function() 10 dp.sh.Brushes.Xml.prototype = new dp.sh.Highlighter(); 11 dp.sh.Brushes.Xml.Aliases = ['xml', 'xhtml', 'xslt', 'html', 'xhtml']; 13 dp.sh.Brushes.Xml.prototype.ProcessRegexList = function() 50 push(this.matches, new dp.sh.Match(match[1], match.index, 'attribute')); 55 …push(this.matches, new dp.sh.Match(match[2], match.index + match[0].indexOf(match[2]), 'attribute-… 68 …push(this.matches, new dp.sh.Match(match[1], match.index + match[0].indexOf(match[1]), 'tag-name')…
|
H A D | shBrushRuby.js | 2 dp.sh.Brushes.Ruby = function() 13 { regex: dp.sh.RegexLib.SingleLinePerlComments, css: 'comment' }, // one line comments 14 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings 15 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings 27 dp.sh.Brushes.Ruby.prototype = new dp.sh.Highlighter(); 28 dp.sh.Brushes.Ruby.Aliases = ['ruby', 'rails', 'ror'];
|
H A D | shBrushDelphi.js | 2 dp.sh.Brushes.Delphi = function() 19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line 20 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings 33 dp.sh.Brushes.Delphi.prototype = new dp.sh.Highlighter(); 34 dp.sh.Brushes.Delphi.Aliases = ['delphi', 'pascal'];
|
H A D | shBrushSql.js | 1 dp.sh.Brushes.Sql = function() 29 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings 30 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings 41 dp.sh.Brushes.Sql.prototype = new dp.sh.Highlighter(); 42 dp.sh.Brushes.Sql.Aliases = ['sql'];
|
/plugin/syntaxhighlighter/Scripts/ |
H A D | shCore.js | 13 else if(dp.sh.ClipboardSwf!=null) 19 …ument;dp.sh.Utils.CopyStyles(doc,window.document);doc.write(dp.sh.Strings.AboutDialog.replace('{V}… 24 dp.sh.Toolbar.Command=function(name,sender) 28 dp.sh.Utils.CopyStyles=function(destDoc,sourceDoc) 32 dp.sh.Utils.FixForBlogger=function(str) 36 dp.sh.Highlighter=function() 38 dp.sh.Highlighter.SortCallback=function(m1,m2) 83 dp.sh.Highlighter.prototype.SwitchToList=function() 125 dp.sh.BloggerMode=function() 126 {dp.sh.isBloggerMode=true;} [all …]
|
H A D | shBrushCss.js | 8 dp.sh.Brushes.CSS=function() 9 …s.regexList=[{regex:dp.sh.RegexLib.MultiLineCComments,css:'comment'},{regex:dp.sh.RegexLib.DoubleQ… 10 dp.sh.Highlighter.prototype.GetKeywordsCSS=function(str) 12 dp.sh.Highlighter.prototype.GetValuesCSS=function(str) 14 dp.sh.Brushes.CSS.prototype=new dp.sh.Highlighter();dp.sh.Brushes.CSS.Aliases=['css'];
|
H A D | shBrushCSharp.js | 8 dp.sh.Brushes.CSharp=function() 9 …dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'co… 10 dp.sh.Brushes.CSharp.prototype=new dp.sh.Highlighter();dp.sh.Brushes.CSharp.Aliases=['c#','c-sharp'…
|
H A D | shBrushJScript.js | 8 dp.sh.Brushes.JScript=function() 9 …dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'co… 10 dp.sh.Brushes.JScript.prototype=new dp.sh.Highlighter();dp.sh.Brushes.JScript.Aliases=['js','jscrip…
|
H A D | shBrushJava.js | 8 dp.sh.Brushes.Java=function() 9 …dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'co… 10 dp.sh.Brushes.Java.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Java.Aliases=['java'];
|
H A D | shBrushPhp.js | 8 dp.sh.Brushes.Php=function() 9 …dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'co… 10 dp.sh.Brushes.Php.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Php.Aliases=['php'];
|
H A D | shBrushCpp.js | 8 dp.sh.Brushes.Cpp=function() 9 …dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'co… 10 dp.sh.Brushes.Cpp.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Cpp.Aliases=['cpp','c','c++'];
|
H A D | shBrushXml.js | 8 dp.sh.Brushes.Xml=function() 10 dp.sh.Brushes.Xml.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Xml.Aliases=['xml','xhtml','xslt'… 16 push(this.matches,new dp.sh.Match(match[1],match.index,'attribute'));if(match[2]!=undefined) 17 {push(this.matches,new dp.sh.Match(match[2],match.index+match[0].indexOf(match[2]),'attribute-value… 19 {push(this.matches,new dp.sh.Match(match[1],match.index+match[0].indexOf(match[1]),'tag-name'));}}
|
H A D | shBrushRuby.js | 8 dp.sh.Brushes.Ruby=function() 10 …regexList=[{regex:dp.sh.RegexLib.SingleLinePerlComments,css:'comment'},{regex:dp.sh.RegexLib.Doubl… 11 dp.sh.Brushes.Ruby.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Ruby.Aliases=['ruby','rails','ro…
|
H A D | shBrushDelphi.js | 8 dp.sh.Brushes.Delphi=function() 9 …?!\\$)[\\s\\S]*?}','gm'),css:'comment'},{regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{… 10 dp.sh.Brushes.Delphi.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Delphi.Aliases=['delphi','pasc…
|
H A D | shBrushSql.js | 8 dp.sh.Brushes.Sql=function() 9 …ew RegExp('--(.*)$','gm'),css:'comment'},{regex:dp.sh.RegexLib.DoubleQuotedString,css:'string'},{r… 10 dp.sh.Brushes.Sql.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Sql.Aliases=['sql'];
|
H A D | shBrushVb.js | 8 dp.sh.Brushes.Vb=function() 9 …Xor';this.regexList=[{regex:new RegExp('\'.*$','gm'),css:'comment'},{regex:dp.sh.RegexLib.DoubleQu… 10 dp.sh.Brushes.Vb.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Vb.Aliases=['vb','vb.net'];
|
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/ |
H A D | Lzw.php | 60 $dp = 0; // data pointer 62 $this->LZWCommandInit($data, $dp); 64 while (($iIndex = $this->LZWCommand($data, $dp)) >= 0) { 68 $datLen = $dp; 77 function LZWCommandInit(&$data, &$dp) argument 80 $dp += 1; 88 $this->GetCodeInit($data, $dp); 105 function LZWCommand(&$data, &$dp) argument 110 $this->FirstCode = $this->GetCode($data, $dp); 122 while (($Code = $this->GetCode($data, $dp)) > 188 GetCodeInit(& $data, & $dp) global() argument 197 GetCode(& $data, & $dp) global() argument [all...] |