config.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. 
  2. function EcmsEditorDoCKhtml(htmlstr){
  3. if(htmlstr.indexOf('"')!=-1)
  4. {
  5. return '';
  6. }
  7. if(htmlstr.indexOf("'")!=-1)
  8. {
  9. return '';
  10. }
  11. if(htmlstr.indexOf("/")!=-1)
  12. {
  13. return '';
  14. }
  15. if(htmlstr.indexOf("\\")!=-1)
  16. {
  17. return '';
  18. }
  19. if(htmlstr.indexOf("[")!=-1)
  20. {
  21. return '';
  22. }
  23. if(htmlstr.indexOf("]")!=-1)
  24. {
  25. return '';
  26. }
  27. if(htmlstr.indexOf(":")!=-1)
  28. {
  29. return '';
  30. }
  31. if(htmlstr.indexOf("%")!=-1)
  32. {
  33. return '';
  34. }
  35. if(htmlstr.indexOf("<")!=-1)
  36. {
  37. return '';
  38. }
  39. if(htmlstr.indexOf(">")!=-1)
  40. {
  41. return '';
  42. }
  43. return htmlstr;
  44. }
  45. function EcmsEditorGetCs(){
  46. var js=document.getElementsByTagName("script");
  47. for(var i=0;i<js.length;i++)
  48. {
  49. if(js[i].src.indexOf("ckeditor.js")>=0)
  50. {
  51. var arraytemp=new Array();
  52. arraytemp=js[i].src.split('?');
  53. return arraytemp;
  54. }
  55. }
  56. }
  57. var arraycs=new Array();
  58. arraycs=EcmsEditorGetCs();
  59. arraycs[0]=arraycs[0].replace('infoeditor/ckeditor.js','');
  60. arraycs[1]=document.getElementById('doecmseditor_eaddcs').value;
  61. arraycs[1]=EcmsEditorDoCKhtml(arraycs[1]);
  62. CKEDITOR.editorConfig = function( config ) {
  63. // Define changes to default configuration here. For example:
  64. // config.language = 'fr';
  65. // config.uiColor = '#AADC6E';
  66. config.filebrowserImageUploadUrl = '';
  67. config.filebrowserFlashUploadUrl = arraycs[0];
  68. config.filebrowserImageBrowseUrl = arraycs[1];
  69. config.filebrowserFlashBrowseUrl = arraycs[1];
  70. config.enterMode = CKEDITOR.ENTER_BR;
  71. config.shiftEnterMode = CKEDITOR.ENTER_P;
  72. config.allowedContent= true;
  73. config.font_names='宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;微软雅黑/微软雅黑;'+ config.font_names;
  74. // Toolbar
  75. config.toolbar_full = [
  76. { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source', '-', 'Preview', 'Print' ] },
  77. { name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
  78. { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl' ] },
  79. '/',
  80. { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat', 'ecleanalltext', 'autoformat' ] },
  81. { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] },
  82. { name: 'insert', items: [ 'Image', 'etranmore', 'Flash', 'etranmedia', 'etranfile', '-', 'Table', 'HorizontalRule', 'SpecialChar', 'equotetext', 'einserttime', 'einsertpage', 'einsertbr' ] },
  83. '/',
  84. { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
  85. { name: 'colors', items: [ 'TextColor', 'BGColor' ] },
  86. { name: 'tools', items: [ 'ShowBlocks', 'NewPage', 'Templates' ] },
  87. { name: 'others', items: [ '-' ] },
  88. { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ], items: [ 'Find', 'Replace', '-', 'SelectAll', 'Maximize' ] }
  89. ];
  90. // Toolbar
  91. config.toolbar_basic = [
  92. { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source' ] },
  93. { name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
  94. { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] },
  95. { name: 'insert', items: [ 'Image', 'Table', 'HorizontalRule', 'SpecialChar' ] },
  96. { name: 'tools', items: [ 'Maximize' ] },
  97. { name: 'others', items: [ '-' ] },
  98. '/',
  99. { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Strike', '-', 'RemoveFormat' ] },
  100. { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote' ] },
  101. { name: 'styles', items: [ 'Styles', 'Format' ] }
  102. ];
  103. config.extraPlugins = 'etranfile,etranmedia,etranmore,autoformat,ecleanalltext,einsertbr,einsertpage,einserttime,equotetext';
  104. config.toolbar = 'full';
  105. };