umeditor.config.js 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /**
  2. * umeditor完整配置项
  3. * 可以在这里配置整个编辑器的特性
  4. */
  5. /**************************提示********************************
  6. * 所有被注释的配置项均为UEditor默认值。
  7. * 修改默认配置请首先确保已经完全明确该参数的真实用途。
  8. * 主要有两种修改方案,一种是取消此处注释,然后修改成对应参数;另一种是在实例化编辑器时传入对应参数。
  9. * 当升级编辑器时,可直接使用旧版配置文件替换新版配置文件,不用担心旧版配置文件中因缺少新功能所需的参数而导致脚本报错。
  10. **************************提示********************************/
  11. (function () {
  12. var URL = window.UMEDITOR_HOME_URL || (function () {
  13. function PathStack() {
  14. this.documentURL = self.document.URL || self.location.href;
  15. this.separator = '/';
  16. this.separatorPattern = /\\|\//g;
  17. this.currentDir = './';
  18. this.currentDirPattern = /^[.]\/]/;
  19. this.path = this.documentURL;
  20. this.stack = [];
  21. this.push(this.documentURL);
  22. }
  23. PathStack.isParentPath = function (path) {
  24. return path === '..';
  25. };
  26. PathStack.hasProtocol = function (path) {
  27. return !!PathStack.getProtocol(path);
  28. };
  29. PathStack.getProtocol = function (path) {
  30. var protocol = /^[^:]*:\/*/.exec(path);
  31. return protocol ? protocol[0] : null;
  32. };
  33. PathStack.prototype = {
  34. push: function (path) {
  35. this.path = path;
  36. update.call(this);
  37. parse.call(this);
  38. return this;
  39. },
  40. getPath: function () {
  41. return this + "";
  42. },
  43. toString: function () {
  44. return this.protocol + (this.stack.concat([''])).join(this.separator);
  45. }
  46. };
  47. function update() {
  48. var protocol = PathStack.getProtocol(this.path || '');
  49. if (protocol) {
  50. //根协议
  51. this.protocol = protocol;
  52. //local
  53. this.localSeparator = /\\|\//.exec(this.path.replace(protocol, ''))[0];
  54. this.stack = [];
  55. } else {
  56. protocol = /\\|\//.exec(this.path);
  57. protocol && (this.localSeparator = protocol[0]);
  58. }
  59. }
  60. function parse() {
  61. var parsedStack = this.path.replace(this.currentDirPattern, '');
  62. if (PathStack.hasProtocol(this.path)) {
  63. parsedStack = parsedStack.replace(this.protocol, '');
  64. }
  65. parsedStack = parsedStack.split(this.localSeparator);
  66. parsedStack.length = parsedStack.length - 1;
  67. for (var i = 0, tempPath, l = parsedStack.length, root = this.stack; i < l; i++) {
  68. tempPath = parsedStack[i];
  69. if (tempPath) {
  70. if (PathStack.isParentPath(tempPath)) {
  71. root.pop();
  72. } else {
  73. root.push(tempPath);
  74. }
  75. }
  76. }
  77. }
  78. var currentPath = document.getElementsByTagName('script');
  79. currentPath = currentPath[ currentPath.length - 1 ].src;
  80. return new PathStack().push(currentPath) + "";
  81. })();
  82. /**
  83. * 配置项主体。注意,此处所有涉及到路径的配置别遗漏URL变量。
  84. */
  85. window.UMEDITOR_CONFIG = {
  86. //为编辑器实例添加一个路径,这个不能被注释
  87. UMEDITOR_HOME_URL: URL
  88. //图片上传配置区
  89. , imageUrl: URL + "php/imageUp.php" //图片上传提交地址
  90. , imagePath: "" //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置
  91. , imageFieldName: "upfile" //图片数据的key,若此处修改,需要在后台对应文件修改对应参数
  92. //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的从新定义
  93. , toolbar: [
  94. 'source | undo redo | bold italic underline strikethrough | superscript subscript | forecolor backcolor | removeformat |',
  95. 'insertorderedlist insertunorderedlist | selectall cleardoc paragraph | fontfamily fontsize',
  96. '| justifyleft justifycenter justifyright justifyjustify |',
  97. 'link unlink | emotion image video | map',
  98. '| horizontal print preview fullscreen', 'drafts', 'formula'
  99. ]
  100. //语言配置项,默认是zh-cn。有需要的话也可以使用如下这样的方式来自动多语言切换,当然,前提条件是lang文件夹下存在对应的语言文件:
  101. //lang值也可以通过自动获取 (navigator.language||navigator.browserLanguage ||navigator.userLanguage).toLowerCase()
  102. //,lang:"zh-cn"
  103. //,langPath:URL +"lang/"
  104. //ie下的链接自动监测
  105. //,autourldetectinie:false
  106. //主题配置项,默认是default。有需要的话也可以使用如下这样的方式来自动多主题切换,当然,前提条件是themes文件夹下存在对应的主题文件:
  107. //现有如下皮肤:default
  108. //,theme:'default'
  109. //,themePath:URL +"themes/"
  110. //针对getAllHtml方法,会在对应的head标签中增加该编码设置。
  111. //,charset:"utf-8"
  112. //常用配置项目
  113. //,isShow : true //默认显示编辑器
  114. //,initialContent:'欢迎使用UMEDITOR!' //初始化编辑器的内容,也可以通过textarea/script给值,看官网例子
  115. //,initialFrameWidth:500 //初始化编辑器宽度,默认500
  116. //,initialFrameHeight:500 //初始化编辑器高度,默认500
  117. //,autoClearinitialContent:true //是否自动清除编辑器初始内容,注意:如果focus属性设置为true,这个也为真,那么编辑器一上来就会触发导致初始化的内容看不到了
  118. //,textarea:'editorValue' // 提交表单时,服务器获取编辑器提交内容的所用的参数,多实例时可以给容器name属性,会将name给定的值最为每个实例的键值,不用每次实例化的时候都设置这个值
  119. //,focus:false //初始化时,是否让编辑器获得焦点true或false
  120. //,autoClearEmptyNode : true //getContent时,是否删除空的inlineElement节点(包括嵌套的情况)
  121. //,fullscreen : false //是否开启初始化时即全屏,默认关闭
  122. //,readonly : false //编辑器初始化结束后,编辑区域是否是只读的,默认是false
  123. //,zIndex : 900 //编辑器层级的基数,默认是900
  124. //如果自定义,最好给p标签如下的行高,要不输入中文时,会有跳动感
  125. //注意这里添加的样式,最好放在.edui-editor-body .edui-body-container这两个的下边,防止跟页面上css冲突
  126. //,initialStyle:'.edui-editor-body .edui-body-container p{line-height:1em}'
  127. //,autoSyncData:true //自动同步编辑器要提交的数据
  128. //,emotionLocalization:false //是否开启表情本地化,默认关闭。若要开启请确保emotion文件夹下包含官网提供的images表情文件夹
  129. //,allHtmlEnabled:false //提交到后台的数据是否包含整个html字符串
  130. //fontfamily
  131. //字体设置
  132. // ,'fontfamily':[
  133. // { name: 'songti', val: '宋体,SimSun'},
  134. // ]
  135. //fontsize
  136. //字号
  137. //,'fontsize':[10, 11, 12, 14, 16, 18, 20, 24, 36]
  138. //paragraph
  139. //段落格式 值留空时支持多语言自动识别,若配置,则以配置值为准
  140. //,'paragraph':{'p':'', 'h1':'', 'h2':'', 'h3':'', 'h4':'', 'h5':'', 'h6':''}
  141. //undo
  142. //可以最多回退的次数,默认20
  143. //,maxUndoCount:20
  144. //当输入的字符数超过该值时,保存一次现场
  145. //,maxInputCount:1
  146. //imageScaleEnabled
  147. // 是否允许点击文件拖拽改变大小,默认true
  148. //,imageScaleEnabled:true
  149. //dropFileEnabled
  150. // 是否允许拖放图片到编辑区域,上传并插入,默认true
  151. //,dropFileEnabled:true
  152. //pasteImageEnabled
  153. // 是否允许粘贴QQ截屏,上传并插入,默认true
  154. //,pasteImageEnabled:true
  155. //autoHeightEnabled
  156. // 是否自动长高,默认true
  157. //,autoHeightEnabled:true
  158. //autoFloatEnabled
  159. //是否保持toolbar的位置不动,默认true
  160. //,autoFloatEnabled:true
  161. //浮动时工具栏距离浏览器顶部的高度,用于某些具有固定头部的页面
  162. //,topOffset:30
  163. //填写过滤规则
  164. , filterRules: {}
  165. // xss 过滤是否开启,inserthtml等操作
  166. , xssFilterRules: true
  167. //input xss过滤
  168. , inputXssFilter: true
  169. //output xss过滤
  170. , outputXssFilter: true
  171. // xss过滤白名单 名单来源: https://raw.githubusercontent.com/leizongmin/js-xss/master/lib/default.js
  172. , whiteList: {
  173. a: ['target', 'href', 'title', 'style', 'class', 'id'],
  174. abbr: ['title', 'style', 'class', 'id'],
  175. address: ['style', 'class', 'id'],
  176. area: ['shape', 'coords', 'href', 'alt', 'style', 'class', 'id'],
  177. article: ['style', 'class', 'id'],
  178. aside: ['style', 'class', 'id'],
  179. audio: ['autoplay', 'controls', 'loop', 'preload', 'src', 'style', 'class', 'id'],
  180. b: ['style', 'class', 'id'],
  181. bdi: ['dir'],
  182. bdo: ['dir'],
  183. big: [],
  184. blockquote: ['cite', 'style', 'class', 'id'],
  185. br: [],
  186. caption: ['style', 'class', 'id'],
  187. center: [],
  188. cite: [],
  189. code: ['style', 'class', 'id'],
  190. col: ['align', 'valign', 'span', 'width', 'style', 'class', 'id'],
  191. colgroup: ['align', 'valign', 'span', 'width', 'style', 'class', 'id'],
  192. dd: ['style', 'class', 'id'],
  193. del: ['datetime', 'style', 'class', 'id'],
  194. details: ['open', 'style', 'class', 'id'],
  195. div: ['style', 'class', 'id'],
  196. dl: ['style', 'class', 'id'],
  197. dt: ['style', 'class', 'id'],
  198. em: ['style', 'class', 'id'],
  199. embed: ['style', 'class', 'id', '_url', 'type', 'pluginspage', 'src', 'width', 'height', 'wmode', 'play', 'loop', 'menu', 'allowscriptaccess', 'allowfullscreen'],
  200. font: ['color', 'size', 'face', 'style', 'class', 'id'],
  201. footer: ['style', 'class', 'id'],
  202. h1: ['style', 'class', 'id'],
  203. h2: ['style', 'class', 'id'],
  204. h3: ['style', 'class', 'id'],
  205. h4: ['style', 'class', 'id'],
  206. h5: ['style', 'class', 'id'],
  207. h6: ['style', 'class', 'id'],
  208. header: ['style', 'class', 'id'],
  209. hr: ['style', 'class', 'id'],
  210. i: ['style', 'class', 'id'],
  211. iframe: ['style', 'class', 'id', 'src', 'frameborder', 'data-latex'],
  212. img: ['src', 'alt', 'title', 'width', 'height', 'style', 'class', 'id', '_url'],
  213. ins: ['datetime', 'style', 'class', 'id'],
  214. li: ['style', 'class', 'id'],
  215. mark: [],
  216. nav: [],
  217. ol: ['style', 'class', 'id'],
  218. p: ['style', 'class', 'id'],
  219. pre: ['style', 'class', 'id'],
  220. s: [],
  221. section: [],
  222. small: ['style', 'class', 'id'],
  223. span: ['style', 'class', 'id'],
  224. sub: ['style', 'class', 'id'],
  225. sup: ['style', 'class', 'id'],
  226. strong: ['style', 'class', 'id'],
  227. table: ['width', 'border', 'align', 'valign', 'style', 'class', 'id'],
  228. tbody: ['align', 'valign', 'style', 'class', 'id'],
  229. td: ['width', 'rowspan', 'colspan', 'align', 'valign', 'style', 'class', 'id'],
  230. tfoot: ['align', 'valign', 'style', 'class', 'id'],
  231. th: ['width', 'rowspan', 'colspan', 'align', 'valign', 'style', 'class', 'id'],
  232. thead: ['align', 'valign', 'style', 'class', 'id'],
  233. tr: ['rowspan', 'align', 'valign', 'style', 'class', 'id'],
  234. tt: ['style', 'class', 'id'],
  235. u: [],
  236. ul: ['style', 'class', 'id'],
  237. svg: ['style', 'class', 'id', 'width', 'height', 'xmlns', 'fill', 'viewBox'],
  238. video: ['autoplay', 'controls', 'loop', 'preload', 'src', 'height', 'width', 'style', 'class', 'id']
  239. }
  240. };
  241. })();