Files
aaPanel/LinuxPanel_EN-7.19.0/BTPanel/static/ace/mode-sql.js
T
Jack a968a0d573 Update to 7.19.0
[+] Add WP Toolkit WP Sets (one-click install of Plugins and Themes for wordpress website)
[+] Add Security - Brute force protection (to prevent brute force cracking of SSH, aapanel, closed by default)
[+] Add WP Toolkit Plugin, Theme installation.
[+] Redesigned Security - SSH
[+] Add Security - Compiler Access
[+] Add the download of some front-end language files (can be translated and uploaded by yourself, in Settings)
[+] Add Settings - Traditional Chinese (part of the interface, machine translation)
[+] Add settings - Deutsch (part of the interface, machine translation)
[+] Add settings - Français (part of the interface, machine translation)
[+] Add settings - Español (part of the interface, machine translation)
[+] Add settings - Português (part of the interface, machine translation)
[+] Add Cron -- Shell Script -- N seconds task
[+] Add Cron -- Task organization
[+] Add Cron -- Script library
[+] Redesigned Cron interface
[+] Redesigned WAF interface (requires upgrade to Nginx WAF 9.3.7)
[+] Add WP Toolkit Remote Manage
[+] Add language switching on Home and login interface
[+] Add language switching on Home and login interface
[+] Add local currency payment method
[+] Redesigned Monitor interface
[+] Redesigned Logs interface
[+] Redesigned Terminal interface
[+] Redesigned Setting interface
[+] Add Docker One-Click Install
[+] Add Docker Container Proxy
[+] Add aaPanel Account feature (click the Account menu to use). Currently only supports X86_64 architecture

[*] Optimize WP Toolkit and open many functions for free use
[*] Optimized the CPU usage problem of aaPanel startup service.
[*] Optimize WP Toolkit deployment, clear cache
[*] Optimize Brute force protection check tasks and delete tasks added by Cron
[*] Optimize certificate verification when configuring SSL certificate
[*] Optimize language translation (machine translation, delete upload function, need to reset the language)
[*] Optimize display in some languages
[*] Optimize Docker Compose interface
[*] Optimize the language display of the login interface
[*] Optimize Brute force protection that causes slow operation
[*] Optimize the purchase interface
[*] Optimize App Store interface
[*] Optimize Adjust Nginx /dev/shm/nginx-cache/wp directory to /www/server/fastcgi_cache to solve cache security issues

    (This may cause Nginx to fail to start. If you encounter this, please contact us via Email: support@aapanel.com or Forum)
[*] Optimize App Store upgrade software display

[-] Fix firewall IP rules cannot be added
[-] Fix Curl command exception caused failure to apply for an SSL certificate
[-] Fix the problem that the SSL renewal of the website cannot be clicked
[-] Fix the issue of incorrect domain name for editing email users
[-] Fix the issue that caused backup errors after Cron editing tasks
   (If there is already a problematic task, please add it again)
[-] Fix the problem of missing config.json file
[-] Fix the problem that the language file is empty
[-] Fix the problem of high CPU usage of BT-Task
[-] Fix the problem that pyroute2 does not exist
[-] Fix some known issues
2024-11-28 18:37:51 +08:00

8 lines
2.1 KiB
JavaScript

define("ace/mode/sql_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="select|insert|update|delete|from|where|and|or|group|by|order|limit|offset|having|as|case|when|then|else|end|type|left|right|join|on|outer|desc|asc|union|create|table|primary|key|if|foreign|not|references|default|null|inner|cross|natural|database|drop|grant",t="true|false",n="avg|count|first|last|max|min|sum|ucase|lcase|mid|len|round|rank|now|format|coalesce|ifnull|isnull|nvl",r="int|numeric|decimal|date|varchar|char|bigint|float|double|bit|binary|text|set|timestamp|money|real|number|integer",i=this.createKeywordMapper({"support.function":n,keyword:e,"constant.language":t,"storage.type":r},"identifier",!0);this.$rules={start:[{token:"comment",regex:"--.*$"},{token:"comment",start:"/\\*",end:"\\*/"},{token:"string",regex:'".*?"'},{token:"string",regex:"'.*?'"},{token:"string",regex:"`.*?`"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:i,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\/|\\/\\/|%|<@>|@>|<@|&|\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"paren.lparen",regex:"[\\(]"},{token:"paren.rparen",regex:"[\\)]"},{token:"text",regex:"\\s+"}]},this.normalizeRules()};r.inherits(s,i),t.SqlHighlightRules=s}),define("ace/mode/sql",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/sql_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./sql_highlight_rules").SqlHighlightRules,o=function(){this.HighlightRules=s,this.$behaviour=this.$defaultBehaviour};r.inherits(o,i),function(){this.lineCommentStart="--",this.$id="ace/mode/sql"}.call(o.prototype),t.Mode=o}); (function() {
window.require(["ace/mode/sql"], function(m) {
if (typeof module == "object" && typeof exports == "object" && module) {
module.exports = m;
}
});
})();