mirror of
https://github.com/neocities/neocities.git
synced 2025-05-16 09:27:20 +02:00
revert to ace editor
This commit is contained in:
parent
4bd30a97c8
commit
5f0c590ca6
468 changed files with 328190 additions and 244 deletions
59
public/js/ace/mode-csp.js
Normal file
59
public/js/ace/mode-csp.js
Normal file
|
@ -0,0 +1,59 @@
|
|||
define("ace/mode/csp_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module){/*
|
||||
EXPLANATION
|
||||
|
||||
This highlight rules were created to help developer spot typos when working
|
||||
with Content-Security-Policy (CSP). See:
|
||||
https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/
|
||||
*/
|
||||
"use strict";
|
||||
var oop = require("../lib/oop");
|
||||
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
||||
var CspHighlightRules = function () {
|
||||
var keywordMapper = this.createKeywordMapper({
|
||||
"constant.language": "child-src|connect-src|default-src|font-src|frame-src|img-src|manifest-src|media-src|object-src"
|
||||
+ "|script-src|style-src|worker-src|base-uri|plugin-types|sandbox|disown-opener|form-action|frame-ancestors|report-uri"
|
||||
+ "|report-to|upgrade-insecure-requests|block-all-mixed-content|require-sri-for|reflected-xss|referrer|policy-uri",
|
||||
"variable": "'none'|'self'|'unsafe-inline'|'unsafe-eval'|'strict-dynamic'|'unsafe-hashed-attributes'"
|
||||
}, "identifier", true);
|
||||
this.$rules = {
|
||||
start: [{
|
||||
token: "string.link",
|
||||
regex: /https?:[^;\s]*/
|
||||
}, {
|
||||
token: "operator.punctuation",
|
||||
regex: /;/
|
||||
}, {
|
||||
token: keywordMapper,
|
||||
regex: /[^\s;]+/
|
||||
}]
|
||||
};
|
||||
};
|
||||
oop.inherits(CspHighlightRules, TextHighlightRules);
|
||||
exports.CspHighlightRules = CspHighlightRules;
|
||||
|
||||
});
|
||||
|
||||
define("ace/mode/csp",["require","exports","module","ace/mode/text","ace/mode/csp_highlight_rules","ace/lib/oop"], function(require, exports, module){/*
|
||||
THIS FILE WAS AUTOGENERATED BY mode.tmpl.js
|
||||
*/
|
||||
"use strict";
|
||||
var TextMode = require("./text").Mode;
|
||||
var CspHighlightRules = require("./csp_highlight_rules").CspHighlightRules;
|
||||
var oop = require("../lib/oop");
|
||||
var Mode = function () {
|
||||
this.HighlightRules = CspHighlightRules;
|
||||
};
|
||||
oop.inherits(Mode, TextMode);
|
||||
(function () {
|
||||
this.$id = "ace/mode/csp";
|
||||
}).call(Mode.prototype);
|
||||
exports.Mode = Mode;
|
||||
|
||||
}); (function() {
|
||||
window.require(["ace/mode/csp"], function(m) {
|
||||
if (typeof module == "object" && typeof exports == "object" && module) {
|
||||
module.exports = m;
|
||||
}
|
||||
});
|
||||
})();
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue