├── static ├── .gitkeep └── ueditor │ ├── themes │ ├── iframe.css │ └── default │ │ ├── images │ │ ├── lock.gif │ │ ├── word.gif │ │ ├── anchor.gif │ │ ├── arrow.png │ │ ├── charts.png │ │ ├── icons.gif │ │ ├── icons.png │ │ ├── loading.gif │ │ ├── scale.png │ │ ├── spacer.gif │ │ ├── upload.png │ │ ├── arrow_up.png │ │ ├── button-bg.gif │ │ ├── cursor_h.gif │ │ ├── cursor_h.png │ │ ├── cursor_v.gif │ │ ├── cursor_v.png │ │ ├── filescan.png │ │ ├── icons-all.gif │ │ ├── loaderror.png │ │ ├── pagebreak.gif │ │ ├── sortable.png │ │ ├── videologo.gif │ │ ├── wordpaste.png │ │ ├── arrow_down.png │ │ ├── cancelbutton.gif │ │ ├── highlighted.gif │ │ ├── sparator_v.png │ │ ├── toolbar_bg.png │ │ ├── unhighlighted.gif │ │ ├── dialog-title-bg.png │ │ ├── neweditor-tab-bg.png │ │ ├── table-cell-align.png │ │ └── tangram-colorpicker.png │ │ └── css │ │ ├── colorbutton.css │ │ ├── shortcutmenu.css │ │ ├── separtor.css │ │ ├── toolbar.css │ │ ├── autotypesetpicker.css │ │ ├── multiMenu.css │ │ ├── contextmenu.css │ │ ├── menu.css │ │ ├── tablepicker.css │ │ ├── paragraphpicker.css │ │ ├── button.css │ │ ├── ueditor.css │ │ ├── cellalignpicker.css │ │ ├── message.css │ │ └── combox.css │ ├── _test │ ├── tools │ │ ├── data │ │ │ ├── test.html │ │ │ ├── test.JPG │ │ │ ├── frame.html │ │ │ ├── testReady.html │ │ │ └── frame.php │ │ ├── lib │ │ │ ├── jshunter_1.2.0.1 │ │ │ │ └── jshunter_dev │ │ │ │ │ └── jshunter │ │ │ │ │ ├── conf │ │ │ │ │ ├── custcheck.conf │ │ │ │ │ ├── omitfiles.conf │ │ │ │ │ └── ignore.list │ │ │ │ │ ├── core │ │ │ │ │ ├── customcheck │ │ │ │ │ │ └── cust.sh │ │ │ │ │ ├── jshint │ │ │ │ │ │ └── js.jar │ │ │ │ │ └── tpl │ │ │ │ │ │ └── htmlpart.html │ │ │ │ │ └── version │ │ │ ├── js.jar │ │ │ ├── npPlugintest.dll │ │ │ ├── ant_tangram_ext.jar │ │ │ ├── jslint4java-2.0.2.jar │ │ │ └── jslint4java-ant-1.4.2.jar │ │ ├── coverage │ │ │ ├── cov.bat │ │ │ └── jscoverage.exe │ │ └── br │ │ │ ├── runC.php │ │ │ ├── css │ │ │ ├── bg_button_a.gif │ │ │ └── bg_button_span.gif │ │ │ ├── js │ │ │ ├── UserAction manual.rar │ │ │ └── ext_qunit.js │ │ │ ├── coverage │ │ │ ├── jscoverage-throbber.gif │ │ │ └── jscoverage-highlight.css │ │ │ ├── read.php │ │ │ ├── lib │ │ │ ├── StafResult.php │ │ │ └── Staf.php │ │ │ ├── batchrun.sh │ │ │ ├── geneHistory.php │ │ │ ├── txt │ │ │ └── test1_2.txt │ │ │ ├── filehelper.php │ │ │ ├── run.php │ │ │ └── log.php │ ├── index.php │ ├── 关键字.txt │ ├── testDesign │ │ ├── offical site.xmind │ │ ├── VersionUpdate │ │ │ ├── readme.txt │ │ │ ├── test list for 1.3.0.xmind │ │ │ ├── test list for 1.3.6.xmind │ │ │ ├── test list for 1.4.0.xmind │ │ │ └── test list for 1.4.3.xmind │ │ ├── Manual regression cases.xmind │ │ └── 8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg │ ├── coverage │ │ ├── jscoverage-throbber.gif │ │ └── jscoverage-highlight.css │ ├── ui │ │ ├── css │ │ │ └── DEFAULT.css │ │ ├── mask.js │ │ ├── uibase.js │ │ ├── uiutils.js │ │ ├── editorui.js │ │ ├── separator.js │ │ └── stateful.js │ ├── plugins │ │ ├── autoupload.js │ │ ├── scrawl.js │ │ ├── print.js │ │ ├── serverparam.js │ │ ├── insertparagraph.js │ │ ├── auto.js │ │ ├── template.js │ │ ├── iframe.js │ │ ├── autoheight.js │ │ ├── music.js │ │ ├── snapscreen.js │ │ ├── wordcount.js │ │ └── copy.js │ └── core │ │ ├── plugin.js │ │ ├── ajax.php │ │ └── localstorage.js │ ├── 20181107144530.png │ ├── jsp │ ├── lib │ │ ├── json.jar │ │ ├── ueditor-1.1.1.jar │ │ ├── commons-io-2.4.jar │ │ ├── commons-codec-1.9.jar │ │ └── commons-fileupload-1.3.1.jar │ ├── src │ │ └── com │ │ │ └── baidu │ │ │ └── ueditor │ │ │ ├── define │ │ │ ├── ActionState.java │ │ │ ├── State.java │ │ │ ├── MIMEType.java │ │ │ ├── FileType.java │ │ │ └── ActionMap.java │ │ │ ├── Encoder.java │ │ │ └── upload │ │ │ ├── Uploader.java │ │ │ └── Base64Uploader.java │ └── controller.jsp │ ├── _src │ ├── ui │ │ ├── ui.js │ │ ├── breakline.js │ │ ├── separator.js │ │ ├── tablebutton.js │ │ ├── menubutton.js │ │ ├── multiMenu.js │ │ └── toolbar.js │ ├── plugins │ │ ├── scrawl.js │ │ ├── print.js │ │ ├── iframe.js │ │ ├── indent.js │ │ ├── preview.js │ │ ├── cleardoc.js │ │ ├── autosubmit.js │ │ ├── wordcount.js │ │ ├── selectall.js │ │ ├── insertparagraph.js │ │ ├── rowspacing.js │ │ ├── elementpath.js │ │ ├── lineheight.js │ │ ├── template.js │ │ ├── time.js │ │ └── convertcase.js │ ├── editor.js │ ├── adapter │ │ └── autosave.js │ ├── core │ │ ├── keymap.js │ │ └── Editor.defaultoptions.js │ └── api.js │ ├── lang │ ├── en │ │ └── images │ │ │ ├── copy.png │ │ │ ├── button.png │ │ │ ├── music.png │ │ │ ├── upload.png │ │ │ ├── addimage.png │ │ │ ├── background.png │ │ │ ├── localimage.png │ │ │ ├── deletedisable.png │ │ │ ├── deleteenable.png │ │ │ ├── listbackground.png │ │ │ ├── rotateleftenable.png │ │ │ ├── alldeletebtnupskin.png │ │ │ ├── rotateleftdisable.png │ │ │ ├── rotaterightdisable.png │ │ │ ├── rotaterightenable.png │ │ │ └── alldeletebtnhoverskin.png │ └── zh-cn │ │ └── images │ │ ├── copy.png │ │ ├── music.png │ │ ├── upload.png │ │ └── localimage.png │ ├── dialogs │ ├── emotion │ │ └── images │ │ │ ├── 0.gif │ │ │ ├── bface.gif │ │ │ ├── cface.gif │ │ │ ├── fface.gif │ │ │ ├── tface.gif │ │ │ ├── wface.gif │ │ │ ├── yface.gif │ │ │ ├── jxface2.gif │ │ │ └── neweditor-tab-bg.png │ ├── image │ │ └── images │ │ │ ├── bg.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ ├── success.png │ │ │ └── alignicon.jpg │ ├── table │ │ ├── dragicon.png │ │ ├── edittip.html │ │ ├── edittable.css │ │ └── edittd.html │ ├── video │ │ └── images │ │ │ ├── bg.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ ├── success.png │ │ │ ├── file-icons.gif │ │ │ ├── file-icons.png │ │ │ ├── left_focus.jpg │ │ │ ├── none_focus.jpg │ │ │ ├── center_focus.jpg │ │ │ └── right_focus.jpg │ ├── scrawl │ │ └── images │ │ │ ├── redo.png │ │ │ ├── size.png │ │ │ ├── undo.png │ │ │ ├── addimg.png │ │ │ ├── brush.png │ │ │ ├── delimg.png │ │ │ ├── delimgH.png │ │ │ ├── empty.png │ │ │ ├── emptyH.png │ │ │ ├── eraser.png │ │ │ ├── redoH.png │ │ │ ├── scale.png │ │ │ ├── scaleH.png │ │ │ └── undoH.png │ ├── template │ │ ├── images │ │ │ ├── bg.gif │ │ │ ├── pre0.png │ │ │ ├── pre1.png │ │ │ ├── pre2.png │ │ │ ├── pre3.png │ │ │ └── pre4.png │ │ ├── template.html │ │ ├── template.css │ │ └── template.js │ ├── attachment │ │ ├── images │ │ │ ├── bg.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── image.png │ │ │ ├── progress.png │ │ │ ├── success.gif │ │ │ ├── success.png │ │ │ ├── alignicon.gif │ │ │ ├── alignicon.png │ │ │ ├── file-icons.gif │ │ │ └── file-icons.png │ │ └── fileTypeImages │ │ │ ├── icon_mv.gif │ │ │ ├── icon_chm.gif │ │ │ ├── icon_doc.gif │ │ │ ├── icon_exe.gif │ │ │ ├── icon_jpg.gif │ │ │ ├── icon_mp3.gif │ │ │ ├── icon_pdf.gif │ │ │ ├── icon_ppt.gif │ │ │ ├── icon_psd.gif │ │ │ ├── icon_rar.gif │ │ │ ├── icon_txt.gif │ │ │ ├── icon_xls.gif │ │ │ └── icon_default.png │ ├── background │ │ └── images │ │ │ ├── bg.png │ │ │ └── success.png │ ├── charts │ │ ├── images │ │ │ ├── charts0.png │ │ │ ├── charts1.png │ │ │ ├── charts2.png │ │ │ ├── charts3.png │ │ │ ├── charts4.png │ │ │ └── charts5.png │ │ └── chart.config.js │ ├── wordimage │ │ ├── imageUploader.swf │ │ └── fClipboard_ueditor.swf │ ├── help │ │ ├── help.css │ │ └── help.js │ ├── spechars │ │ └── spechars.html │ ├── music │ │ ├── music.html │ │ └── music.css │ ├── preview │ │ └── preview.html │ └── anchor │ │ └── anchor.html │ ├── third-party │ ├── video-js │ │ ├── font │ │ │ ├── vjs.eot │ │ │ ├── vjs.ttf │ │ │ └── vjs.woff │ │ └── video-js.swf │ ├── webuploader │ │ ├── Uploader.swf │ │ └── webuploader.css │ ├── zeroclipboard │ │ └── ZeroClipboard.swf │ ├── snapscreen │ │ └── UEditorSnapscreen.exe │ └── highcharts │ │ └── modules │ │ ├── heatmap.js │ │ ├── heatmap.src.js │ │ └── no-data-to-display.js │ ├── asp │ ├── action_config.asp │ ├── config_loader.asp │ ├── action_crawler.asp │ ├── action_upload.asp │ └── controller.asp │ ├── .editorconfig │ ├── net │ ├── App_Code │ │ ├── ConfigHandler.cs │ │ ├── NotSupportedHandler.cs │ │ ├── Config.cs │ │ └── Handler.cs │ └── Web.config │ ├── _examples │ ├── server │ │ ├── getContent.asp │ │ ├── getContent.php │ │ ├── getContent.jsp │ │ └── getContent.ashx │ ├── customizeDialogPage.html │ ├── renderInTable.html │ ├── textareaDemo.html │ ├── simpleDemo.html │ ├── addCustomizeButton.js │ ├── highlightDemo.html │ ├── multiDemo.html │ ├── setWidthHeightDemo.html │ ├── customizeToolbarUIDemo.html │ ├── addCustomizeDialog.js │ ├── jqueryCompleteDemo.html │ ├── submitFormDemo.html │ └── customPluginDemo.html │ ├── _parse │ ├── background.js │ ├── video.js │ └── insertcode.js │ ├── package.json │ ├── LICENSE │ └── php │ ├── action_crawler.php │ └── controller.php ├── src ├── assets │ └── logo.png ├── page │ └── user.vue ├── css │ └── index.css ├── main.js ├── App.vue ├── router │ └── index.js └── components │ ├── bar-heng.vue │ └── echarts │ └── index.vue ├── config ├── prod.env.js └── dev.env.js ├── .editorconfig ├── .gitignore ├── .babelrc ├── .postcssrc.js └── index.html /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /static/ueditor/_test/tools/data/test.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /static/ueditor/_test/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/conf/custcheck.conf: -------------------------------------------------------------------------------- 1 | [command] 2 | -------------------------------------------------------------------------------- /static/ueditor/_test/关键字.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/关键字.txt -------------------------------------------------------------------------------- /static/ueditor/20181107144530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/20181107144530.png -------------------------------------------------------------------------------- /static/ueditor/_test/tools/coverage/cov.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | jscoverage.exe --encoding=UTF-8 ../../../_src ../../coverage -------------------------------------------------------------------------------- /static/ueditor/jsp/lib/json.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/jsp/lib/json.jar -------------------------------------------------------------------------------- /static/ueditor/_src/ui/ui.js: -------------------------------------------------------------------------------- 1 | var baidu = baidu || {}; 2 | baidu.editor = baidu.editor || {}; 3 | UE.ui = baidu.editor.ui = {}; -------------------------------------------------------------------------------- /static/ueditor/_test/tools/br/runC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/br/runC.php -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/js.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/js.jar -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /static/ueditor/_test/tools/data/test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/data/test.JPG -------------------------------------------------------------------------------- /static/ueditor/jsp/lib/ueditor-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/jsp/lib/ueditor-1.1.1.jar -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /static/ueditor/jsp/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/jsp/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /static/ueditor/jsp/lib/commons-codec-1.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/jsp/lib/commons-codec-1.9.jar -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/npPlugintest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/npPlugintest.dll -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /static/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /static/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /static/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /static/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/offical site.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/offical site.xmind -------------------------------------------------------------------------------- /static/ueditor/_test/tools/br/css/bg_button_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/br/css/bg_button_a.gif -------------------------------------------------------------------------------- /static/ueditor/_test/tools/coverage/jscoverage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/coverage/jscoverage.exe -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/ant_tangram_ext.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/ant_tangram_ext.jar -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/core/customcheck/cust.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo $1'***222***444***555***666' 4 | -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /static/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /static/ueditor/_test/coverage/jscoverage-throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/coverage/jscoverage-throbber.gif -------------------------------------------------------------------------------- /static/ueditor/_test/tools/br/css/bg_button_span.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/br/css/bg_button_span.gif -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jslint4java-2.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/jslint4java-2.0.2.jar -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /static/ueditor/jsp/lib/commons-fileupload-1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/jsp/lib/commons-fileupload-1.3.1.jar -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /static/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /static/ueditor/_test/tools/br/js/UserAction manual.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/br/js/UserAction manual.rar -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /static/ueditor/jsp/src/com/baidu/ueditor/define/ActionState.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | public enum ActionState { 4 | UNKNOW_ERROR 5 | } 6 | -------------------------------------------------------------------------------- /static/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/VersionUpdate/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/VersionUpdate/readme.txt -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jslint4java-ant-1.4.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/jslint4java-ant-1.4.2.jar -------------------------------------------------------------------------------- /static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /static/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/Manual regression cases.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/Manual regression cases.xmind -------------------------------------------------------------------------------- /static/ueditor/_test/tools/br/coverage/jscoverage-throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/br/coverage/jscoverage-throbber.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.0.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.0.xmind -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.6.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.6.xmind -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.0.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.0.xmind -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.3.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.3.xmind -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const merge = require('webpack-merge') 3 | const prodEnv = require('./prod.env') 4 | 5 | module.exports = merge(prodEnv, { 6 | NODE_ENV: '"development"' 7 | }) 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /static/ueditor/_test/testDesign/8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/testDesign/8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/version -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/core/jshint/js.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javanf/testadmin/HEAD/static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/core/jshint/js.jar -------------------------------------------------------------------------------- /static/ueditor/asp/action_config.asp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <% 5 | Set json = new ASPJson 6 | Set json.data = config 7 | 8 | json.PrintJson() 9 | %> -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | /dist/ 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Editor directories and files 9 | .idea 10 | .vscode 11 | *.suo 12 | *.ntvs* 13 | *.njsproj 14 | *.sln 15 | -------------------------------------------------------------------------------- /static/ueditor/_test/ui/css/DEFAULT.css: -------------------------------------------------------------------------------- 1 | /* common layer */ 2 | .cssloaded { 3 | width: 20px; 4 | } 5 | /* for IE6 fixed */ 6 | body { 7 | background: url('about:blank') fixed; 8 | } 9 | 10 | .edui-editor { 11 | width: 843px; 12 | } 13 | -------------------------------------------------------------------------------- /static/ueditor/themes/default/css/colorbutton.css: -------------------------------------------------------------------------------- 1 | /*颜色按钮 */ 2 | .edui-default .edui-toolbar .edui-colorbutton .edui-colorlump { 3 | position: absolute; 4 | overflow: hidden; 5 | bottom: 1px; 6 | left: 1px; 7 | width: 18px; 8 | height: 4px; 9 | } -------------------------------------------------------------------------------- /static/ueditor/_test/tools/data/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | -------------------------------------------------------------------------------- /static/ueditor/themes/default/css/shortcutmenu.css: -------------------------------------------------------------------------------- 1 | /*弹出菜单*/ 2 | .edui-default .edui-shortcutmenu { 3 | padding: 2px; 4 | width: 190px; 5 | height: 50px; 6 | background-color: #fff; 7 | border: 1px solid #ccc; 8 | border-radius: 5px; 9 | } 10 | -------------------------------------------------------------------------------- /static/ueditor/_test/tools/lib/jshunter_1.2.0.1/jshunter_dev/jshunter/conf/omitfiles.conf: -------------------------------------------------------------------------------- 1 | #[config format]:REGULAR:true|false,true means set filtering enabeld and false means not 2 | #notice:REGULAR will be set in the command "find /top/dir -name REGULAR" 3 | [omitfils] 4 | *data*:true 5 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | ["env", { 4 | "modules": false, 5 | "targets": { 6 | "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] 7 | } 8 | }], 9 | "stage-2" 10 | ], 11 | "plugins": ["transform-vue-jsx", "transform-runtime"] 12 | } 13 | -------------------------------------------------------------------------------- /static/ueditor/themes/default/css/separtor.css: -------------------------------------------------------------------------------- 1 | /*分隔线*/ 2 | .edui-default .edui-toolbar .edui-separator { 3 | width: 2px; 4 | height: 20px; 5 | margin: 2px 4px 2px 3px; 6 | background: url(../images/icons.png) -181px 0; 7 | background: url(../images/icons.gif) -181px 0 \9; 8 | } 9 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | "postcss-import": {}, 6 | "postcss-url": {}, 7 | // to edit target browsers: use "browserslist" field in package.json 8 | "autoprefixer": {} 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /static/ueditor/_test/ui/mask.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:45 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.mask' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /static/ueditor/_test/ui/uibase.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.uibase' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /static/ueditor/_test/ui/uiutils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.uiutils' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /static/ueditor/_test/ui/editorui.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:45 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.editorui' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /static/ueditor/_test/ui/separator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.separator' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /static/ueditor/_test/ui/stateful.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.stateful' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /static/ueditor/_src/plugins/scrawl.js: -------------------------------------------------------------------------------- 1 | ///import core 2 | ///commands 涂鸦 3 | ///commandsName Scrawl 4 | ///commandsTitle 涂鸦 5 | ///commandsDialog dialogs\scrawl 6 | UE.commands['scrawl'] = { 7 | queryCommandState : function(){ 8 | return ( browser.ie && browser.version <= 8 ) ? -1 :0; 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |for print
'; 13 | // editor.setContent(html); 14 | // editor.execCommand('print'); 15 | // equal(editor.body.innerHTML,html,'打印不会对页面代码产生影响'); 16 | equal('',''); 17 | }); 18 | -------------------------------------------------------------------------------- /src/css/index.css: -------------------------------------------------------------------------------- 1 | .layout{ 2 | width: 100%; 3 | } 4 | .el-menu-top{ 5 | height: 60px; 6 | } 7 | .el-container{ 8 | position: absolute; 9 | width: 100%; 10 | top: 0px ; 11 | left: 0 ; 12 | bottom: 0; 13 | } 14 | .el-header{ 15 | padding: 0; 16 | z-index: 1000; 17 | } 18 | .el-aside, .el-main{ 19 | margin-top: 60px; 20 | } 21 | .el-menu-vertical-left{ 22 | width: 210px; 23 | background: #545c64; 24 | height: 100%; 25 | float: left; 26 | } 27 | .el-menu.el-menu--horizontal{ 28 | border-bottom: none; 29 | } -------------------------------------------------------------------------------- /static/ueditor/_parse/background.js: -------------------------------------------------------------------------------- 1 | UE.parse.register('background', function (utils) { 2 | var me = this, 3 | root = me.root, 4 | p = root.getElementsByTagName('p'), 5 | styles; 6 | 7 | for (var i = 0,ci; ci = p[i++];) { 8 | styles = ci.getAttribute('data-background'); 9 | if (styles){ 10 | ci.parentNode.removeChild(ci); 11 | } 12 | } 13 | 14 | //追加默认的表格样式 15 | styles && utils.cssRule('ueditor_background', me.selector + '{' + styles + '}', document); 16 | }); -------------------------------------------------------------------------------- /static/ueditor/themes/default/css/toolbar.css: -------------------------------------------------------------------------------- 1 | /* 工具栏 */ 2 | .edui-default .edui-toolbar { 3 | cursor: default; 4 | -webkit-user-select: none; 5 | -moz-user-select: none; 6 | padding: 1px; 7 | overflow: hidden; /*全屏下单独一行不占位*/ 8 | zoom: 1; 9 | width:auto; 10 | height:auto; 11 | } 12 | 13 | .edui-default .edui-toolbar .edui-button, 14 | .edui-default .edui-toolbar .edui-splitbutton, 15 | .edui-default .edui-toolbar .edui-menubutton, 16 | .edui-default .edui-toolbar .edui-combox { 17 | margin: 1px; 18 | } -------------------------------------------------------------------------------- /static/ueditor/jsp/src/com/baidu/ueditor/Encoder.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor; 2 | 3 | public class Encoder { 4 | 5 | public static String toUnicode ( String input ) { 6 | 7 | StringBuilder builder = new StringBuilder(); 8 | char[] chars = input.toCharArray(); 9 | 10 | for ( char ch : chars ) { 11 | 12 | if ( ch < 256 ) { 13 | builder.append( ch ); 14 | } else { 15 | builder.append( "\\u" + Integer.toHexString( ch& 0xffff ) ); 16 | } 17 | 18 | } 19 | 20 | return builder.toString(); 21 | 22 | } 23 | 24 | } -------------------------------------------------------------------------------- /static/ueditor/net/App_Code/NotSupportedHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | ///| {$title} |
'+br+'
hello
', '插入空行' ); 12 | range.setStart( body.firstChild.nextSibling, 0 ).collapse( 1 ).select(); 13 | editor.execCommand( 'insertparagraph', false ); 14 | equal( ua.getChildHTML( body ), ''+br+'
hello
'+br+'
', '' ); 15 | } ); -------------------------------------------------------------------------------- /static/ueditor/_src/core/keymap.js: -------------------------------------------------------------------------------- 1 | var keymap = UE.keymap = { 2 | 'Backspace' : 8, 3 | 'Tab' : 9, 4 | 'Enter' : 13, 5 | 6 | 'Shift':16, 7 | 'Control':17, 8 | 'Alt':18, 9 | 'CapsLock':20, 10 | 11 | 'Esc':27, 12 | 13 | 'Spacebar':32, 14 | 15 | 'PageUp':33, 16 | 'PageDown':34, 17 | 'End':35, 18 | 'Home':36, 19 | 20 | 'Left':37, 21 | 'Up':38, 22 | 'Right':39, 23 | 'Down':40, 24 | 25 | 'Insert':45, 26 | 27 | 'Del':46, 28 | 29 | 'NumLock':144, 30 | 31 | 'Cmd':91, 32 | 33 | '=':187, 34 | '-':189, 35 | 36 | "b":66, 37 | 'i':73, 38 | //回退 39 | 'z':90, 40 | 'y':89, 41 | //粘贴 42 | 'v' : 86, 43 | 'x' : 88, 44 | 45 | 's' : 83, 46 | 47 | 'n' : 78 48 | }; -------------------------------------------------------------------------------- /static/ueditor/jsp/src/com/baidu/ueditor/define/FileType.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | public class FileType { 7 | 8 | public static final String JPG = "JPG"; 9 | 10 | private static final Map欢迎使用ueditor
','autoFloatEnabled':false}); 14 | editor.render(form); 15 | // form.body.appendChild(editor); 16 | editor.focus(); 17 | var range = new baidu.editor.dom.Range( editor.document ); 18 | range.setStart(editor.body.firstChild.firstChild,1).collapse(true).select(); 19 | editor.execCommand('autosubmit'); 20 | equal(editor.textarea.value,'欢迎使用ueditor
',''); 21 | } ); -------------------------------------------------------------------------------- /static/ueditor/jsp/src/com/baidu/ueditor/upload/Uploader.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.upload; 2 | 3 | import com.baidu.ueditor.define.State; 4 | import java.util.Map; 5 | import javax.servlet.http.HttpServletRequest; 6 | 7 | public class Uploader { 8 | private HttpServletRequest request = null; 9 | private Map| 标题 | 内容 |
|---|---|
| 中国 | 19 | |
"+(ie ? "" : "
")+"
hello
' ); 7 | range.setStart(editor.body.firstChild,0).collapse(true).select(); 8 | editor.execCommand('template',{html:'欢迎使用UEditor!
'}); 9 | ua.manualDeleteFillData(editor.body); 10 | equal(ua.getHTML(editor.body.firstChild),'欢迎使用ueditor!
'); 11 | if(!(ua.browser.gecko||ua.browser.ie>8)){ 12 | if(ua.browser.webkit){ 13 | ua.click(editor.body.firstChild); 14 | equal(editor.selection.getRange().startContainer.firstChild.length,'12','检查选区'); 15 | ua.keydown(editor.body.firstChild); 16 | equal(editor.selection.getRange().startContainer.firstChild.length,'12','检查选区'); 17 | }else{ 18 | ua.click(editor.body.firstChild); 19 | equal(editor.selection.getRange().startContainer.length,'12','检查选区'); 20 | ua.keydown(editor.body.firstChild); 21 | equal(editor.selection.getRange().startContainer.length,'12','检查选区'); 22 | } 23 | } 24 | } ); -------------------------------------------------------------------------------- /static/ueditor/_src/plugins/selectall.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 全选 3 | * @file 4 | * @since 1.2.6.1 5 | */ 6 | 7 | /** 8 | * 选中所有内容 9 | * @command selectall 10 | * @method execCommand 11 | * @param { String } cmd 命令字符串 12 | * @example 13 | * ```javascript 14 | * editor.execCommand( 'selectall' ); 15 | * ``` 16 | */ 17 | UE.plugins['selectall'] = function(){ 18 | var me = this; 19 | me.commands['selectall'] = { 20 | execCommand : function(){ 21 | //去掉了原生的selectAll,因为会出现报错和当内容为空时,不能出现闭合状态的光标 22 | var me = this,body = me.body, 23 | range = me.selection.getRange(); 24 | range.selectNodeContents(body); 25 | if(domUtils.isEmptyBlock(body)){ 26 | //opera不能自动合并到元素的里边,要手动处理一下 27 | if(browser.opera && body.firstChild && body.firstChild.nodeType == 1){ 28 | range.setStartAtFirst(body.firstChild); 29 | } 30 | range.collapse(true); 31 | } 32 | range.select(true); 33 | }, 34 | notNeedUndo : 1 35 | }; 36 | 37 | 38 | //快捷键 39 | me.addshortcutkey({ 40 | "selectAll" : "ctrl+65" 41 | }); 42 | }; 43 | -------------------------------------------------------------------------------- /static/ueditor/_test/plugins/iframe.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-9-17 5 | * Time: 下午2:55 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'plugins.iframe' ); 9 | test( '检查高亮和清除_iframe', function() { 10 | var sc = document.createElement("script"); 11 | sc.id="sc"; 12 | sc.type = "text/plain"; 13 | document.body.appendChild(sc); 14 | te.obj[2].render('sc'); 15 | 16 | te.obj[2].ready(function(){ 17 | equal( te.obj[2].queryCommandState( 'insertframe' ), 0, 'check insertframe state' ); 18 | var iframe = document.createElement('iframe'); 19 | $(iframe).attr('src','www.baidu.com'); 20 | this._iframe = iframe; 21 | this.setContent('欢迎使用ueditor!
'); 22 | ok(te.obj[2]._iframe,'加入_iframe'); 23 | setTimeout(function(){ 24 | ok(!te.obj[2]._iframe,'检查selectionchanged会触发去掉_iframe'); 25 | document.getElementById('sc').parentNode.removeChild(document.getElementById('sc')); 26 | start(); 27 | },50); 28 | }); 29 | stop(); 30 | } ); -------------------------------------------------------------------------------- /src/components/bar-heng.vue: -------------------------------------------------------------------------------- 1 | 2 |2 |
3 | 4 |
5 |
6 | 欢迎使用ueditor!
7 |
11 | 12 |
13 |
14 | 欢迎使用ueditor!
15 |
19 | 欢迎使用ueditor!
20 |
24 | 欢迎使用ueditor!
25 |
29 | 欢迎使用ueditor!
30 |
34 | 欢迎使用ueditor!
35 |
hello
' ); 7 | range.setStart(editor.body.firstChild,0).collapse(true).select(); 8 | editor.execCommand( 'music',{url:"http://box.baidu.com/widget/flash/bdspacesong.swf?from=tiebasongwidget&url=…artist=%E5%BC%A0%E6%B6%A6%E8%B4%9E&extra=Vol.%202&autoPlay=false&loop=true"}); 9 | stop(); 10 | setTimeout(function(){ 11 | ua.manualDeleteFillData(editor.body); 12 | ua.checkSameHtml(editor.getContent(),'',''); 13 | equal(editor.body.firstChild.firstChild.tagName.toLowerCase(),'img'); 14 | equal(editor.body.firstChild.firstChild.className,'edui-faked-music'); 15 | start(); 16 | },50); 17 | } ); -------------------------------------------------------------------------------- /src/components/echarts/index.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 43 | 44 | 67 | -------------------------------------------------------------------------------- /static/ueditor/_parse/video.js: -------------------------------------------------------------------------------- 1 | UE.parse.register('vedio',function(utils){ 2 | var video = this.root.getElementsByTagName('video'), 3 | audio = this.root.getElementsByTagName('audio'); 4 | 5 | document.createElement('video');document.createElement('audio'); 6 | if(video.length || audio.length){ 7 | var sourcePath = utils.removeLastbs(this.rootPath), 8 | jsurl = sourcePath + '/third-party/video-js/video.js', 9 | cssurl = sourcePath + '/third-party/video-js/video-js.min.css', 10 | swfUrl = sourcePath + '/third-party/video-js/video-js.swf'; 11 | 12 | if(window.videojs) { 13 | videojs.autoSetup(); 14 | } else { 15 | utils.loadFile(document,{ 16 | id : "video_css", 17 | tag : "link", 18 | rel : "stylesheet", 19 | type : "text/css", 20 | href : cssurl 21 | }); 22 | utils.loadFile(document,{ 23 | id : "video_js", 24 | src : jsurl, 25 | tag : "script", 26 | type : "text/javascript" 27 | },function(){ 28 | videojs.options.flash.swf = swfUrl; 29 | videojs.autoSetup(); 30 | }); 31 | } 32 | 33 | } 34 | }); -------------------------------------------------------------------------------- /static/ueditor/themes/default/css/paragraphpicker.css: -------------------------------------------------------------------------------- 1 | /*段落弹出菜单*/ 2 | .edui-default .edui-for-paragraph .edui-listitem-label { 3 | font-family: Tahoma, Verdana, Arial, Helvetica; 4 | } 5 | 6 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-p { 7 | font-size: 22px; 8 | line-height: 27px; 9 | } 10 | 11 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h1 { 12 | font-weight: bolder; 13 | font-size: 32px; 14 | line-height: 36px; 15 | } 16 | 17 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h2 { 18 | font-weight: bolder; 19 | font-size: 27px; 20 | line-height: 29px; 21 | } 22 | 23 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h3 { 24 | font-weight: bolder; 25 | font-size: 19px; 26 | line-height: 23px; 27 | } 28 | 29 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h4 { 30 | font-weight: bolder; 31 | font-size: 16px; 32 | line-height: 19px 33 | } 34 | 35 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h5 { 36 | font-weight: bolder; 37 | font-size: 13px; 38 | line-height: 16px; 39 | } 40 | 41 | .edui-default .edui-for-paragraph .edui-listitem-label .edui-for-h6 { 42 | font-weight: bolder; 43 | font-size: 12px; 44 | line-height: 14px; 45 | } -------------------------------------------------------------------------------- /static/ueditor/_test/coverage/jscoverage-highlight.css: -------------------------------------------------------------------------------- 1 | /* 2 | jscoverage-highlight.css - JSCoverage syntax highlighting style sheet 3 | Copyright (C) 2008, 2009, 2010 siliconforks.com 4 | 5 | This program is free software; you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation; either version 2 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along 16 | with this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 | */ 19 | 20 | /* keyword, type, symbol, cbracket */ 21 | #sourceTable .k { 22 | font-weight: bold; 23 | } 24 | 25 | /* string, regexp, number */ 26 | #sourceTable .s { 27 | color: #006400; 28 | } 29 | 30 | /* specialchar */ 31 | #sourceTable .t { 32 | color: #2e8b57; 33 | } 34 | 35 | /* comment */ 36 | #sourceTable .c { 37 | font-style: italic; 38 | } 39 | -------------------------------------------------------------------------------- /static/ueditor/_test/tools/br/coverage/jscoverage-highlight.css: -------------------------------------------------------------------------------- 1 | /* 2 | jscoverage-highlight.css - JSCoverage syntax highlighting style sheet 3 | Copyright (C) 2008, 2009, 2010 siliconforks.com 4 | 5 | This program is free software; you can redistribute it and/or modify 6 | it under the terms of the GNU General Public License as published by 7 | the Free Software Foundation; either version 2 of the License, or 8 | (at your option) any later version. 9 | 10 | This program is distributed in the hope that it will be useful, 11 | but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | GNU General Public License for more details. 14 | 15 | You should have received a copy of the GNU General Public License along 16 | with this program; if not, write to the Free Software Foundation, Inc., 17 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18 | */ 19 | 20 | /* keyword, type, symbol, cbracket */ 21 | #sourceTable .k { 22 | font-weight: bold; 23 | } 24 | 25 | /* string, regexp, number */ 26 | #sourceTable .s { 27 | color: #006400; 28 | } 29 | 30 | /* specialchar */ 31 | #sourceTable .t { 32 | color: #2e8b57; 33 | } 34 | 35 | /* comment */ 36 | #sourceTable .c { 37 | font-style: italic; 38 | } 39 | -------------------------------------------------------------------------------- /static/ueditor/jsp/src/com/baidu/ueditor/define/ActionMap.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | import java.util.Map; 4 | import java.util.HashMap; 5 | 6 | /** 7 | * 定义请求action类型 8 | * @author hancong03@baidu.com 9 | * 10 | */ 11 | @SuppressWarnings("serial") 12 | public final class ActionMap { 13 | 14 | public static final Map
19 | UE.getEditor('myEditor');
20 |
21 | 24 | 从1.2.6开始,会自动同步数据无需再手动调用sync方法 25 | 26 | 27 |
28 | 29 | 50 | 51 | 52 | 53 | 54 | 55 | -------------------------------------------------------------------------------- /static/ueditor/_test/plugins/wordcount.js: -------------------------------------------------------------------------------- 1 | module('plugins.wordcount'); 2 | 3 | test('trace 1743 右键删除后计算字数', function () { 4 | var editor = te.obj[0]; 5 | var range = te.obj[1]; 6 | editor.setContent('hello
'); 7 | setTimeout(function () { 8 | range.setStart(editor.body.firstChild, 0).collapse(true).select(); 9 | editor.execCommand('selectall'); 10 | editor.execCommand('cleardoc'); 11 | equal(editor.getContentLength(true), 0, '插入成功'); 12 | 13 | start(); 14 | }, 50); 15 | stop(); 16 | }); 17 | 18 | test('空格', function () { 19 | var editor = te.obj[0]; 20 | var range = te.obj[1]; 21 | editor.setContent(' \ufeff\u200B\t\t \n\n\t\n\b\t\n\b\u200B\t\t\n\n '); 22 | if (ua.browser.ie) 23 | equal(editor.getContentLength(true), 23, '清空后编辑器中23个空格'); 24 | else 25 | equal(editor.getContentLength(true), 22, '清空后编辑器中22个空格'); 26 | }); 27 | 28 | test(' trace 3744 超出最大', function () { 29 | 30 | var div = document.body.appendChild(document.createElement('div')); 31 | div.id = 'ue'; 32 | var editor = UE.getEditor('ue', {'UEDITOR_HOME_URL': '../../../', 'wordCount': true, 'maximumWords': 10,'initialContent':'','autoFloatEnabled': false}); 33 | editor.ready(function () { 34 | 35 | expect(2); 36 | editor.addListener("wordcountoverflow", function () { 37 | ok(true, "超出最大"); 38 | setTimeout(function () { 39 | UE.delEditor('ue'); 40 | start(); 41 | }, 500); 42 | }); 43 | setTimeout(function () { 44 | editor.setContent('hello hello hello'); 45 | equal(editor.getContentLength(true), 17, '仅统计字数') 46 | 47 | }, 50); 48 | }); 49 | stop(); 50 | }); 51 | -------------------------------------------------------------------------------- /static/ueditor/_test/plugins/copy.js: -------------------------------------------------------------------------------- 1 | module('plugins.copy'); 2 | 3 | //需要点击授权弹出框,暂时去除 4 | //test('检查IE下复制命令是否执行正常', function () { 5 | // 6 | // if (browser.ie) { 7 | // var editor = te.obj[0]; 8 | // editor.setContent('hello
'); 9 | // editor.focus(); 10 | // 11 | // editor.execCommand('selectall'); 12 | // editor.execCommand('copy'); 13 | // editor.body.innerHTML = ''; 14 | // editor.execCommand('selectall'); 15 | // editor.body.document.execCommand('paste'); 16 | // 17 | // equal(utils.trim(window.clipboardData.getData('text')), 'hello', '检查粘贴板内容,IE下成功复制内容'); 18 | // setTimeout(function(){ 19 | // equal(editor.getContent(), 'hello
', '检查原生粘贴命令,IE下成功复制内容'); 20 | // start(); 21 | // },100); 22 | // 23 | // stop(); 24 | // } 25 | // 26 | //}); 27 | 28 | test('检查非IE下是否正常加载zeroclipboard粘贴板插件', function () { 29 | te.dom[0].parentNode.removeChild(te.dom[0]); 30 | var sc = document.createElement("script"); 31 | sc.id="sc"; 32 | sc.type = "text/plain"; 33 | sc.style.height = "100px"; 34 | document.body.appendChild(sc); 35 | var me = UE.getEditor('sc',{'autoFloatEnabled':true,'topOffset':60,'autoHeightEnabled':true,'scaleEnabled':false}); 36 | me.ready(function(){ 37 | setTimeout(function(){ 38 | if (!browser.ie) { 39 | ok(window.ZeroClipboard, '是否正常加载zeroclipboard粘贴板插件'); 40 | } 41 | setTimeout(function () { 42 | UE.delEditor('sc'); 43 | document.getElementById('sc')&&document.getElementById('sc').parentNode.removeChild(document.getElementById('sc')); 44 | start(); 45 | }, 500); 46 | }, 300); 47 | }); 48 | stop(); 49 | 50 | }); -------------------------------------------------------------------------------- /static/ueditor/dialogs/music/music.css: -------------------------------------------------------------------------------- 1 | .wrapper{margin: 5px 10px;} 2 | 3 | .searchBar{height:30px;padding:7px 0 3px;text-align:center;} 4 | .searchBtn{font-size:13px;height:24px;} 5 | 6 | .resultBar{width:460px;margin:5px auto;border: 1px solid #CCC;border-radius: 5px;box-shadow: 2px 2px 5px #D3D6DA;overflow: hidden;} 7 | 8 | .listPanel{overflow: hidden;} 9 | .panelon{display:block;} 10 | .paneloff{display:none} 11 | 12 | .page{width:220px;margin:20px auto;overflow: hidden;} 13 | .pageon{float:right;width:24px;line-height:24px;height:24px;margin-right: 5px;background: none;border: none;color: #000;font-weight: bold;text-align:center} 14 | .pageoff{float:right;width:24px;line-height:24px;height:24px;cursor:pointer;background-color: #fff; 15 | border: 1px solid #E7ECF0;color: #2D64B3;margin-right: 5px;text-decoration: none;text-align:center;} 16 | 17 | .m-box{width:460px;} 18 | .m-m{float: left;line-height: 20px;height: 20px;} 19 | .m-h{height:24px;line-height:24px;padding-left: 46px;background-color:#FAFAFA;border-bottom: 1px solid #DAD8D8;font-weight: bold;font-size: 12px;color: #333;} 20 | .m-l{float:left;width:40px; } 21 | .m-t{float:left;width:140px;} 22 | .m-s{float:left;width:110px;} 23 | .m-z{float:left;width:100px;} 24 | .m-try-t{float: left;width: 60px;;} 25 | 26 | .m-try{float:left;width:20px;height:20px;background:url('http://static.tieba.baidu.com/tb/editor/images/try_music.gif') no-repeat ;} 27 | .m-trying{float:left;width:20px;height:20px;background:url('http://static.tieba.baidu.com/tb/editor/images/stop_music.gif') no-repeat ;} 28 | 29 | .loading{width:95px;height:7px;font-size:7px;margin:60px auto;background:url(http://static.tieba.baidu.com/tb/editor/images/loading.gif) no-repeat} 30 | .empty{width:300px;height:40px;padding:2px;margin:50px auto;line-height:40px; color:#006699;text-align:center;} -------------------------------------------------------------------------------- /static/ueditor/themes/default/css/message.css: -------------------------------------------------------------------------------- 1 | .edui-default .edui-editor-messageholder { 2 | display: block; 3 | width: 150px; 4 | height: auto; 5 | border: 0; 6 | margin: 0; 7 | padding: 0; 8 | position: absolute; 9 | top: 28px; 10 | right: 3px; 11 | } 12 | 13 | .edui-default .edui-message{ 14 | min-height: 10px; 15 | text-shadow: 0 1px 0 rgba(255,255,255,0.5); 16 | padding: 0; 17 | margin-bottom: 3px; 18 | position: relative; 19 | } 20 | .edui-default .edui-message-body{ 21 | border-radius: 3px; 22 | padding: 8px 15px 8px 8px; 23 | color: #c09853; 24 | background-color: #fcf8e3; 25 | border: 1px solid #fbeed5; 26 | } 27 | .edui-default .edui-message-type-info{ 28 | color: #3a87ad; 29 | background-color: #d9edf7; 30 | border-color: #bce8f1 31 | } 32 | .edui-default .edui-message-type-success{ 33 | color: #468847; 34 | background-color: #dff0d8; 35 | border-color: #d6e9c6 36 | } 37 | .edui-default .edui-message-type-danger, 38 | .edui-default .edui-message-type-error{ 39 | color: #b94a48; 40 | background-color: #f2dede; 41 | border-color: #eed3d7 42 | } 43 | .edui-default .edui-message .edui-message-closer { 44 | display: block; 45 | width: 16px; 46 | height: 16px; 47 | line-height: 16px; 48 | position: absolute; 49 | top: 0; 50 | right: 0; 51 | padding: 0; 52 | cursor: pointer; 53 | background: transparent; 54 | border: 0; 55 | float: right; 56 | font-size: 20px; 57 | font-weight: bold; 58 | color: #999; 59 | text-shadow: 0 1px 0 #fff; 60 | font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; 61 | } 62 | .edui-default .edui-message .edui-message-content { 63 | font-size: 10pt; 64 | word-wrap: break-word; 65 | word-break: normal; 66 | } -------------------------------------------------------------------------------- /static/ueditor/_examples/customPluginDemo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |