
The Database Developer Guide PDF is located in the repo at: apidocs/target/docbkx/webhelp/cdb-devguide-reviewer/cdb-devguide-reviewer.pdf Updated api-doc with Security Groups related API information. Added Security Groups and Security Group Rules as entities and related API calls to the Reddwarf API Docs. Change-Id: I4d559b25413a6138cd7d2fb94c028f8cafde100c
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
;(function()
|
|
{
|
|
// CommonJS
|
|
SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
|
|
|
|
function Brush()
|
|
{
|
|
var keywords = 'break case catch continue ' +
|
|
'default delete do else false ' +
|
|
'for function if in instanceof ' +
|
|
'new null return super switch ' +
|
|
'this throw true try typeof var while with'
|
|
;
|
|
|
|
var r = SyntaxHighlighter.regexLib;
|
|
|
|
this.regexList = [
|
|
//Make sure the replacement for the callouts does not get highlighted
|
|
{regex: /@@@@([0-9]?[0-9])@([0-9]?[0-9])@@@@/g, css: 'removed'},
|
|
{ regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
|
|
{ regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
|
|
{ regex: r.singleLineCComments, css: 'comments' }, // one line comments
|
|
{ regex: r.multiLineCComments, css: 'comments' }, // multiline comments
|
|
{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion
|
|
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
|
|
];
|
|
|
|
this.forHtmlScript(r.scriptScriptTags);
|
|
};
|
|
|
|
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
|
Brush.aliases = ['js', 'jscript', 'javascript'];
|
|
|
|
SyntaxHighlighter.brushes.JScript = Brush;
|
|
|
|
// CommonJS
|
|
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
|
})();
|