diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..0bd658d
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,13 @@
+
+# 0.1.6 (2015-04-02)
+
+## Breaking changes
+- The configuration has changed.
+
+## Features
+- Added support for dry-run
+- Added support for adding custom sonar properties
+
+## Bug Fixes
+- 'karma_sonar' task now stops when an error has occurred
+- karma-junit-reporter reports are now processed and updated with the correct spec for classname
\ No newline at end of file
diff --git a/Gruntfile.js b/Gruntfile.js
index c96f9ff..2dc3ee2 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -8,103 +8,89 @@
'use strict';
-module.exports = function(grunt) {
+module.exports = function (grunt) {
- // Project configuration.
- grunt.initConfig({
- jshint: {
- all: [
- 'Gruntfile.js',
- 'tasks/*.js',
- '<%= nodeunit.tests %>'
- ],
- options: {
- jshintrc: '.jshintrc'
- }
- },
-
- // Before generating any new files, remove any previously-created files.
- clean: {
- tests: ['.tmp']
- },
-
- // Configuration to be run (and then tested).
- karma_sonar: {
- default_options: {
- project: {
- key: 'grunt-sonar',
- name: 'Grunt sonar plugin',
- version: '0.1.4'
+ // Project configuration.
+ grunt.initConfig({
+ jshint: {
+ all: [
+ 'Gruntfile.js',
+ 'tasks/*.js'
+ ],
+ options: {
+ jshintrc: '.jshintrc'
+ }
},
- sources: [
- {
- path: 'sources/first/scripts',
- prefix: 'sources/first',
- coverageReport: 'results/first/lcov.info',
- testReport: 'results/first/junit.xml'
+ karmaSonar: {
+ options: {
+ defaultOutputDir: '.tmp/sonar2',
+ instance: {
+ jdbcUrl: 'jdbc:h2:tcp://localhost:9092/sonar'
+ },
+ dryRun: true,
+ runnerProperties: {
+ 'sonar.links.homepage': 'https://github.com/mdasberg/grunt-karma-sonar',
+ 'sonar.branch': 'master'
+ }
},
- {
- path: 'sources/second/scripts',
- prefix: 'sources/second',
- coverageReport: 'results/second/lcov.info',
- testReport: 'results/second/junit.xml'
- }
- ],
- exclusions: []
- },
- custom_options: {
- options: {
- defaultOutputDir: '.tmp/sonar/custom_options/',
- instance: {
- hostUrl : 'http://localhost:20001',
- jdbcUrl : 'jdbc:h2:tcp://localhost:20003/sonar',
- jdbcUsername: 'sonar',
- jdbcPassword: 'sonar',
- login: 'admin',
- password: 'admin'
+ all: {
+ project: {
+ key: 'grunt-karma-sonar',
+ name: 'Grunt-karma-sonar plugin',
+ version: '0.2.0'
+ },
+ paths: [
+ {
+ cwd: 'data/projectx',
+ src: 'src',
+ test: 'test',
+ reports: {
+ unit: 'results/karma/results.xml',
+ coverage: 'results/karma/coverage/**/lcov.info'
+ }
+ },
+ {
+ cwd: 'data/projecty',
+ src: 'src',
+ test: 'test',
+ reports: {
+ unit: 'results/karma/results.xml',
+ coverage: 'results/karma/coverage/**/lcov.info'
+ }
+ }
+
+ ]
}
},
- project: {
- key: 'grunt-sonar',
- name: 'Grunt sonar plugin',
- version: '0.1.4'
+
+ // Before generating any new files, remove any previously-created files.
+ clean: {
+ tests: ['.tmp']
},
- sources: [
- {
- path: 'sources/first/scripts',
- prefix: 'sources/first',
- testReport: 'results/first/junit.xml'
- },
- {
- path: 'sources/second/scripts',
- prefix: 'sources/second',
- coverageReport: 'results/second/lcov.info'
+ shell: {
+ target: {
+ command: 'node_modules/jasmine-node/bin/jasmine-node test/*Spec.js'
}
- ],
- exclusions: []
+ }
}
- },
-
- // Unit tests.
- nodeunit: {
- tests: ['test/*_test.js']
- }
- });
+ )
+ ;
- // Actually load this plugin's task(s).
- grunt.loadTasks('tasks');
+// Actually load this plugin's task(s).
+ grunt.loadTasks('tasks');
- // These plugins provide necessary tasks.
- grunt.loadNpmTasks('grunt-contrib-jshint');
- grunt.loadNpmTasks('grunt-contrib-clean');
- grunt.loadNpmTasks('grunt-contrib-nodeunit');
+// These plugins provide necessary tasks.
+ grunt.loadNpmTasks('grunt-contrib-jshint');
+ grunt.loadNpmTasks('grunt-contrib-clean');
+ grunt.loadNpmTasks('grunt-shell');
- // Whenever the "test" task is run, first clean the "tmp" dir, then run this
- // plugin's task(s), then test the result.
- grunt.registerTask('test', ['clean', 'karma_sonar', 'nodeunit']);
+// Whenever the "test" task is run, first clean the "tmp" dir, then run this
+// plugin's task(s), then test the result.
+ grunt.registerTask('test', ['clean', 'shell']);
- // By default, lint and run all tests.
- grunt.registerTask('default', ['jshint', 'test']);
+// By default, lint and run all tests.
+ grunt.registerTask('default', ['jshint', 'test']);
-};
+}
+;
diff --git a/README.md b/README.md
index 7fd925c..fa42048 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
> Grunt plugin for integrating karma reports with sonar
## Getting Started
-This plugin requires Grunt `~0.4.1`
+This plugin requires Grunt `~0.4.5`
If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
@@ -37,46 +37,177 @@ grunt.initConfig({
### Options
-#### options.separator
+#### options.dynamicAnalysis
Type: `String`
-Default value: `', '`
+Default: 'reuseReports'
-A string value that is used to do something with whatever.
+Should be the sonar.property dynamicAnalysis
-#### options.punctuation
+#### options.sourceEncoding
Type: `String`
-Default value: `'.'`
+Default: 'UTF-8'
-A string value that is used to do something else with whatever else.
+Should be the sonar.property sourceEncoding
+
+#### options.language
+Type: `String`
+Default: 'js'
+
+Should be the sonar.property language
+
+#### options.scmDisabled
+Type: `String`
+Default: 'true'
+
+Should be the sonar.property scmDisabled
+
+#### options.defaultOutputDir
+Type: `String`
+Default: '.tmp/sonar/'
+
+Should be the location where the karmaSonar plugin will put it's temporary files.
+
+#### options.instance.hostUrl
+Type: `String`
+Default: 'http://localhost:9000'
+
+Should be the sonar.property host.url
+
+#### options.instance.jdbcUrl
+Type: `String`
+Default: 'jdbc:h2:tcp://localhost:9092/sonar'
+
+Should be the sonar.property jdbc.url
+
+#### options.instance.jdbcUsername
+Type: `String`
+Default: 'sonar'
+
+Should be the sonar.property jdbc.username
+
+#### options.instance.jdbcPassword
+Type: `String`
+Default: 'sonar'
+
+Should be the sonar.property jdbc.password
+
+#### options.instance.login
+Type: `String`
+Default: 'admin'
+
+Should be the sonar.property login
+
+#### options.instance.password
+Type: `String`
+Default: 'admin'
+
+Should be the sonar.property password
+
+#### options.instance.runnerProperties
+Type: `Object`
+
+Should be the list of key(`sonar key`) value pairs.
+
+```js
+runnerProperties: {
+ 'sonar.links.homepage': 'https://github.com/mdasberg/grunt-karma-sonar',
+ 'sonar.branch': 'master'
+}
+```
+
+#### project
+Type: `Object`,
+Mandatory: true
+
+Should be the project information for sonar
+
+#### project.key
+Type: `String`
+Mandatory: true`
+
+Should be the project key for sonar
+
+#### project.name
+Type: `String`
+Mandatory: true`
+
+Should be the project name for sonar
+
+#### project.version
+Type: `String`
+
+Should be the project version for sonar
+
+#### paths
+Type: `Array`
+
+Should be the paths that contain the code, tests and results
+
+#### paths[].cwd
+Type: `String`
+Default: '.'
+
+Should be the current working directory that contain the source, tests and results folders are located
+
+#### paths[].src
+Type: `String`
+
+Should be the directory containing the sources within the cwd.
+
+#### paths[].test
+Type: `String`
+
+Should be the directory containing the tests within the cwd.
+
+#### paths[].reports
+Type: `Object`
+
+Should be the object containing the reports.
+
+#### paths[].reports.unit
+Type: `String`
+
+Should be the location of the karma-junit-reporter report within the cwd.
+
+#### paths[].reports.coverage
+Type: `String`
+
+Should be the glob for the lcov.info files within the cwd.
### Usage Examples
#### Default Options
-In this example, the default options are used to do something with whatever. So if the `testing` file has the content `Testing` and the `123` file had the content `1 2 3`, the generated result would be `Testing, 1 2 3.`
```js
grunt.initConfig({
karma_sonar: {
- options: {},
+ options: {
+
+ },
your_target: {
project: {
key: 'grunt-sonar',
name: 'Grunt sonar plugin',
version: '0.1.1'
},
- sources: [
+ paths: [
{
- path: '...',
- prefix: '...', // karma path in lcov files is incorrect, you can use prefix to fix this.
- coverageReport: '.../path/to/lcov.info',
- testReport: '.../path/to/junit.xml'
+ cwd: '...', // the current working directory'
+ src: '...', // the source directory within the cwd
+ test: '...', // the test directory within the cwd
+ reports: {
+ unit: '../path/result.xml', // the result file within the cwd
+ coverage: '../path/**/lcov.info' // the glob for lcov files'
+ }
},
{
- path: '...',
- prefix: '...', // karma path in lcov files is incorrect, you can use prefix to fix this.
- coverageReport: '.../path/to/lcov.info',
- testReport: '.../path/to/junit.xml'
- }
+ cwd: '...', // the current working directory'
+ src: '...', // the source directory within the cwd
+ test: '...', // the test directory within the cwd
+ reports: {
+ unit: '../path/result.xml', // the result file within the cwd
+ coverage: '../path/**/lcov.info' // the glob for lcov files'
+ }
],
exclusions: []
}
@@ -105,7 +236,7 @@ grunt.initConfig({
name: 'Grunt sonar plugin',
version: '0.1.1'
},
- sources: [...],
+ paths: [...],
exclusions: []
}
}
diff --git a/data/projectx/results/jshint/jshint.xml b/data/projectx/results/jshint/jshint.xml
new file mode 100644
index 0000000..6cbfdec
--- /dev/null
+++ b/data/projectx/results/jshint/jshint.xml
@@ -0,0 +1,14 @@
+
+
+
+
+1. line 2, char 5: Missing "use strict" statement.
+2. line 7, char 35: Missing "use strict" statement.
+3. line 11, char 37: Missing "use strict" statement.
+4. line 2, char 5: 'who' is not defined.
+5. line 7, char 27: 'who' is not defined.
+6. line 11, char 29: 'who' is not defined.
+7. line 1, char 10: 'App' is defined but never used.
+
+
+
diff --git a/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/base.css b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/base.css
new file mode 100644
index 0000000..7fb8827
--- /dev/null
+++ b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/base.css
@@ -0,0 +1,182 @@
+body, html {
+ margin:0; padding: 0;
+}
+body {
+ font-family: Helvetica Neue, Helvetica,Arial;
+ font-size: 10pt;
+}
+div.header, div.footer {
+ background: #eee;
+ padding: 1em;
+}
+div.header {
+ z-index: 100;
+ position: fixed;
+ top: 0;
+ border-bottom: 1px solid #666;
+ width: 100%;
+}
+div.footer {
+ border-top: 1px solid #666;
+}
+div.body {
+ margin-top: 10em;
+}
+div.meta {
+ font-size: 90%;
+ text-align: center;
+}
+h1, h2, h3 {
+ font-weight: normal;
+}
+h1 {
+ font-size: 12pt;
+}
+h2 {
+ font-size: 10pt;
+}
+pre {
+ font-family: Consolas, Menlo, Monaco, monospace;
+ margin: 0;
+ padding: 0;
+ line-height: 14px;
+ font-size: 14px;
+ -moz-tab-size: 2;
+ -o-tab-size: 2;
+ tab-size: 2;
+}
+
+div.path { font-size: 110%; }
+div.path a:link, div.path a:visited { color: #000; }
+table.coverage { border-collapse: collapse; margin:0; padding: 0 }
+
+table.coverage td {
+ margin: 0;
+ padding: 0;
+ color: #111;
+ vertical-align: top;
+}
+table.coverage td.line-count {
+ width: 50px;
+ text-align: right;
+ padding-right: 5px;
+}
+table.coverage td.line-coverage {
+ color: #777 !important;
+ text-align: right;
+ border-left: 1px solid #666;
+ border-right: 1px solid #666;
+}
+
+table.coverage td.text {
+}
+
+table.coverage td span.cline-any {
+ display: inline-block;
+ padding: 0 5px;
+ width: 40px;
+}
+table.coverage td span.cline-neutral {
+ background: #eee;
+}
+table.coverage td span.cline-yes {
+ background: #b5d592;
+ color: #999;
+}
+table.coverage td span.cline-no {
+ background: #fc8c84;
+}
+
+.cstat-yes { color: #111; }
+.cstat-no { background: #fc8c84; color: #111; }
+.fstat-no { background: #ffc520; color: #111 !important; }
+.cbranch-no { background: yellow !important; color: #111; }
+
+.cstat-skip { background: #ddd; color: #111; }
+.fstat-skip { background: #ddd; color: #111 !important; }
+.cbranch-skip { background: #ddd !important; color: #111; }
+
+.missing-if-branch {
+ display: inline-block;
+ margin-right: 10px;
+ position: relative;
+ padding: 0 4px;
+ background: black;
+ color: yellow;
+}
+
+.skip-if-branch {
+ display: none;
+ margin-right: 10px;
+ position: relative;
+ padding: 0 4px;
+ background: #ccc;
+ color: white;
+}
+
+.missing-if-branch .typ, .skip-if-branch .typ {
+ color: inherit !important;
+}
+
+.entity, .metric { font-weight: bold; }
+.metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; }
+.metric small { font-size: 80%; font-weight: normal; color: #666; }
+
+div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; }
+div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; }
+div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; }
+div.coverage-summary th.file { border-right: none !important; }
+div.coverage-summary th.pic { border-left: none !important; text-align: right; }
+div.coverage-summary th.pct { border-right: none !important; }
+div.coverage-summary th.abs { border-left: none !important; text-align: right; }
+div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; }
+div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; }
+div.coverage-summary td.file { text-align: right; border-left: 1px solid #666; white-space: nowrap; }
+div.coverage-summary td.pic { min-width: 120px !important; }
+div.coverage-summary a:link { text-decoration: none; color: #000; }
+div.coverage-summary a:visited { text-decoration: none; color: #333; }
+div.coverage-summary a:hover { text-decoration: underline; }
+div.coverage-summary tfoot td { border-top: 1px solid #666; }
+
+div.coverage-summary .sorter {
+ height: 10px;
+ width: 7px;
+ display: inline-block;
+ margin-left: 0.5em;
+ background: url(sort-arrow-sprite.png) no-repeat scroll 0 0 transparent;
+}
+div.coverage-summary .sorted .sorter {
+ background-position: 0 -20px;
+}
+div.coverage-summary .sorted-desc .sorter {
+ background-position: 0 -10px;
+}
+
+.high { background: #b5d592 !important; }
+.medium { background: #ffe87c !important; }
+.low { background: #fc8c84 !important; }
+
+span.cover-fill, span.cover-empty {
+ display:inline-block;
+ border:1px solid #444;
+ background: white;
+ height: 12px;
+}
+span.cover-fill {
+ background: #ccc;
+ border-right: 1px solid #444;
+}
+span.cover-empty {
+ background: white;
+ border-left: none;
+}
+span.cover-full {
+ border-right: none !important;
+}
+pre.prettyprint {
+ border: none !important;
+ padding: 0 !important;
+ margin: 0 !important;
+}
+.com { color: #999 !important; }
+.ignore-none { color: #999; font-weight: normal; }
\ No newline at end of file
diff --git a/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/coverage-final.json b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/coverage-final.json
new file mode 100644
index 0000000..07532a7
--- /dev/null
+++ b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/coverage-final.json
@@ -0,0 +1,2 @@
+{
+"./projectx/src/x.js":{"path":"./projectx/src/x.js","s":{"1":1,"2":2,"3":2,"4":1,"5":2,"6":1},"b":{},"f":{"1":2,"2":1,"3":1},"fnMap":{"1":{"name":"App","line":1,"loc":{"start":{"line":1,"column":-15},"end":{"line":1,"column":15}}},"2":{"name":"(anonymous_2)","line":6,"loc":{"start":{"line":6,"column":17},"end":{"line":6,"column":28}}},"3":{"name":"(anonymous_3)","line":10,"loc":{"start":{"line":10,"column":19},"end":{"line":10,"column":30}}}},"statementMap":{"1":{"start":{"line":1,"column":-15},"end":{"line":14,"column":1}},"2":{"start":{"line":2,"column":4},"end":{"line":4,"column":6}},"3":{"start":{"line":6,"column":4},"end":{"line":8,"column":5}},"4":{"start":{"line":7,"column":8},"end":{"line":7,"column":35}},"5":{"start":{"line":10,"column":4},"end":{"line":13,"column":5}},"6":{"start":{"line":11,"column":8},"end":{"line":11,"column":37}}},"branchMap":{},"l":{"1":1,"2":2,"6":2,"7":1,"10":2,"11":1}}}
diff --git a/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/index.html b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/index.html
new file mode 100644
index 0000000..191b223
--- /dev/null
+++ b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/index.html
@@ -0,0 +1,85 @@
+
+
+
+ Code coverage report for All files
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ File |
+ |
+ Statements |
+ |
+ Branches |
+ |
+ Functions |
+ |
+ Lines |
+ |
+
+
+
+ src/ |
+ |
+ 100% |
+ (6 / 6) |
+ 100% |
+ (0 / 0) |
+ 100% |
+ (3 / 3) |
+ 100% |
+ (6 / 6) |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/lcov.info b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/lcov.info
new file mode 100644
index 0000000..75e3e2c
--- /dev/null
+++ b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/lcov.info
@@ -0,0 +1,21 @@
+TN:
+SF:./projectx/src/x.js
+FN:1,App
+FN:6,(anonymous_2)
+FN:10,(anonymous_3)
+FNF:3
+FNH:3
+FNDA:2,App
+FNDA:1,(anonymous_2)
+FNDA:1,(anonymous_3)
+DA:1,1
+DA:2,2
+DA:6,2
+DA:7,1
+DA:10,2
+DA:11,1
+LF:6
+LH:6
+BRF:0
+BRH:0
+end_of_record
diff --git a/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/prettify.css b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/prettify.css
new file mode 100644
index 0000000..b317a7c
--- /dev/null
+++ b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/prettify.css
@@ -0,0 +1 @@
+.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee}
diff --git a/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/prettify.js b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/prettify.js
new file mode 100644
index 0000000..ef51e03
--- /dev/null
+++ b/data/projectx/results/karma/coverage/PhantomJS 1.9.8 (Mac OS X)/prettify.js
@@ -0,0 +1 @@
+window.PR_SHOULD_USE_CONTINUATION=true;(function(){var h=["break,continue,do,else,for,if,return,while"];var u=[h,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"];var p=[u,"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"];var l=[p,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"];var x=[p,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"];var R=[x,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"];var r="all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes";var w=[p,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"];var s="caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END";var I=[h,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"];var f=[h,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"];var H=[h,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"];var A=[l,R,w,s+I,f,H];var e=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/;var C="str";var z="kwd";var j="com";var O="typ";var G="lit";var L="pun";var F="pln";var m="tag";var E="dec";var J="src";var P="atn";var n="atv";var N="nocode";var M="(?:^^\\.?|[+-]|\\!|\\!=|\\!==|\\#|\\%|\\%=|&|&&|&&=|&=|\\(|\\*|\\*=|\\+=|\\,|\\-=|\\->|\\/|\\/=|:|::|\\;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\@|\\[|\\^|\\^=|\\^\\^|\\^\\^=|\\{|\\||\\|=|\\|\\||\\|\\|=|\\~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\\s*";function k(Z){var ad=0;var S=false;var ac=false;for(var V=0,U=Z.length;V122)){if(!(al<65||ag>90)){af.push([Math.max(65,ag)|32,Math.min(al,90)|32])}if(!(al<97||ag>122)){af.push([Math.max(97,ag)&~32,Math.min(al,122)&~32])}}}}af.sort(function(av,au){return(av[0]-au[0])||(au[1]-av[1])});var ai=[];var ap=[NaN,NaN];for(var ar=0;arat[0]){if(at[1]+1>at[0]){an.push("-")}an.push(T(at[1]))}}an.push("]");return an.join("")}function W(al){var aj=al.source.match(new RegExp("(?:\\[(?:[^\\x5C\\x5D]|\\\\[\\s\\S])*\\]|\\\\u[A-Fa-f0-9]{4}|\\\\x[A-Fa-f0-9]{2}|\\\\[0-9]+|\\\\[^ux0-9]|\\(\\?[:!=]|[\\(\\)\\^]|[^\\x5B\\x5C\\(\\)\\^]+)","g"));var ah=aj.length;var an=[];for(var ak=0,am=0;ak=2&&ai==="["){aj[ak]=X(ag)}else{if(ai!=="\\"){aj[ak]=ag.replace(/[a-zA-Z]/g,function(ao){var ap=ao.charCodeAt(0);return"["+String.fromCharCode(ap&~32,ap|32)+"]"})}}}}return aj.join("")}var aa=[];for(var V=0,U=Z.length;V=0;){S[ac.charAt(ae)]=Y}}var af=Y[1];var aa=""+af;if(!ag.hasOwnProperty(aa)){ah.push(af);ag[aa]=null}}ah.push(/[\0-\uffff]/);V=k(ah)})();var X=T.length;var W=function(ah){var Z=ah.sourceCode,Y=ah.basePos;var ad=[Y,F];var af=0;var an=Z.match(V)||[];var aj={};for(var ae=0,aq=an.length;ae=5&&"lang-"===ap.substring(0,5);if(am&&!(ai&&typeof ai[1]==="string")){am=false;ap=J}if(!am){aj[ag]=ap}}var ab=af;af+=ag.length;if(!am){ad.push(Y+ab,ap)}else{var al=ai[1];var ak=ag.indexOf(al);var ac=ak+al.length;if(ai[2]){ac=ag.length-ai[2].length;ak=ac-al.length}var ar=ap.substring(5);B(Y+ab,ag.substring(0,ak),W,ad);B(Y+ab+ak,al,q(ar,al),ad);B(Y+ab+ac,ag.substring(ac),W,ad)}}ah.decorations=ad};return W}function i(T){var W=[],S=[];if(T.tripleQuotedStrings){W.push([C,/^(?:\'\'\'(?:[^\'\\]|\\[\s\S]|\'{1,2}(?=[^\']))*(?:\'\'\'|$)|\"\"\"(?:[^\"\\]|\\[\s\S]|\"{1,2}(?=[^\"]))*(?:\"\"\"|$)|\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$))/,null,"'\""])}else{if(T.multiLineStrings){W.push([C,/^(?:\'(?:[^\\\']|\\[\s\S])*(?:\'|$)|\"(?:[^\\\"]|\\[\s\S])*(?:\"|$)|\`(?:[^\\\`]|\\[\s\S])*(?:\`|$))/,null,"'\"`"])}else{W.push([C,/^(?:\'(?:[^\\\'\r\n]|\\.)*(?:\'|$)|\"(?:[^\\\"\r\n]|\\.)*(?:\"|$))/,null,"\"'"])}}if(T.verbatimStrings){S.push([C,/^@\"(?:[^\"]|\"\")*(?:\"|$)/,null])}var Y=T.hashComments;if(Y){if(T.cStyleComments){if(Y>1){W.push([j,/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,null,"#"])}else{W.push([j,/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\r\n]*)/,null,"#"])}S.push([C,/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,null])}else{W.push([j,/^#[^\r\n]*/,null,"#"])}}if(T.cStyleComments){S.push([j,/^\/\/[^\r\n]*/,null]);S.push([j,/^\/\*[\s\S]*?(?:\*\/|$)/,null])}if(T.regexLiterals){var X=("/(?=[^/*])(?:[^/\\x5B\\x5C]|\\x5C[\\s\\S]|\\x5B(?:[^\\x5C\\x5D]|\\x5C[\\s\\S])*(?:\\x5D|$))+/");S.push(["lang-regex",new RegExp("^"+M+"("+X+")")])}var V=T.types;if(V){S.push([O,V])}var U=(""+T.keywords).replace(/^ | $/g,"");if(U.length){S.push([z,new RegExp("^(?:"+U.replace(/[\s,]+/g,"|")+")\\b"),null])}W.push([F,/^\s+/,null," \r\n\t\xA0"]);S.push([G,/^@[a-z_$][a-z_$@0-9]*/i,null],[O,/^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_t\b)/,null],[F,/^[a-z_$][a-z_$@0-9]*/i,null],[G,new RegExp("^(?:0x[a-f0-9]+|(?:\\d(?:_\\d+)*\\d*(?:\\.\\d*)?|\\.\\d\\+)(?:e[+\\-]?\\d+)?)[a-z]*","i"),null,"0123456789"],[F,/^\\[\s\S]?/,null],[L,/^.[^\s\w\.$@\'\"\`\/\#\\]*/,null]);return g(W,S)}var K=i({keywords:A,hashComments:true,cStyleComments:true,multiLineStrings:true,regexLiterals:true});function Q(V,ag){var U=/(?:^|\s)nocode(?:\s|$)/;var ab=/\r\n?|\n/;var ac=V.ownerDocument;var S;if(V.currentStyle){S=V.currentStyle.whiteSpace}else{if(window.getComputedStyle){S=ac.defaultView.getComputedStyle(V,null).getPropertyValue("white-space")}}var Z=S&&"pre"===S.substring(0,3);var af=ac.createElement("LI");while(V.firstChild){af.appendChild(V.firstChild)}var W=[af];function ae(al){switch(al.nodeType){case 1:if(U.test(al.className)){break}if("BR"===al.nodeName){ad(al);if(al.parentNode){al.parentNode.removeChild(al)}}else{for(var an=al.firstChild;an;an=an.nextSibling){ae(an)}}break;case 3:case 4:if(Z){var am=al.nodeValue;var aj=am.match(ab);if(aj){var ai=am.substring(0,aj.index);al.nodeValue=ai;var ah=am.substring(aj.index+aj[0].length);if(ah){var ak=al.parentNode;ak.insertBefore(ac.createTextNode(ah),al.nextSibling)}ad(al);if(!ai){al.parentNode.removeChild(al)}}}break}}function ad(ak){while(!ak.nextSibling){ak=ak.parentNode;if(!ak){return}}function ai(al,ar){var aq=ar?al.cloneNode(false):al;var ao=al.parentNode;if(ao){var ap=ai(ao,1);var an=al.nextSibling;ap.appendChild(aq);for(var am=an;am;am=an){an=am.nextSibling;ap.appendChild(am)}}return aq}var ah=ai(ak.nextSibling,0);for(var aj;(aj=ah.parentNode)&&aj.nodeType===1;){ah=aj}W.push(ah)}for(var Y=0;Y=S){ah+=2}if(V>=ap){Z+=2}}}var t={};function c(U,V){for(var S=V.length;--S>=0;){var T=V[S];if(!t.hasOwnProperty(T)){t[T]=U}else{if(window.console){console.warn("cannot override language handler %s",T)}}}}function q(T,S){if(!(T&&t.hasOwnProperty(T))){T=/^\s*]*(?:>|$)/],[j,/^<\!--[\s\S]*?(?:-\->|$)/],["lang-",/^<\?([\s\S]+?)(?:\?>|$)/],["lang-",/^<%([\s\S]+?)(?:%>|$)/],[L,/^(?:<[%?]|[%?]>)/],["lang-",/^]*>([\s\S]+?)<\/xmp\b[^>]*>/i],["lang-js",/^
+
+
+
+