├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── sql └── admin.sql └── src └── main ├── java └── com │ ├── beetl │ └── functions │ │ └── BeetlStrUtils.java │ └── supyuan │ ├── component │ ├── base │ │ ├── BaseProjectController.java │ │ └── BaseProjectModel.java │ ├── beelt │ │ └── BeeltFunctions.java │ ├── config │ │ └── BaseConfig.java │ ├── controller │ │ └── PersonFileLimit.java │ ├── interceptor │ │ ├── CommonInterceptor.java │ │ └── UserKeyInterceptor.java │ ├── plugin │ │ └── spring │ │ │ ├── Inject.java │ │ │ ├── IocInterceptor.java │ │ │ └── SpringPlugin.java │ └── util │ │ ├── ImageCode.java │ │ ├── ImageModel.java │ │ ├── ImageUtils.java │ │ ├── JFlyFoxCache.java │ │ └── JFlyFoxUtils.java │ ├── jfinal │ ├── base │ │ ├── BaseController.java │ │ ├── BaseForm.java │ │ ├── BaseModel.java │ │ ├── BaseService.java │ │ ├── Paginator.java │ │ └── SessionUser.java │ ├── component │ │ ├── annotation │ │ │ ├── AutoBindModels.java │ │ │ ├── AutoBindRoutes.java │ │ │ ├── ControllerBind.java │ │ │ └── ModelBind.java │ │ ├── db │ │ │ └── SQLUtils.java │ │ ├── handler │ │ │ ├── BasePathHandler.java │ │ │ ├── CurrentPathHandler.java │ │ │ └── HtmlHandler.java │ │ ├── interceptor │ │ │ ├── ExceptionInterceptor.java │ │ │ ├── HttpRequestDeviceUtils.java │ │ │ ├── JflyfoxInterceptor.java │ │ │ └── SessionAttrInterceptor.java │ │ ├── oauth │ │ │ ├── Oauth.java │ │ │ ├── OauthBaidu.java │ │ │ ├── OauthDouban.java │ │ │ ├── OauthGithub.java │ │ │ ├── OauthOsc.java │ │ │ ├── OauthQQ.java │ │ │ ├── OauthRenren.java │ │ │ ├── OauthSina.java │ │ │ └── util │ │ │ │ ├── Display.java │ │ │ │ ├── HttpKit.java │ │ │ │ ├── OathConfig.java │ │ │ │ └── TokenUtil.java │ │ ├── redis │ │ │ └── JedisClient.java │ │ └── util │ │ │ └── Attr.java │ ├── config │ │ └── JflyfoxConfig.java │ └── template │ │ └── TemplateFunctions.java │ ├── modules │ └── admin │ │ ├── AdminController.java │ │ └── person │ │ └── PersonController.java │ ├── system │ ├── department │ │ ├── DepartmentController.java │ │ ├── DepartmentSvc.java │ │ └── SysDepartment.java │ ├── dict │ │ ├── DictCache.java │ │ ├── DictController.java │ │ ├── DictSvc.java │ │ ├── SysDict.java │ │ └── SysDictDetail.java │ ├── log │ │ ├── LogController.java │ │ └── SysLog.java │ ├── menu │ │ ├── MenuController.java │ │ ├── MenuSvc.java │ │ └── SysMenu.java │ ├── role │ │ ├── RoleController.java │ │ ├── RoleSvc.java │ │ └── SysRole.java │ ├── rolemenu │ │ └── SysRoleMenu.java │ ├── user │ │ ├── SysUser.java │ │ ├── UserCache.java │ │ ├── UserController.java │ │ ├── UserInterceptor.java │ │ └── UserSvc.java │ └── userrole │ │ └── SysUserRole.java │ └── util │ ├── Config.java │ ├── Constants.java │ ├── DateUtils.java │ ├── FileUtils.java │ ├── HandlerUtils.java │ ├── IpUtils.java │ ├── ModelKit.java │ ├── NumberUtils.java │ ├── PathUtils.java │ ├── ReflectionUtils.java │ ├── StrUtils.java │ ├── annotation │ └── ClassSearcher.java │ ├── cache │ ├── Cache.java │ ├── CacheManager.java │ ├── ICacheManager.java │ ├── MemCache.java │ ├── RedisCache.java │ └── impl │ │ ├── MemoryCache.java │ │ └── MemorySerializeCache.java │ ├── encrypt │ ├── Base64.java │ ├── DES3Utils.java │ ├── DESUtils.java │ ├── Md5Utils.java │ └── RSAUtils.java │ ├── extend │ ├── BeanUtils.java │ ├── CnToSpell.java │ ├── HtmlUtils.java │ ├── HttpClientUtils.java │ ├── IdCheck.java │ ├── RandomStrUtils.java │ ├── UuidUtils.java │ ├── ValidUtils.java │ └── mp3 │ │ ├── FrameInfo.java │ │ └── MusicInfo.java │ ├── serializable │ ├── FSTSerializer.java │ ├── JavaSerializer.java │ ├── Serializer.java │ └── SerializerManage.java │ ├── task │ ├── AsyncTask.java │ ├── AsyncTaskExcutor.java │ └── AsyncTaskWorker.java │ └── tuple │ ├── FiveTuple.java │ ├── FourTuple.java │ ├── ITuple.java │ ├── ThreeTuple.java │ ├── Tuple.java │ └── TwoTuple.java ├── resources ├── conf │ ├── config.properties │ └── db.properties ├── log4j.properties └── spring │ ├── applicationContext.xml │ └── shiro-context.xml └── webapp ├── META-INF └── MANIFEST.MF ├── WEB-INF ├── .gitignore ├── lib │ └── ReadMe.txt └── web.xml ├── favicon.ico ├── pages ├── admin │ ├── home │ │ └── home.html │ ├── login.html │ └── person │ │ ├── show_person.html │ │ └── show_person.js ├── error │ ├── 401.html │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── trans.html │ └── trans_no_auth.html ├── includes │ ├── autojs.html │ ├── bootstrap-multiselect.html │ ├── bootstrap.html │ ├── jquery.html │ ├── my97.html │ ├── paginator.html │ ├── sewise-player.html │ ├── ueditor.html │ ├── ueditor_hightlighter.html │ ├── umeditor.html │ ├── ymprompt.html │ └── ztree.html ├── system │ ├── department │ │ ├── department_add.html │ │ ├── department_edit.html │ │ ├── department_list.html │ │ └── department_view.html │ ├── dict │ │ ├── dict_add.html │ │ ├── dict_edit.html │ │ ├── dict_edit_dict.html │ │ ├── dict_list.html │ │ └── dict_view.html │ ├── log │ │ ├── log_add.html │ │ ├── log_edit.html │ │ ├── log_list.html │ │ └── log_view.html │ ├── menu │ │ ├── menu_add.html │ │ ├── menu_edit.html │ │ ├── menu_list.html │ │ └── menu_view.html │ ├── role │ │ ├── role_add.html │ │ ├── role_auth.html │ │ ├── role_edit.html │ │ ├── role_list.html │ │ └── role_view.html │ └── user │ │ ├── user_add.html │ │ ├── user_auth.html │ │ ├── user_edit.html │ │ ├── user_list.html │ │ └── user_view.html └── template │ ├── _layout.html │ ├── head.html │ ├── menu.html │ ├── menu.html.bak │ └── message.html ├── resources ├── image │ └── no_image.jpg └── js │ └── encrypt │ ├── base64.js │ ├── md5.js │ └── sha1.js └── static ├── common ├── head.js ├── initJs.js ├── main.css ├── main.js └── valid.js ├── component ├── My97DatePicker │ ├── WdatePicker.js │ ├── calendar.js │ ├── lang │ │ ├── en.js │ │ ├── zh-cn.js │ │ └── zh-tw.js │ └── skin │ │ ├── WdatePicker.css │ │ ├── datePicker.gif │ │ ├── default │ │ ├── datepicker.css │ │ └── img.gif │ │ └── whyGreen │ │ ├── bg.jpg │ │ ├── datepicker.css │ │ └── img.gif ├── autocjs │ ├── autoc.css │ ├── autoc.js │ ├── autoc.min.css │ ├── autoc.min.js │ ├── example │ │ ├── AutocJS.png │ │ ├── css │ │ │ ├── layout.css │ │ │ └── normalize.css │ │ └── index.html │ └── lib │ │ ├── autoc.css │ │ ├── autoc.js │ │ ├── jquery.js │ │ ├── require.js │ │ └── sea.js ├── bootstrap-multiselect │ ├── css │ │ └── bootstrap-multiselect.css │ ├── js │ │ ├── bootstrap-multiselect-collapsible-groups.js │ │ └── bootstrap-multiselect.js │ └── less │ │ └── bootstrap-multiselect.less ├── bootstrap │ ├── bootstrap-common.js │ ├── bootstrap-common_pack.js │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ └── test.html ├── bootstrap3-dialog │ ├── css │ │ ├── bootstrap-dialog.css │ │ └── bootstrap-dialog.min.css │ ├── js │ │ ├── bootstrap-dialog.js │ │ └── bootstrap-dialog.min.js │ └── readme.txt ├── demo.htm ├── echarts │ ├── demo.html │ ├── demo1.html │ └── echarts-plain.js ├── filemanager │ ├── images │ │ ├── fileicons │ │ │ ├── _Close.png │ │ │ ├── _Documents.png │ │ │ ├── _Favorites.png │ │ │ ├── _Image.png │ │ │ ├── _Movie.png │ │ │ ├── _Music.png │ │ │ ├── _Net.png │ │ │ ├── _Open.png │ │ │ ├── _ProgramFiles.png │ │ │ ├── _Works.png │ │ │ ├── aac.png │ │ │ ├── avi.png │ │ │ ├── bmp.png │ │ │ ├── chm.png │ │ │ ├── css.png │ │ │ ├── default.png │ │ │ ├── dll.png │ │ │ ├── doc.png │ │ │ ├── docx.png │ │ │ ├── fla.png │ │ │ ├── gif.png │ │ │ ├── htm.png │ │ │ ├── html.png │ │ │ ├── ini.png │ │ │ ├── jar.png │ │ │ ├── jpeg.png │ │ │ ├── jpg.png │ │ │ ├── js.png │ │ │ ├── lasso.png │ │ │ ├── locked__Open.png │ │ │ ├── locked_default.png │ │ │ ├── mdb.png │ │ │ ├── mov.png │ │ │ ├── mp3.png │ │ │ ├── mp4.png │ │ │ ├── mpg.png │ │ │ ├── ogg.png │ │ │ ├── ogv.png │ │ │ ├── other_image.png │ │ │ ├── other_movie.png │ │ │ ├── other_music.png │ │ │ ├── other_music2.png │ │ │ ├── pdf.png │ │ │ ├── php.png │ │ │ ├── png.png │ │ │ ├── ppt.png │ │ │ ├── py.png │ │ │ ├── rb.png │ │ │ ├── real.png │ │ │ ├── reg.png │ │ │ ├── rtf.png │ │ │ ├── sql.png │ │ │ ├── swf.png │ │ │ ├── txt.png │ │ │ ├── vbs.png │ │ │ ├── wav.png │ │ │ ├── webm.png │ │ │ ├── wma.png │ │ │ ├── wmv.png │ │ │ ├── xls.png │ │ │ ├── xlsx.png │ │ │ ├── xml.png │ │ │ ├── xsl.png │ │ │ └── zip.png │ │ ├── fmlogo_bbg.png │ │ ├── fmlogo_wbg.png │ │ └── wait30trans.gif │ ├── scripts │ │ ├── CodeMirror │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── addon │ │ │ │ ├── comment │ │ │ │ │ ├── comment.js │ │ │ │ │ └── continuecomment.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── dialog.js │ │ │ │ ├── display │ │ │ │ │ ├── fullscreen.css │ │ │ │ │ ├── fullscreen.js │ │ │ │ │ ├── placeholder.js │ │ │ │ │ └── rulers.js │ │ │ │ ├── edit │ │ │ │ │ ├── closebrackets.js │ │ │ │ │ ├── closetag.js │ │ │ │ │ ├── continuelist.js │ │ │ │ │ ├── matchbrackets.js │ │ │ │ │ ├── matchtags.js │ │ │ │ │ └── trailingspace.js │ │ │ │ ├── fold │ │ │ │ │ ├── brace-fold.js │ │ │ │ │ ├── comment-fold.js │ │ │ │ │ ├── foldcode.js │ │ │ │ │ ├── foldgutter.css │ │ │ │ │ ├── foldgutter.js │ │ │ │ │ ├── indent-fold.js │ │ │ │ │ ├── markdown-fold.js │ │ │ │ │ └── xml-fold.js │ │ │ │ ├── hint │ │ │ │ │ ├── anyword-hint.js │ │ │ │ │ ├── css-hint.js │ │ │ │ │ ├── html-hint.js │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ ├── python-hint.js │ │ │ │ │ ├── show-hint.css │ │ │ │ │ ├── show-hint.js │ │ │ │ │ ├── sql-hint.js │ │ │ │ │ └── xml-hint.js │ │ │ │ ├── lint │ │ │ │ │ ├── coffeescript-lint.js │ │ │ │ │ ├── css-lint.js │ │ │ │ │ ├── javascript-lint.js │ │ │ │ │ ├── json-lint.js │ │ │ │ │ ├── lint.css │ │ │ │ │ ├── lint.js │ │ │ │ │ └── yaml-lint.js │ │ │ │ ├── merge │ │ │ │ │ ├── dep │ │ │ │ │ │ └── diff_match_patch.js │ │ │ │ │ ├── merge.css │ │ │ │ │ └── merge.js │ │ │ │ ├── mode │ │ │ │ │ ├── loadmode.js │ │ │ │ │ ├── multiplex.js │ │ │ │ │ ├── multiplex_test.js │ │ │ │ │ └── overlay.js │ │ │ │ ├── runmode │ │ │ │ │ ├── colorize.js │ │ │ │ │ ├── runmode-standalone.js │ │ │ │ │ ├── runmode.js │ │ │ │ │ └── runmode.node.js │ │ │ │ ├── scroll │ │ │ │ │ └── scrollpastend.js │ │ │ │ ├── search │ │ │ │ │ ├── match-highlighter.js │ │ │ │ │ ├── search.js │ │ │ │ │ └── searchcursor.js │ │ │ │ ├── selection │ │ │ │ │ ├── active-line.js │ │ │ │ │ └── mark-selection.js │ │ │ │ ├── tern │ │ │ │ │ ├── tern.css │ │ │ │ │ ├── tern.js │ │ │ │ │ └── worker.js │ │ │ │ └── wrap │ │ │ │ │ └── hardwrap.js │ │ │ ├── bin │ │ │ │ ├── authors.sh │ │ │ │ ├── compress │ │ │ │ ├── lint │ │ │ │ ├── release │ │ │ │ └── source-highlight │ │ │ ├── bower.json │ │ │ ├── demo │ │ │ │ ├── activeline.html │ │ │ │ ├── anywordhint.html │ │ │ │ ├── bidi.html │ │ │ │ ├── btree.html │ │ │ │ ├── buffers.html │ │ │ │ ├── changemode.html │ │ │ │ ├── closebrackets.html │ │ │ │ ├── closetag.html │ │ │ │ ├── complete.html │ │ │ │ ├── emacs.html │ │ │ │ ├── folding.html │ │ │ │ ├── fullscreen.html │ │ │ │ ├── hardwrap.html │ │ │ │ ├── html5complete.html │ │ │ │ ├── indentwrap.html │ │ │ │ ├── lint.html │ │ │ │ ├── loadmode.html │ │ │ │ ├── marker.html │ │ │ │ ├── markselection.html │ │ │ │ ├── matchhighlighter.html │ │ │ │ ├── matchtags.html │ │ │ │ ├── merge.html │ │ │ │ ├── multiplex.html │ │ │ │ ├── mustache.html │ │ │ │ ├── placeholder.html │ │ │ │ ├── preview.html │ │ │ │ ├── resize.html │ │ │ │ ├── rulers.html │ │ │ │ ├── runmode.html │ │ │ │ ├── search.html │ │ │ │ ├── spanaffectswrapping_shim.html │ │ │ │ ├── sublime.html │ │ │ │ ├── tern.html │ │ │ │ ├── theme.html │ │ │ │ ├── trailingspace.html │ │ │ │ ├── variableheight.html │ │ │ │ ├── vim.html │ │ │ │ ├── visibletabs.html │ │ │ │ ├── widget.html │ │ │ │ └── xmlcomplete.html │ │ │ ├── doc │ │ │ │ ├── activebookmark.js │ │ │ │ ├── compress.html │ │ │ │ ├── docs.css │ │ │ │ ├── internals.html │ │ │ │ ├── logo.png │ │ │ │ ├── logo.svg │ │ │ │ ├── manual.html │ │ │ │ ├── realworld.html │ │ │ │ ├── releases.html │ │ │ │ ├── reporting.html │ │ │ │ ├── upgrade_v2.2.html │ │ │ │ ├── upgrade_v3.html │ │ │ │ └── upgrade_v4.html │ │ │ ├── dynamic-mode.js │ │ │ ├── index.html │ │ │ ├── keymap │ │ │ │ ├── emacs.js │ │ │ │ ├── sublime.js │ │ │ │ └── vim.js │ │ │ ├── lib │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── mode │ │ │ │ ├── apl │ │ │ │ │ ├── apl.js │ │ │ │ │ └── index.html │ │ │ │ ├── asterisk │ │ │ │ │ ├── asterisk.js │ │ │ │ │ └── index.html │ │ │ │ ├── clike │ │ │ │ │ ├── clike.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── scala.html │ │ │ │ ├── clojure │ │ │ │ │ ├── clojure.js │ │ │ │ │ └── index.html │ │ │ │ ├── cobol │ │ │ │ │ ├── cobol.js │ │ │ │ │ └── index.html │ │ │ │ ├── coffeescript │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ └── index.html │ │ │ │ ├── commonlisp │ │ │ │ │ ├── commonlisp.js │ │ │ │ │ └── index.html │ │ │ │ ├── css │ │ │ │ │ ├── css.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── less.html │ │ │ │ │ ├── less_test.js │ │ │ │ │ ├── scss.html │ │ │ │ │ ├── scss_test.js │ │ │ │ │ └── test.js │ │ │ │ ├── d │ │ │ │ │ ├── d.js │ │ │ │ │ └── index.html │ │ │ │ ├── diff │ │ │ │ │ ├── diff.js │ │ │ │ │ └── index.html │ │ │ │ ├── django │ │ │ │ │ ├── django.js │ │ │ │ │ └── index.html │ │ │ │ ├── dtd │ │ │ │ │ ├── dtd.js │ │ │ │ │ └── index.html │ │ │ │ ├── dylan │ │ │ │ │ ├── dylan.js │ │ │ │ │ └── index.html │ │ │ │ ├── ecl │ │ │ │ │ ├── ecl.js │ │ │ │ │ └── index.html │ │ │ │ ├── eiffel │ │ │ │ │ ├── eiffel.js │ │ │ │ │ └── index.html │ │ │ │ ├── erlang │ │ │ │ │ ├── erlang.js │ │ │ │ │ └── index.html │ │ │ │ ├── fortran │ │ │ │ │ ├── fortran.js │ │ │ │ │ └── index.html │ │ │ │ ├── gas │ │ │ │ │ ├── gas.js │ │ │ │ │ └── index.html │ │ │ │ ├── gfm │ │ │ │ │ ├── gfm.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── gherkin │ │ │ │ │ ├── gherkin.js │ │ │ │ │ └── index.html │ │ │ │ ├── go │ │ │ │ │ ├── go.js │ │ │ │ │ └── index.html │ │ │ │ ├── groovy │ │ │ │ │ ├── groovy.js │ │ │ │ │ └── index.html │ │ │ │ ├── haml │ │ │ │ │ ├── haml.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ │ ├── haskell │ │ │ │ │ ├── haskell.js │ │ │ │ │ └── index.html │ │ │ │ ├── haxe │ │ │ │ │ ├── haxe.js │ │ │ │ │ └── index.html │ │ │ │ ├── htmlembedded │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ └── index.html │ │ │ │ ├── htmlmixed │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ └── index.html │ │ │ │ ├── http │ │ │ │ │ ├── http.js │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── jade │ │ │ │ │ ├── index.html │ │ │ │ │ └── jade.js │ │ │ │ ├── javascript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── json-ld.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── typescript.html │ │ │ │ ├── jinja2 │ │ │ │ │ ├── index.html │ │ │ │ │ └── jinja2.js │ │ │ │ ├── julia │ │ │ │ │ ├── index.html │ │ │ │ │ └── julia.js │ │ │ │ ├── livescript │ │ │ │ │ ├── index.html │ │ │ │ │ ├── livescript.js │ │ │ │ │ └── livescript.ls │ │ │ │ ├── lua │ │ │ │ │ ├── index.html │ │ │ │ │ └── lua.js │ │ │ │ ├── markdown │ │ │ │ │ ├── index.html │ │ │ │ │ ├── markdown.js │ │ │ │ │ └── test.js │ │ │ │ ├── meta.js │ │ │ │ ├── mirc │ │ │ │ │ ├── index.html │ │ │ │ │ └── mirc.js │ │ │ │ ├── mllike │ │ │ │ │ ├── index.html │ │ │ │ │ └── mllike.js │ │ │ │ ├── nginx │ │ │ │ │ ├── index.html │ │ │ │ │ └── nginx.js │ │ │ │ ├── ntriples │ │ │ │ │ ├── index.html │ │ │ │ │ └── ntriples.js │ │ │ │ ├── octave │ │ │ │ │ ├── index.html │ │ │ │ │ └── octave.js │ │ │ │ ├── pascal │ │ │ │ │ ├── index.html │ │ │ │ │ └── pascal.js │ │ │ │ ├── pegjs │ │ │ │ │ ├── index.html │ │ │ │ │ └── pegjs.js │ │ │ │ ├── perl │ │ │ │ │ ├── index.html │ │ │ │ │ └── perl.js │ │ │ │ ├── php │ │ │ │ │ ├── index.html │ │ │ │ │ └── php.js │ │ │ │ ├── pig │ │ │ │ │ ├── index.html │ │ │ │ │ └── pig.js │ │ │ │ ├── properties │ │ │ │ │ ├── index.html │ │ │ │ │ └── properties.js │ │ │ │ ├── puppet │ │ │ │ │ ├── index.html │ │ │ │ │ └── puppet.js │ │ │ │ ├── python │ │ │ │ │ ├── index.html │ │ │ │ │ └── python.js │ │ │ │ ├── q │ │ │ │ │ ├── index.html │ │ │ │ │ └── q.js │ │ │ │ ├── r │ │ │ │ │ ├── index.html │ │ │ │ │ └── r.js │ │ │ │ ├── rpm │ │ │ │ │ ├── changes │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── rpm.js │ │ │ │ ├── rst │ │ │ │ │ ├── index.html │ │ │ │ │ └── rst.js │ │ │ │ ├── ruby │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ruby.js │ │ │ │ │ └── test.js │ │ │ │ ├── rust │ │ │ │ │ ├── index.html │ │ │ │ │ └── rust.js │ │ │ │ ├── sass │ │ │ │ │ ├── index.html │ │ │ │ │ └── sass.js │ │ │ │ ├── scheme │ │ │ │ │ ├── index.html │ │ │ │ │ └── scheme.js │ │ │ │ ├── shell │ │ │ │ │ ├── index.html │ │ │ │ │ └── shell.js │ │ │ │ ├── sieve │ │ │ │ │ ├── index.html │ │ │ │ │ └── sieve.js │ │ │ │ ├── smalltalk │ │ │ │ │ ├── index.html │ │ │ │ │ └── smalltalk.js │ │ │ │ ├── smarty │ │ │ │ │ ├── index.html │ │ │ │ │ └── smarty.js │ │ │ │ ├── smartymixed │ │ │ │ │ ├── index.html │ │ │ │ │ └── smartymixed.js │ │ │ │ ├── solr │ │ │ │ │ ├── index.html │ │ │ │ │ └── solr.js │ │ │ │ ├── sparql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sparql.js │ │ │ │ ├── sql │ │ │ │ │ ├── index.html │ │ │ │ │ └── sql.js │ │ │ │ ├── stex │ │ │ │ │ ├── index.html │ │ │ │ │ ├── stex.js │ │ │ │ │ └── test.js │ │ │ │ ├── tcl │ │ │ │ │ ├── index.html │ │ │ │ │ └── tcl.js │ │ │ │ ├── tiddlywiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiddlywiki.css │ │ │ │ │ └── tiddlywiki.js │ │ │ │ ├── tiki │ │ │ │ │ ├── index.html │ │ │ │ │ ├── tiki.css │ │ │ │ │ └── tiki.js │ │ │ │ ├── toml │ │ │ │ │ ├── index.html │ │ │ │ │ └── toml.js │ │ │ │ ├── turtle │ │ │ │ │ ├── index.html │ │ │ │ │ └── turtle.js │ │ │ │ ├── vb │ │ │ │ │ ├── index.html │ │ │ │ │ └── vb.js │ │ │ │ ├── vbscript │ │ │ │ │ ├── index.html │ │ │ │ │ └── vbscript.js │ │ │ │ ├── velocity │ │ │ │ │ ├── index.html │ │ │ │ │ └── velocity.js │ │ │ │ ├── verilog │ │ │ │ │ ├── index.html │ │ │ │ │ └── verilog.js │ │ │ │ ├── xml │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xml.js │ │ │ │ ├── xquery │ │ │ │ │ ├── index.html │ │ │ │ │ ├── test.js │ │ │ │ │ └── xquery.js │ │ │ │ ├── yaml │ │ │ │ │ ├── index.html │ │ │ │ │ └── yaml.js │ │ │ │ └── z80 │ │ │ │ │ ├── index.html │ │ │ │ │ └── z80.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ ├── comment_test.js │ │ │ │ ├── doc_test.js │ │ │ │ ├── driver.js │ │ │ │ ├── emacs_test.js │ │ │ │ ├── index.html │ │ │ │ ├── lint │ │ │ │ │ ├── acorn.js │ │ │ │ │ ├── lint.js │ │ │ │ │ └── walk.js │ │ │ │ ├── mode_test.css │ │ │ │ ├── mode_test.js │ │ │ │ ├── multi_test.js │ │ │ │ ├── phantom_driver.js │ │ │ │ ├── run.js │ │ │ │ ├── search_test.js │ │ │ │ ├── sublime_test.js │ │ │ │ ├── test.js │ │ │ │ └── vim_test.js │ │ │ └── theme │ │ │ │ ├── 3024-day.css │ │ │ │ ├── 3024-night.css │ │ │ │ ├── ambiance-mobile.css │ │ │ │ ├── ambiance.css │ │ │ │ ├── base16-dark.css │ │ │ │ ├── base16-light.css │ │ │ │ ├── blackboard.css │ │ │ │ ├── cobalt.css │ │ │ │ ├── eclipse.css │ │ │ │ ├── elegant.css │ │ │ │ ├── erlang-dark.css │ │ │ │ ├── lesser-dark.css │ │ │ │ ├── mbo.css │ │ │ │ ├── mdn-like.css │ │ │ │ ├── midnight.css │ │ │ │ ├── monokai.css │ │ │ │ ├── neat.css │ │ │ │ ├── night.css │ │ │ │ ├── paraiso-dark.css │ │ │ │ ├── paraiso-light.css │ │ │ │ ├── pastel-on-dark.css │ │ │ │ ├── rubyblue.css │ │ │ │ ├── solarized.css │ │ │ │ ├── the-matrix.css │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ ├── twilight.css │ │ │ │ ├── vibrant-ink.css │ │ │ │ ├── xq-dark.css │ │ │ │ └── xq-light.css │ │ ├── ViewerJS │ │ │ ├── compatibility.js │ │ │ ├── example.local.css │ │ │ ├── images │ │ │ │ ├── kogmbh.png │ │ │ │ ├── nlnet.png │ │ │ │ ├── texture.png │ │ │ │ ├── toolbarButton-download.png │ │ │ │ ├── toolbarButton-fullscreen.png │ │ │ │ ├── toolbarButton-menuArrows.png │ │ │ │ ├── toolbarButton-pageDown.png │ │ │ │ ├── toolbarButton-pageUp.png │ │ │ │ ├── toolbarButton-presentation.png │ │ │ │ ├── toolbarButton-zoomIn.png │ │ │ │ └── toolbarButton-zoomOut.png │ │ │ ├── index.html │ │ │ ├── pdf.js │ │ │ ├── pdf.worker.js │ │ │ ├── pdfjsversion.js │ │ │ ├── text_layer_builder.js │ │ │ ├── ui_utils.js │ │ │ └── webodf.js │ │ ├── custom-scrollbar-plugin │ │ │ ├── .gitignore │ │ │ ├── LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── jquery.mCustomScrollbar.min.css │ │ │ ├── js │ │ │ │ ├── minified │ │ │ │ │ ├── jquery-1.11.0.min.js │ │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ │ ├── jquery-2.1.0.min.js │ │ │ │ │ ├── jquery-ui-1.10.4.min.js │ │ │ │ │ ├── jquery.mCustomScrollbar.min.js │ │ │ │ │ ├── jquery.mCustomScrollbar.min.js.gz │ │ │ │ │ ├── jquery.mousewheel-3.0.6.min.js │ │ │ │ │ └── jquery.mousewheel.min.js │ │ │ │ └── uncompressed │ │ │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ │ │ ├── jquery.mousewheel-3.0.6.js │ │ │ │ │ └── jquery.mousewheel.js │ │ │ ├── mCSB_buttons.png │ │ │ ├── malihu-custom-scrollbar.jquery.json │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── dropzone │ │ │ ├── .gitignore │ │ │ ├── .tagconfig │ │ │ ├── .travis.yml │ │ │ ├── AMD_footer │ │ │ ├── AMD_header │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.coffee │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── download.png │ │ │ ├── downloads │ │ │ │ ├── css │ │ │ │ │ ├── basic.css │ │ │ │ │ ├── dropzone.css │ │ │ │ │ └── stylus │ │ │ │ │ │ ├── basic.styl │ │ │ │ │ │ └── dropzone.styl │ │ │ │ ├── dropzone-amd-module.js │ │ │ │ ├── dropzone-amd-module.min.js │ │ │ │ ├── dropzone.js │ │ │ │ ├── dropzone.min.js │ │ │ │ ├── images │ │ │ │ │ ├── spritemap.png │ │ │ │ │ └── spritemap@2x.png │ │ │ │ └── readme.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ └── dropzone.js │ │ │ ├── npm_publish.sh │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── src │ │ │ │ └── dropzone.coffee │ │ │ ├── test.sh │ │ │ └── test │ │ │ │ ├── test.coffee │ │ │ │ ├── test.html │ │ │ │ └── test.js │ │ ├── filemanager.config.js │ │ ├── filemanager.config.js.default │ │ ├── filemanager.js │ │ ├── filemanager.liveSearch.js │ │ ├── filemanager.liveSearch.min.js │ │ ├── filemanager.min.js │ │ ├── jquery-1.11.3.min.js │ │ ├── jquery-browser.js │ │ ├── jquery.contextmenu │ │ │ ├── images │ │ │ │ ├── cut.png │ │ │ │ ├── door.png │ │ │ │ ├── page_white_copy.png │ │ │ │ ├── page_white_delete.png │ │ │ │ ├── page_white_edit.png │ │ │ │ └── page_white_paste.png │ │ │ ├── jquery.contextMenu-1.01.css │ │ │ └── jquery.contextMenu-1.01.js │ │ ├── jquery.filetree │ │ │ ├── images │ │ │ │ ├── application.png │ │ │ │ ├── code.png │ │ │ │ ├── css.png │ │ │ │ ├── db.png │ │ │ │ ├── directory-lock.png │ │ │ │ ├── directory.png │ │ │ │ ├── doc.png │ │ │ │ ├── file-lock.png │ │ │ │ ├── file.png │ │ │ │ ├── film.png │ │ │ │ ├── flash.png │ │ │ │ ├── folder_open.png │ │ │ │ ├── html.png │ │ │ │ ├── java.png │ │ │ │ ├── linux.png │ │ │ │ ├── music.png │ │ │ │ ├── pdf.png │ │ │ │ ├── php.png │ │ │ │ ├── picture.png │ │ │ │ ├── ppt.png │ │ │ │ ├── psd.png │ │ │ │ ├── ruby.png │ │ │ │ ├── script.png │ │ │ │ ├── spinner.gif │ │ │ │ ├── square-loading.gif │ │ │ │ ├── square-spinner.gif │ │ │ │ ├── txt.png │ │ │ │ ├── xls.png │ │ │ │ └── zip.png │ │ │ ├── jqueryFileTree.css │ │ │ └── jqueryFileTree.js │ │ ├── jquery.form-3.24.js │ │ ├── jquery.impromptu-3.2.min.js │ │ ├── jquery.splitter │ │ │ ├── hgrabber.gif │ │ │ ├── jquery.splitter-1.5.1.js │ │ │ ├── jquery.splitter.css │ │ │ └── vgrabber.gif │ │ ├── jquery.tablesorter-2.7.2.min.js │ │ ├── languages │ │ │ ├── ar.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sv.js │ │ │ ├── tr.js │ │ │ ├── vn.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ └── zeroclipboard │ │ │ ├── .gitignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .spmignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── composer.json │ │ │ ├── copy.js │ │ │ ├── dist │ │ │ ├── .jshintrc │ │ │ ├── ZeroClipboard.Core.js │ │ │ ├── ZeroClipboard.Core.min.js │ │ │ ├── ZeroClipboard.Core.min.map │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ ├── ZeroClipboard.min.map │ │ │ └── ZeroClipboard.swf │ │ │ ├── docs │ │ │ ├── api │ │ │ │ ├── ZeroClipboard.Core.md │ │ │ │ └── ZeroClipboard.md │ │ │ ├── instructions.md │ │ │ ├── roadmap.md │ │ │ └── security.md │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── flash │ │ │ │ ├── ClipboardInjector.as │ │ │ │ ├── JsProxy.as │ │ │ │ ├── XssUtils.as │ │ │ │ └── ZeroClipboard.as │ │ │ ├── js │ │ │ │ ├── client │ │ │ │ │ ├── api.js │ │ │ │ │ ├── private.js │ │ │ │ │ └── state.js │ │ │ │ ├── core │ │ │ │ │ ├── api.js │ │ │ │ │ ├── private.js │ │ │ │ │ └── state.js │ │ │ │ ├── end.js │ │ │ │ ├── shared │ │ │ │ │ ├── private.js │ │ │ │ │ └── state.js │ │ │ │ └── start.js │ │ │ └── meta │ │ │ │ ├── LICENSE.tmpl │ │ │ │ ├── bower.json.tmpl │ │ │ │ ├── composer.json.tmpl │ │ │ │ └── source-banner.tmpl │ │ │ └── test │ │ │ ├── .jshintrc │ │ │ ├── built │ │ │ ├── ZeroClipboard.Core.tests.js │ │ │ ├── ZeroClipboard.Core.tests.js.html │ │ │ ├── ZeroClipboard.tests.js │ │ │ └── ZeroClipboard.tests.js.html │ │ │ ├── client │ │ │ ├── api.tests.js │ │ │ ├── api.tests.js.html │ │ │ ├── private.tests.js │ │ │ └── private.tests.js.html │ │ │ ├── core │ │ │ ├── api.tests.js │ │ │ ├── api.tests.js.html │ │ │ ├── private.tests.js │ │ │ └── private.tests.js.html │ │ │ ├── index.html │ │ │ └── shared │ │ │ ├── private.tests.js │ │ │ └── private.tests.js.html │ ├── styles │ │ └── reset.css │ └── themes │ │ ├── default │ │ ├── images │ │ │ ├── accept.png │ │ │ ├── ajax-loader.gif │ │ │ ├── application_view_icons.png │ │ │ ├── application_view_list.png │ │ │ ├── bin_closed.png │ │ │ ├── bullet_arrow_down.png │ │ │ ├── bullet_arrow_up.png │ │ │ ├── copy.png │ │ │ ├── download.png │ │ │ ├── edit.png │ │ │ ├── folder_add.png │ │ │ ├── house.png │ │ │ ├── info.png │ │ │ ├── level-up.png │ │ │ ├── move.png │ │ │ ├── parentfolder.png │ │ │ ├── plus.png │ │ │ ├── replace.png │ │ │ ├── reset.png │ │ │ ├── tag.png │ │ │ ├── upload.png │ │ │ └── wait30trans.gif │ │ └── styles │ │ │ ├── filemanager.css │ │ │ └── ie.css │ │ ├── flat-turquoise │ │ ├── images │ │ │ ├── accept.png │ │ │ ├── ajax-loader.gif │ │ │ ├── application_view_icons.png │ │ │ ├── application_view_list.png │ │ │ ├── bin_closed.png │ │ │ ├── bullet_arrow_down.png │ │ │ ├── bullet_arrow_up.png │ │ │ ├── copy.png │ │ │ ├── download.png │ │ │ ├── edit.png │ │ │ ├── folder_add.png │ │ │ ├── house.png │ │ │ ├── info.png │ │ │ ├── level-up.png │ │ │ ├── move.png │ │ │ ├── parentfolder.png │ │ │ ├── plus.png │ │ │ ├── replace.png │ │ │ ├── reset.png │ │ │ ├── tag.png │ │ │ ├── upload.png │ │ │ └── wait30trans.gif │ │ └── styles │ │ │ ├── filemanager.css │ │ │ └── ie.css │ │ ├── flat-ui │ │ ├── images │ │ │ ├── accept.png │ │ │ ├── ajax-loader.gif │ │ │ ├── application_view_icons.png │ │ │ ├── application_view_list.png │ │ │ ├── bin_closed.png │ │ │ ├── bullet_arrow_down.png │ │ │ ├── bullet_arrow_up.png │ │ │ ├── copy.png │ │ │ ├── download.png │ │ │ ├── edit.png │ │ │ ├── folder_add.png │ │ │ ├── house.png │ │ │ ├── info.png │ │ │ ├── level-up.png │ │ │ ├── move.png │ │ │ ├── parentfolder.png │ │ │ ├── plus.png │ │ │ ├── replace.png │ │ │ ├── reset.png │ │ │ ├── tag.png │ │ │ ├── upload.png │ │ │ └── wait30trans.gif │ │ └── styles │ │ │ ├── filemanager.css │ │ │ └── ie.css │ │ ├── flat │ │ ├── images │ │ │ ├── accept.png │ │ │ ├── ajax-loader.gif │ │ │ ├── application_view_icons.png │ │ │ ├── application_view_list.png │ │ │ ├── bin_closed.png │ │ │ ├── bullet_arrow_down.png │ │ │ ├── bullet_arrow_up.png │ │ │ ├── copy.png │ │ │ ├── download.png │ │ │ ├── edit.png │ │ │ ├── folder_add.png │ │ │ ├── house.png │ │ │ ├── info.png │ │ │ ├── level-up.png │ │ │ ├── move.png │ │ │ ├── parentfolder.png │ │ │ ├── plus.png │ │ │ ├── replace.png │ │ │ ├── reset.png │ │ │ ├── tag.png │ │ │ ├── upload.png │ │ │ └── wait30trans.gif │ │ └── styles │ │ │ ├── filemanager.css │ │ │ └── ie.css │ │ └── inverse │ │ ├── images │ │ ├── accept.png │ │ ├── ajax-loader.gif │ │ ├── application_view_icons.png │ │ ├── application_view_list.png │ │ ├── bin_closed.png │ │ ├── bullet_arrow_down.png │ │ ├── bullet_arrow_up.png │ │ ├── copy.png │ │ ├── download.png │ │ ├── edit.png │ │ ├── folder_add.png │ │ ├── house.png │ │ ├── info.png │ │ ├── level-up.png │ │ ├── move.png │ │ ├── parentfolder.png │ │ ├── plus.png │ │ ├── replace.png │ │ ├── reset.png │ │ ├── tag.png │ │ ├── upload.png │ │ └── wait30trans.gif │ │ └── styles │ │ ├── filemanager.css │ │ └── ie.css ├── flat-ui │ ├── css │ │ ├── flat-ui.css │ │ ├── flat-ui.css.map │ │ ├── flat-ui.min.css │ │ └── vendor │ │ │ └── bootstrap │ │ │ ├── css │ │ │ └── bootstrap.min.css │ │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── fonts │ │ ├── glyphicons │ │ │ ├── flat-ui-icons-regular.eot │ │ │ ├── flat-ui-icons-regular.svg │ │ │ ├── flat-ui-icons-regular.ttf │ │ │ ├── flat-ui-icons-regular.woff │ │ │ └── selection.json │ │ └── lato │ │ │ ├── lato-black.eot │ │ │ ├── lato-black.svg │ │ │ ├── lato-black.ttf │ │ │ ├── lato-black.woff │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.svg │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.svg │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.svg │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-light.eot │ │ │ ├── lato-light.svg │ │ │ ├── lato-light.ttf │ │ │ ├── lato-light.woff │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.svg │ │ │ ├── lato-regular.ttf │ │ │ └── lato-regular.woff │ ├── img │ │ ├── favicon.ico │ │ ├── icons │ │ │ ├── png │ │ │ │ ├── Book.png │ │ │ │ ├── Calendar.png │ │ │ │ ├── Chat.png │ │ │ │ ├── Clipboard.png │ │ │ │ ├── Compas.png │ │ │ │ ├── Gift-Box.png │ │ │ │ ├── Infinity-Loop.png │ │ │ │ ├── Mail.png │ │ │ │ ├── Map.png │ │ │ │ ├── Pensils.png │ │ │ │ ├── Pocket.png │ │ │ │ ├── Retina-Ready.png │ │ │ │ ├── Toilet-Paper.png │ │ │ │ └── Watches.png │ │ │ └── svg │ │ │ │ ├── book.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── chat.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clocks.svg │ │ │ │ ├── compas.svg │ │ │ │ ├── gift-box.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── map.svg │ │ │ │ ├── paper-bag.svg │ │ │ │ ├── pencils.svg │ │ │ │ ├── retina.svg │ │ │ │ ├── ribbon.svg │ │ │ │ └── toilet-paper.svg │ │ ├── login │ │ │ ├── icon.png │ │ │ ├── imac-2x.png │ │ │ └── imac.png │ │ └── tile │ │ │ ├── ribbon-2x.png │ │ │ └── ribbon.png │ ├── index.html │ └── js │ │ ├── flat-ui.js │ │ ├── flat-ui.min.js │ │ └── vendor │ │ ├── html5shiv.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── respond.min.js │ │ ├── video-js.swf │ │ └── video.js ├── font-awesome-4.5.0 │ ├── HELP-US-OUT.txt │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── animated.less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── jquery │ ├── jquery-1.8.2.min.js │ └── jquery-2.1.4.min.js ├── sewise-player │ ├── flash │ │ ├── SewisePlayer.swf │ │ ├── plugins │ │ │ ├── AudioPlayer.swf │ │ │ └── SubtitlesPlayer.swf │ │ └── skins │ │ │ ├── liveOrange.swf │ │ │ ├── liveRadio.swf │ │ │ ├── liveWhite.swf │ │ │ ├── vodFlowPlayer.swf │ │ │ ├── vodFoream.swf │ │ │ ├── vodMobileTransparent.swf │ │ │ ├── vodMobileWhite.swf │ │ │ ├── vodOrange.swf │ │ │ ├── vodTransparent.swf │ │ │ ├── vodVspaas.swf │ │ │ └── vodWhite.swf │ ├── html │ │ └── skins │ │ │ ├── liveOrange │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.gif │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── liveRadio │ │ │ ├── bg.jpg │ │ │ ├── buffer.png │ │ │ ├── controlbar.png │ │ │ ├── controlbarbg.jpg │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── liveWhite │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.gif │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── vodFlowPlayer │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.gif │ │ │ ├── clarity_btn_bg.png │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── vodFoream │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.gif │ │ │ ├── clarity_btn_bg.png │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── vodMobileTransparent │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.png │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── vodMobileWhite │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.gif │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── vodOrange │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.png │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ ├── vodTransparent │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.png │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ │ │ └── vodWhite │ │ │ ├── big_play_btn.png │ │ │ ├── buffer.gif │ │ │ ├── controlbar.png │ │ │ ├── logo.png │ │ │ ├── skin.css │ │ │ ├── skin.html │ │ │ ├── skin.html.js │ │ │ └── skin.js │ ├── index.html │ ├── js │ │ ├── jquery.min.js │ │ └── swfobject.js │ ├── live.html │ ├── sewise.player.min.js │ └── vod.html ├── smartpaginator │ ├── smartpaginator.css │ └── smartpaginator.js ├── syntaxhighlighter │ ├── LGPL-LICENSE │ ├── MIT-LICENSE │ ├── index.html │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ ├── src │ │ ├── shAutoloader.js │ │ ├── shCore.js │ │ └── shLegacy.js │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css ├── ueditor │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ ├── index.html │ ├── jsp │ │ ├── config.json │ │ └── controller.jsp │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ ├── ueditor.all.js │ ├── ueditor.all.min.js │ ├── ueditor.config.bak.js │ ├── ueditor.config.js │ ├── ueditor.parse.js │ └── ueditor.parse.min.js ├── umeditor │ ├── dialogs │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── formula │ │ │ ├── formula.css │ │ │ ├── formula.html │ │ │ ├── formula.js │ │ │ └── images │ │ │ │ └── formula.png │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── close.png │ │ │ │ ├── upload1.png │ │ │ │ └── upload2.png │ │ ├── link │ │ │ └── link.js │ │ ├── map │ │ │ ├── map.html │ │ │ └── map.js │ │ └── video │ │ │ ├── images │ │ │ ├── center_focus.jpg │ │ │ ├── left_focus.jpg │ │ │ ├── none_focus.jpg │ │ │ └── right_focus.jpg │ │ │ ├── video.css │ │ │ └── video.js │ ├── index.html │ ├── jsp │ │ ├── Uploader.java │ │ ├── getContent.jsp │ │ └── imageUp.jsp │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── imglabel.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── imglabel.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ ├── themes │ │ └── default │ │ │ ├── css │ │ │ ├── umeditor.css │ │ │ └── umeditor.min.css │ │ │ └── images │ │ │ ├── caret.png │ │ │ ├── close.png │ │ │ ├── icons.gif │ │ │ ├── icons.png │ │ │ ├── ok.gif │ │ │ ├── pop-bg.png │ │ │ ├── spacer.gif │ │ │ └── videologo.gif │ ├── third-party │ │ └── jquery.min.js │ ├── uethird.js │ ├── umeditor.config.js │ ├── umeditor.js │ └── umeditor.min.js ├── ymPrompt │ ├── common.js │ ├── skin │ │ ├── black │ │ │ ├── images │ │ │ │ ├── ask.gif │ │ │ │ ├── btn_bg.gif │ │ │ │ ├── err.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── info.gif │ │ │ │ ├── right.gif │ │ │ │ ├── title_bg_center.gif │ │ │ │ ├── title_bg_left.gif │ │ │ │ └── title_bg_right.gif │ │ │ └── ymPrompt.css │ │ ├── bluebar │ │ │ ├── images │ │ │ │ ├── ask.gif │ │ │ │ ├── btn_bg.gif │ │ │ │ ├── err.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── info.gif │ │ │ │ ├── right.gif │ │ │ │ ├── title_bg_center.gif │ │ │ │ ├── title_bg_left.gif │ │ │ │ └── title_bg_right.gif │ │ │ └── ymPrompt.css │ │ ├── dmm-green │ │ │ ├── images │ │ │ │ ├── ask.gif │ │ │ │ ├── btn_bg.gif │ │ │ │ ├── err.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── info.gif │ │ │ │ ├── right.gif │ │ │ │ ├── titleIco.gif │ │ │ │ ├── title_bg_center.gif │ │ │ │ ├── title_bg_left.gif │ │ │ │ ├── title_bg_right.gif │ │ │ │ ├── win_b.gif │ │ │ │ ├── win_l.gif │ │ │ │ ├── win_lb.gif │ │ │ │ ├── win_r.gif │ │ │ │ └── win_rb.gif │ │ │ └── ymPrompt.css │ │ ├── qq │ │ │ ├── images │ │ │ │ ├── ask.gif │ │ │ │ ├── btn_bg.gif │ │ │ │ ├── close.gif │ │ │ │ ├── content_bg.gif │ │ │ │ ├── err.gif │ │ │ │ ├── ico-arrow.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── info.gif │ │ │ │ ├── right.gif │ │ │ │ ├── title_bg_center.gif │ │ │ │ ├── title_bg_left.gif │ │ │ │ ├── title_bg_right.gif │ │ │ │ ├── win_b.gif │ │ │ │ ├── win_l.gif │ │ │ │ ├── win_lb.gif │ │ │ │ ├── win_r.gif │ │ │ │ └── win_rb.gif │ │ │ └── ymPrompt.css │ │ ├── simple │ │ │ ├── images │ │ │ │ ├── ask.gif │ │ │ │ ├── err.gif │ │ │ │ ├── ico.gif │ │ │ │ ├── info.gif │ │ │ │ └── right.gif │ │ │ └── ymPrompt.css │ │ ├── simple_gray │ │ │ ├── images │ │ │ │ ├── ask.gif │ │ │ │ ├── err.gif │ │ │ │ ├── info.gif │ │ │ │ └── right.gif │ │ │ └── ymPrompt.css │ │ └── vista │ │ │ ├── images │ │ │ ├── ask.gif │ │ │ ├── btn_bg.gif │ │ │ ├── err.gif │ │ │ ├── ico.gif │ │ │ ├── info.gif │ │ │ ├── right.gif │ │ │ ├── title_bg_center.gif │ │ │ ├── title_bg_left.gif │ │ │ ├── title_bg_right.gif │ │ │ ├── win_b.gif │ │ │ ├── win_l.gif │ │ │ ├── win_lb.gif │ │ │ ├── win_r.gif │ │ │ └── win_rb.gif │ │ │ └── ymPrompt.css │ └── ymPrompt.js └── zTree │ ├── css │ └── zTreeStyle │ │ ├── img │ │ ├── diy │ │ │ ├── 1_close.png │ │ │ ├── 1_open.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── line_conn.gif │ │ ├── line_conn.png │ │ ├── loading.gif │ │ ├── metro.gif │ │ └── metro.png │ │ └── metro.css │ ├── index.html │ └── js │ ├── jquery-1.4.4.min.js │ └── jquery.ztree.all-3.5.min.js ├── front ├── background.jpg ├── home.css ├── home.min.css ├── images │ ├── documents.png │ ├── education.jpg │ ├── food.jpg │ ├── house.jpg │ ├── news.jpg │ ├── park.jpg │ ├── today.jpg │ └── travel.jpg ├── logo.png ├── logo512x512.png ├── paginator.css ├── q-follow.png ├── q-tag.png └── top.png ├── images ├── common │ ├── error_401.png │ ├── error_403.png │ ├── error_404.png │ ├── error_500.png │ └── notfound.png ├── sort │ ├── sort_asc.png │ ├── sort_both.png │ └── sort_desc.png ├── user │ ├── user.png │ └── user1.jpg └── video │ └── no_image.jpg ├── login ├── bg │ ├── bg1.jpg │ └── bg2.jpg ├── icon1.png ├── icon2.png └── login.css └── theme ├── default.html ├── flat-ui.html ├── flat-ui ├── bootstrap-theme-flat-ui.css └── bootstrap-theme.css.map ├── flat.html ├── flat └── flat.css ├── inverse.html └── inverse ├── bootstrap-theme-inverse.css └── bootstrap-theme.css.map /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/pom.xml -------------------------------------------------------------------------------- /sql/admin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/sql/admin.sql -------------------------------------------------------------------------------- /src/main/java/com/beetl/functions/BeetlStrUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/beetl/functions/BeetlStrUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/base/BaseProjectController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/base/BaseProjectController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/base/BaseProjectModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/base/BaseProjectModel.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/beelt/BeeltFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/beelt/BeeltFunctions.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/config/BaseConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/config/BaseConfig.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/controller/PersonFileLimit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/controller/PersonFileLimit.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/interceptor/CommonInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/interceptor/CommonInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/interceptor/UserKeyInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/interceptor/UserKeyInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/plugin/spring/Inject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/plugin/spring/Inject.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/plugin/spring/IocInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/plugin/spring/IocInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/plugin/spring/SpringPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/plugin/spring/SpringPlugin.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/util/ImageCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/util/ImageCode.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/util/ImageModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/util/ImageModel.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/util/ImageUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/util/ImageUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/util/JFlyFoxCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/util/JFlyFoxCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/component/util/JFlyFoxUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/component/util/JFlyFoxUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/base/BaseController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/base/BaseController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/base/BaseForm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/base/BaseForm.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/base/BaseModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/base/BaseModel.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/base/BaseService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/base/BaseService.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/base/Paginator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/base/Paginator.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/base/SessionUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/base/SessionUser.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/annotation/AutoBindModels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/annotation/AutoBindModels.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/annotation/AutoBindRoutes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/annotation/AutoBindRoutes.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/annotation/ControllerBind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/annotation/ControllerBind.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/annotation/ModelBind.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/annotation/ModelBind.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/db/SQLUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/db/SQLUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/handler/BasePathHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/handler/BasePathHandler.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/handler/CurrentPathHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/handler/CurrentPathHandler.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/handler/HtmlHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/handler/HtmlHandler.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/Oauth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/Oauth.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthBaidu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthBaidu.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthDouban.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthDouban.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthGithub.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthGithub.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthOsc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthOsc.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthQQ.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthQQ.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthRenren.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthRenren.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/OauthSina.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/OauthSina.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/util/Display.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/util/Display.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/util/HttpKit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/util/HttpKit.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/util/OathConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/util/OathConfig.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/oauth/util/TokenUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/oauth/util/TokenUtil.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/redis/JedisClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/redis/JedisClient.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/component/util/Attr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/component/util/Attr.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/config/JflyfoxConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/config/JflyfoxConfig.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/jfinal/template/TemplateFunctions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/jfinal/template/TemplateFunctions.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/modules/admin/AdminController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/modules/admin/AdminController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/modules/admin/person/PersonController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/modules/admin/person/PersonController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/department/DepartmentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/department/DepartmentController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/department/DepartmentSvc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/department/DepartmentSvc.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/department/SysDepartment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/department/SysDepartment.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/dict/DictCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/dict/DictCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/dict/DictController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/dict/DictController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/dict/DictSvc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/dict/DictSvc.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/dict/SysDict.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/dict/SysDict.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/dict/SysDictDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/dict/SysDictDetail.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/log/LogController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/log/LogController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/log/SysLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/log/SysLog.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/menu/MenuController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/menu/MenuController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/menu/MenuSvc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/menu/MenuSvc.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/menu/SysMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/menu/SysMenu.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/role/RoleController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/role/RoleController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/role/RoleSvc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/role/RoleSvc.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/role/SysRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/role/SysRole.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/rolemenu/SysRoleMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/rolemenu/SysRoleMenu.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/user/SysUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/user/SysUser.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/user/UserCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/user/UserCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/user/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/user/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/user/UserInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/user/UserInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/user/UserSvc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/user/UserSvc.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/system/userrole/SysUserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/system/userrole/SysUserRole.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/Config.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/DateUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/DateUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/FileUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/HandlerUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/HandlerUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/IpUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/IpUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/ModelKit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/ModelKit.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/NumberUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/NumberUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/PathUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/PathUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/ReflectionUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/ReflectionUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/StrUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/StrUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/annotation/ClassSearcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/annotation/ClassSearcher.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/Cache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/Cache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/CacheManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/CacheManager.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/ICacheManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/ICacheManager.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/MemCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/MemCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/RedisCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/RedisCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/impl/MemoryCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/impl/MemoryCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/cache/impl/MemorySerializeCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/cache/impl/MemorySerializeCache.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/encrypt/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/encrypt/Base64.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/encrypt/DES3Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/encrypt/DES3Utils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/encrypt/DESUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/encrypt/DESUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/encrypt/Md5Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/encrypt/Md5Utils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/encrypt/RSAUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/encrypt/RSAUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/BeanUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/BeanUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/CnToSpell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/CnToSpell.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/HtmlUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/HtmlUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/HttpClientUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/HttpClientUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/IdCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/IdCheck.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/RandomStrUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/RandomStrUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/UuidUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/UuidUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/ValidUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/ValidUtils.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/mp3/FrameInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/mp3/FrameInfo.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/extend/mp3/MusicInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/extend/mp3/MusicInfo.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/serializable/FSTSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/serializable/FSTSerializer.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/serializable/JavaSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/serializable/JavaSerializer.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/serializable/Serializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/serializable/Serializer.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/serializable/SerializerManage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/serializable/SerializerManage.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/task/AsyncTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/task/AsyncTask.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/task/AsyncTaskExcutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/task/AsyncTaskExcutor.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/task/AsyncTaskWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/task/AsyncTaskWorker.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/tuple/FiveTuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/tuple/FiveTuple.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/tuple/FourTuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/tuple/FourTuple.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/tuple/ITuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/tuple/ITuple.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/tuple/ThreeTuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/tuple/ThreeTuple.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/tuple/Tuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/tuple/Tuple.java -------------------------------------------------------------------------------- /src/main/java/com/supyuan/util/tuple/TwoTuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/java/com/supyuan/util/tuple/TwoTuple.java -------------------------------------------------------------------------------- /src/main/resources/conf/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/resources/conf/config.properties -------------------------------------------------------------------------------- /src/main/resources/conf/db.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/resources/conf/db.properties -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /src/main/resources/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/resources/spring/applicationContext.xml -------------------------------------------------------------------------------- /src/main/resources/spring/shiro-context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/resources/spring/shiro-context.xml -------------------------------------------------------------------------------- /src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/.gitignore: -------------------------------------------------------------------------------- 1 | /classes 2 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/lib/ReadMe.txt: -------------------------------------------------------------------------------- 1 | 使用maven不需要jar,如果不熟悉maven可以将项目中lib下文件copy到这里 -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/pages/admin/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/admin/home/home.html -------------------------------------------------------------------------------- /src/main/webapp/pages/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/admin/login.html -------------------------------------------------------------------------------- /src/main/webapp/pages/admin/person/show_person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/admin/person/show_person.html -------------------------------------------------------------------------------- /src/main/webapp/pages/admin/person/show_person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/admin/person/show_person.js -------------------------------------------------------------------------------- /src/main/webapp/pages/error/401.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/error/401.html -------------------------------------------------------------------------------- /src/main/webapp/pages/error/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/error/403.html -------------------------------------------------------------------------------- /src/main/webapp/pages/error/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/error/404.html -------------------------------------------------------------------------------- /src/main/webapp/pages/error/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/error/500.html -------------------------------------------------------------------------------- /src/main/webapp/pages/error/trans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/error/trans.html -------------------------------------------------------------------------------- /src/main/webapp/pages/error/trans_no_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/error/trans_no_auth.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/autojs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/autojs.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/bootstrap-multiselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/bootstrap-multiselect.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/bootstrap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/bootstrap.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/jquery.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/my97.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/my97.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/paginator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/paginator.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/sewise-player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/sewise-player.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/ueditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/ueditor.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/ueditor_hightlighter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/ueditor_hightlighter.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/umeditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/umeditor.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/ymprompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/ymprompt.html -------------------------------------------------------------------------------- /src/main/webapp/pages/includes/ztree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/includes/ztree.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/department/department_add.html: -------------------------------------------------------------------------------- 1 | <% 2 | include("department_edit.html"){} 3 | %> 4 | -------------------------------------------------------------------------------- /src/main/webapp/pages/system/department/department_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/department/department_edit.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/department/department_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/department/department_list.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/department/department_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/department/department_view.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/dict/dict_add.html: -------------------------------------------------------------------------------- 1 | <% 2 | include("dict_edit.html"){} 3 | %> 4 | -------------------------------------------------------------------------------- /src/main/webapp/pages/system/dict/dict_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/dict/dict_edit.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/dict/dict_edit_dict.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/dict/dict_edit_dict.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/dict/dict_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/dict/dict_list.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/dict/dict_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/dict/dict_view.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/log/log_add.html: -------------------------------------------------------------------------------- 1 | <% 2 | include("log_edit.html"){} 3 | %> 4 | -------------------------------------------------------------------------------- /src/main/webapp/pages/system/log/log_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/log/log_edit.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/log/log_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/log/log_list.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/log/log_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/log/log_view.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/menu/menu_add.html: -------------------------------------------------------------------------------- 1 | <% 2 | include("menu_edit.html"){} 3 | %> 4 | -------------------------------------------------------------------------------- /src/main/webapp/pages/system/menu/menu_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/menu/menu_edit.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/menu/menu_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/menu/menu_list.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/menu/menu_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/menu/menu_view.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/role/role_add.html: -------------------------------------------------------------------------------- 1 | <% 2 | include("role_edit.html"){} 3 | %> 4 | -------------------------------------------------------------------------------- /src/main/webapp/pages/system/role/role_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/role/role_auth.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/role/role_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/role/role_edit.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/role/role_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/role/role_list.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/role/role_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/role/role_view.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/user/user_add.html: -------------------------------------------------------------------------------- 1 | <% 2 | include("user_edit.html"){} 3 | %> 4 | -------------------------------------------------------------------------------- /src/main/webapp/pages/system/user/user_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/user/user_auth.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/user/user_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/user/user_edit.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/user/user_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/user/user_list.html -------------------------------------------------------------------------------- /src/main/webapp/pages/system/user/user_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/system/user/user_view.html -------------------------------------------------------------------------------- /src/main/webapp/pages/template/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/template/_layout.html -------------------------------------------------------------------------------- /src/main/webapp/pages/template/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/template/head.html -------------------------------------------------------------------------------- /src/main/webapp/pages/template/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/template/menu.html -------------------------------------------------------------------------------- /src/main/webapp/pages/template/menu.html.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/template/menu.html.bak -------------------------------------------------------------------------------- /src/main/webapp/pages/template/message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/pages/template/message.html -------------------------------------------------------------------------------- /src/main/webapp/resources/image/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/resources/image/no_image.jpg -------------------------------------------------------------------------------- /src/main/webapp/resources/js/encrypt/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/resources/js/encrypt/base64.js -------------------------------------------------------------------------------- /src/main/webapp/resources/js/encrypt/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/resources/js/encrypt/md5.js -------------------------------------------------------------------------------- /src/main/webapp/resources/js/encrypt/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/resources/js/encrypt/sha1.js -------------------------------------------------------------------------------- /src/main/webapp/static/common/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/common/head.js -------------------------------------------------------------------------------- /src/main/webapp/static/common/initJs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/common/initJs.js -------------------------------------------------------------------------------- /src/main/webapp/static/common/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/common/main.css -------------------------------------------------------------------------------- /src/main/webapp/static/common/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/common/main.js -------------------------------------------------------------------------------- /src/main/webapp/static/common/valid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/common/valid.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/WdatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/WdatePicker.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/calendar.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/lang/en.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/lang/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/lang/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/lang/zh-tw.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/skin/WdatePicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/skin/WdatePicker.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/skin/datePicker.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/skin/default/img.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/skin/whyGreen/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/skin/whyGreen/bg.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/component/My97DatePicker/skin/whyGreen/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/My97DatePicker/skin/whyGreen/img.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/autoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/autoc.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/autoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/autoc.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/autoc.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/autoc.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/autoc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/autoc.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/example/AutocJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/example/AutocJS.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/example/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/example/css/layout.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/example/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/example/css/normalize.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/example/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/lib/autoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/lib/autoc.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/lib/autoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/lib/autoc.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/lib/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/lib/require.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/autocjs/lib/sea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/autocjs/lib/sea.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/bootstrap-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/bootstrap-common.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/bootstrap-common_pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/bootstrap-common_pack.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/js/npm.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap/test.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap3-dialog/js/bootstrap-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap3-dialog/js/bootstrap-dialog.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/bootstrap3-dialog/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/bootstrap3-dialog/readme.txt -------------------------------------------------------------------------------- /src/main/webapp/static/component/demo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/demo.htm -------------------------------------------------------------------------------- /src/main/webapp/static/component/echarts/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/echarts/demo.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/echarts/demo1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/echarts/demo1.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/echarts/echarts-plain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/echarts/echarts-plain.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Close.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Image.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Movie.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Music.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Net.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Open.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/_Works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/_Works.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/aac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/aac.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/avi.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/bmp.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/chm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/chm.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/css.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/default.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/dll.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/doc.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/docx.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/fla.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/gif.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/htm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/htm.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/html.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/ini.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/jar.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/jpeg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/jpg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/js.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/lasso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/lasso.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/mdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/mdb.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/mov.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/mp3.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/mp4.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/mpg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/ogg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/ogg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/ogv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/ogv.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/pdf.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/php.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/png.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/ppt.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/py.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/rb.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/real.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/reg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/rtf.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/sql.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/swf.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/txt.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/vbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/vbs.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/wav.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/webm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/webm.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/wma.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/wmv.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/xls.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/xlsx.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/xml.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/xsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/xsl.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fileicons/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fileicons/zip.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fmlogo_bbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fmlogo_bbg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/fmlogo_wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/fmlogo_wbg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/images/wait30trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/images/wait30trans.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /npm-debug.log 3 | test.html 4 | .tern-* 5 | *~ 6 | *.swp 7 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/CodeMirror/AUTHORS -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/CodeMirror/LICENSE -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/CodeMirror/README.md -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/bin/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/CodeMirror/bin/lint -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/CodeMirror/bower.json -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/CodeMirror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/CodeMirror/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/ViewerJS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/ViewerJS/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/ViewerJS/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/ViewerJS/pdf.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/ViewerJS/pdfjsversion.js: -------------------------------------------------------------------------------- 1 | var /**@const{!string}*/pdfjs_version = "v1.0.1040"; 2 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/ViewerJS/ui_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/ViewerJS/ui_utils.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/ViewerJS/webodf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/ViewerJS/webodf.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | components 3 | node_modules 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/.tagconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/.tagconfig -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/.travis.yml -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/AMD_footer: -------------------------------------------------------------------------------- 1 | return module.exports; 2 | })); -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/AMD_header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/AMD_header -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/bower.json -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/download.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/index.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/package.json -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/readme.md -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/test.sh -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/dropzone/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/dropzone/test/test.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/filemanager.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/filemanager.config.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/filemanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/filemanager.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/filemanager.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/filemanager.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/jquery-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/jquery-browser.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/jquery.form-3.24.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/jquery.form-3.24.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/ar.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/bs.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/ca.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/cs.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/da.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/de.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/el.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/en-gb.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/en.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/es.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/fi.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/fr.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/he.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/hu.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/it.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/ja.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/nl.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/pl.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/pt.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/ru.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/sv.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/tr.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/vn.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/languages/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/languages/zh-tw.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/zeroclipboard/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | npm-debug.log 4 | bin/* 5 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/zeroclipboard/.npmignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | test/ 3 | .DS_Store -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/zeroclipboard/.spmignore: -------------------------------------------------------------------------------- 1 | docs 2 | src 3 | test 4 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/zeroclipboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/zeroclipboard/LICENSE -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/zeroclipboard/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/scripts/zeroclipboard/copy.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/scripts/zeroclipboard/src/js/start.js: -------------------------------------------------------------------------------- 1 | (function(window, undefined) { 2 | "use strict"; 3 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/styles/reset.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/default/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/default/images/tag.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/default/styles/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/default/styles/ie.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat-ui/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat-ui/images/tag.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat-ui/styles/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat-ui/styles/ie.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/accept.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/edit.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/house.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/info.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/move.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/plus.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/reset.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/tag.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/flat/styles/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/flat/styles/ie.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/filemanager/themes/inverse/images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/filemanager/themes/inverse/images/tag.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/css/flat-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/css/flat-ui.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/css/flat-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/css/flat-ui.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/css/flat-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/css/flat-ui.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bolditalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bolditalic.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/favicon.ico -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Book.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Calendar.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Chat.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Clipboard.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Compas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Compas.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Gift-Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Gift-Box.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Mail.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Map.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Pensils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Pensils.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Pocket.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Retina-Ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Retina-Ready.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Toilet-Paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Toilet-Paper.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/png/Watches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/png/Watches.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/book.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/calendar.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/chat.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/clocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/clocks.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/compas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/compas.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/gift-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/gift-box.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/loop.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/mail.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/map.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/paper-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/paper-bag.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/pencils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/pencils.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/retina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/retina.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/ribbon.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/icons/svg/toilet-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/icons/svg/toilet-paper.svg -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/login/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/login/icon.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/login/imac-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/login/imac-2x.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/login/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/login/imac.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/tile/ribbon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/tile/ribbon-2x.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/img/tile/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/img/tile/ribbon.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/flat-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/flat-ui.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/flat-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/flat-ui.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/vendor/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/vendor/html5shiv.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/vendor/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/vendor/jquery.min.map -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/vendor/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/vendor/respond.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/vendor/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/vendor/video-js.swf -------------------------------------------------------------------------------- /src/main/webapp/static/component/flat-ui/js/vendor/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/flat-ui/js/vendor/video.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/HELP-US-OUT.txt -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/animated.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/core.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/icons.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/larger.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/list.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/mixins.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/path.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/stacked.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/less/variables.less -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_animated.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_core.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_icons.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_larger.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_list.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_mixins.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_path.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/font-awesome-4.5.0/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/font-awesome-4.5.0/scss/_stacked.scss -------------------------------------------------------------------------------- /src/main/webapp/static/component/jquery/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/jquery/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/jquery/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/jquery/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/flash/SewisePlayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/flash/SewisePlayer.swf -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/flash/skins/vodWhite.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/flash/skins/vodWhite.swf -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/js/jquery.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/js/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/js/swfobject.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/live.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/sewise.player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/sewise.player.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/sewise-player/vod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/sewise-player/vod.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/smartpaginator/smartpaginator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/smartpaginator/smartpaginator.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/smartpaginator/smartpaginator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/smartpaginator/smartpaginator.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/LGPL-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/LGPL-LICENSE -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/MIT-LICENSE -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/scripts/shBrushVb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/scripts/shBrushVb.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/scripts/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/scripts/shCore.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/scripts/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/scripts/shLegacy.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/src/shAutoloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/src/shAutoloader.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/src/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/src/shCore.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/src/shLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/src/shLegacy.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/syntaxhighlighter/styles/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/syntaxhighlighter/styles/shCore.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/anchor/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/anchor/anchor.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/charts/chart.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/charts/chart.config.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/charts/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/charts/charts.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/charts/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/charts/charts.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/charts/charts.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/emotion/emotion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/emotion/emotion.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/emotion/emotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/emotion/emotion.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/emotion/emotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/emotion/emotion.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/gmap/gmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/gmap/gmap.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/help/help.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/help/help.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/help/help.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/image.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/image.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/image.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/internal.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/link/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/link/link.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/map/map.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/map/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/map/show.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/music/music.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/music/music.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/music/music.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/music/music.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/music/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/music/music.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/preview/preview.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/scrawl/scrawl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/scrawl/scrawl.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/scrawl/scrawl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/scrawl/scrawl.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/scrawl/scrawl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/scrawl/scrawl.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/spechars/spechars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/spechars/spechars.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/spechars/spechars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/spechars/spechars.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/table/edittable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/table/edittable.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/table/edittable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/table/edittable.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/table/edittable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/table/edittable.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/table/edittd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/table/edittd.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/table/edittip.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/template/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/template/config.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/template/template.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/template/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/template/template.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/template/template.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/video.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/video.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/video/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/video/video.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/webapp/webapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/webapp/webapp.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/wordimage/tangram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/wordimage/tangram.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/dialogs/wordimage/wordimage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/dialogs/wordimage/wordimage.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/jsp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/jsp/config.json -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/jsp/controller.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/jsp/controller.jsp -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/en.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/themes/default/css/ueditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/themes/default/css/ueditor.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/themes/default/dialogbase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/themes/default/dialogbase.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/third-party/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/third-party/jquery-1.10.2.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/third-party/video-js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/third-party/video-js/video.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/ueditor.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/ueditor.all.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/ueditor.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/ueditor.all.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/ueditor.config.bak.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/ueditor.config.bak.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/ueditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/ueditor.config.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/ueditor.parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/ueditor.parse.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ueditor/ueditor.parse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ueditor/ueditor.parse.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/emotion/emotion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/emotion/emotion.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/emotion/emotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/emotion/emotion.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/formula/formula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/formula/formula.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/formula/formula.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/formula/formula.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/formula/formula.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/formula/formula.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/image/image.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/image/image.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/link/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/link/link.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/map/map.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/map/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/map/map.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/video/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/video/video.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/dialogs/video/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/dialogs/video/video.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/jsp/Uploader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/jsp/Uploader.java -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/jsp/getContent.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/jsp/getContent.jsp -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/jsp/imageUp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/jsp/imageUp.jsp -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/en.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/background.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/button.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/imglabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/imglabel.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/themes/default/images/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/themes/default/images/ok.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/third-party/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/third-party/jquery.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/uethird.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/uethird.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/umeditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/umeditor.config.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/umeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/umeditor.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/umeditor/umeditor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/umeditor/umeditor.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/common.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/images/ask.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/images/btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/images/btn_bg.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/images/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/images/err.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/images/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/images/ico.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/images/info.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/images/right.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/black/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/black/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/bluebar/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/bluebar/images/ask.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/bluebar/images/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/bluebar/images/err.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/bluebar/images/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/bluebar/images/ico.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/bluebar/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/bluebar/images/info.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/bluebar/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/bluebar/images/right.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/bluebar/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/bluebar/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/dmm-green/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/dmm-green/images/ask.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/dmm-green/images/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/dmm-green/images/err.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/dmm-green/images/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/dmm-green/images/ico.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/dmm-green/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/dmm-green/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/ask.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/btn_bg.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/close.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/content_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/content_bg.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/err.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/ico-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/ico-arrow.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/ico.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/info.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/right.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/win_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/win_b.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/win_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/win_l.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/win_lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/win_lb.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/win_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/win_r.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/images/win_rb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/images/win_rb.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/qq/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/qq/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple/images/ask.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple/images/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple/images/err.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple/images/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple/images/ico.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple/images/info.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple/images/right.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/simple_gray/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/simple_gray/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/ask.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/ask.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/btn_bg.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/err.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/err.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/ico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/ico.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/info.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/right.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/win_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/win_b.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/win_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/win_l.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/win_lb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/win_lb.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/win_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/win_r.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/images/win_rb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/images/win_rb.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/skin/vista/ymPrompt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/skin/vista/ymPrompt.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/ymPrompt/ymPrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/ymPrompt/ymPrompt.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/2.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/3.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/4.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/5.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/6.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/7.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/8.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/diy/9.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/line_conn.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/line_conn.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/loading.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/metro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/metro.gif -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/img/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/img/metro.png -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/css/zTreeStyle/metro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/css/zTreeStyle/metro.css -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/index.html -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/js/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/js/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/component/zTree/js/jquery.ztree.all-3.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/component/zTree/js/jquery.ztree.all-3.5.min.js -------------------------------------------------------------------------------- /src/main/webapp/static/front/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/background.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/home.css -------------------------------------------------------------------------------- /src/main/webapp/static/front/home.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/home.min.css -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/documents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/documents.png -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/education.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/education.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/food.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/house.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/news.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/news.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/park.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/today.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/today.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/images/travel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/images/travel.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/front/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/logo.png -------------------------------------------------------------------------------- /src/main/webapp/static/front/logo512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/logo512x512.png -------------------------------------------------------------------------------- /src/main/webapp/static/front/paginator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/paginator.css -------------------------------------------------------------------------------- /src/main/webapp/static/front/q-follow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/q-follow.png -------------------------------------------------------------------------------- /src/main/webapp/static/front/q-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/q-tag.png -------------------------------------------------------------------------------- /src/main/webapp/static/front/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/front/top.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/common/error_401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/common/error_401.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/common/error_403.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/common/error_403.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/common/error_404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/common/error_404.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/common/error_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/common/error_500.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/common/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/common/notfound.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/sort/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/sort/sort_asc.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/sort/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/sort/sort_both.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/sort/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/sort/sort_desc.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/user/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/user/user.png -------------------------------------------------------------------------------- /src/main/webapp/static/images/user/user1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/user/user1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/images/video/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/images/video/no_image.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/login/bg/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/login/bg/bg1.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/login/bg/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/login/bg/bg2.jpg -------------------------------------------------------------------------------- /src/main/webapp/static/login/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/login/icon1.png -------------------------------------------------------------------------------- /src/main/webapp/static/login/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/login/icon2.png -------------------------------------------------------------------------------- /src/main/webapp/static/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/login/login.css -------------------------------------------------------------------------------- /src/main/webapp/static/theme/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/default.html -------------------------------------------------------------------------------- /src/main/webapp/static/theme/flat-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/flat-ui.html -------------------------------------------------------------------------------- /src/main/webapp/static/theme/flat-ui/bootstrap-theme-flat-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/flat-ui/bootstrap-theme-flat-ui.css -------------------------------------------------------------------------------- /src/main/webapp/static/theme/flat-ui/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/flat-ui/bootstrap-theme.css.map -------------------------------------------------------------------------------- /src/main/webapp/static/theme/flat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/flat.html -------------------------------------------------------------------------------- /src/main/webapp/static/theme/flat/flat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/flat/flat.css -------------------------------------------------------------------------------- /src/main/webapp/static/theme/inverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/inverse.html -------------------------------------------------------------------------------- /src/main/webapp/static/theme/inverse/bootstrap-theme-inverse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/inverse/bootstrap-theme-inverse.css -------------------------------------------------------------------------------- /src/main/webapp/static/theme/inverse/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuanxy/jfinal-admin/HEAD/src/main/webapp/static/theme/inverse/bootstrap-theme.css.map --------------------------------------------------------------------------------