心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ueditor.config.js 24KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. /**
  2. * ueditor plus 完整配置项
  3. * 可以在这里配置整个编辑器的特性
  4. */
  5. /**************************提示********************************
  6. * 所有被注释的配置项均为UEditor默认值。
  7. * 修改默认配置请首先确保已经完全明确该参数的真实用途。
  8. * 主要有两种修改方案,一种是取消此处注释,然后修改成对应参数;另一种是在实例化编辑器时传入对应参数。
  9. * 当升级编辑器时,可直接使用旧版配置文件替换新版配置文件,不用担心旧版配置文件中因缺少新功能所需的参数而导致脚本报错。
  10. **************************提示********************************/
  11. (function () {
  12. /**
  13. * 编辑器资源文件根路径。它所表示的含义是:以编辑器实例化页面为当前路径,指向编辑器资源文件(即dialog等文件夹)的路径。
  14. * 鉴于很多同学在使用编辑器的时候出现的种种路径问题,此处强烈建议大家使用"相对于网站根目录的相对路径"进行配置。
  15. * "相对于网站根目录的相对路径"也就是以斜杠开头的形如"/myProject/ueditor/"这样的路径。
  16. * 如果站点中有多个不在同一层级的页面需要实例化编辑器,且引用了同一UEditor的时候,此处的URL可能不适用于每个页面的编辑器。
  17. * 因此,UEditor提供了针对不同页面的编辑器可单独配置的根路径,具体来说,在需要实例化编辑器的页面最顶部写上如下代码即可。当然,需要令此处的URL等于对应的配置。
  18. * window.UEDITOR_HOME_URL = "/xxxx/xxxx/";
  19. */
  20. var URL, CORS_URL;
  21. if (window.UEDITOR_HOME_URL) {
  22. URL = window.UEDITOR_HOME_URL;
  23. } else if (window.__msCDN) {
  24. URL = window.__msCDN + 'asset/vendor/ueditor/';
  25. } else if (window.__msRoot) {
  26. URL = window.__msRoot + 'asset/vendor/ueditor/';
  27. } else {
  28. URL = getUEBasePath();
  29. }
  30. if (window.__msRoot) {
  31. CORS_URL = window.__msRoot + 'asset/vendor/ueditor/';
  32. } else {
  33. CORS_URL = getUEBasePath();
  34. }
  35. /**
  36. * 配置项主体。注意,此处所有涉及到路径的配置别遗漏URL变量。
  37. */
  38. window.UEDITOR_CONFIG = {
  39. //为编辑器实例添加一个路径,这个不能被注释
  40. UEDITOR_HOME_URL: URL,
  41. UEDITOR_CORS_URL: CORS_URL,
  42. // 服务器统一请求接口路径
  43. //serverUrl: "/ueditor-plus/_demo_server/handle.php",
  44. serverUrl: URL + "php/controller.php",
  45. //工具栏上的所有的功能按钮和下拉框,可以在new编辑器的实例时选择自己需要的重新定义
  46. toolbars: [
  47. [
  48. "fullscreen", // 全屏
  49. "source", // 源代码
  50. "|",
  51. "undo", // 撤销
  52. "redo", // 重做
  53. "|",
  54. "bold", // 加粗
  55. "italic", // 斜体
  56. "underline", // 下划线
  57. "fontborder", // 字符边框
  58. "strikethrough",// 删除线
  59. "superscript", // 上标
  60. "subscript", // 下标
  61. "removeformat", // 清除格式
  62. "formatmatch", // 格式刷
  63. "autotypeset", // 自动排版
  64. "blockquote", // 引用
  65. "pasteplain", // 纯文本粘贴模式
  66. "|",
  67. "forecolor", // 字体颜色
  68. "backcolor", // 背景色
  69. "insertorderedlist", // 有序列表
  70. "insertunorderedlist", // 无序列表
  71. "selectall", // 全选
  72. "cleardoc", // 清空文档
  73. "|",
  74. "rowspacingtop",// 段前距
  75. "rowspacingbottom", // 段后距
  76. "lineheight", // 行间距
  77. "|",
  78. "customstyle", // 自定义标题
  79. "paragraph", // 段落格式
  80. "fontfamily", // 字体
  81. "fontsize", // 字号
  82. "|",
  83. "directionalityltr", // 从左向右输入
  84. "directionalityrtl", // 从右向左输入
  85. "indent", // 首行缩进
  86. "|",
  87. "justifyleft", // 居左对齐
  88. "justifycenter", // 居中对齐
  89. "justifyright",
  90. "justifyjustify", // 两端对齐
  91. "|",
  92. "touppercase", // 字母大写
  93. "tolowercase", // 字母小写
  94. "|",
  95. "link", // 超链接
  96. "unlink", // 取消链接
  97. "anchor", // 锚点
  98. "|",
  99. "imagenone", // 图片默认
  100. "imageleft", // 图片左浮动
  101. "imageright", // 图片右浮动
  102. "imagecenter", // 图片居中
  103. "|",
  104. "simpleupload", // 单图上传
  105. "insertimage", // 多图上传
  106. "emotion", // 表情
  107. "scrawl", // 涂鸦
  108. "insertvideo", // 视频
  109. "attachment", // 附件
  110. "insertframe", // 插入Iframe
  111. "insertcode", // 插入代码
  112. "pagebreak", // 分页
  113. "template", // 模板
  114. "background", // 背景
  115. "formula", // 公式
  116. "|",
  117. "horizontal", // 分隔线
  118. "date", // 日期
  119. "time", // 时间
  120. "spechars", // 特殊字符
  121. "wordimage", // Word图片转存
  122. "|",
  123. "inserttable", // 插入表格
  124. "deletetable", // 删除表格
  125. "insertparagraphbeforetable", // 表格前插入行
  126. "insertrow", // 前插入行
  127. "deleterow", // 删除行
  128. "insertcol", // 前插入列
  129. "deletecol", // 删除列
  130. "mergecells", // 合并多个单元格
  131. "mergeright", // 右合并单元格
  132. "mergedown", // 下合并单元格
  133. "splittocells", // 完全拆分单元格
  134. "splittorows", // 拆分成行
  135. "splittocols", // 拆分成列
  136. "|",
  137. "print", // 打印
  138. "preview", // 预览
  139. "searchreplace", // 查询替换
  140. "help", // 帮助
  141. ]
  142. ]
  143. // 自定义工具栏按钮点击,返回 true 表示已经处理点击,会阻止默认事件
  144. , toolbarCallback: function (cmd, editor) {
  145. // switch(cmd){
  146. // case 'insertimage':
  147. // editor.execCommand('insertHtml', '<p><img src="xxxxx" /></p>');
  148. // console.log('toolbarCallback',cmd, editor)
  149. // return true;
  150. // case 'insertvideo':
  151. // editor.execCommand('insertHtml', '<p><iframe src="xxxxx" /></p>');
  152. // console.log('toolbarCallback',cmd, editor)
  153. // return true;
  154. // case 'attachment':
  155. // console.log('toolbarCallback',cmd, editor)
  156. // editor.execCommand('insertHtml', '<p><a href="xxx.zip">下载文件</a></p>');
  157. // return true;
  158. // }
  159. }
  160. // 插入图片自定义配置
  161. , imageConfig: {
  162. // 禁止本地上传
  163. disableUpload: false,
  164. // 禁止在线管理
  165. disableOnline: false,
  166. // 自定义选择按钮
  167. selectCallback: null,
  168. // selectCallback: function(editor,cb){
  169. // console.log('selectCallback',cb);
  170. // setTimeout(function(){
  171. // cb({
  172. // path:'https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png',
  173. // name:'测试图片'
  174. // });
  175. // },1000);
  176. // }
  177. }
  178. // 插入视频配置
  179. , videoConfig: {
  180. // 禁止本地上传,
  181. disableUpload: false,
  182. // 自定义选择按钮
  183. selectCallback: null,
  184. // selectCallback: function(editor,cb){
  185. // console.log('selectCallback',cb);
  186. // setTimeout(function(){
  187. // cb({
  188. // path:'https://www.bilibili.com/video/BV1y44y1g7NR?spm_id_from=333.1007.tianma.1-1-1.click',
  189. // name:'测试视频'
  190. // });
  191. // },1000);
  192. // }
  193. }
  194. // 公式配置
  195. , formulaConfig: {
  196. // 公式渲染链接模板
  197. imageUrlTemplate: 'https://latex.codecogs.com/svg.image?{}',
  198. // 为了更稳定的公式渲染服务,可以使用
  199. // 魔众官方公式转图片渲染引擎 https://api.tecmz.com
  200. }
  201. // 自动保存
  202. , autoSaveEnable: true
  203. // 浏览器初始化时自动恢复上一次的内容
  204. , autoSaveRestore: false
  205. // 自动保存Key,为空时根据网址自动计算
  206. , autoSaveKey: null
  207. //当鼠标放在工具栏上时显示的tooltip提示,留空支持自动多语言配置,否则以配置值为准
  208. //,labelMap:{
  209. // 'anchor':'', 'undo':''
  210. //}
  211. //语言配置项,默认是zh-cn。有需要的话也可以使用如下这样的方式来自动多语言切换,当然,前提条件是lang文件夹下存在对应的语言文件:
  212. //lang值也可以通过自动获取 (navigator.language||navigator.browserLanguage ||navigator.userLanguage).toLowerCase()
  213. //,lang:"zh-cn"
  214. //,langPath:URL +"lang/"
  215. //主题配置项,默认是default。有需要的话也可以使用如下这样的方式来自动多主题切换,当然,前提条件是themes文件夹下存在对应的主题文件:
  216. //现有如下皮肤:default
  217. //,theme:'default'
  218. //,themePath:URL +"themes/"
  219. //,zIndex : 900 //编辑器层级的基数,默认是900
  220. //针对getAllHtml方法,会在对应的head标签中增加该编码设置。
  221. //,charset:"utf-8"
  222. //若实例化编辑器的页面手动修改的domain,此处需要设置为true
  223. //,customDomain:false
  224. // 默认显示编辑器
  225. //,isShow : true
  226. // 提交表单时,服务器获取编辑器提交内容的所用的参数,多实例时可以给容器name属性,会将name给定的值最为每个实例的键值,不用每次实例化的时候都设置这个值
  227. //,textarea:'editorValue'
  228. // 初始化编辑器的内容,也可以通过 textarea/script 给值
  229. ,initialContent:''
  230. //,autoClearinitialContent:true //是否自动清除编辑器初始内容,注意:如果focus属性设置为true,这个也为真,那么编辑器一上来就会触发导致初始化的内容看不到了
  231. // 初始化时,是否让编辑器获得焦点
  232. ,focus:false
  233. // 编辑区自定义样式,如果自定义,最好给 p 标签如下的行高,要不输入中文时,会有跳动感
  234. ,initialStyle:'' // p{line-height:1em}
  235. //,iframeJsUrl: '' //给编辑区域的iframe引入一个js文件
  236. //,iframeCssUrl: URL + '/themes/iframe.css' //给编辑区域的iframe引入一个css文件
  237. // 给编辑器引入更多样式文件
  238. //,iframeCssUrlsAddition: []
  239. // 首行缩进距离,默认是 2em
  240. ,indentValue:'2em'
  241. // 初始化编辑器宽度,默认 1000
  242. // ,initialFrameWidth:1000
  243. // 初始化编辑器高度,默认 320
  244. ,initialFrameHeight:500
  245. // 编辑器初始化结束后,编辑区域是否是只读的,默认是false
  246. ,readonly : false
  247. // getContent时,是否删除空的inlineElement节点(包括嵌套的情况)
  248. ,autoClearEmptyNode : true
  249. // 启用拖放上传
  250. //,enableDragUpload: true
  251. // 启用粘贴上传
  252. //,enablePasteUpload: true
  253. // 启用图片拉伸缩放
  254. //,imageScaleEnabled: true
  255. // 是否开启初始化时即全屏,默认关闭
  256. ,fullscreen : false
  257. //,imagePopup:true //图片操作的浮层开关,默认打开
  258. // 自动同步编辑器要提交的数据
  259. //,autoSyncData:true
  260. // 是否开启表情本地化,默认关闭。若要开启请确保emotion文件夹下包含官网提供的images表情文件夹
  261. //,emotionLocalization:false
  262. // 粘贴只保留标签,去除标签所有属性
  263. //,retainOnlyLabelPasted: false
  264. // 是否默认为纯文本粘贴。false为不使用纯文本粘贴,true为使用纯文本粘贴
  265. //,pasteplain:false
  266. // 纯文本粘贴模式下的过滤规则
  267. //'filterTxtRules' : function(){
  268. // function transP(node){
  269. // node.tagName = 'p';
  270. // node.setStyle();
  271. // }
  272. // return {
  273. // //直接删除及其字节点内容
  274. // '-' : 'script style object iframe embed input select',
  275. // 'p': {$:{}},
  276. // 'br':{$:{}},
  277. // 'div':{'$':{}},
  278. // 'li':{'$':{}},
  279. // 'caption':transP,
  280. // 'th':transP,
  281. // 'tr':transP,
  282. // 'h1':transP,'h2':transP,'h3':transP,'h4':transP,'h5':transP,'h6':transP,
  283. // 'td':function(node){
  284. // //没有内容的td直接删掉
  285. // var txt = !!node.innerText();
  286. // if(txt){
  287. // node.parentNode.insertAfter(UE.uNode.createText(' &nbsp; &nbsp;'),node);
  288. // }
  289. // node.parentNode.removeChild(node,node.innerText())
  290. // }
  291. // }
  292. //}()
  293. // 提交到后台的数据是否包含整个html字符串
  294. ,allHtmlEnabled:false
  295. //insertorderedlist
  296. //有序列表的下拉配置,值留空时支持多语言自动识别,若配置值,则以此值为准
  297. //,'insertorderedlist':{
  298. // //自定的样式
  299. // 'num':'1,2,3...',
  300. // 'num1':'1),2),3)...',
  301. // 'num2':'(1),(2),(3)...',
  302. // 'cn':'一,二,三....',
  303. // 'cn1':'一),二),三)....',
  304. // 'cn2':'(一),(二),(三)....',
  305. // //系统自带
  306. // 'decimal' : '' , //'1,2,3...'
  307. // 'lower-alpha' : '' , // 'a,b,c...'
  308. // 'lower-roman' : '' , //'i,ii,iii...'
  309. // 'upper-alpha' : '' , lang //'A,B,C'
  310. // 'upper-roman' : '' //'I,II,III...'
  311. //}
  312. //insertunorderedlist
  313. //无序列表的下拉配置,值留空时支持多语言自动识别,若配置值,则以此值为准
  314. //,insertunorderedlist : { //自定的样式
  315. // 'dash' :'— 破折号', //-破折号
  316. // 'dot':' 。 小圆圈', //系统自带
  317. // 'circle' : '', // '○ 小圆圈'
  318. // 'disc' : '', // '● 小圆点'
  319. // 'square' : '' //'■ 小方块'
  320. //}
  321. //,listDefaultPaddingLeft : '30'//默认的左边缩进的基数倍
  322. //,listiconpath : 'http://bs.baidu.com/listicon/'//自定义标号的路径
  323. //,maxListLevel : 3 //限制可以tab的级数, 设置-1为不限制
  324. //,autoTransWordToList:false //禁止word中粘贴进来的列表自动变成列表标签
  325. // 字体设置 label 留空支持多语言自动切换,若配置,则以配置值为准
  326. //,'fontfamily':[
  327. // { label:'',name:'songti',val:'宋体,SimSun'},
  328. // { label:'',name:'kaiti',val:'楷体,楷体_GB2312, SimKai'},
  329. // { label:'',name:'yahei',val:'微软雅黑,Microsoft YaHei'},
  330. // { label:'',name:'heiti',val:'黑体, SimHei'},
  331. // { label:'',name:'lishu',val:'隶书, SimLi'},
  332. // { label:'',name:'andaleMono',val:'andale mono'},
  333. // { label:'',name:'arial',val:'arial, helvetica,sans-serif'},
  334. // { label:'',name:'arialBlack',val:'arial black,avant garde'},
  335. // { label:'',name:'comicSansMs',val:'comic sans ms'},
  336. // { label:'',name:'impact',val:'impact,chicago'},
  337. // { label:'',name:'timesNewRoman',val:'times new roman'}
  338. //]
  339. // 字号
  340. //,'fontsize':[10, 11, 12, 14, 16, 18, 20, 24, 36]
  341. // 段落格式 值留空时支持多语言自动识别,若配置,则以配置值为准
  342. //,'paragraph':{'p':'', 'h1':'', 'h2':'', 'h3':'', 'h4':'', 'h5':'', 'h6':''}
  343. // 段间距 值和显示的名字相同
  344. //,'rowspacingtop':['5', '10', '15', '20', '25']
  345. // 段间距 值和显示的名字相同
  346. //,'rowspacingbottom':['5', '10', '15', '20', '25']
  347. //行内间距 值和显示的名字相同
  348. //,'lineheight':['1', '1.5','1.75','2', '3', '4', '5']
  349. // customstyle
  350. //自定义样式,不支持国际化,此处配置值即可最后显示值
  351. //block的元素是依据设置段落的逻辑设置的,inline的元素依据BIU的逻辑设置
  352. //尽量使用一些常用的标签
  353. //参数说明
  354. //tag 使用的标签名字
  355. //label 显示的名字也是用来标识不同类型的标识符,注意这个值每个要不同,
  356. //style 添加的样式
  357. //每一个对象就是一个自定义的样式
  358. //,'customstyle':[
  359. // {tag:'h1', name:'tc', label:'', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;text-align:center;margin:0 0 20px 0;'},
  360. // {tag:'h1', name:'tl',label:'', style:'border-bottom:#ccc 2px solid;padding:0 4px 0 0;margin:0 0 10px 0;'},
  361. // {tag:'span',name:'im', label:'', style:'font-style:italic;font-weight:bold'},
  362. // {tag:'span',name:'hi', label:'', style:'font-style:italic;font-weight:bold;color:rgb(51, 153, 204)'}
  363. //]
  364. // 打开右键菜单功能
  365. ,enableContextMenu: true
  366. //右键菜单的内容,可以参考plugins/contextmenu.js里边的默认菜单的例子,label留空支持国际化,否则以此配置为准
  367. //,contextMenu:[
  368. // {
  369. // label:'', //显示的名称
  370. // cmdName:'selectall',//执行的command命令,当点击这个右键菜单时
  371. // //exec可选,有了exec就会在点击时执行这个function,优先级高于cmdName
  372. // exec:function () {
  373. // //this是当前编辑器的实例
  374. // //this.ui._dialogs['inserttableDialog'].open();
  375. // }
  376. // }
  377. //]
  378. //快捷菜单
  379. , shortcutMenu: [
  380. "fontfamily", // 字体
  381. "fontsize", // 字号
  382. "bold", // 加粗
  383. "italic", // 斜体
  384. "underline", // 下划线
  385. "strikethrough",// 删除线
  386. "fontborder", // 字符边框
  387. "forecolor", // 字体颜色
  388. // "shadowcolor", // 字体阴影
  389. // "backcolor", // 背景色
  390. "justifyleft", // 居左对齐
  391. "justifycenter", // 居中对齐
  392. "justifyright", // 居右对齐
  393. "justifyjustify", // 两端对齐
  394. // "textindent", // 首行缩进
  395. // "rowspacingtop", // 段前距
  396. // "rowspacingbottom", // 段后距
  397. // "outpadding", // 两侧距离
  398. "lineheight", // 行间距
  399. // "letterspacing" , // 字间距
  400. "insertorderedlist", // 有序列表
  401. "insertunorderedlist", // 无序列表
  402. "superscript", // 上标
  403. "subscript", // 下标
  404. "link", // 超链接
  405. "unlink", // 取消链接
  406. "touppercase", // 字母大写
  407. "tolowercase" // 字母小写
  408. ]
  409. // 是否启用元素路径,默认是显示
  410. ,elementPathEnabled : true
  411. // 是否开启字数统计
  412. ,wordCount:true
  413. // 允许的最大字符数
  414. ,maximumWords:10000
  415. //字数统计提示,{#count} 代表当前字数,{#leave}代表还可以输入多少字符数,留空支持多语言自动切换,否则按此配置显示
  416. //,wordCountMsg:'' //当前已输入 {#count} 个字符,您还可以输入{#leave} 个字符
  417. //超出字数限制提示 留空支持多语言自动切换,否则按此配置显示
  418. //,wordOverFlowMsg:'' //<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>
  419. // 点击tab键时移动的距离,tabSize倍数,tabNode什么字符做为单位
  420. //,tabSize:4
  421. //,tabNode:'&nbsp;'
  422. // 清除格式时可以删除的标签
  423. //,removeFormatTags:'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var'
  424. // 清除格式时可以删除的属性
  425. //,removeFormatAttributes:'class,style,lang,width,height,align,hspace,valign'
  426. // 可以最多撤销退回的次数,默认20
  427. ,maxUndoCount:20
  428. // 当输入的字符数超过该值时,保存一次现场
  429. ,maxInputCount:1
  430. // 是否自动长高,默认true
  431. ,autoHeightEnabled:true
  432. //scaleEnabled
  433. //是否可以拉伸长高,默认true(当开启时,自动长高失效)
  434. //,scaleEnabled:false
  435. //,minFrameWidth:800 //编辑器拖动时最小宽度,默认800
  436. //,minFrameHeight:220 //编辑器拖动时最小高度,默认220
  437. //autoFloatEnabled
  438. //是否保持toolbar的位置不动,默认true
  439. //,autoFloatEnabled:true
  440. //浮动时工具栏距离浏览器顶部的高度,用于某些具有固定头部的页面
  441. ,topOffset:50
  442. //编辑器底部距离工具栏高度(如果参数大于等于编辑器高度,则设置无效)
  443. //,toolbarTopOffset:400
  444. //设置远程图片是否抓取到本地保存
  445. ,catchRemoteImageEnable: true //设置是否抓取远程图片
  446. //pageBreakTag
  447. //分页标识符,默认是_ueditor_page_break_tag_
  448. //,pageBreakTag:'_ueditor_page_break_tag_'
  449. // 自动排版参数
  450. , autotypeset: {
  451. // 合并空行
  452. mergeEmptyline: true,
  453. // 去掉冗余的class
  454. removeClass: true,
  455. // 去掉空行
  456. removeEmptyline: false,
  457. // 段落的排版方式,可以是 left,right,center,justify 去掉这个属性表示不执行排版
  458. textAlign: "left",
  459. // 图片的浮动方式,独占一行剧中,左右浮动,默认: center,left,right,none 去掉这个属性表示不执行排版
  460. imageBlockLine: "center",
  461. // 根据规则过滤没事粘贴进来的内容
  462. pasteFilter: false,
  463. // 去掉所有的内嵌字号,使用编辑器默认的字号
  464. clearFontSize: false,
  465. // 去掉所有的内嵌字体,使用编辑器默认的字体
  466. clearFontFamily: false,
  467. // 去掉空节点
  468. removeEmptyNode: false,
  469. // 可以去掉的标签
  470. removeTagNames: { div: 1 },
  471. // 行首缩进
  472. indent: false,
  473. // 行首缩进的大小
  474. indentValue: "2em",
  475. // 全角转半角
  476. bdc2sb: false,
  477. // 半角转全角
  478. tobdc: false
  479. }
  480. //表格是否可以拖拽
  481. //,tableDragable: true
  482. //sourceEditor
  483. //源码的查看方式,codemirror 是代码高亮,textarea是文本框,默认是codemirror
  484. //注意默认codemirror只能在ie8+和非ie中使用
  485. //,sourceEditor:"codemirror"
  486. //如果sourceEditor是codemirror,还用配置一下两个参数
  487. //codeMirrorJsUrl js加载的路径,默认是 URL + "third-party/codemirror/codemirror.js"
  488. //,codeMirrorJsUrl:URL + "third-party/codemirror/codemirror.js"
  489. //codeMirrorCssUrl css加载的路径,默认是 URL + "third-party/codemirror/codemirror.css"
  490. //,codeMirrorCssUrl:URL + "third-party/codemirror/codemirror.css"
  491. //编辑器初始化完成后是否进入源码模式,默认为否。
  492. //,sourceEditorFirst:false
  493. //iframeUrlMap
  494. //dialog内容的路径 ~会被替换成URL,垓属性一旦打开,将覆盖所有的dialog的默认路径
  495. //,iframeUrlMap:{
  496. // 'anchor':'~/dialogs/anchor/anchor.html',
  497. //}
  498. //allowLinkProtocol 允许的链接地址,有这些前缀的链接地址不会自动添加http
  499. //, allowLinkProtocols: ['http:', 'https:', '#', '/', 'ftp:', 'mailto:', 'tel:', 'git:', 'svn:']
  500. //默认过滤规则相关配置项目
  501. //,disabledTableInTable:true //禁止表格嵌套
  502. // 允许进入编辑器的 div 标签自动变成 p 标签
  503. ,allowDivTransToP:true
  504. // 默认产出的数据中的color自动从rgb格式变成16进制格式
  505. ,rgb2Hex:true
  506. };
  507. function getUEBasePath(docUrl, confUrl) {
  508. return getBasePath(
  509. docUrl || self.document.URL || self.location.href,
  510. confUrl || getConfigFilePath()
  511. );
  512. }
  513. function getConfigFilePath() {
  514. var configPath = document.getElementsByTagName("script");
  515. return configPath[configPath.length - 1].src;
  516. }
  517. function getBasePath(docUrl, confUrl) {
  518. var basePath = confUrl;
  519. if (/^(\/|\\\\)/.test(confUrl)) {
  520. basePath =
  521. /^.+?\w(\/|\\\\)/.exec(docUrl)[0] + confUrl.replace(/^(\/|\\\\)/, "");
  522. } else if (!/^[a-z]+:/i.test(confUrl)) {
  523. docUrl = docUrl.split("#")[0].split("?")[0].replace(/[^\\\/]+$/, "");
  524. basePath = docUrl + "" + confUrl;
  525. }
  526. return optimizationPath(basePath);
  527. }
  528. function optimizationPath(path) {
  529. var protocol = /^[a-z]+:\/\//.exec(path)[0],
  530. tmp = null,
  531. res = [];
  532. path = path.replace(protocol, "").split("?")[0].split("#")[0];
  533. path = path.replace(/\\/g, "/").split(/\//);
  534. path[path.length - 1] = "";
  535. while (path.length) {
  536. if ((tmp = path.shift()) === "..") {
  537. res.pop();
  538. } else if (tmp !== ".") {
  539. res.push(tmp);
  540. }
  541. }
  542. return protocol + res.join("/");
  543. }
  544. window.UE = {
  545. getUEBasePath: getUEBasePath
  546. };
  547. })();