config.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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 EcmsTempEditorGetCs(){
  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=EcmsTempEditorGetCs();
  59. arraycs[0]=arraycs[0].replace('tempeditor/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.enterMode = CKEDITOR.ENTER_BR;
  67. config.shiftEnterMode = CKEDITOR.ENTER_P;
  68. config.allowedContent= true;
  69. config.font_names='宋体/宋体;黑体/黑体;仿宋/仿宋_GB2312;楷体/楷体_GB2312;隶书/隶书;幼圆/幼圆;微软雅黑/微软雅黑;'+ config.font_names;
  70. // Toolbar
  71. config.toolbar = [
  72. { name: 'document', groups: [ 'mode', 'document', 'doctools' ], items: [ 'Source', '-', 'NewPage', 'Preview', 'Print', '-', 'Templates' ] },
  73. { name: 'clipboard', groups: [ 'clipboard', 'undo' ], items: [ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ] },
  74. { name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ], items: [ 'Find', 'Replace', '-', 'SelectAll' ] },
  75. { name: 'forms', items: [ 'Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField' ] },
  76. '/',
  77. { name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ], items: [ 'Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat' ] },
  78. { name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi' ], items: [ 'NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', '-', 'Blockquote', 'CreateDiv', '-', 'JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock', '-', 'BidiLtr', 'BidiRtl' ] },
  79. { name: 'links', items: [ 'Link', 'Unlink', 'Anchor' ] },
  80. '/',
  81. { name: 'styles', items: [ 'Styles', 'Format', 'Font', 'FontSize' ] },
  82. { name: 'colors', items: [ 'TextColor', 'BGColor' ] },
  83. { name: 'tools', items: [ 'Maximize', 'ShowBlocks' ] },
  84. { name: 'others', items: [ '-' ] },
  85. { name: 'insert', items: [ 'Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak', 'Iframe', 'einsertbr' ] }
  86. ];
  87. config.extraPlugins = 'einsertbr';
  88. };