From 770049ea162573d5afa1aaefed6131fe5e0a77f7 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Tue, 15 Feb 2022 18:02:23 +0000 Subject: Refactor apex-editor frontend build Moved frontend from src/main/resources/webapp to src/main/webapp Moved static resources such as jquery-ui to webapp/dist folder Configured jest to exclude webapp/dist from coverage report Removed unused ZIP file assembly Cleaned up POM Issue-ID: POLICY-3896 Signed-off-by: danielhanrahan Change-Id: Ia006eb94a39586219029866eef94aef38912ad65 --- .../dist/js/edit_area/reg_syntax/robotstxt.js | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 gui-editors/gui-editor-apex/src/main/webapp/dist/js/edit_area/reg_syntax/robotstxt.js (limited to 'gui-editors/gui-editor-apex/src/main/webapp/dist/js/edit_area/reg_syntax/robotstxt.js') diff --git a/gui-editors/gui-editor-apex/src/main/webapp/dist/js/edit_area/reg_syntax/robotstxt.js b/gui-editors/gui-editor-apex/src/main/webapp/dist/js/edit_area/reg_syntax/robotstxt.js new file mode 100644 index 0000000..5bca8fe --- /dev/null +++ b/gui-editors/gui-editor-apex/src/main/webapp/dist/js/edit_area/reg_syntax/robotstxt.js @@ -0,0 +1,25 @@ +editAreaLoader.load_syntax["robotstxt"] = { + 'DISPLAY_NAME' : 'Robots txt', + 'COMMENT_SINGLE' : {1 : '#'}, + 'COMMENT_MULTI' : {}, + 'QUOTEMARKS' : [], + 'KEYWORD_CASE_SENSITIVE' : false, + 'KEYWORDS' : { + 'attributes' : ['User-agent', 'Disallow', 'Allow', 'Crawl-delay'], + 'values' : ['*'], + 'specials' : ['*'] + }, + 'OPERATORS' :[':'], + 'DELIMITERS' :[], + 'STYLES' : { + 'COMMENTS': 'color: #AAAAAA;', + 'QUOTESMARKS': 'color: #6381F8;', + 'KEYWORDS' : { + 'attributes' : 'color: #48BDDF;', + 'values' : 'color: #2B60FF;', + 'specials' : 'color: #FF0000;' + }, + 'OPERATORS' : 'color: #FF00FF;', + 'DELIMITERS' : 'color: #60CA00;' + } +}; -- cgit 1.2.3-korg