plugin.js 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. CKEDITOR.plugins.add('autoformat',
  2. {
  3. init: function(editor)
  4. {
  5. //plugin code goes here
  6. var pluginName = 'autoformat';
  7. editor.addCommand(pluginName, new CKEDITOR.autoformatCommand());
  8. editor.ui.addButton('autoformat',
  9. {
  10. label: '一键排版',
  11. command: 'autoformat',
  12. icon: CKEDITOR.plugins.getPath('autoformat') + 'images/autoformat.gif'
  13. });
  14. }
  15. });
  16. CKEDITOR.autoformatCommand = function(){};
  17. CKEDITOR.autoformatCommand.prototype =
  18. {
  19. async:true,
  20. exec : function( editor )
  21. {
  22. FormatText(editor);
  23. }
  24. };
  25. if(window.HTMLElement) {
  26. HTMLElement.prototype.__defineSetter__("outerHTML",function(sHTML){
  27. var r=this.ownerDocument.createRange();
  28. r.setStartBefore(this);
  29. var df=r.createContextualFragment(sHTML);
  30. this.parentNode.replaceChild(df,this);
  31. return sHTML;
  32. });
  33. HTMLElement.prototype.__defineGetter__("outerHTML",function(){
  34. var attr;
  35. var attrs=this.attributes;
  36. var str="<"+this.tagName.toLowerCase();
  37. for(var i=0;i<attrs.length;i++){
  38. attr=attrs[i];
  39. if(attr.specified)
  40. str+=" "+attr.name+'="'+attr.value+'"';
  41. }
  42. if(!this.canHaveChildren)
  43. return str+">";
  44. return str+">"+this.innerHTML+"</"+this.tagName.toLowerCase()+">";
  45. });
  46. HTMLElement.prototype.__defineGetter__("canHaveChildren",function(){
  47. switch(this.tagName.toLowerCase()){
  48. case "area":
  49. case "base":
  50. case "basefont":
  51. case "col":
  52. case "frame":
  53. case "hr":
  54. case "img":
  55. case "br":
  56. case "input":
  57. case "isindex":
  58. case "link":
  59. case "meta":
  60. case "param":
  61. return false;
  62. }
  63. return true;
  64. });
  65. HTMLElement.prototype.__defineGetter__("innerText",
  66. function(){
  67. var anyString = "";
  68. var childS = this.childNodes;
  69. for(var i=0; i<childS.length; i++) {
  70. if(childS[i].nodeType==1){
  71. anyString += childS[i].tagName=="BR" ? '\n' : childS[i].innerText;
  72. }else if(childS[i].nodeType==3){
  73. anyString += childS[i].nodeValue;
  74. }
  75. }
  76. return anyString;
  77. }
  78. );
  79. HTMLElement.prototype.__defineSetter__("innerText",
  80. function(sText){
  81. this.textContent=sText;
  82. }
  83. );
  84. }
  85. //格式化
  86. function FormatText(editor) {
  87. var myeditor = editor;
  88. if (myeditor.mode=="wysiwyg"){
  89. var tempimg = new Array();
  90. var temptable = new Array();
  91. var tempobject = new Array();
  92. var isPart = false; //暂时无法实现局部格式化
  93. if (!isPart) {
  94. var tmpDiv=document.createElement("DIV");
  95. var editorhtml = myeditor.getData();
  96. //page
  97. //editorhtml = editorhtml.replace(/<div style="page-break-after: always;?">\s*<span style="display: none;?">&nbsp;<\/span>\s*<\/div>/gi,'<p>[!--empirenews.page--]</p>');
  98. tmpDiv.innerHTML=editorhtml.replace(/&nbsp;/gi,'').replace(/<div/gi,'<p').replace(/<\/div/gi,'</p');
  99. if(window.navigator.userAgent.toLowerCase().indexOf("msie") > 0) {
  100. tmpDiv.innerHTML = tmpDiv.innerHTML.replace(/<\/p>/gi,'<br /><\/p>')
  101. }
  102. var tables = tmpDiv.getElementsByTagName("TABLE");
  103. if (tables != null && tables.length > 0) {
  104. for (var j = 0; j < tables.length; j++) {
  105. temptable[temptable.length] = tables[j].outerHTML;
  106. }
  107. var formattableCount = 0;
  108. for (var j = 0; j < tables.length;) {
  109. tables[j].outerHTML = "#FormatTableID_" + formattableCount + "#";
  110. formattableCount++;
  111. }
  112. }
  113. var objects = tmpDiv.getElementsByTagName("OBJECT");
  114. if (objects != null && objects.length > 0) {
  115. for (var j = 0; j < objects.length; j++) {
  116. tempobject[tempobject.length] = objects[j].outerHTML;
  117. }
  118. var formatobjectCount = 0;
  119. for (var j = 0; j < objects.length;) {
  120. objects[j].outerHTML = "#FormatObjectID_" + formatobjectCount + "#";
  121. formatobjectCount++;
  122. }
  123. }
  124. var imgs = tmpDiv.getElementsByTagName("IMG");
  125. if (imgs != null && imgs.length > 0) {
  126. for (var j = 0; j < imgs.length; j++) {
  127. var t = document.createElement("IMG");
  128. t.alt = imgs[j].alt;
  129. t.src = imgs[j].src;
  130. t.width = imgs[j].width;
  131. t.height = imgs[j].height;
  132. t.align = imgs[j].align;
  133. tempimg[tempimg.length] = t;
  134. }
  135. var formatImgCount = 0;
  136. for (var j = 0; j < imgs.length;) {
  137. imgs[j].outerHTML = "#FormatImgID_" + formatImgCount + "#";
  138. formatImgCount++;
  139. }
  140. }
  141. var strongarray = new Array();
  142. var strongcount = 0;
  143. for(var i=0;i<tmpDiv.getElementsByTagName('b').length;i++){
  144. strongarray[strongcount] = tmpDiv.getElementsByTagName('b')[i].innerText.trim();
  145. tmpDiv.getElementsByTagName('b')[i].innerHTML = "#FormatStrongID_" + strongcount + "#";
  146. strongcount++;
  147. }
  148. for(var i=0;i<tmpDiv.getElementsByTagName('strong').length;i++){
  149. strongarray[strongcount] =tmpDiv.getElementsByTagName('strong')[i].innerText.trim();
  150. tmpDiv.getElementsByTagName('strong')[i].innerHTML = "#FormatStrongID_" + strongcount + "#";
  151. strongcount++;
  152. }
  153. var html = processFormatText(tmpDiv.innerText);
  154. //page
  155. //html = html.replace(/<p>\[!--empirenews.page--\]<\/p>/gi,'<div style="page-break-after: always;"><span style="display: none;">&nbsp;</span></div>');
  156. if (temptable != null && temptable.length > 0) {
  157. for (var j = 0; j < temptable.length; j++) {
  158. var tablehtml = temptable[j];
  159. html = html.replace("#FormatTableID_" + j + "#", tablehtml);
  160. }
  161. }
  162. if (tempobject != null && tempobject.length > 0) {
  163. for (var j = 0; j < tempobject.length; j++) {
  164. var objecthtml = "<p align=\"center\">" + tempobject[j] + "</p>";
  165. html = html.replace("#FormatObjectID_" + j + "#", objecthtml);
  166. }
  167. }
  168. if (tempimg != null && tempimg.length > 0) {
  169. for (var j = 0; j < tempimg.length; j++) {
  170. var imgheight="";
  171. var imgwidth="";
  172. if (tempimg[j].height!=0)
  173. imaheight=" height=\"" + tempimg[j].height + "\"";
  174. if (tempimg[j].width!=0)
  175. imgwidth=" width=\"" + tempimg[j].width + "\"";
  176. var imgalign="";
  177. if(tempimg[j].align!="")
  178. imgalign=" align=\"" + tempimg[j].align + "\"";
  179. var imghtml = "<p align=\"center\"><img src=\"" + tempimg[j].src + "\" alt=\"" + tempimg[j].alt + "\"" + imgwidth + " " + imgheight + " align=\"" + tempimg[j].align + "\" border=\"0\"></p>";
  180. html = html.replace("#FormatImgID_" + j + "#", imghtml);
  181. }
  182. }
  183. for(var i=0;i<strongcount;i++){
  184. html = html.replace("#FormatStrongID_" + i + "#", "<p><strong>"+strongarray[i]+"</strong></p>");
  185. }
  186. while(html.indexOf("</p></p>")!=-1) html=html.replace("</p></p>","</p>");
  187. while(html.indexOf('<p><p align="center">')!=-1) html=html.replace('<p><p align="center">','<p align="center">');
  188. editor.setData(html);
  189. } else {
  190. }
  191. }else{
  192. alert('必须在设计模式下操作!');
  193. }
  194. }
  195. function processFormatText(textContext) {
  196. var text = DBC2SBC(textContext);
  197. var prefix = "";
  198. var tmps = text.split("\n");
  199. var html = "";
  200. for (var i = 0; i < tmps.length; i++) {
  201. var tmp = tmps[i].trim();
  202. if (tmp.length > 0) {
  203. var reg = /#Format[A-Za-z]+_\d+#/gi;
  204. var f = reg.exec(tmp);
  205. if(f != null){
  206. tmp = tmp.replace(/#Format[A-Za-z]+_\d+#/gi,'');
  207. html += f;
  208. if(tmp!="")
  209. html += "<p align=\"center\">" + tmp + "</p>\n"
  210. }else{
  211. html += "<p>  " + tmp + "</p>\n";
  212. }
  213. }
  214. }
  215. return html;
  216. }
  217. function DBC2SBC(str) {
  218. var result = '';
  219. for (var i = 0; i < str.length; i++) {
  220. var code = str.charCodeAt(i);
  221. // “65281”是“!”,“65373”是“}”,“65292”是“,”。不转换","
  222. if (code >= 65281 && code < 65373 && code != 65292 && code != 65306){
  223. // “65248”是转换码距
  224. result += String.fromCharCode(str.charCodeAt(i) - 65248);
  225. } else {
  226. result += str.charAt(i);
  227. }
  228. }
  229. return result;
  230. }
  231. String.prototype.trim = function()
  232. {
  233. return this.replace(/(^[\s ]*)|([\s ]*$)/g, "");
  234. };
  235. String.prototype.leftTrim = function()
  236. {
  237. return this.replace(/(^\s*)/g, "");
  238. };
  239. String.prototype.rightTrim = function()
  240. {
  241. return this.replace(/(\s*$)/g, "");
  242. };