- 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.
43 lines
2.3 KiB
JavaScript
43 lines
2.3 KiB
JavaScript
/**
|
|
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
*/
|
|
|
|
CKEDITOR.editorConfig = function( config ) {
|
|
// Define changes to default configuration here. For example:
|
|
// config.language = 'fr';
|
|
// config.uiColor = '#AADC6E';
|
|
//vtiger editor toolbar configuration
|
|
config.removePlugins = 'save,maximize,magicline';
|
|
config.fullPage = true;
|
|
config.allowedContent = true;
|
|
config.disableNativeSpellChecker = false;
|
|
config.enterMode = CKEDITOR.ENTER_BR;
|
|
config.shiftEnterMode = CKEDITOR.ENTER_P;
|
|
config.autoParagraph = false;
|
|
config.fillEmptyBlocks = false;
|
|
config.filebrowserBrowseUrl = 'kcfinder/browse.php?type=images';
|
|
config.filebrowserUploadUrl = 'kcfinder/upload.php?type=images';
|
|
config.plugins = 'dialogui,dialog,docprops,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,menu,contextmenu,div,resize,toolbar,elementspath,enterkey,entities,popup,filebrowser,find,fakeobjects,floatingspace,listblock,richcombo,font,format,horizontalrule,htmlwriter,wysiwygarea,image,indent,indentblock,indentlist,justify,link,list,liststyle,magicline,pagebreak,preview,removeformat,selectall,showborders,sourcearea,specialchar,menubutton,stylescombo,tab,table,tabletools,undo,wsc';
|
|
config.toolbarGroups = [
|
|
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
|
|
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
|
|
{ name: 'insert' ,groups:['blocks']},
|
|
{ name: 'links' },
|
|
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
|
|
'/',
|
|
{ name: 'styles' },
|
|
{ name: 'colors' },
|
|
{ name: 'tools' },
|
|
{ name: 'others' },
|
|
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },{name: 'align'},
|
|
{ name: 'paragraph', groups: [ 'list', 'indent' ] },
|
|
];
|
|
|
|
//Add new custom font names in below array
|
|
var customFonts = ['FreeStyle Script','Brush Script STD','Bradley Hand ITC','Vladimir Script'];
|
|
for(var i = 0; i < customFonts.length; i++){
|
|
config.font_names = config.font_names+';'+customFonts[i];
|
|
}
|
|
};
|