umeditor.config.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /**
  2. * umeditor完整配置项
  3. * 可以在这里配置整个编辑器的特性
  4. */
  5. /**************************提示********************************
  6. * 所有被注释的配置项均为UEditor默认值。
  7. * 修改默认配置请首先确保已经完全明确该参数的真实用途。
  8. * 主要有两种修改方案,一种是取消此处注释,然后修改成对应参数;另一种是在实例化编辑器时传入对应参数。
  9. * 当升级编辑器时,可直接使用旧版配置文件替换新版配置文件,不用担心旧版配置文件中因缺少新功能所需的参数而导致脚本报错。
  10. **************************提示********************************/
  11. (function () {
  12. /**
  13. * 编辑器资源文件根路径。它所表示的含义是:以编辑器实例化页面为当前路径,指向编辑器资源文件(即dialog等文件夹)的路径。
  14. * 鉴于很多同学在使用编辑器的时候出现的种种路径问题,此处强烈建议大家使用"相对于网站根目录的相对路径"进行配置。
  15. * "相对于网站根目录的相对路径"也就是以斜杠开头的形如"/myProject/umeditor/"这样的路径。
  16. * 如果站点中有多个不在同一层级的页面需要实例化编辑器,且引用了同一UEditor的时候,此处的URL可能不适用于每个页面的编辑器。
  17. * 因此,UEditor提供了针对不同页面的编辑器可单独配置的根路径,具体来说,在需要实例化编辑器的页面最顶部写上如下代码即可。当然,需要令此处的URL等于对应的配置。
  18. * window.UMEDITOR_HOME_URL = "/xxxx/xxxx/";
  19. */
  20. var URL = window.UMEDITOR_HOME_URL || (function () {
  21. function PathStack() {
  22. this.documentURL = self.document.URL || self.location.href;
  23. this.separator = '/';
  24. this.separatorPattern = /\\|\//g;
  25. this.currentDir = './';
  26. this.currentDirPattern = /^[.]\/]/;
  27. this.path = this.documentURL;
  28. this.stack = [];
  29. this.push(this.documentURL);
  30. }
  31. PathStack.isParentPath = function (path) {
  32. return path === '..';
  33. };
  34. PathStack.hasProtocol = function (path) {
  35. return !!PathStack.getProtocol(path);
  36. };
  37. PathStack.getProtocol = function (path) {
  38. var protocol = /^[^:]*:\/*/.exec(path);
  39. return protocol ? protocol[0] : null;
  40. };
  41. PathStack.prototype = {
  42. push: function (path) {
  43. this.path = path;
  44. update.call(this);
  45. parse.call(this);
  46. return this;
  47. },
  48. getPath: function () {
  49. return this + "";
  50. },
  51. toString: function () {
  52. return this.protocol + (this.stack.concat([''])).join(this.separator);
  53. }
  54. };
  55. function update() {
  56. var protocol = PathStack.getProtocol(this.path || '');
  57. if (protocol) {
  58. //根协议
  59. this.protocol = protocol;
  60. //local
  61. this.localSeparator = /\\|\//.exec(this.path.replace(protocol, ''))[0];
  62. this.stack = [];
  63. } else {
  64. protocol = /\\|\//.exec(this.path);
  65. protocol && (this.localSeparator = protocol[0]);
  66. }
  67. }
  68. function parse() {
  69. var parsedStack = this.path.replace(this.currentDirPattern, '');
  70. if (PathStack.hasProtocol(this.path)) {
  71. parsedStack = parsedStack.replace(this.protocol, '');
  72. }
  73. parsedStack = parsedStack.split(this.localSeparator);
  74. parsedStack.length = parsedStack.length - 1;
  75. for (var i = 0, tempPath, l = parsedStack.length, root = this.stack; i < l; i++) {
  76. tempPath = parsedStack[i];
  77. if (tempPath) {
  78. if (PathStack.isParentPath(tempPath)) {
  79. root.pop();
  80. } else {
  81. root.push(tempPath);
  82. }
  83. }
  84. }
  85. }
  86. var currentPath = document.getElementsByTagName('script');
  87. currentPath = currentPath[currentPath.length - 1].src;
  88. return new PathStack().push(currentPath) + "";
  89. })();
  90. /**
  91. * 配置项主体。注意,此处所有涉及到路径的配置别遗漏URL变量。
  92. */
  93. window.UMEDITOR_CONFIG = {
  94. //为编辑器实例添加一个路径,这个不能被注释
  95. UMEDITOR_HOME_URL: URL
  96. //图片上传配置区
  97. , imageUrl: STORE_URL + "/upload/image" //图片上传提交地址
  98. , imagePath: URL + "php/" //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置
  99. , imageFieldName: "iFile" //图片数据的key,若此处修改,需要在后台对应文件修改对应参数
  100. //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的从新定义
  101. // ,toolbar:[
  102. // 'source | undo redo | bold italic underline strikethrough | superscript subscript | forecolor backcolor | removeformat |',
  103. // 'insertorderedlist insertunorderedlist | selectall cleardoc paragraph | fontfamily fontsize' ,
  104. // '| justifyleft justifycenter justifyright justifyjustify |',
  105. // 'link unlink | emotion image video | map',
  106. // '| horizontal print preview fullscreen', 'drafts', 'formula'
  107. // ]
  108. , toolbar: [
  109. 'source | undo redo | bold italic underline strikethrough | superscript subscript | forecolor backcolor | removeformat |',
  110. 'insertorderedlist insertunorderedlist | selectall paragraph | fontfamily fontsize',
  111. '| justifyleft justifycenter justifyright justifyjustify ',
  112. '| image insertimage video',
  113. '| horizontal'
  114. ]
  115. //语言配置项,默认是zh-cn。有需要的话也可以使用如下这样的方式来自动多语言切换,当然,前提条件是lang文件夹下存在对应的语言文件:
  116. //lang值也可以通过自动获取 (navigator.language||navigator.browserLanguage ||navigator.userLanguage).toLowerCase()
  117. //,lang:"zh-cn"
  118. //,langPath:URL +"lang/"
  119. //ie下的链接自动监测
  120. //,autourldetectinie:false
  121. //主题配置项,默认是default。有需要的话也可以使用如下这样的方式来自动多主题切换,当然,前提条件是themes文件夹下存在对应的主题文件:
  122. //现有如下皮肤:default
  123. //,theme:'default'
  124. //,themePath:URL +"themes/"
  125. // 针对getAllHtml方法,会在对应的head标签中增加该编码设置。
  126. ,charset:"utf-8"
  127. //常用配置项目
  128. //,isShow : true //默认显示编辑器
  129. //,initialContent:'欢迎使用UMEDITOR!' //初始化编辑器的内容,也可以通过textarea/script给值,看官网例子
  130. //,initialFrameWidth:500 //初始化编辑器宽度,默认500
  131. //,initialFrameHeight:500 //初始化编辑器高度,默认500
  132. //,autoClearinitialContent:true //是否自动清除编辑器初始内容,注意:如果focus属性设置为true,这个也为真,那么编辑器一上来就会触发导致初始化的内容看不到了
  133. //,textarea:'editorValue' // 提交表单时,服务器获取编辑器提交内容的所用的参数,多实例时可以给容器name属性,会将name给定的值最为每个实例的键值,不用每次实例化的时候都设置这个值
  134. //,focus:false //初始化时,是否让编辑器获得焦点true或false
  135. //,autoClearEmptyNode : true //getContent时,是否删除空的inlineElement节点(包括嵌套的情况)
  136. //,fullscreen : false //是否开启初始化时即全屏,默认关闭
  137. //,readonly : false //编辑器初始化结束后,编辑区域是否是只读的,默认是false
  138. //,zIndex : 900 //编辑器层级的基数,默认是900
  139. //如果自定义,最好给p标签如下的行高,要不输入中文时,会有跳动感
  140. //注意这里添加的样式,最好放在.edui-editor-body .edui-body-container这两个的下边,防止跟页面上css冲突
  141. //,initialStyle:'.edui-editor-body .edui-body-container p{line-height:1em}'
  142. //,autoSyncData:true //自动同步编辑器要提交的数据
  143. //,emotionLocalization:false //是否开启表情本地化,默认关闭。若要开启请确保emotion文件夹下包含官网提供的images表情文件夹
  144. //,allHtmlEnabled:false //提交到后台的数据是否包含整个html字符串
  145. //fontfamily
  146. //字体设置
  147. // ,'fontfamily':[
  148. // { name: 'songti', val: '宋体,SimSun'},
  149. // ]
  150. //fontsize
  151. //字号
  152. //,'fontsize':[10, 11, 12, 14, 16, 18, 20, 24, 36]
  153. //paragraph
  154. //段落格式 值留空时支持多语言自动识别,若配置,则以配置值为准
  155. //,'paragraph':{'p':'', 'h1':'', 'h2':'', 'h3':'', 'h4':'', 'h5':'', 'h6':''}
  156. //undo
  157. //可以最多回退的次数,默认20
  158. //,maxUndoCount:20
  159. //当输入的字符数超过该值时,保存一次现场
  160. //,maxInputCount:1
  161. //imageScaleEnabled
  162. // 是否允许点击文件拖拽改变大小,默认true
  163. ,imageScaleEnabled: false
  164. //dropFileEnabled
  165. // 是否允许拖放图片到编辑区域,上传并插入,默认true
  166. //,dropFileEnabled:true
  167. //pasteImageEnabled
  168. // 是否允许粘贴QQ截屏,上传并插入,默认true
  169. //,pasteImageEnabled:true
  170. //autoHeightEnabled
  171. // 是否自动长高,默认true
  172. ,autoHeightEnabled: false
  173. //autoFloatEnabled
  174. //是否保持toolbar的位置不动,默认true
  175. , autoFloatEnabled: false
  176. //浮动时工具栏距离浏览器顶部的高度,用于某些具有固定头部的页面
  177. , topOffset: 51
  178. //填写过滤规则
  179. //,filterRules: {}
  180. };
  181. })();