- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
73 lines
3.1 KiB
JavaScript
73 lines
3.1 KiB
JavaScript
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
|
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
|
|
|
(function () {
|
|
var mode = CodeMirror.getMode({indentUnit: 2}, "jsx")
|
|
|
|
function MT(name) {
|
|
test.mode(name, mode, Array.prototype.slice.call(arguments, 1))
|
|
}
|
|
|
|
MT("selfclose",
|
|
"[keyword var] [def x] [operator =] [bracket&tag <] [tag foo] [bracket&tag />] [operator +] [number 1];")
|
|
|
|
MT("openclose",
|
|
"([bracket&tag <][tag foo][bracket&tag >]hello [atom &][bracket&tag </][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("attr",
|
|
"([bracket&tag <][tag foo] [attribute abc]=[string 'value'][bracket&tag >]hello [atom &][bracket&tag </][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("braced_attr",
|
|
"([bracket&tag <][tag foo] [attribute abc]={[number 10]}[bracket&tag >]hello [atom &][bracket&tag </][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("braced_text",
|
|
"([bracket&tag <][tag foo][bracket&tag >]hello {[number 10]} [atom &][bracket&tag </][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("nested_tag",
|
|
"([bracket&tag <][tag foo][bracket&tag ><][tag bar][bracket&tag ></][tag bar][bracket&tag ></][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("nested_jsx",
|
|
"[keyword return] (",
|
|
" [bracket&tag <][tag foo][bracket&tag >]",
|
|
" say {[number 1] [operator +] [bracket&tag <][tag bar] [attribute attr]={[number 10]}[bracket&tag />]}!",
|
|
" [bracket&tag </][tag foo][bracket&tag >][operator ++]",
|
|
")")
|
|
|
|
MT("preserve_js_context",
|
|
"[variable x] [operator =] [string-2 `quasi${][bracket&tag <][tag foo][bracket&tag />][string-2 }quoted`]")
|
|
|
|
MT("line_comment",
|
|
"([bracket&tag <][tag foo] [comment // hello]",
|
|
" [bracket&tag ></][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("line_comment_not_in_tag",
|
|
"([bracket&tag <][tag foo][bracket&tag >] // hello",
|
|
" [bracket&tag </][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("block_comment",
|
|
"([bracket&tag <][tag foo] [comment /* hello]",
|
|
"[comment line 2]",
|
|
"[comment line 3 */] [bracket&tag ></][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("block_comment_not_in_tag",
|
|
"([bracket&tag <][tag foo][bracket&tag >]/* hello",
|
|
" line 2",
|
|
" line 3 */ [bracket&tag </][tag foo][bracket&tag >][operator ++])")
|
|
|
|
MT("missing_attr",
|
|
"([bracket&tag <][tag foo] [attribute selected][bracket&tag />][operator ++])")
|
|
|
|
MT("indent_js",
|
|
"([bracket&tag <][tag foo][bracket&tag >]",
|
|
" [bracket&tag <][tag bar] [attribute baz]={[keyword function]() {",
|
|
" [keyword return] [number 10]",
|
|
" }}[bracket&tag />]",
|
|
" [bracket&tag </][tag foo][bracket&tag >])")
|
|
|
|
MT("spread",
|
|
"([bracket&tag <][tag foo] [attribute bar]={[meta ...][variable baz] [operator /][number 2]}[bracket&tag />])")
|
|
|
|
MT("tag_attribute",
|
|
"([bracket&tag <][tag foo] [attribute bar]=[bracket&tag <][tag foo][bracket&tag />/>][operator ++])")
|
|
})()
|