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