Home
last modified time | relevance | path

Searched refs:sh (Results 1 – 25 of 239) sorted by relevance

12345678910

/plugin/syntaxhighlighter/Uncompressed/
H A DshBrushCss.js1 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 DshBrushCSharp.js1 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 DshBrushJScript.js1 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 DshCore.js23 sh : class in dp
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 DshBrushPhp.js1 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 DshBrushJava.js1 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 DshBrushCpp.js19 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 DshBrushXml.js1 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 DshBrushRuby.js2 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 DshBrushDelphi.js2 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 DshBrushSql.js1 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'];
H A DshBrushVb.js1 dp.sh.Brushes.Vb = function()
20 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings
28 dp.sh.Brushes.Vb.prototype = new dp.sh.Highlighter();
29 dp.sh.Brushes.Vb.Aliases = ['vb', 'vb.net'];
/plugin/syntaxhighlighter/Scripts/
H A DshBrushCss.js8 dp.sh.Brushes.CSS=function()
9 …egexList=[{regex:dp.sh.RegexLib.MultiLineCComments,css:'comment'},{regex:dp.sh.RegexLib.DoubleQuot…
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 DshBrushCSharp.js8 dp.sh.Brushes.CSharp=function()
9sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comme…
10 dp.sh.Brushes.CSharp.prototype=new dp.sh.Highlighter();dp.sh.Brushes.CSharp.Aliases=['c#','c-sharp'…
H A DshBrushJScript.js8 dp.sh.Brushes.JScript=function()
9sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comme…
10 dp.sh.Brushes.JScript.prototype=new dp.sh.Highlighter();dp.sh.Brushes.JScript.Aliases=['js','jscrip…
H A DshCore.js13 else if(dp.sh.ClipboardSwf!=null)
19 …nt;dp.sh.Utils.CopyStyles(doc,window.document);doc.write(dp.sh.Strings.AboutDialog.replace('{V}',d…
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 DshBrushJava.js8 dp.sh.Brushes.Java=function()
9sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comme…
10 dp.sh.Brushes.Java.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Java.Aliases=['java'];
H A DshBrushPhp.js8 dp.sh.Brushes.Php=function()
9sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comme…
10 dp.sh.Brushes.Php.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Php.Aliases=['php'];
H A DshBrushCpp.js8 dp.sh.Brushes.Cpp=function()
9sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comme…
10 dp.sh.Brushes.Cpp.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Cpp.Aliases=['cpp','c','c++'];
H A DshBrushXml.js8 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 DshBrushRuby.js8 dp.sh.Brushes.Ruby=function()
10 …exList=[{regex:dp.sh.RegexLib.SingleLinePerlComments,css:'comment'},{regex:dp.sh.RegexLib.DoubleQu…
11 dp.sh.Brushes.Ruby.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Ruby.Aliases=['ruby','rails','ro…
H A DshBrushDelphi.js8 dp.sh.Brushes.Delphi=function()
9 …\$)[\\s\\S]*?}','gm'),css:'comment'},{regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{reg…
10 dp.sh.Brushes.Delphi.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Delphi.Aliases=['delphi','pasc…
H A DshBrushSql.js8 dp.sh.Brushes.Sql=function()
9 …RegExp('--(.*)$','gm'),css:'comment'},{regex:dp.sh.RegexLib.DoubleQuotedString,css:'string'},{rege…
10 dp.sh.Brushes.Sql.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Sql.Aliases=['sql'];
H A DshBrushVb.js8 dp.sh.Brushes.Vb=function()
9 …';this.regexList=[{regex:new RegExp('\'.*$','gm'),css:'comment'},{regex:dp.sh.RegexLib.DoubleQuote…
10 dp.sh.Brushes.Vb.prototype=new dp.sh.Highlighter();dp.sh.Brushes.Vb.Aliases=['vb','vb.net'];
/plugin/findologicxmlexport/vendor/jms/serializer/
H A D.travis.yml27 - if [ -x .travis/install_${TARGET}.sh ]; then .travis/install_${TARGET}.sh; fi;
30 - if [ -x .travis/script_${TARGET}.sh ]; then .travis/script_${TARGET}.sh; fi;
33 - if [ -x .travis/sucess_${TARGET}.sh ]; then .travis/sucess_${TARGET}.sh; fi;

12345678910