├── cache └── empty.holder ├── comic └── empty.holder ├── lib ├── index.html ├── plugins │ ├── index.html │ └── adminer │ │ └── index.php └── core │ ├── Model.class.php │ └── Controller.class.php ├── static ├── index.html ├── js │ └── lib │ │ ├── cmp4 │ │ ├── list.xml │ │ ├── cmp.swf │ │ ├── logo.png │ │ ├── plugins │ │ │ ├── bigbg.swf │ │ │ ├── bounce.swf │ │ │ ├── mixer3d.swf │ │ │ ├── revolt.swf │ │ │ ├── sharing.swf │ │ │ ├── swf │ │ │ │ ├── col.swf │ │ │ │ ├── colock.swf │ │ │ │ ├── green.swf │ │ │ │ ├── line.swf │ │ │ │ ├── mouse.swf │ │ │ │ ├── star.swf │ │ │ │ └── wenzi.swf │ │ │ ├── announce.swf │ │ │ ├── apiexample.swf │ │ │ ├── equalizer.swf │ │ │ ├── p2pstream.swf │ │ │ ├── snow │ │ │ │ ├── snow.fla │ │ │ │ └── snow.swf │ │ │ └── announce │ │ │ │ └── announce.swf │ │ ├── skins │ │ │ ├── music │ │ │ │ ├── xdj.zip │ │ │ │ ├── kuwo.zip │ │ │ │ ├── manila.zip │ │ │ │ ├── ting.zip │ │ │ │ ├── beveled.zip │ │ │ │ ├── qqmusic.zip │ │ │ │ ├── simple1.zip │ │ │ │ ├── somusic.zip │ │ │ │ ├── mp3player.zip │ │ │ │ └── simple │ │ │ │ │ ├── bg.jpg │ │ │ │ │ ├── bt_mute.png │ │ │ │ │ ├── bt_next.png │ │ │ │ │ ├── bt_play.png │ │ │ │ │ ├── bt_prev.png │ │ │ │ │ ├── bt_stop.png │ │ │ │ │ ├── console.swf │ │ │ │ │ ├── progress_thumb.png │ │ │ │ │ ├── progress_track.png │ │ │ │ │ ├── volume_track.png │ │ │ │ │ ├── scrollbar_button.png │ │ │ │ │ ├── scrollbar_thumb.png │ │ │ │ │ └── skin.xml │ │ │ └── movie │ │ │ │ ├── tvlive.zip │ │ │ │ ├── qqplayer.zip │ │ │ │ ├── vplayer.zip │ │ │ │ ├── youtube.zip │ │ │ │ └── webplayer.zip │ │ ├── crossdomain.xml │ │ ├── config.xml │ │ └── index.htm │ │ ├── ace │ │ ├── src-min-noconflict │ │ │ ├── mode-text.js │ │ │ ├── snippets │ │ │ │ ├── d.js │ │ │ │ ├── ada.js │ │ │ │ ├── dot.js │ │ │ │ ├── ejs.js │ │ │ │ ├── elm.js │ │ │ │ ├── ftl.js │ │ │ │ ├── ini.js │ │ │ │ ├── jsx.js │ │ │ │ ├── mel.js │ │ │ │ ├── nix.js │ │ │ │ ├── sjs.js │ │ │ │ ├── svg.js │ │ │ │ ├── xml.js │ │ │ │ ├── abap.js │ │ │ │ ├── cirru.js │ │ │ │ ├── cobol.js │ │ │ │ ├── curly.js │ │ │ │ ├── elixir.js │ │ │ │ ├── forth.js │ │ │ │ ├── gcode.js │ │ │ │ ├── glsl.js │ │ │ │ ├── haxe.js │ │ │ │ ├── jack.js │ │ │ │ ├── jade.js │ │ │ │ ├── json.js │ │ │ │ ├── julia.js │ │ │ │ ├── latex.js │ │ │ │ ├── less.js │ │ │ │ ├── lisp.js │ │ │ │ ├── mask.js │ │ │ │ ├── mysql.js │ │ │ │ ├── ocaml.js │ │ │ │ ├── pgsql.js │ │ │ │ ├── praat.js │ │ │ │ ├── rdoc.js │ │ │ │ ├── rhtml.js │ │ │ │ ├── rust.js │ │ │ │ ├── sass.js │ │ │ │ ├── scad.js │ │ │ │ ├── scala.js │ │ │ │ ├── scss.js │ │ │ │ ├── space.js │ │ │ │ ├── text.js │ │ │ │ ├── toml.js │ │ │ │ ├── twig.js │ │ │ │ ├── vhdl.js │ │ │ │ ├── yaml.js │ │ │ │ ├── csharp.js │ │ │ │ ├── eiffel.js │ │ │ │ ├── gherkin.js │ │ │ │ ├── golang.js │ │ │ │ ├── groovy.js │ │ │ │ ├── liquid.js │ │ │ │ ├── logiql.js │ │ │ │ ├── luapage.js │ │ │ │ ├── lucene.js │ │ │ │ ├── matlab.js │ │ │ │ ├── pascal.js │ │ │ │ ├── prolog.js │ │ │ │ ├── protobuf.js │ │ │ │ ├── scheme.js │ │ │ │ ├── smarty.js │ │ │ │ ├── stylus.js │ │ │ │ ├── verilog.js │ │ │ │ ├── asciidoc.js │ │ │ │ ├── c9search.js │ │ │ │ ├── mushcode.js │ │ │ │ ├── vbscript.js │ │ │ │ ├── autohotkey.js │ │ │ │ ├── batchfile.js │ │ │ │ ├── coldfusion.js │ │ │ │ ├── dockerfile.js │ │ │ │ ├── gitignore.js │ │ │ │ ├── handlebars.js │ │ │ │ ├── html_ruby.js │ │ │ │ ├── livescript.js │ │ │ │ ├── objectivec.js │ │ │ │ ├── plain_text.js │ │ │ │ ├── powershell.js │ │ │ │ ├── properties.js │ │ │ │ ├── typescript.js │ │ │ │ ├── apache_conf.js │ │ │ │ ├── applescript.js │ │ │ │ ├── assembly_x86.js │ │ │ │ ├── soy_template.js │ │ │ │ ├── makefile.js │ │ │ │ ├── snippets.js │ │ │ │ ├── haml.js │ │ │ │ ├── lua.js │ │ │ │ ├── textile.js │ │ │ │ ├── diff.js │ │ │ │ ├── velocity.js │ │ │ │ ├── sql.js │ │ │ │ ├── io.js │ │ │ │ ├── dart.js │ │ │ │ ├── tcl.js │ │ │ │ ├── jsoniq.js │ │ │ │ ├── xquery.js │ │ │ │ ├── haskell.js │ │ │ │ ├── markdown.js │ │ │ │ ├── clojure.js │ │ │ │ └── sh.js │ │ │ ├── ext-error_marker.js │ │ │ ├── mode-plain_text.js │ │ │ ├── ext-linking.js │ │ │ ├── mode-gitignore.js │ │ │ ├── ext-statusbar.js │ │ │ ├── mode-properties.js │ │ │ ├── mode-lucene.js │ │ │ ├── ext-themelist.js │ │ │ ├── mode-gcode.js │ │ │ ├── ext-spellcheck.js │ │ │ ├── mode-sql.js │ │ │ ├── mode-ada.js │ │ │ ├── mode-scheme.js │ │ │ ├── mode-lisp.js │ │ │ ├── theme-xcode.js │ │ │ ├── mode-gherkin.js │ │ │ ├── theme-kuroir.js │ │ │ ├── mode-textile.js │ │ │ ├── theme-github.js │ │ │ ├── mode-vhdl.js │ │ │ ├── mode-toml.js │ │ │ ├── theme-clouds.js │ │ │ └── theme-eclipse.js │ │ ├── api.url │ │ └── read.txt │ │ ├── picasa │ │ └── style │ │ │ ├── style.css │ │ │ ├── loading.gif │ │ │ └── Picasa_Button.gif │ │ ├── webuploader │ │ ├── Uploader.swf │ │ └── webuploader.css │ │ ├── artDialog │ │ └── icons │ │ │ ├── error.png │ │ │ ├── loading.png │ │ │ ├── succeed.png │ │ │ ├── warning.png │ │ │ ├── face-sad.png │ │ │ ├── question.png │ │ │ └── face-smile.png │ │ └── ztree │ │ ├── style │ │ └── img │ │ │ ├── loading.gif │ │ │ ├── line_conn.gif │ │ │ ├── zTreeStandard.gif │ │ │ └── zTreeStandard.png │ │ └── demo.html ├── images │ ├── bg.gif │ ├── file.png │ ├── image.png │ ├── lazy.gif │ ├── left.jpg │ ├── line.png │ ├── login.png │ ├── tree.png │ ├── app │ │ ├── 365.png │ │ ├── cal.png │ │ ├── js.png │ │ ├── map.png │ │ ├── modo.jpg │ │ ├── oexe.png │ │ ├── pptv.jpg │ │ ├── ps.png │ │ ├── time.png │ │ ├── app_s1.png │ │ ├── app_s2.png │ │ ├── baidu.png │ │ ├── ball8.png │ │ ├── calcu.png │ │ ├── douban.png │ │ ├── fruite.jpg │ │ ├── geling.jpg │ │ ├── icloud.png │ │ ├── iqiyi.png │ │ ├── kuaidi.gif │ │ ├── kugou.png │ │ ├── kugou2.png │ │ ├── linux.png │ │ ├── market.png │ │ ├── meishi.png │ │ ├── meitu.gif │ │ ├── souhu.jpg │ │ ├── ttpod.png │ │ ├── xiami.jpg │ │ ├── youdao.jpg │ │ ├── zhiwu.jpg │ │ ├── comicland.jpg │ │ ├── computer.png │ │ ├── internet.png │ │ ├── qqmusic.png │ │ ├── recycle.png │ │ ├── setting.png │ │ ├── weather.png │ │ ├── xiangqi.jpg │ │ ├── haozhaopian.jpg │ │ ├── kugou_radio.png │ │ ├── yingyuetai.png │ │ ├── chuangyebang.jpg │ │ └── recycle_full.png │ ├── favicon.ico │ ├── folder.png │ ├── line_x.png │ ├── loading.gif │ ├── resize.png │ ├── ybutton.png │ ├── buttons_40.png │ ├── file_16 │ │ ├── js.png │ │ ├── ps.png │ │ ├── py.png │ │ ├── up.png │ │ ├── air.png │ │ ├── avi.png │ │ ├── cmd.png │ │ ├── code.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── dll.png │ │ ├── doc.png │ │ ├── edit.png │ │ ├── error.png │ │ ├── exe.png │ │ ├── file.png │ │ ├── fla.png │ │ ├── flv.png │ │ ├── html.png │ │ ├── info.png │ │ ├── ini.png │ │ ├── jpg.png │ │ ├── mp3.png │ │ ├── oexe.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── rar.gif │ │ ├── swf.png │ │ ├── ttf.png │ │ ├── txt.png │ │ ├── xls.png │ │ ├── xml.png │ │ ├── zip.png │ │ ├── folder.png │ │ ├── search.png │ │ ├── setting.png │ │ └── appStore.png │ ├── topBanner.jpg │ ├── desktop │ │ ├── start.png │ │ ├── narrow.png │ │ ├── taskbarbg.png │ │ └── taskbarhover.png │ ├── drop_upload.png │ ├── folder_simple.png │ ├── loading_tree.gif │ ├── resize_corner.png │ ├── wall_page │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ └── thumb │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ ├── dialog_loading.gif │ ├── loading_simple.gif │ └── thumb │ │ ├── music │ │ ├── jma.png │ │ ├── xdj.jpg │ │ ├── kuwo.jpg │ │ ├── kuwo.png │ │ ├── manila.jpg │ │ ├── manila.png │ │ ├── ting.jpg │ │ ├── beveled.jpg │ │ ├── qqmusic.jpg │ │ ├── qqmusic.png │ │ ├── scplayer.png │ │ ├── somusic.jpg │ │ ├── somusic.png │ │ └── mp3player.jpg │ │ ├── movie │ │ ├── tvlive.jpg │ │ ├── tvlive.png │ │ ├── qqplayer.jpg │ │ ├── qqplayer.png │ │ ├── vplayer.jpg │ │ ├── vplayer.png │ │ ├── youtube.jpg │ │ ├── youtube.png │ │ ├── webplayer.jpg │ │ └── webplayer.png │ │ └── theme │ │ ├── color.png │ │ ├── metro.png │ │ ├── simple.png │ │ └── default.png └── style │ ├── font-awesome │ ├── Font Awesome Icons.url │ └── font │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── fonts │ ├── Thin.eot │ ├── Thin.svg │ ├── Thin.ttf │ └── Thin.woff │ └── skin │ ├── metro │ └── images │ │ ├── air.png │ │ ├── avi.png │ │ ├── cmd.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── dll.png │ │ ├── doc.png │ │ ├── exe.png │ │ ├── fla.png │ │ ├── flv.png │ │ ├── ini.png │ │ ├── js.png │ │ ├── mdb.png │ │ ├── mp3.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── py.png │ │ ├── rar.png │ │ ├── rb.png │ │ ├── svg.png │ │ ├── swf.png │ │ ├── ttf.png │ │ ├── txt.png │ │ ├── wmv.png │ │ ├── xls.png │ │ ├── xml.png │ │ ├── zip.png │ │ ├── code.png │ │ ├── file.png │ │ ├── folder.png │ │ ├── html.png │ │ └── mp31.png │ ├── simple │ └── images │ │ ├── js.png │ │ ├── py.png │ │ ├── rb.png │ │ ├── air.png │ │ ├── avi.png │ │ ├── cmd.png │ │ ├── code.png │ │ ├── cpp.png │ │ ├── css.png │ │ ├── dll.png │ │ ├── doc.png │ │ ├── exe.png │ │ ├── file.png │ │ ├── fla.png │ │ ├── flv.png │ │ ├── html.png │ │ ├── ini.png │ │ ├── mdb.png │ │ ├── mp3.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── ppt.png │ │ ├── psd.png │ │ ├── rar.png │ │ ├── svg.png │ │ ├── swf.png │ │ ├── ttf.png │ │ ├── txt.png │ │ ├── wmv.png │ │ ├── xls.png │ │ ├── xml.png │ │ ├── zip.png │ │ └── folder.png │ └── default │ └── images │ ├── air.png │ ├── avi.png │ ├── cmd.png │ ├── code.png │ ├── cpp.png │ ├── css.png │ ├── dll.png │ ├── doc.png │ ├── exe.png │ ├── file.png │ ├── fla.png │ ├── flv.png │ ├── html.png │ ├── ini.png │ ├── js.png │ ├── mdb.png │ ├── mp3.png │ ├── pdf.png │ ├── php.png │ ├── ppt.png │ ├── psd.png │ ├── py.png │ ├── rar.png │ ├── rb.png │ ├── svg.png │ ├── swf.png │ ├── ttf.png │ ├── txt.png │ ├── wmv.png │ ├── xls.png │ ├── xml.png │ ├── zip.png │ ├── folder.png │ └── dialog │ ├── btn-max.png │ ├── btn-min.png │ ├── btn-reg.png │ ├── dialog.png │ └── btn-close.png ├── data ├── thumb │ └── empty.holder ├── User │ └── admin │ │ ├── recycle │ │ └── empty.holder │ │ ├── data │ │ ├── fav.php │ │ ├── editor_config.php │ │ └── config.php │ │ └── home │ │ └── desktop │ │ └── ModoDownloader.oexe ├── system │ ├── member.php │ ├── group.php │ └── system_setting.php └── i18n │ ├── zh_CN │ ├── about.html │ └── help.html │ └── zh_TW │ ├── about.html │ └── help.html ├── template ├── index.html ├── common │ ├── footer.html │ └── navbar_share.html └── setting │ └── slider │ ├── about.php │ ├── fav.php │ ├── help.php │ ├── theme.php │ ├── user.php │ ├── player.php │ └── wall.php ├── config └── version.php ├── image ├── cover.jpg ├── loading.gif ├── chevron-left.png ├── chevron-left2.png ├── chevron-right.png ├── triangle-left.png ├── arrow-left-thick.png ├── chevron-right2.png ├── triangle-right.png └── arrow-right-thick.png ├── img ├── favicon.ico ├── glyphicons-halflings.png └── glyphicons-halflings-white.png ├── index.php ├── Dockerfile ├── offline.appcache ├── app.css ├── momic.html ├── controller ├── desktop.class.php └── fav.class.php ├── comic.php ├── convert.php └── js └── jquery.base64.min.js /cache/empty.holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comic/empty.holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/thumb/empty.holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/plugins/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/User/admin/recycle/empty.holder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/lib/cmp4/list.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-text.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/version.php: -------------------------------------------------------------------------------- 1 | {"comic":{"name":"comic","path":"\/var\/www\/html\/comic\/"}} -------------------------------------------------------------------------------- /image/chevron-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/chevron-left.png -------------------------------------------------------------------------------- /image/chevron-left2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/chevron-left2.png -------------------------------------------------------------------------------- /image/chevron-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/chevron-right.png -------------------------------------------------------------------------------- /image/triangle-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/triangle-left.png -------------------------------------------------------------------------------- /static/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file.png -------------------------------------------------------------------------------- /static/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/image.png -------------------------------------------------------------------------------- /static/images/lazy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/lazy.gif -------------------------------------------------------------------------------- /static/images/left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/left.jpg -------------------------------------------------------------------------------- /static/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/line.png -------------------------------------------------------------------------------- /static/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/login.png -------------------------------------------------------------------------------- /static/images/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/tree.png -------------------------------------------------------------------------------- /static/js/lib/ace/api.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://ace.c9.io/#nav=api&api=edit_session 3 | -------------------------------------------------------------------------------- /image/arrow-left-thick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/arrow-left-thick.png -------------------------------------------------------------------------------- /image/chevron-right2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/chevron-right2.png -------------------------------------------------------------------------------- /image/triangle-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/triangle-right.png -------------------------------------------------------------------------------- /static/images/app/365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/365.png -------------------------------------------------------------------------------- /static/images/app/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/cal.png -------------------------------------------------------------------------------- /static/images/app/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/js.png -------------------------------------------------------------------------------- /static/images/app/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/map.png -------------------------------------------------------------------------------- /static/images/app/modo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/modo.jpg -------------------------------------------------------------------------------- /static/images/app/oexe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/oexe.png -------------------------------------------------------------------------------- /static/images/app/pptv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/pptv.jpg -------------------------------------------------------------------------------- /static/images/app/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/ps.png -------------------------------------------------------------------------------- /static/images/app/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/time.png -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/folder.png -------------------------------------------------------------------------------- /static/images/line_x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/line_x.png -------------------------------------------------------------------------------- /static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/loading.gif -------------------------------------------------------------------------------- /static/images/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/resize.png -------------------------------------------------------------------------------- /static/images/ybutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/ybutton.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/cmp.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/cmp.swf -------------------------------------------------------------------------------- /image/arrow-right-thick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/image/arrow-right-thick.png -------------------------------------------------------------------------------- /img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /static/images/app/app_s1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/app_s1.png -------------------------------------------------------------------------------- /static/images/app/app_s2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/app_s2.png -------------------------------------------------------------------------------- /static/images/app/baidu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/baidu.png -------------------------------------------------------------------------------- /static/images/app/ball8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/ball8.png -------------------------------------------------------------------------------- /static/images/app/calcu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/calcu.png -------------------------------------------------------------------------------- /static/images/app/douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/douban.png -------------------------------------------------------------------------------- /static/images/app/fruite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/fruite.jpg -------------------------------------------------------------------------------- /static/images/app/geling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/geling.jpg -------------------------------------------------------------------------------- /static/images/app/icloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/icloud.png -------------------------------------------------------------------------------- /static/images/app/iqiyi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/iqiyi.png -------------------------------------------------------------------------------- /static/images/app/kuaidi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/kuaidi.gif -------------------------------------------------------------------------------- /static/images/app/kugou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/kugou.png -------------------------------------------------------------------------------- /static/images/app/kugou2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/kugou2.png -------------------------------------------------------------------------------- /static/images/app/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/linux.png -------------------------------------------------------------------------------- /static/images/app/market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/market.png -------------------------------------------------------------------------------- /static/images/app/meishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/meishi.png -------------------------------------------------------------------------------- /static/images/app/meitu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/meitu.gif -------------------------------------------------------------------------------- /static/images/app/souhu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/souhu.jpg -------------------------------------------------------------------------------- /static/images/app/ttpod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/ttpod.png -------------------------------------------------------------------------------- /static/images/app/xiami.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/xiami.jpg -------------------------------------------------------------------------------- /static/images/app/youdao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/youdao.jpg -------------------------------------------------------------------------------- /static/images/app/zhiwu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/zhiwu.jpg -------------------------------------------------------------------------------- /static/images/buttons_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/buttons_40.png -------------------------------------------------------------------------------- /static/images/file_16/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/js.png -------------------------------------------------------------------------------- /static/images/file_16/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/ps.png -------------------------------------------------------------------------------- /static/images/file_16/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/py.png -------------------------------------------------------------------------------- /static/images/file_16/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/up.png -------------------------------------------------------------------------------- /static/images/topBanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/topBanner.jpg -------------------------------------------------------------------------------- /static/js/lib/cmp4/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/logo.png -------------------------------------------------------------------------------- /static/style/font-awesome/Font Awesome Icons.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://fontawesome.io/icons/ 3 | -------------------------------------------------------------------------------- /static/style/fonts/Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/fonts/Thin.eot -------------------------------------------------------------------------------- /static/style/fonts/Thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/fonts/Thin.svg -------------------------------------------------------------------------------- /static/style/fonts/Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/fonts/Thin.ttf -------------------------------------------------------------------------------- /static/style/fonts/Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/fonts/Thin.woff -------------------------------------------------------------------------------- /lib/plugins/adminer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/lib/plugins/adminer/index.php -------------------------------------------------------------------------------- /static/images/app/comicland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/comicland.jpg -------------------------------------------------------------------------------- /static/images/app/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/computer.png -------------------------------------------------------------------------------- /static/images/app/internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/internet.png -------------------------------------------------------------------------------- /static/images/app/qqmusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/qqmusic.png -------------------------------------------------------------------------------- /static/images/app/recycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/recycle.png -------------------------------------------------------------------------------- /static/images/app/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/setting.png -------------------------------------------------------------------------------- /static/images/app/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/weather.png -------------------------------------------------------------------------------- /static/images/app/xiangqi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/xiangqi.jpg -------------------------------------------------------------------------------- /static/images/desktop/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/desktop/start.png -------------------------------------------------------------------------------- /static/images/drop_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/drop_upload.png -------------------------------------------------------------------------------- /static/images/file_16/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/air.png -------------------------------------------------------------------------------- /static/images/file_16/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/avi.png -------------------------------------------------------------------------------- /static/images/file_16/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/cmd.png -------------------------------------------------------------------------------- /static/images/file_16/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/code.png -------------------------------------------------------------------------------- /static/images/file_16/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/cpp.png -------------------------------------------------------------------------------- /static/images/file_16/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/css.png -------------------------------------------------------------------------------- /static/images/file_16/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/dll.png -------------------------------------------------------------------------------- /static/images/file_16/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/doc.png -------------------------------------------------------------------------------- /static/images/file_16/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/edit.png -------------------------------------------------------------------------------- /static/images/file_16/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/error.png -------------------------------------------------------------------------------- /static/images/file_16/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/exe.png -------------------------------------------------------------------------------- /static/images/file_16/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/file.png -------------------------------------------------------------------------------- /static/images/file_16/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/fla.png -------------------------------------------------------------------------------- /static/images/file_16/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/flv.png -------------------------------------------------------------------------------- /static/images/file_16/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/html.png -------------------------------------------------------------------------------- /static/images/file_16/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/info.png -------------------------------------------------------------------------------- /static/images/file_16/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/ini.png -------------------------------------------------------------------------------- /static/images/file_16/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/jpg.png -------------------------------------------------------------------------------- /static/images/file_16/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/mp3.png -------------------------------------------------------------------------------- /static/images/file_16/oexe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/oexe.png -------------------------------------------------------------------------------- /static/images/file_16/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/pdf.png -------------------------------------------------------------------------------- /static/images/file_16/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/php.png -------------------------------------------------------------------------------- /static/images/file_16/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/ppt.png -------------------------------------------------------------------------------- /static/images/file_16/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/psd.png -------------------------------------------------------------------------------- /static/images/file_16/rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/rar.gif -------------------------------------------------------------------------------- /static/images/file_16/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/swf.png -------------------------------------------------------------------------------- /static/images/file_16/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/ttf.png -------------------------------------------------------------------------------- /static/images/file_16/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/txt.png -------------------------------------------------------------------------------- /static/images/file_16/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/xls.png -------------------------------------------------------------------------------- /static/images/file_16/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/xml.png -------------------------------------------------------------------------------- /static/images/file_16/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/zip.png -------------------------------------------------------------------------------- /static/images/folder_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/folder_simple.png -------------------------------------------------------------------------------- /static/images/loading_tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/loading_tree.gif -------------------------------------------------------------------------------- /static/images/resize_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/resize_corner.png -------------------------------------------------------------------------------- /static/images/wall_page/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/1.jpg -------------------------------------------------------------------------------- /static/images/wall_page/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/10.jpg -------------------------------------------------------------------------------- /static/images/wall_page/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/11.jpg -------------------------------------------------------------------------------- /static/images/wall_page/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/12.jpg -------------------------------------------------------------------------------- /static/images/wall_page/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/13.jpg -------------------------------------------------------------------------------- /static/images/wall_page/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/2.jpg -------------------------------------------------------------------------------- /static/images/wall_page/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/3.jpg -------------------------------------------------------------------------------- /static/images/wall_page/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/4.jpg -------------------------------------------------------------------------------- /static/images/wall_page/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/5.jpg -------------------------------------------------------------------------------- /static/images/wall_page/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/6.jpg -------------------------------------------------------------------------------- /static/images/wall_page/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/7.jpg -------------------------------------------------------------------------------- /static/images/wall_page/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/8.jpg -------------------------------------------------------------------------------- /static/images/wall_page/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/9.jpg -------------------------------------------------------------------------------- /static/images/app/haozhaopian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/haozhaopian.jpg -------------------------------------------------------------------------------- /static/images/app/kugou_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/kugou_radio.png -------------------------------------------------------------------------------- /static/images/app/yingyuetai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/yingyuetai.png -------------------------------------------------------------------------------- /static/images/desktop/narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/desktop/narrow.png -------------------------------------------------------------------------------- /static/images/dialog_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/dialog_loading.gif -------------------------------------------------------------------------------- /static/images/file_16/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/folder.png -------------------------------------------------------------------------------- /static/images/file_16/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/search.png -------------------------------------------------------------------------------- /static/images/file_16/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/setting.png -------------------------------------------------------------------------------- /static/images/loading_simple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/loading_simple.gif -------------------------------------------------------------------------------- /static/images/thumb/music/jma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/jma.png -------------------------------------------------------------------------------- /static/images/thumb/music/xdj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/xdj.jpg -------------------------------------------------------------------------------- /img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /static/images/app/chuangyebang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/chuangyebang.jpg -------------------------------------------------------------------------------- /static/images/app/recycle_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/app/recycle_full.png -------------------------------------------------------------------------------- /static/images/desktop/taskbarbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/desktop/taskbarbg.png -------------------------------------------------------------------------------- /static/images/file_16/appStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/file_16/appStore.png -------------------------------------------------------------------------------- /static/images/thumb/movie/tvlive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/tvlive.jpg -------------------------------------------------------------------------------- /static/images/thumb/movie/tvlive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/tvlive.png -------------------------------------------------------------------------------- /static/images/thumb/music/kuwo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/kuwo.jpg -------------------------------------------------------------------------------- /static/images/thumb/music/kuwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/kuwo.png -------------------------------------------------------------------------------- /static/images/thumb/music/manila.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/manila.jpg -------------------------------------------------------------------------------- /static/images/thumb/music/manila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/manila.png -------------------------------------------------------------------------------- /static/images/thumb/music/ting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/ting.jpg -------------------------------------------------------------------------------- /static/images/thumb/theme/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/theme/color.png -------------------------------------------------------------------------------- /static/images/thumb/theme/metro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/theme/metro.png -------------------------------------------------------------------------------- /static/images/thumb/theme/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/theme/simple.png -------------------------------------------------------------------------------- /static/images/wall_page/thumb/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/1.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/10.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/11.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/12.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/13.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/2.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/3.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/4.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/5.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/6.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/7.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/8.jpg -------------------------------------------------------------------------------- /static/images/wall_page/thumb/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/wall_page/thumb/9.jpg -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/bigbg.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/bigbg.swf -------------------------------------------------------------------------------- /static/js/lib/picasa/style/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/picasa/style/style.css -------------------------------------------------------------------------------- /data/system/member.php: -------------------------------------------------------------------------------- 1 | {"admin":{"name":"admin","password":"21232f297a57a5a743894a0e4a801fc3","role":"root","status":1}} -------------------------------------------------------------------------------- /static/images/desktop/taskbarhover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/desktop/taskbarhover.png -------------------------------------------------------------------------------- /static/images/thumb/movie/qqplayer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/qqplayer.jpg -------------------------------------------------------------------------------- /static/images/thumb/movie/qqplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/qqplayer.png -------------------------------------------------------------------------------- /static/images/thumb/movie/vplayer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/vplayer.jpg -------------------------------------------------------------------------------- /static/images/thumb/movie/vplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/vplayer.png -------------------------------------------------------------------------------- /static/images/thumb/movie/youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/youtube.jpg -------------------------------------------------------------------------------- /static/images/thumb/movie/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/youtube.png -------------------------------------------------------------------------------- /static/images/thumb/music/beveled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/beveled.jpg -------------------------------------------------------------------------------- /static/images/thumb/music/qqmusic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/qqmusic.jpg -------------------------------------------------------------------------------- /static/images/thumb/music/qqmusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/qqmusic.png -------------------------------------------------------------------------------- /static/images/thumb/music/scplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/scplayer.png -------------------------------------------------------------------------------- /static/images/thumb/music/somusic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/somusic.jpg -------------------------------------------------------------------------------- /static/images/thumb/music/somusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/somusic.png -------------------------------------------------------------------------------- /static/images/thumb/theme/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/theme/default.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/bounce.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/bounce.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/mixer3d.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/mixer3d.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/revolt.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/revolt.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/sharing.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/sharing.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/col.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/col.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/xdj.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/xdj.zip -------------------------------------------------------------------------------- /static/js/lib/picasa/style/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/picasa/style/loading.gif -------------------------------------------------------------------------------- /static/js/lib/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/webuploader/Uploader.swf -------------------------------------------------------------------------------- /static/style/skin/metro/images/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/air.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/avi.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/cmd.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/cpp.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/css.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/dll.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/doc.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/exe.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/fla.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/flv.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/ini.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/js.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/mdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/mdb.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/mp3.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/pdf.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/php.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/ppt.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/psd.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/py.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/rar.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/rb.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/svg.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/swf.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/ttf.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/txt.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/wmv.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/xls.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/xml.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/zip.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/js.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/py.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/rb.png -------------------------------------------------------------------------------- /static/images/thumb/movie/webplayer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/webplayer.jpg -------------------------------------------------------------------------------- /static/images/thumb/movie/webplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/movie/webplayer.png -------------------------------------------------------------------------------- /static/images/thumb/music/mp3player.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/images/thumb/music/mp3player.jpg -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/error.png -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/loading.png -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/succeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/succeed.png -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/warning.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/announce.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/announce.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/apiexample.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/apiexample.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/equalizer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/equalizer.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/p2pstream.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/p2pstream.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/snow/snow.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/snow/snow.fla -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/snow/snow.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/snow/snow.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/colock.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/colock.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/green.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/green.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/line.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/line.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/mouse.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/mouse.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/star.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/star.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/swf/wenzi.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/swf/wenzi.swf -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/movie/tvlive.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/movie/tvlive.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/kuwo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/kuwo.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/manila.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/manila.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/ting.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/ting.zip -------------------------------------------------------------------------------- /static/js/lib/ztree/style/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/ztree/style/img/loading.gif -------------------------------------------------------------------------------- /static/style/skin/default/images/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/air.png -------------------------------------------------------------------------------- /static/style/skin/default/images/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/avi.png -------------------------------------------------------------------------------- /static/style/skin/default/images/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/cmd.png -------------------------------------------------------------------------------- /static/style/skin/default/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/code.png -------------------------------------------------------------------------------- /static/style/skin/default/images/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/cpp.png -------------------------------------------------------------------------------- /static/style/skin/default/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/css.png -------------------------------------------------------------------------------- /static/style/skin/default/images/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/dll.png -------------------------------------------------------------------------------- /static/style/skin/default/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/doc.png -------------------------------------------------------------------------------- /static/style/skin/default/images/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/exe.png -------------------------------------------------------------------------------- /static/style/skin/default/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/file.png -------------------------------------------------------------------------------- /static/style/skin/default/images/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/fla.png -------------------------------------------------------------------------------- /static/style/skin/default/images/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/flv.png -------------------------------------------------------------------------------- /static/style/skin/default/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/html.png -------------------------------------------------------------------------------- /static/style/skin/default/images/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/ini.png -------------------------------------------------------------------------------- /static/style/skin/default/images/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/js.png -------------------------------------------------------------------------------- /static/style/skin/default/images/mdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/mdb.png -------------------------------------------------------------------------------- /static/style/skin/default/images/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/mp3.png -------------------------------------------------------------------------------- /static/style/skin/default/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/pdf.png -------------------------------------------------------------------------------- /static/style/skin/default/images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/php.png -------------------------------------------------------------------------------- /static/style/skin/default/images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/ppt.png -------------------------------------------------------------------------------- /static/style/skin/default/images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/psd.png -------------------------------------------------------------------------------- /static/style/skin/default/images/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/py.png -------------------------------------------------------------------------------- /static/style/skin/default/images/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/rar.png -------------------------------------------------------------------------------- /static/style/skin/default/images/rb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/rb.png -------------------------------------------------------------------------------- /static/style/skin/default/images/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/svg.png -------------------------------------------------------------------------------- /static/style/skin/default/images/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/swf.png -------------------------------------------------------------------------------- /static/style/skin/default/images/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/ttf.png -------------------------------------------------------------------------------- /static/style/skin/default/images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/txt.png -------------------------------------------------------------------------------- /static/style/skin/default/images/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/wmv.png -------------------------------------------------------------------------------- /static/style/skin/default/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/xls.png -------------------------------------------------------------------------------- /static/style/skin/default/images/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/xml.png -------------------------------------------------------------------------------- /static/style/skin/default/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/zip.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/code.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/file.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/folder.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/html.png -------------------------------------------------------------------------------- /static/style/skin/metro/images/mp31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/metro/images/mp31.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/air.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/avi.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/cmd.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/code.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/cpp.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/css.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/dll.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/doc.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/exe.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/file.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/fla.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/flv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/flv.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/html.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/ini.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/mdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/mdb.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/mp3.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/pdf.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/php.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/ppt.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/psd.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/rar.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/svg.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/swf.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/ttf.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/txt.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/wmv.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/xls.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/xml.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/zip.png -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/face-sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/face-sad.png -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/question.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/movie/qqplayer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/movie/qqplayer.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/movie/vplayer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/movie/vplayer.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/movie/youtube.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/movie/youtube.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/beveled.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/beveled.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/qqmusic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/qqmusic.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple1.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/somusic.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/somusic.zip -------------------------------------------------------------------------------- /static/js/lib/ztree/style/img/line_conn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/ztree/style/img/line_conn.gif -------------------------------------------------------------------------------- /static/style/skin/default/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/folder.png -------------------------------------------------------------------------------- /static/style/skin/simple/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/simple/images/folder.png -------------------------------------------------------------------------------- /static/js/lib/artDialog/icons/face-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/artDialog/icons/face-smile.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/movie/webplayer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/movie/webplayer.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/mp3player.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/mp3player.zip -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/bg.jpg -------------------------------------------------------------------------------- /static/js/lib/picasa/style/Picasa_Button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/picasa/style/Picasa_Button.gif -------------------------------------------------------------------------------- /static/style/font-awesome/font/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/font-awesome/font/FontAwesome.otf -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | run(); 7 | ?> -------------------------------------------------------------------------------- /static/js/lib/cmp4/plugins/announce/announce.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/plugins/announce/announce.swf -------------------------------------------------------------------------------- /static/js/lib/ztree/style/img/zTreeStandard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/ztree/style/img/zTreeStandard.gif -------------------------------------------------------------------------------- /static/js/lib/ztree/style/img/zTreeStandard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/ztree/style/img/zTreeStandard.png -------------------------------------------------------------------------------- /data/User/admin/data/editor_config.php: -------------------------------------------------------------------------------- 1 | {"font_size":"15px","theme":"clouds","auto_wrap":0,"display_char":0,"auto_complete":1,"function_list":1} -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/bt_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/bt_mute.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/bt_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/bt_next.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/bt_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/bt_play.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/bt_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/bt_prev.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/bt_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/bt_stop.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/console.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/console.swf -------------------------------------------------------------------------------- /static/style/skin/default/images/dialog/btn-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/dialog/btn-max.png -------------------------------------------------------------------------------- /static/style/skin/default/images/dialog/btn-min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/dialog/btn-min.png -------------------------------------------------------------------------------- /static/style/skin/default/images/dialog/btn-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/dialog/btn-reg.png -------------------------------------------------------------------------------- /static/style/skin/default/images/dialog/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/dialog/dialog.png -------------------------------------------------------------------------------- /data/User/admin/home/desktop/ModoDownloader.oexe: -------------------------------------------------------------------------------- 1 | {"type":"url","content":"\/download.html","icon":"modo.jpg","width":"1000","height":"600","simple":0,"resize":1} -------------------------------------------------------------------------------- /static/style/skin/default/images/dialog/btn-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/skin/default/images/dialog/btn-close.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/progress_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/progress_thumb.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/progress_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/progress_track.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/volume_track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/volume_track.png -------------------------------------------------------------------------------- /static/style/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/style/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/style/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/style/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/scrollbar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/scrollbar_button.png -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/scrollbar_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easychen/KODExplorer/HEAD/static/js/lib/cmp4/skins/music/simple/scrollbar_thumb.png -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/d.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/d",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="d"}) -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tutum/apache-php 2 | RUN rm -rf /var/lib/apt/lists/* 3 | RUN rm -fr /app 4 | ADD . /app 5 | RUN mkdir /data 6 | RUN chmod -R 777 /data 7 | RUN chmod -R 777 /app 8 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/ada.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/ada",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ada"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/dot.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/dot",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dot"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/ejs.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/ejs",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ejs"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/elm.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/elm",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="elm"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/ftl.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/ftl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ftl"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/ini.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/ini",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ini"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/jsx.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/jsx",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jsx"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/mel.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/mel",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mel"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/nix.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/nix",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="nix"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/sjs.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/sjs",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="sjs"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/svg.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/svg",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="svg"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/xml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/xml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="xml"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/abap.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/abap",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="abap"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/cirru.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/cirru",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="cirru"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/cobol.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/cobol",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="cobol"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/curly.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/curly",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="curly"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/elixir.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/elixir",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope=""}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/forth.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/forth",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="forth"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/gcode.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/gcode",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gcode"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/glsl.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/glsl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="glsl"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/haxe.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/haxe",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="haxe"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/jack.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/jack",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jack"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/jade.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/jade",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="jade"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/json.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/json",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="json"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/julia.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/julia",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="julia"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/latex.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/latex",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="latex"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/less.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/less",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="less"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/lisp.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/lisp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lisp"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/mask.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/mask",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mask"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/mysql.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/mysql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mysql"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/ocaml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/ocaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="ocaml"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/pgsql.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/pgsql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pgsql"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/praat.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/praat",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="praat"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/rdoc.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/rdoc",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rdoc"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/rhtml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/rhtml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rhtml"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/rust.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/rust",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="rust"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/sass.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/sass",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="sass"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/scad.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/scad",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scad"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/scala.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/scala",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scala"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/scss.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/scss",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scss"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/space.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/space",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="space"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/text.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="text"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/toml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/toml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="toml"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/twig.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/twig",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="twig"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/vhdl.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/vhdl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="vhdl"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/yaml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/yaml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="yaml"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/csharp.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/csharp",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="csharp"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/eiffel.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/eiffel",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="eiffel"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/gherkin.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/gherkin",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gherkin"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/golang.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/golang",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="golang"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/groovy.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/groovy",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="groovy"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/liquid.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/liquid",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="liquid"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/logiql.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/logiql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="logiql"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/luapage.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/luapage",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="luapage"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/lucene.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/lucene",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="lucene"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/matlab.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/matlab",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="matlab"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/pascal.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/pascal",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="pascal"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/prolog.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/prolog",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="prolog"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/protobuf.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/protobuf",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="",t.scope="protobuf"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/scheme.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/scheme",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="scheme"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/smarty.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/smarty",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="smarty"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/stylus.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/stylus",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="stylus"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/verilog.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/verilog",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="verilog"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/asciidoc.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/asciidoc",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="asciidoc"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/c9search.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/c9search",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="c9search"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/mushcode.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/mushcode",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="mushcode"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/vbscript.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/vbscript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="vbscript"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/autohotkey.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/autohotkey",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="autohotkey"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/batchfile.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/batchfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="batchfile"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/coldfusion.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/coldfusion",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="coldfusion"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/dockerfile.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/dockerfile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="dockerfile"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/gitignore.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/gitignore",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="gitignore"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/handlebars.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/handlebars",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="handlebars"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/html_ruby.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/html_ruby",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="html_ruby"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/livescript.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/livescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="livescript"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/objectivec.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/objectivec",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="objectivec"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/plain_text.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/plain_text",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="plain_text"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/powershell.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/powershell",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="powershell"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/properties.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/properties",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="properties"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/typescript.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/typescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="typescript"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/apache_conf.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/apache_conf",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="apache_conf"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/applescript.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/applescript",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="applescript"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/assembly_x86.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/assembly_x86",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="assembly_x86"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/soy_template.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/soy_template",["require","exports","module"],function(e,t,n){"use strict";t.snippetText=undefined,t.scope="soy_template"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/ext-error_marker.js: -------------------------------------------------------------------------------- 1 | ; 2 | (function() { 3 | ace.require(["ace/ext/error_marker"], function() {}); 4 | })(); 5 | -------------------------------------------------------------------------------- /template/common/footer.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/makefile.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/makefile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet ifeq\n ifeq (${1:cond0},${2:cond1})\n ${3:code}\n endif\n",t.scope="makefile"}) -------------------------------------------------------------------------------- /template/setting/slider/about.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 |
7 | -------------------------------------------------------------------------------- /data/User/admin/data/config.php: -------------------------------------------------------------------------------- 1 | {"list_type":"icon","list_sort_field":"name","list_sort_order":"up","theme":"default\/","codetheme":"clouds","wall":"http:\/\/ww4.sinaimg.cn\/large\/40dfde6fjw1ewp5mji0svj21hc0xc4qp.jpg","musictheme":"mp3player","movietheme":"webplayer"} -------------------------------------------------------------------------------- /template/setting/slider/fav.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 |
6 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/snippets.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/snippets",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# snippets for making snippets :)\nsnippet snip\n snippet ${1:trigger}\n ${2}\nsnippet msnip\n snippet ${1:trigger} ${2:description}\n ${3}\nsnippet v\n {VISUAL}\n",t.scope="snippets"}) -------------------------------------------------------------------------------- /template/setting/slider/help.php: -------------------------------------------------------------------------------- 1 |
2 | update
3 |
4 |
5 | 6 |
7 |
8 | -------------------------------------------------------------------------------- /static/js/lib/cmp4/crossdomain.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /offline.appcache: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | #2015-04-25 09:29 3 | 4 | CACHE: 5 | index.html 6 | css/main.css 7 | css/bootstrap.min.css 8 | css/bootstrap-responsive.min.css 9 | img/favicon.ico 10 | img/glyphicons-halflings-white.png 11 | img/glyphicons-halflings.png 12 | js/jquery-1.7.2.min.js 13 | js/bootstrap.min.js 14 | js/jquery.jsonrpc.js 15 | js/jquery.Storage.js 16 | js/jquery.base64.min.js 17 | js/mustache.js 18 | js/peerid.js 19 | js/aria2.js 20 | js/yaaw.js 21 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/haml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/haml",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet t\n %table\n %tr\n %th\n ${1:headers}\n %tr\n %td\n ${2:headers}\nsnippet ul\n %ul\n %li\n ${1:item}\n %li\nsnippet =rp\n = render :partial => '${1:partial}'\nsnippet =rpl\n = render :partial => '${1:partial}', :locals => {}\nsnippet =rpc\n = render :partial => '${1:partial}', :collection => @$1\n\n",t.scope="haml"}) -------------------------------------------------------------------------------- /template/setting/slider/theme.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
{1}
"; 6 | echo getTplList(',',':',$config['setting_all']['themeall'],$tpl,$config['user']['theme']); 7 | ?> 8 |
9 |
10 | 11 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-plain_text.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/plain_text",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/text_highlight_rules","ace/mode/behaviour"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./text_highlight_rules").TextHighlightRules,o=e("./behaviour").Behaviour,u=function(){this.HighlightRules=s,this.$behaviour=new o};r.inherits(u,i),function(){this.type="text",this.getNextLineIndent=function(e,t,n){return""},this.$id="ace/mode/plain_text"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/lua.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/lua",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet #!\n #!/usr/bin/env lua\n $1\nsnippet local\n local ${1:x} = ${2:1}\nsnippet fun\n function ${1:fname}(${2:...})\n ${3:-- body}\n end\nsnippet for\n for ${1:i}=${2:1},${3:10} do\n ${4:print(i)}\n end\nsnippet forp\n for ${1:i},${2:v} in pairs(${3:table_name}) do\n ${4:-- body}\n end\nsnippet fori\n for ${1:i},${2:v} in ipairs(${3:table_name}) do\n ${4:-- body}\n end\n",t.scope="lua"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/textile.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/textile",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# Jekyll post header\nsnippet header\n ---\n title: ${1:title}\n layout: post\n date: ${2:date} ${3:hour:minute:second} -05:00\n ---\n\n# Image\nsnippet img\n !${1:url}(${2:title}):${3:link}!\n\n# Table\nsnippet |\n |${1}|${2}\n\n# Link\nsnippet link\n "${1:link text}":${2:url}\n\n# Acronym\nsnippet (\n (${1:Expand acronym})${2}\n\n# Footnote\nsnippet fn\n [${1:ref number}] ${3}\n\n fn$1. ${2:footnote}\n \n',t.scope="textile"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/diff.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/diff",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# DEP-3 (http://dep.debian.net/deps/dep3/) style patch header\nsnippet header DEP-3 style header\n Description: ${1}\n Origin: ${2:vendor|upstream|other}, ${3:url of the original patch}\n Bug: ${4:url in upstream bugtracker}\n Forwarded: ${5:no|not-needed|url}\n Author: ${6:`g:snips_author`}\n Reviewed-by: ${7:name and email}\n Last-Update: ${8:`strftime("%Y-%m-%d")`}\n Applied-Upstream: ${9:upstream version|url|commit}\n\n',t.scope="diff"}) -------------------------------------------------------------------------------- /template/setting/slider/user.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | 5 | 6 |
7 | 8 |
9 | 10 |
11 |
12 | -------------------------------------------------------------------------------- /static/js/lib/cmp4/config.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/system/group.php: -------------------------------------------------------------------------------- 1 | {"root":{"role":"root","name":"Administrator","path":"","ext_not_allow":""},"default":{"role":"default","name":"default","ext_not_allow":"php|asp|jsp","explorer:mkdir":1,"explorer:mkfile":1,"explorer:pathRname":1,"explorer:pathDelete":1,"explorer:zip":1,"explorer:unzip":1,"explorer:pathCopy":1,"explorer:pathCute":1,"explorer:pathCuteDrag":1,"explorer:clipboard":1,"explorer:pathPast":1,"explorer:pathInfo":1,"explorer:pathInfoMuti":1,"explorer:serverDownload":1,"explorer:fileUpload":1,"explorer:search":1,"app:user_app":1,"editor:fileSave":1},"guest":{"role":"guest","name":"guest","ext_not_allow":"php|asp|jsp"}} -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/velocity.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/velocity",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# macro\nsnippet #macro\n #macro ( ${1:macroName} ${2:\\$var1, [\\$var2, ...]} )\n ${3:## macro code}\n #end\n# foreach\nsnippet #foreach\n #foreach ( ${1:\\$item} in ${2:\\$collection} )\n ${3:## foreach code}\n #end\n# if\nsnippet #if\n #if ( ${1:true} )\n ${0}\n #end\n# if ... else\nsnippet #ife\n #if ( ${1:true} )\n ${2}\n #else\n ${0}\n #end\n#import\nsnippet #import\n #import ( "${1:path/to/velocity/format}" )\n# set\nsnippet #set\n #set ( $${1:var} = ${0} )\n',t.scope="velocity",t.includeScopes=["html","javascript","css"]}) -------------------------------------------------------------------------------- /data/system/system_setting.php: -------------------------------------------------------------------------------- 1 | {"system_password":"oyBCrhLnmx","system_name":"\u840c\u591a\u52a8\u6f2b\u4e91","system_desc":"\u2014\u2014\u52a8\u6f2b\u79bb\u7ebf\u795e\u5668","path_hidden":".htaccess,.git,.DS_Store","auto_login":"0","first_in":"desktop","new_user_app":"Modo\u52a8\u6f2b","new_user_folder":"download,music,image,desktop","menu":[{"name":"desktop","type":"system","url":"index.php?desktop","target":"_self","use":"1"},{"name":"explorer","type":"system","url":"index.php?explorer","target":"_self","use":"1"},{"name":"editor","type":"system","url":"index.php?editor","target":"_self","use":"1"},{"name":"ModoDownloader","type":"","url":"\/download.html","target":"_blank","use":"1"}]} -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | .comicBox 4 | { 5 | background-color: black; 6 | position: absolute; 7 | top:0px; 8 | bottom: 0px; 9 | right:0px; 10 | left:0px; 11 | text-align: center; 12 | overflow: hidden; 13 | } 14 | 15 | .comicBar 16 | { 17 | position:absolute; 18 | right:0px; 19 | bottom:0px; 20 | width: 100%; 21 | background-color: rgba( 0 , 0 , 0 , .5 ); 22 | color:white; 23 | opacity: 0; 24 | } 25 | 26 | .comicBar a 27 | { 28 | color: white; 29 | display: inline-block; 30 | padding:10px; 31 | } 32 | 33 | .comicBar a:hover 34 | { 35 | background-color: #52A7F1; 36 | 37 | } 38 | 39 | 40 | .comicBar:hover 41 | { 42 | opacity: 1; 43 | } 44 | 45 | 46 | .comicImage 47 | { 48 | max-height: 100%; 49 | max-width: 100%; 50 | } -------------------------------------------------------------------------------- /lib/core/Model.class.php: -------------------------------------------------------------------------------- 1 | in = $in; 26 | $this -> config = $config; 27 | } 28 | 29 | /** 30 | * TODO db 31 | */ 32 | function db(){ 33 | if ($this ->db != NULL) { 34 | return $this ->db; 35 | }else{ 36 | 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /static/js/lib/cmp4/index.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 |
13 |
loading ...
14 |
15 | 16 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/ext-linking.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/ext/linking",["require","exports","module","ace/editor","ace/config"],function(e,t,n){function i(e){var t=e.editor,n=e.getAccelKey();if(n){var t=e.editor,r=e.getDocumentPosition(),i=t.session,s=i.getTokenAt(r.row,r.column);t._emit("linkHover",{position:r,token:s})}}function s(e){var t=e.getAccelKey(),n=e.getButton();if(n==0&&t){var r=e.editor,i=e.getDocumentPosition(),s=r.session,o=s.getTokenAt(i.row,i.column);r._emit("linkClick",{position:i,token:o})}}var r=e("ace/editor").Editor;e("../config").defineOptions(r.prototype,"editor",{enableLinking:{set:function(e){e?(this.on("click",s),this.on("mousemove",i)):(this.off("click",s),this.off("mousemove",i))},value:!1}})}); 2 | (function() { 3 | ace.require(["ace/ext/linking"], function() {}); 4 | })(); 5 | -------------------------------------------------------------------------------- /momic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | Modo Comic Reader 14 | 15 | 16 |
17 |
18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-gitignore.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/gitignore_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){this.$rules={start:[{token:"comment",regex:/^\s*#.*$/},{token:"keyword",regex:/^\s*!.*$/}]},this.normalizeRules()};s.metaData={fileTypes:["gitignore"],name:"Gitignore"},r.inherits(s,i),t.GitignoreHighlightRules=s}),ace.define("ace/mode/gitignore",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/gitignore_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./gitignore_highlight_rules").GitignoreHighlightRules,o=function(){this.HighlightRules=s};r.inherits(o,i),function(){this.lineCommentStart="#",this.$id="ace/mode/gitignore"}.call(o.prototype),t.Mode=o}) -------------------------------------------------------------------------------- /controller/desktop.class.php: -------------------------------------------------------------------------------- 1 | tpl = TEMPLATE.'desktop/'; 13 | } 14 | public function index() { 15 | $wall = $this->config['user']['wall']; 16 | if(strlen($wall)>3){ 17 | $this->assign('wall',$wall); 18 | }else{ 19 | $this->assign('wall',STATIC_PATH.'images/wall_page/'.$wall.'.jpg'); 20 | } 21 | if (!is_dir(MYHOME.'desktop/') && is_writable(MYHOME)) { 22 | mkdir(MYHOME.'desktop/'); 23 | } 24 | $this->display('index.php'); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /comic.php: -------------------------------------------------------------------------------- 1 | /dev/null 2>/dev/null & "; 30 | echo exec($cmd); 31 | 32 | file_put_contents( $cachefile_name , json_encode($data)); 33 | echo json_encode($data); -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/sql.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/sql",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet tbl\n create table ${1:table} (\n ${2:columns}\n );\nsnippet col\n ${1:name} ${2:type} ${3:default ''} ${4:not null}\nsnippet ccol\n ${1:name} varchar2(${2:size}) ${3:default ''} ${4:not null}\nsnippet ncol\n ${1:name} number ${3:default 0} ${4:not null}\nsnippet dcol\n ${1:name} date ${3:default sysdate} ${4:not null}\nsnippet ind\n create index ${3:$1_$2} on ${1:table}(${2:column});\nsnippet uind\n create unique index ${1:name} on ${2:table}(${3:column});\nsnippet tblcom\n comment on table ${1:table} is '${2:comment}';\nsnippet colcom\n comment on column ${1:table}.${2:column} is '${3:comment}';\nsnippet addcol\n alter table ${1:table} add (${2:column} ${3:type});\nsnippet seq\n create sequence ${1:name} start with ${2:1} increment by ${3:1} minvalue ${4:1};\nsnippet s*\n select * from ${1:table}\n",t.scope="sql"}) -------------------------------------------------------------------------------- /template/setting/slider/player.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
"; 6 | echo getTplList(',',':',$config['setting_all']['musicthemeall'],$tpl,$config['user']['musictheme']); 7 | ?> 8 |
9 |
10 | 11 |
12 |
13 |
14 |
"; 16 | echo getTplList(',',':',$config['setting_all']['moviethemeall'],$tpl,$config['user']['movietheme']); 17 | ?> 18 |
19 |
20 | -------------------------------------------------------------------------------- /template/setting/slider/wall.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
"; 6 | echo getTplList(',',':',$config['setting_all']['wallall'],$tpl,$config['user']['wall']); 7 | ?> 8 |
9 |
10 | 11 | 12 |
13 | 3){echo 'value="'.$w.'"';} ?> 15 | /> 16 | 17 | 18 |
19 |
-------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/ext-statusbar.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/ext/statusbar",["require","exports","module","ace/lib/dom","ace/lib/lang"],function(e,t,n){"use strict";var r=e("ace/lib/dom"),i=e("ace/lib/lang"),s=function(e,t){this.element=r.createElement("div"),this.element.className="ace_status-indicator",this.element.style.cssText="display: inline-block;",t.appendChild(this.element);var n=i.delayedCall(function(){this.updateStatus(e)}.bind(this));e.on("changeStatus",function(){n.schedule(100)}),e.on("changeSelection",function(){n.schedule(100)})};(function(){this.updateStatus=function(e){function n(e,n){e&&t.push(e,n||"|")}var t=[];n(e.keyBinding.getStatusText(e)),e.commands.recording&&n("REC");var r=e.selection.lead;n(r.row+":"+r.column," ");if(!e.selection.isEmpty()){var i=e.getSelectionRange();n("("+(i.end.row-i.start.row)+":"+(i.end.column-i.start.column)+")")}t.pop(),this.element.textContent=t.join("")}}).call(s.prototype),t.StatusBar=s}); 2 | (function() { 3 | ace.require(["ace/ext/statusbar"], function() {}); 4 | })(); 5 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-properties.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/properties_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e=/\\u[0-9a-fA-F]{4}|\\/;this.$rules={start:[{token:"comment",regex:/[!#].*$/},{token:"keyword",regex:/[=:]$/},{token:"keyword",regex:/[=:]/,next:"value"},{token:"constant.language.escape",regex:e},{defaultToken:"variable"}],value:[{regex:/\\$/,token:"string",next:"value"},{regex:/$/,token:"string",next:"start"},{token:"constant.language.escape",regex:e},{defaultToken:"string"}]}};r.inherits(s,i),t.PropertiesHighlightRules=s}),ace.define("ace/mode/properties",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/properties_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./properties_highlight_rules").PropertiesHighlightRules,o=function(){this.HighlightRules=s};r.inherits(o,i),function(){this.$id="ace/mode/properties"}.call(o.prototype),t.Mode=o}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-lucene.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/lucene_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("../lib/lang"),s=e("./text_highlight_rules").TextHighlightRules,o=function(){this.$rules={start:[{token:"constant.character.negation",regex:"[\\-]"},{token:"constant.character.interro",regex:"[\\?]"},{token:"constant.character.asterisk",regex:"[\\*]"},{token:"constant.character.proximity",regex:"~[0-9]+\\b"},{token:"keyword.operator",regex:"(?:AND|OR|NOT)\\b"},{token:"paren.lparen",regex:"[\\(]"},{token:"paren.rparen",regex:"[\\)]"},{token:"keyword",regex:"[\\S]+:"},{token:"string",regex:'".*?"'},{token:"text",regex:"\\s+"}]}};r.inherits(o,s),t.LuceneHighlightRules=o}),ace.define("ace/mode/lucene",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/lucene_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./lucene_highlight_rules").LuceneHighlightRules,o=function(){this.HighlightRules=s};r.inherits(o,i),function(){this.$id="ace/mode/lucene"}.call(o.prototype),t.Mode=o}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/io.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/io",["require","exports","module"],function(e,t,n){"use strict";t.snippets=[{content:"assertEquals(${1:expected}, ${2:expr})",name:"assertEquals",scope:"io",tabTrigger:"ae"},{content:"${1:${2:newValue} := ${3:Object} }clone do(\n $0\n)",name:"clone do",scope:"io",tabTrigger:"cdo"},{content:'docSlot("${1:slotName}", "${2:documentation}")',name:"docSlot",scope:"io",tabTrigger:"ds"},{content:"(${1:header,}\n ${2:body}\n)$0",keyEquivalent:"@(",name:"Indented Bracketed Line",scope:"io",tabTrigger:"("},{content:"\n $0\n",keyEquivalent:"\r",name:"Special: Return Inside Empty Parenthesis",scope:"io meta.empty-parenthesis.io, io meta.comma-parenthesis.io"},{content:"${1:methodName} := method(${2:args,}\n $0\n)",name:"method",scope:"io",tabTrigger:"m"},{content:'newSlot("${1:slotName}", ${2:defaultValue}, "${3:docString}")$0',name:"newSlot",scope:"io",tabTrigger:"ns"},{content:"${1:name} := Object clone do(\n $0\n)",name:"Object clone do",scope:"io",tabTrigger:"ocdo"},{content:"test${1:SomeFeature} := method(\n $0\n)",name:"testMethod",scope:"io",tabTrigger:"ts"},{content:"${1:Something}Test := ${2:UnitTest} clone do(\n $0\n)",name:"UnitTest",scope:"io",tabTrigger:"ut"}],t.scope="io"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/dart.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/dart",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet lib\n library ${1};\n ${2}\nsnippet im\n import '${1}';\n ${2}\nsnippet pa\n part '${1}';\n ${2}\nsnippet pao\n part of ${1};\n ${2}\nsnippet main\n void main() {\n ${1:/* code */}\n }\nsnippet st\n static ${1}\nsnippet fi\n final ${1}\nsnippet re\n return ${1}\nsnippet br\n break;\nsnippet th\n throw ${1}\nsnippet cl\n class ${1:`Filename(\"\", \"untitled\")`} ${2}\nsnippet imp\n implements ${1}\nsnippet ext\n extends ${1}\nsnippet if\n if (${1:true}) {\n ${2}\n }\nsnippet ife\n if (${1:true}) {\n ${2}\n } else {\n ${3}\n }\nsnippet el\n else\nsnippet sw\n switch (${1}) {\n ${2}\n }\nsnippet cs\n case ${1}:\n ${2}\nsnippet de\n default:\n ${1}\nsnippet for\n for (var ${2:i} = 0, len = ${1:things}.length; $2 < len; ${3:++}$2) {\n ${4:$1[$2]}\n }\nsnippet fore\n for (final ${2:item} in ${1:itemList}) {\n ${3:/* code */}\n }\nsnippet wh\n while (${1:/* condition */}) {\n ${2:/* code */}\n }\nsnippet dowh\n do {\n ${2:/* code */}\n } while (${1:/* condition */});\nsnippet as\n assert(${1:/* condition */});\nsnippet try\n try {\n ${2}\n } catch (${1:Exception e}) {\n }\nsnippet tryf\n try {\n ${2}\n } catch (${1:Exception e}) {\n } finally {\n }\n",t.scope="dart"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/ext-themelist.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/ext/themelist",["require","exports","module","ace/lib/fixoldbrowsers"],function(e,t,n){"use strict";e("ace/lib/fixoldbrowsers");var r=[["Chrome"],["Clouds"],["Crimson Editor"],["Dawn"],["Dreamweaver"],["Eclipse"],["GitHub"],["Solarized Light"],["TextMate"],["Tomorrow"],["XCode"],["Kuroir"],["KatzenMilch"],["Ambiance","ambiance","dark"],["Chaos","chaos","dark"],["Clouds Midnight","clouds_midnight","dark"],["Cobalt","cobalt","dark"],["idle Fingers","idle_fingers","dark"],["krTheme","kr_theme","dark"],["Merbivore","merbivore","dark"],["Merbivore Soft","merbivore_soft","dark"],["Mono Industrial","mono_industrial","dark"],["Monokai","monokai","dark"],["Pastel on dark","pastel_on_dark","dark"],["Solarized Dark","solarized_dark","dark"],["Terminal","terminal","dark"],["Tomorrow Night","tomorrow_night","dark"],["Tomorrow Night Blue","tomorrow_night_blue","dark"],["Tomorrow Night Bright","tomorrow_night_bright","dark"],["Tomorrow Night 80s","tomorrow_night_eighties","dark"],["Twilight","twilight","dark"],["Vibrant Ink","vibrant_ink","dark"]];t.themesByName={},t.themes=r.map(function(e){var n=e[1]||e[0].replace(/ /g,"_").toLowerCase(),r={caption:e[0],theme:"ace/theme/"+n,isDark:e[2]=="dark",name:n};return t.themesByName[n]=r,r})}); 2 | (function() { 3 | ace.require(["ace/ext/themelist"], function() {}); 4 | })(); 5 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-gcode.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/gcode_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="IF|DO|WHILE|ENDWHILE|CALL|ENDIF|SUB|ENDSUB|GOTO|REPEAT|ENDREPEAT|CALL",t="PI",n="ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN",r=this.createKeywordMapper({"support.function":n,keyword:e,"constant.language":t},"identifier",!0);this.$rules={start:[{token:"comment",regex:"\\(.*\\)"},{token:"comment",regex:"([N])([0-9]+)"},{token:"string",regex:"([G])([0-9]+\\.?[0-9]?)"},{token:"string",regex:"([M])([0-9]+\\.?[0-9]?)"},{token:"constant.numeric",regex:"([-+]?([0-9]*\\.?[0-9]+\\.?))|(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)"},{token:r,regex:"[A-Z]"},{token:"keyword.operator",regex:"EQ|LT|GT|NE|GE|LE|OR|XOR"},{token:"paren.lparen",regex:"[\\[]"},{token:"paren.rparen",regex:"[\\]]"},{token:"text",regex:"\\s+"}]}};r.inherits(s,i),t.GcodeHighlightRules=s}),ace.define("ace/mode/gcode",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/gcode_highlight_rules","ace/range"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./gcode_highlight_rules").GcodeHighlightRules,o=e("../range").Range,u=function(){this.HighlightRules=s};r.inherits(u,i),function(){this.$id="ace/mode/gcode"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/ext-spellcheck.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/ext/spellcheck",["require","exports","module","ace/lib/event","ace/editor","ace/config"],function(e,t,n){"use strict";var r=e("../lib/event");t.contextMenuHandler=function(e){var t=e.target,n=t.textInput.getElement();if(!t.selection.isEmpty())return;var i=t.getCursorPosition(),s=t.session.getWordRange(i.row,i.column),o=t.session.getTextRange(s);t.session.tokenRe.lastIndex=0;if(!t.session.tokenRe.test(o))return;var u="",a=o+" "+u;n.value=a,n.setSelectionRange(o.length,o.length+1),n.setSelectionRange(0,0),n.setSelectionRange(0,o.length);var f=!1;r.addListener(n,"keydown",function l(){r.removeListener(n,"keydown",l),f=!0}),t.textInput.setInputHandler(function(e){console.log(e,a,n.selectionStart,n.selectionEnd);if(e==a)return"";if(e.lastIndexOf(a,0)===0)return e.slice(a.length);if(e.substr(n.selectionEnd)==a)return e.slice(0,-a.length);if(e.slice(-2)==u){var r=e.slice(0,-2);if(r.slice(-1)==" ")return f?r.substring(0,n.selectionEnd):(r=r.slice(0,-1),t.session.replace(s,r),"")}return e})};var i=e("../editor").Editor;e("../config").defineOptions(i.prototype,"editor",{spellcheck:{set:function(e){var n=this.textInput.getElement();n.spellcheck=!!e,e?this.on("nativecontextmenu",t.contextMenuHandler):this.removeListener("nativecontextmenu",t.contextMenuHandler)},value:!0}})}); 2 | (function() { 3 | ace.require(["ace/ext/spellcheck"], function() {}); 4 | })(); 5 | -------------------------------------------------------------------------------- /static/js/lib/webuploader/webuploader.css: -------------------------------------------------------------------------------- 1 | .webuploader-container { 2 | position: relative; 3 | } 4 | .webuploader-element-invisible { 5 | position: absolute !important; 6 | clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ 7 | clip: rect(1px,1px,1px,1px); 8 | } 9 | .webuploader-pick { 10 | position: relative; 11 | display: inline-block; 12 | cursor: pointer; 13 | background: #00b7ee; 14 | padding: 10px 15px; 15 | color: #fff; 16 | text-align: center; 17 | border-radius: 3px; 18 | overflow: hidden; 19 | } 20 | .webuploader-pick-hover { 21 | background: #00a2d4; 22 | } 23 | 24 | .webuploader-pick-disable { 25 | opacity: 0.6; 26 | pointer-events:none; 27 | } 28 | 29 | 30 | /*add by warlee*/ 31 | .btns{margin-bottom: 10px;font-size: 13px;height: 28px;} 32 | .webuploader-pick {height: 8px;line-height: 11px;} 33 | 34 | .btns .tips{float:right;} 35 | .btns #picker{width:100px;float: left;} 36 | #uploader{height:260px;border:1px solid #ddd;overflow: auto;} 37 | .uploader-list .item{border-bottom: 1px solid #eee;padding:5px;font-size: 13px;} 38 | .uploader-list .item .info{line-height: 25px;padding:0 5px;color:#3A87AD;} 39 | .uploader-list .item span{display: block;float: left;} 40 | .uploader-list .item span.state{float: right;text-align:right;} 41 | .uploader-list .item span.error{color:#f30;} 42 | .uploader-list .item span.title{width:200px;height: 27px;overflow: hidden;color:#444;} 43 | .uploader-list .item .progress {height:20px;margin: 0 5px 5px 0;} 44 | -------------------------------------------------------------------------------- /static/js/lib/ztree/demo.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ZTREE DEMO - Async 5 | 6 | 7 | 8 | 9 | 10 | 11 | 40 | 41 | 42 | 43 | 44 |
45 |
46 |
    47 |
    48 |
    49 | 50 | 51 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-sql.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/sql_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="select|insert|update|delete|from|where|and|or|group|by|order|limit|offset|having|as|case|when|else|end|type|left|right|join|on|outer|desc|asc|union",t="true|false|null",n="count|min|max|avg|sum|rank|now|coalesce",r=this.createKeywordMapper({"support.function":n,keyword:e,"constant.language":t},"identifier",!0);this.$rules={start:[{token:"comment",regex:"--.*$"},{token:"comment",start:"/\\*",end:"\\*/"},{token:"string",regex:'".*?"'},{token:"string",regex:"'.*?'"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:r,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\/|\\/\\/|%|<@>|@>|<@|&|\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"paren.lparen",regex:"[\\(]"},{token:"paren.rparen",regex:"[\\)]"},{token:"text",regex:"\\s+"}]},this.normalizeRules()};r.inherits(s,i),t.SqlHighlightRules=s}),ace.define("ace/mode/sql",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/sql_highlight_rules","ace/range"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./sql_highlight_rules").SqlHighlightRules,o=e("../range").Range,u=function(){this.HighlightRules=s};r.inherits(u,i),function(){this.lineCommentStart="--",this.$id="ace/mode/sql"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /convert.php: -------------------------------------------------------------------------------- 1 | $max_height) { 37 | $width = ($max_height / $height) * $width; 38 | $height = $max_height; 39 | } 40 | 41 | # wider 42 | if ($width > $max_width) { 43 | $height = ($max_width / $width) * $height; 44 | $width = $max_width; 45 | } 46 | 47 | $image_p = imagecreatetruecolor($width, $height); 48 | 49 | if( $ext == 'png' ) 50 | $image = imagecreatefrompng($filename); 51 | else 52 | $image = imagecreatefromjpeg($filename); 53 | 54 | imagecopyresampled($image_p, $image, 0, 0, 0, 0, 55 | $width, $height, $orig_width, $orig_height); 56 | 57 | if( $ext == 'png' ) 58 | imagepng($image_p,$filename); 59 | else 60 | imagejpeg($image_p,$filename); 61 | 62 | imagedestroy($image_p); 63 | imagedestroy($image); 64 | } -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/tcl.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/tcl",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="# #!/usr/bin/env tclsh\nsnippet #!\n #!/usr/bin/env tclsh\n \n# Process\nsnippet pro\n proc ${1:function_name} {${2:args}} {\n ${3:#body ...}\n }\n#xif\nsnippet xif\n ${1:expr}? ${2:true} : ${3:false}\n# Conditional\nsnippet if\n if {${1}} {\n ${2:# body...}\n }\n# Conditional if..else\nsnippet ife\n if {${1}} {\n ${2:# body...}\n } else {\n ${3:# else...}\n }\n# Conditional if..elsif..else\nsnippet ifee\n if {${1}} {\n ${2:# body...}\n } elseif {${3}} {\n ${4:# elsif...}\n } else {\n ${5:# else...}\n }\n# If catch then\nsnippet ifc\n if { [catch {${1:#do something...}} ${2:err}] } {\n ${3:# handle failure...}\n }\n# Catch\nsnippet catch\n catch {${1}} ${2:err} ${3:options}\n# While Loop\nsnippet wh\n while {${1}} {\n ${2:# body...}\n }\n# For Loop\nsnippet for\n for {set ${2:var} 0} {$$2 < ${1:count}} {${3:incr} $2} {\n ${4:# body...}\n }\n# Foreach Loop\nsnippet fore\n foreach ${1:x} {${2:#list}} {\n ${3:# body...}\n }\n# after ms script...\nsnippet af\n after ${1:ms} ${2:#do something}\n# after cancel id\nsnippet afc\n after cancel ${1:id or script}\n# after idle\nsnippet afi\n after idle ${1:script}\n# after info id\nsnippet afin\n after info ${1:id}\n# Expr\nsnippet exp\n expr {${1:#expression here}}\n# Switch\nsnippet sw\n switch ${1:var} {\n ${3:pattern 1} {\n ${4:#do something}\n }\n default {\n ${2:#do something}\n }\n }\n# Case\nsnippet ca\n ${1:pattern} {\n ${2:#do something}\n }${3}\n# Namespace eval\nsnippet ns\n namespace eval ${1:path} {${2:#script...}}\n# Namespace current\nsnippet nsc\n namespace current\n",t.scope="tcl"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/jsoniq.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/jsoniq",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='snippet for\n for $${1:item} in ${2:expr}\nsnippet return\n return ${1:expr}\nsnippet import\n import module namespace ${1:ns} = "${2:http://www.example.com/}";\nsnippet some\n some $${1:varname} in ${2:expr} satisfies ${3:expr}\nsnippet every\n every $${1:varname} in ${2:expr} satisfies ${3:expr}\nsnippet if\n if(${1:true}) then ${2:expr} else ${3:true}\nsnippet switch\n switch(${1:"foo"})\n case ${2:"foo"}\n return ${3:true}\n default return ${4:false}\nsnippet try\n try { ${1:expr} } catch ${2:*} { ${3:expr} }\nsnippet tumbling\n for tumbling window $${1:varname} in ${2:expr}\n start at $${3:start} when ${4:expr}\n end at $${5:end} when ${6:expr}\n return ${7:expr}\nsnippet sliding\n for sliding window $${1:varname} in ${2:expr}\n start at $${3:start} when ${4:expr}\n end at $${5:end} when ${6:expr}\n return ${7:expr}\nsnippet let\n let $${1:varname} := ${2:expr}\nsnippet group\n group by $${1:varname} := ${2:expr}\nsnippet order\n order by ${1:expr} ${2:descending}\nsnippet stable\n stable order by ${1:expr}\nsnippet count\n count $${1:varname}\nsnippet ordered\n ordered { ${1:expr} }\nsnippet unordered\n unordered { ${1:expr} }\nsnippet treat \n treat as ${1:expr}\nsnippet castable\n castable as ${1:atomicType}\nsnippet cast\n cast as ${1:atomicType}\nsnippet typeswitch\n typeswitch(${1:expr})\n case ${2:type} return ${3:expr}\n default return ${4:expr}\nsnippet var\n declare variable $${1:varname} := ${2:expr};\nsnippet fn\n declare function ${1:ns}:${2:name}(){\n ${3:expr}\n };\nsnippet module\n module namespace ${1:ns} = "${2:http://www.example.com}";\n',t.scope="jsoniq"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/xquery.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/xquery",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='snippet for\n for $${1:item} in ${2:expr}\nsnippet return\n return ${1:expr}\nsnippet import\n import module namespace ${1:ns} = "${2:http://www.example.com/}";\nsnippet some\n some $${1:varname} in ${2:expr} satisfies ${3:expr}\nsnippet every\n every $${1:varname} in ${2:expr} satisfies ${3:expr}\nsnippet if\n if(${1:true}) then ${2:expr} else ${3:true}\nsnippet switch\n switch(${1:"foo"})\n case ${2:"foo"}\n return ${3:true}\n default return ${4:false}\nsnippet try\n try { ${1:expr} } catch ${2:*} { ${3:expr} }\nsnippet tumbling\n for tumbling window $${1:varname} in ${2:expr}\n start at $${3:start} when ${4:expr}\n end at $${5:end} when ${6:expr}\n return ${7:expr}\nsnippet sliding\n for sliding window $${1:varname} in ${2:expr}\n start at $${3:start} when ${4:expr}\n end at $${5:end} when ${6:expr}\n return ${7:expr}\nsnippet let\n let $${1:varname} := ${2:expr}\nsnippet group\n group by $${1:varname} := ${2:expr}\nsnippet order\n order by ${1:expr} ${2:descending}\nsnippet stable\n stable order by ${1:expr}\nsnippet count\n count $${1:varname}\nsnippet ordered\n ordered { ${1:expr} }\nsnippet unordered\n unordered { ${1:expr} }\nsnippet treat \n treat as ${1:expr}\nsnippet castable\n castable as ${1:atomicType}\nsnippet cast\n cast as ${1:atomicType}\nsnippet typeswitch\n typeswitch(${1:expr})\n case ${2:type} return ${3:expr}\n default return ${4:expr}\nsnippet var\n declare variable $${1:varname} := ${2:expr};\nsnippet fn\n declare function ${1:ns}:${2:name}(){\n ${3:expr}\n };\nsnippet module\n module namespace ${1:ns} = "${2:http://www.example.com}";\n',t.scope="xquery"}) -------------------------------------------------------------------------------- /js/jquery.base64.min.js: -------------------------------------------------------------------------------- 1 | "use strict";jQuery.base64=(function($){var _PADCHAR="=",_ALPHA="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",_VERSION="1.0";function _getbyte64(s,i){var idx=_ALPHA.indexOf(s.charAt(i));if(idx===-1){throw"Cannot decode base64"}return idx}function _decode(s){var pads=0,i,b10,imax=s.length,x=[];s=String(s);if(imax===0){return s}if(imax%4!==0){throw"Cannot decode base64"}if(s.charAt(imax-1)===_PADCHAR){pads=1;if(s.charAt(imax-2)===_PADCHAR){pads=2}imax-=4}for(i=0;i>16,(b10>>8)&255,b10&255))}switch(pads){case 1:b10=(_getbyte64(s,i)<<18)|(_getbyte64(s,i+1)<<12)|(_getbyte64(s,i+2)<<6);x.push(String.fromCharCode(b10>>16,(b10>>8)&255));break;case 2:b10=(_getbyte64(s,i)<<18)|(_getbyte64(s,i+1)<<12);x.push(String.fromCharCode(b10>>16));break}return x.join("")}function _getbyte(s,i){var x=s.charCodeAt(i);if(x>255){throw"INVALID_CHARACTER_ERR: DOM Exception 5"}return x}function _encode(s){if(arguments.length!==1){throw"SyntaxError: exactly one argument required"}s=String(s);var i,b10,x=[],imax=s.length-s.length%3;if(s.length===0){return s}for(i=0;i>18));x.push(_ALPHA.charAt((b10>>12)&63));x.push(_ALPHA.charAt((b10>>6)&63));x.push(_ALPHA.charAt(b10&63))}switch(s.length-imax){case 1:b10=_getbyte(s,i)<<16;x.push(_ALPHA.charAt(b10>>18)+_ALPHA.charAt((b10>>12)&63)+_PADCHAR+_PADCHAR);break;case 2:b10=(_getbyte(s,i)<<16)|(_getbyte(s,i+1)<<8);x.push(_ALPHA.charAt(b10>>18)+_ALPHA.charAt((b10>>12)&63)+_ALPHA.charAt((b10>>6)&63)+_PADCHAR);break}return x.join("")}return{decode:_decode,encode:_encode,VERSION:_VERSION}}(jQuery)); -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-ada.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/ada_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="abort|else|new|return|abs|elsif|not|reverse|abstract|end|null|accept|entry|select|access|exception|of|separate|aliased|exit|or|some|all|others|subtype|and|for|out|synchronized|array|function|overriding|at|tagged|generic|package|task|begin|goto|pragma|terminate|body|private|then|if|procedure|type|case|in|protected|constant|interface|until||is|raise|use|declare|range|delay|limited|record|when|delta|loop|rem|while|digits|renames|with|do|mod|requeue|xor",t="true|false|null",n="count|min|max|avg|sum|rank|now|coalesce|main",r=this.createKeywordMapper({"support.function":n,keyword:e,"constant.language":t},"identifier",!0);this.$rules={start:[{token:"comment",regex:"--.*$"},{token:"string",regex:'".*?"'},{token:"string",regex:"'.*?'"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:r,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\/|\\/\\/|%|<@>|@>|<@|&|\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"paren.lparen",regex:"[\\(]"},{token:"paren.rparen",regex:"[\\)]"},{token:"text",regex:"\\s+"}]}};r.inherits(s,i),t.AdaHighlightRules=s}),ace.define("ace/mode/ada",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/ada_highlight_rules","ace/range"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./ada_highlight_rules").AdaHighlightRules,o=e("../range").Range,u=function(){this.HighlightRules=s};r.inherits(u,i),function(){this.lineCommentStart="--",this.$id="ace/mode/ada"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /controller/fav.class.php: -------------------------------------------------------------------------------- 1 | sql=new fileCache($this->config['user_fav_file']); 14 | } 15 | 16 | /** 17 | * 获取收藏夹json 18 | */ 19 | public function get() { 20 | show_json($this->sql->get()); 21 | } 22 | 23 | /** 24 | * 添加 25 | */ 26 | public function add() { 27 | $res=$this->sql->add($this->in['name'], 28 | array( 29 | 'name'=>$this->in['name'], 30 | 'path'=>$this->in['path'] 31 | ) 32 | ); 33 | if($res)show_json($this->L['success']); 34 | show_json($this->L['error_repeat'],false); 35 | } 36 | 37 | /** 38 | * 编辑 39 | */ 40 | public function edit() { 41 | //查找到一条记录,修改为该数组 42 | $to_array=array( 43 | 'name'=>$this->in['name_to'], 44 | 'path'=>$this->in['path_to'] 45 | ); 46 | if($this->sql->replace_update( 47 | $this->in['name'],$this->in['name_to'],$to_array)){ 48 | show_json($this->L['success']); 49 | } 50 | show_json($this->L['error_repeat'],false); 51 | } 52 | 53 | /** 54 | * 删除 55 | */ 56 | public function del() { 57 | if($this->sql->delete($this->in['name'])){ 58 | show_json($this->L['success']); 59 | } 60 | show_json($this->L['error'],false); 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /lib/core/Controller.class.php: -------------------------------------------------------------------------------- 1 | db = $db; 27 | $this -> L = $L; 28 | $this -> config = &$config; 29 | $this -> in = &$in; 30 | $this -> values['config'] = &$config; 31 | $this -> values['in'] = &$in; 32 | } 33 | 34 | /** 35 | * 加载模型 36 | * @param string $class 37 | */ 38 | public function loadModel($class){ 39 | $args = func_get_args(); 40 | $this -> $class = call_user_func_array('init_model', $args); 41 | return $this -> $class; 42 | } 43 | 44 | /** 45 | * 加载类库文件 46 | * @param string $class 47 | */ 48 | public function loadClass($class){ 49 | if (1 === func_num_args()) { 50 | $this -> $class = new $class; 51 | } else { 52 | $reflectionObj = new ReflectionClass($class); 53 | $args = func_get_args(); 54 | array_shift($args); 55 | $this -> $class = $reflectionObj -> newInstanceArgs($args); 56 | } 57 | return $this -> $class; 58 | } 59 | 60 | /** 61 | * 显示模板 62 | * 63 | * TODO smarty 64 | * @param 65 | */ 66 | protected function assign($key,$value){ 67 | $this->values[$key] = $value; 68 | } 69 | /** 70 | * 显示模板 71 | * @param 72 | */ 73 | protected function display($tpl_file){ 74 | global $L,$LNG; 75 | extract($this->values); 76 | require($this->tpl.$tpl_file); 77 | } 78 | } 79 | -------------------------------------------------------------------------------- /data/i18n/zh_CN/about.html: -------------------------------------------------------------------------------- 1 |
    2 |
    是什么?
    3 |

    KODExplorer是一个公开源码的基于Web的在线文件管理、代码编辑器。它提供了类windows经典用户界面,一整套在线文件管理、文件预览、编辑、上传下载、在线解压缩、音乐播放功能。让你直接在浏览器端实现web开发、源码文件预览、网站部署的同时拥有与本地操作一样方便、快捷、安全的体验。

    4 |

    ——设计理念——

    5 |

    传承经典,追求创新,为用户提供方便快捷、安全易用的在线云管理系统。

    6 |

    无论何时(when)、何地(where),拥有web只要你想(want)它就是你的管理利器(4W策略)。

    7 |

    ——面向用户——

    8 |

    目前KODExplorer系统管理主要定位在个人云主机、中小企业云资源管理、网盘管理、中小型网站管理等。Web开发者&站长(老鸟):在线编辑、压缩备份、部署,经典windows界面操作,上手容易,远离了主机的SSH、ftp复杂枯燥的命令操作。

    9 |

    个人私有云(菜鸟):管理网盘资源,同样经典windows界面操作,可以就地浏览网盘音乐、视屏文件,上传下载快捷方便。

    10 |
    11 | 12 |
    13 |
    特色
    14 |

    完备的文件管理,强大的在线文件编辑器

    15 |

    无论您在哪里,都可以管理您的文件;并可以在线娱乐,在线写代码!就像适宜用操作系统那样。

    16 |

    丰富的本地体验移植,右键操作,拖拽,框中选择,快捷键,文件搜索(内容中搜索)……

    17 |

    框中选择,拖拽移动,拖拽上传,在线编辑器,影音播放器,解压缩。全面ajax保证性能和体验!

    18 |

    各个功能直接无缝连接;以对话框形式存在,多任务管理等功能

    19 |

    编辑器支持多文档;支持ZendCoding html,css,js代码编写效率更高!

    20 |

    完美中文支持,各种情况下乱码解决;

    21 |
    22 | 23 |
    24 |
    开源技术采用
    25 |

    1.Jquery:jpuery(plugin:Hotkeys.ztree.contentmenu).js主流开发框架。对Dom操作、BOM操作、css操作,以及Ajax封装

    26 |

    2.ArtDialog:一个设计优美,对浏览器兼容性极强的对话框插件。使弹出窗口处理,事件以及数据的传输得到了更好的统一管理方式

    27 |

    3.Ztree:列表树控件,扩展性很强的树形数据操作插件

    28 |

    4.codemirror:一个代码编辑js插件,支持各种编程语言的高亮处理

    29 |

    5.zendcoding:一个支持html代码快速编写插件。定义方式简化代码编写。有简单编译功能

    30 |

    6.less:一种高效的,函数式css开发模式,提高前端css样式表的可复用性。有简单编译功能

    31 |

    7.SWFUpload:flash多文件上传

    32 |

    8.CMP4:一个非常优秀的flash媒体文件播放插件,支持流媒体,常用音乐视频的播放工具。支持换皮肤,高可配置性的设置。列表xml的动态加载。mms流媒体,rstp开源协议媒体播放支持

    33 |
    -------------------------------------------------------------------------------- /data/i18n/zh_TW/about.html: -------------------------------------------------------------------------------- 1 |
    2 |
    是什麼?
    3 |

    KODExplorer是一個公開源碼的基於Web的線上檔管理、代碼編輯器。它提供了類windows經典使用者介面,一整套線上檔管理、文件預覽、編輯、上傳下載、線上解壓縮、音樂播放功能。讓你直接在流覽器端實現web開發、源碼檔預覽、網站部署的同時擁有與本地操作一樣方便、快捷、安全的體驗。

    4 |

    ——設計理念——

    5 |

    傳承經典,追求創新,為用戶提供方便快捷、安全易用的線上雲管理系統。

    6 |

    無論何時(when)、何地(where),擁有web只要你想(want)它就是你的管理利器(4W策略)。

    7 |

    ——面向用戶——

    8 |

    目前KODExplorer系統管理主要定位在個人雲主機、中小企業雲資源管理、網盤管理、中小型網站管理等。Web開發者&站長(老鳥):線上編輯、壓縮備份、部署,經典windows介面操作,上手容易,遠離了主機的SSH、ftp複雜枯燥的命令操作。

    9 |

    個人私有雲(菜鳥):管理網盤資源,同樣經典windows介面操作,可以就地流覽網盤音樂、視屏檔,上傳下載快捷方便。

    10 |
    11 | 12 |
    13 |
    特色
    14 |

    完備的文件管理,強大的線上文件編輯器

    15 |

    無論您在哪裡,都可以管理您的檔;並可以線上娛樂,線上寫代碼!就像適宜用作業系統那樣。

    16 |

    豐富的本地體驗移植,右鍵操作,拖拽,框中選擇,快速鍵,檔搜索(內容中搜索)……

    17 |

    框中選擇,拖拽移動,拖拽上傳,線上編輯器,影音播放機,解壓縮。全面ajax保證性能和體驗!

    18 |

    各個功能直接無縫連接;以對話方塊形式存在,多工管理等功能

    19 |

    編輯器支援多文檔;支持ZendCoding html,css,js代碼編寫效率更高!

    20 |

    完美中文支援,各種情況下亂碼解決;

    21 |
    22 | 23 |
    24 |
    開源技術採用
    25 |

    1.Jquery:jpuery(plugin:Hotkeys.ztree.contentmenu).js主流開發框架。對Dom操作、BOM操作、css操作,以及Ajax封裝

    26 |

    2.ArtDialog:一個設計優美,對流覽器相容性極強的對話方塊外掛程式。使快顯視窗處理,事件以及資料的傳輸得到了更好的統一管理方式

    27 |

    3.Ztree:清單樹控制項,擴展性很強的樹形資料操作外掛程式

    28 |

    4.codemirror:一個代碼編輯js外掛程式,支援各種程式設計語言的高亮處理

    29 |

    5.zendcoding:一個支持html代碼快速編寫外掛程式。定義方式簡化代碼編寫。有簡單編譯功能

    30 |

    6.less:一種高效的,函數式css開發模式,提高前端css樣式表的可複用性。有簡單編譯功能

    31 |

    7.SWFUpload:flash多文件上傳

    32 |

    8.CMP4:一個非常優秀的flash媒體檔播放外掛程式,支持流媒體,常用音樂視頻的播放工具。支援換皮膚,高可配置性的設置。清單xml的動態載入。mms流媒體,rstp開源協定媒體播放支援

    33 |
    34 | -------------------------------------------------------------------------------- /static/js/lib/cmp4/skins/music/simple/skin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | <status xywh="0C, 20, 240, 18" align="center" font="Verdana" size="12" color="#999999" borderColor="" /> 22 | </console> 23 | </skin> 24 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-scheme.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/scheme_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="case|do|let|loop|if|else|when",t="eq?|eqv?|equal?|and|or|not|null?",n="#t|#f",r="cons|car|cdr|cond|lambda|lambda*|syntax-rules|format|set!|quote|eval|append|list|list?|member?|load",i=this.createKeywordMapper({"keyword.control":e,"keyword.operator":t,"constant.language":n,"support.function":r},"identifier",!0);this.$rules={start:[{token:"comment",regex:";.*$"},{token:["storage.type.function-type.scheme","text","entity.name.function.scheme"],regex:"(?:\\b(?:(define|define-syntax|define-macro))\\b)(\\s+)((?:\\w|\\-|\\!|\\?)*)"},{token:"punctuation.definition.constant.character.scheme",regex:"#:\\S+"},{token:["punctuation.definition.variable.scheme","variable.other.global.scheme","punctuation.definition.variable.scheme"],regex:"(\\*)(\\S*)(\\*)"},{token:"constant.numeric",regex:"#[xXoObB][0-9a-fA-F]+"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?"},{token:i,regex:"[a-zA-Z_#][a-zA-Z0-9_\\-\\?\\!\\*]*"},{token:"string",regex:'"(?=.)',next:"qqstring"}],qqstring:[{token:"constant.character.escape.scheme",regex:"\\\\."},{token:"string",regex:'[^"\\\\]+',merge:!0},{token:"string",regex:"\\\\$",next:"qqstring",merge:!0},{token:"string",regex:'"|$',next:"start",merge:!0}]}};r.inherits(s,i),t.SchemeHighlightRules=s}),ace.define("ace/mode/scheme",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/scheme_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./scheme_highlight_rules").SchemeHighlightRules,o=function(){this.HighlightRules=s};r.inherits(o,i),function(){this.lineCommentStart=";",this.$id="ace/mode/scheme"}.call(o.prototype),t.Mode=o}) -------------------------------------------------------------------------------- /static/js/lib/ace/read.txt: -------------------------------------------------------------------------------- 1 | 目前版本:2014.11.08 Version 1.1.8 2 | 下载:https://github.com/ajaxorg/ace-builds/tags 3 | 4 | 自行修改:修改自动补全,php不生效问题。 5 | 1.ext-language_tools.js 6 | 搜索:"../autocomplete/text_completer" 修改getCompletions前后部分 7 | getCompletions: function(editor, session, pos, prefix, callback) { 8 | if (session.$mode.$id =='ace/mode/php' && 9 | typeof(session.$mode['isInit']) == 'undefined') { 10 | session.$mode['isInit'] = true; 11 | var phpAutoComplete = session.$mode.$modes['php-'].$highlightRules.$rules.myKeywords[0].keys 12 | session.$mode.$modes['php-'].$keywordList=phpAutoComplete; 13 | }; 14 | 2.mode-php.js 获取key;并存入rule中 15 | 搜索:"cfunction|old_function" 修改this.$rules 前后部分 16 | var key_list = []; 17 | Array.prototype.push.apply(key_list,Object.keys(keywords)); 18 | Array.prototype.push.apply(key_list,Object.keys(languageConstructs)); 19 | Array.prototype.push.apply(key_list,Object.keys(builtinConstants)); 20 | Array.prototype.push.apply(key_list,Object.keys(builtinFunctions)); 21 | Array.prototype.push.apply(key_list,Object.keys(builtinFunctionsDeprecated)); 22 | this.$rules = { 23 | "myKeywords":[ 24 | {keys :key_list} 25 | ], 26 | "start" : 27 | 28 | ======================= 29 | min对应修改 30 | 1.mode-php.js 获取key;并存入rule中 31 | arrayToMap("cfunction|old_function".split("|")), 32 | var key_list = []; 33 | Array.prototype.push.apply(key_list,Object.keys(t)); 34 | Array.prototype.push.apply(key_list,Object.keys(n)); 35 | Array.prototype.push.apply(key_list,Object.keys(r)); 36 | Array.prototype.push.apply(key_list,Object.keys(u)); 37 | Array.prototype.push.apply(key_list,Object.keys(a)); 38 | l=i.arrayToMap([]);this.$rules={ 39 | myKeywords:[{keys :key_list}], 40 | 2.ext-language_tools.js 41 | 42 | 43 | -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-lisp.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/lisp_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="case|do|let|loop|if|else|when",t="eq|neq|and|or",n="null|nil",r="cons|car|cdr|cond|lambda|format|setq|setf|quote|eval|append|list|listp|memberp|t|load|progn",i=this.createKeywordMapper({"keyword.control":e,"keyword.operator":t,"constant.language":n,"support.function":r},"identifier",!0);this.$rules={start:[{token:"comment",regex:";.*$"},{token:["storage.type.function-type.lisp","text","entity.name.function.lisp"],regex:"(?:\\b(?:(defun|defmethod|defmacro))\\b)(\\s+)((?:\\w|\\-|\\!|\\?)*)"},{token:["punctuation.definition.constant.character.lisp","constant.character.lisp"],regex:"(#)((?:\\w|[\\\\+-=<>'\"&#])+)"},{token:["punctuation.definition.variable.lisp","variable.other.global.lisp","punctuation.definition.variable.lisp"],regex:"(\\*)(\\S*)(\\*)"},{token:"constant.numeric",regex:"0[xX][0-9a-fA-F]+(?:L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\b"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?(?:L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\b"},{token:i,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"string",regex:'"(?=.)',next:"qqstring"}],qqstring:[{token:"constant.character.escape.lisp",regex:"\\\\."},{token:"string",regex:'[^"\\\\]+'},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"start"}]}};r.inherits(s,i),t.LispHighlightRules=s}),ace.define("ace/mode/lisp",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/lisp_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./lisp_highlight_rules").LispHighlightRules,o=function(){this.HighlightRules=s};r.inherits(o,i),function(){this.lineCommentStart=";",this.$id="ace/mode/lisp"}.call(o.prototype),t.Mode=o}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/theme-xcode.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/theme/xcode",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!1,t.cssClass="ace-xcode",t.cssText=".ace-xcode .ace_gutter {background: #e8e8e8;color: #333}.ace-xcode .ace_print-margin {width: 1px;background: #e8e8e8}.ace-xcode {background-color: #FFFFFF;color: #000000}.ace-xcode .ace_cursor {color: #000000}.ace-xcode .ace_marker-layer .ace_selection {background: #B5D5FF}.ace-xcode.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px #FFFFFF;border-radius: 2px}.ace-xcode .ace_marker-layer .ace_step {background: rgb(198, 219, 174)}.ace-xcode .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid #BFBFBF}.ace-xcode .ace_marker-layer .ace_active-line {background: rgba(0, 0, 0, 0.071)}.ace-xcode .ace_gutter-active-line {background-color: rgba(0, 0, 0, 0.071)}.ace-xcode .ace_marker-layer .ace_selected-word {border: 1px solid #B5D5FF}.ace-xcode .ace_constant.ace_language,.ace-xcode .ace_keyword,.ace-xcode .ace_meta,.ace-xcode .ace_variable.ace_language {color: #C800A4}.ace-xcode .ace_invisible {color: #BFBFBF}.ace-xcode .ace_constant.ace_character,.ace-xcode .ace_constant.ace_other {color: #275A5E}.ace-xcode .ace_constant.ace_numeric {color: #3A00DC}.ace-xcode .ace_entity.ace_other.ace_attribute-name,.ace-xcode .ace_support.ace_constant,.ace-xcode .ace_support.ace_function {color: #450084}.ace-xcode .ace_fold {background-color: #C800A4;border-color: #000000}.ace-xcode .ace_entity.ace_name.ace_tag,.ace-xcode .ace_support.ace_class,.ace-xcode .ace_support.ace_type {color: #790EAD}.ace-xcode .ace_storage {color: #C900A4}.ace-xcode .ace_string {color: #DF0002}.ace-xcode .ace_comment {color: #008E00}.ace-xcode .ace_indent-guide {background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==) right repeat-y}";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}) -------------------------------------------------------------------------------- /template/common/navbar_share.html: -------------------------------------------------------------------------------- 1 | <div class="init_loading"><div> 2 | <img src="<?php echo STATIC_PATH;?>images/loading_simple.gif"/></div> 3 | </div> 4 | <div class="topbar"> 5 | <div class="content"> 6 | <div class="top_left"> 7 | <a href="./" class="topbar_menu title"><i class="icon-cloud"></i><?php echo $L['kod_name'];?></a> 8 | <div class="share_info"> 9 | <span class="share_title"> 10 | <b class="share_title_info"><?php echo $share_info['name'];?></b> 11 | </span> 12 | <span class="size"></span> 13 | <span class="time"></span> 14 | </div> 15 | <div style="clear:both;"></div> 16 | </div> 17 | <div class="top_right"> 18 | <div class="share_info_user hidden menu_group"> 19 | <span class="info"></span> 20 | <!-- 21 | <a type="button" class="btn btn-primary button_my_share" id="button_share" href="javascript:void(0);"><?php echo $L['share'];?></a> 22 | --> 23 | <div class="btn-group"> 24 | <a type="button" class="btn btn-primary btn_download" target="_blank" href=""><?php echo $L['download'];?></a> 25 | </div> 26 | </div> 27 | <div class="menu_group"> 28 | <a href="#" id='topbar_user' class="topbar_menu" data-toggle="dropdown"><i class="font-icon icon-user"></i><?php echo $_SESSION['kod_user']['name'];?> <b class="caret"></b></a> 29 | <ul class="dropdown-menu menu-topbar_user fadein pull-right" role="menu" aria-labelledby="topbar_user"> 30 | <li><a href="javascript:core.fullScreen();"><i class="font-icon icon-fullscreen"></i><?php echo $L['full_screen'];?></a></li> 31 | <li><a href="javascript:core.setting('about');"><i class="font-icon icon-info-sign"></i><?php echo $L['setting_about'];?></a></li> 32 | <li><a href="http://www.kalcaddle.com" target="_blank"><i class="font-icon icon-code-fork"></i><?php echo $L['ui_project_home'];?></a></li> 33 | </ul> 34 | </div> 35 | </div> 36 | <div style="clear:both"></div> 37 | </div> 38 | </div> -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-gherkin.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/gherkin_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s="\\\\(x[0-9A-Fa-f]{2}|[0-7]{3}|[\\\\abfnrtv'\"]|U[0-9A-Fa-f]{8}|u[0-9A-Fa-f]{4})",o=function(){this.$rules={start:[{token:"constant.numeric",regex:"(?:(?:[1-9]\\d*)|(?:0))"},{token:"comment",regex:"#.*$"},{token:"keyword",regex:"Feature:|Background:|Scenario:|Scenario Outline:|Examples:|Given|When|Then|And|But|\\*"},{token:"string",regex:'"{3}',next:"qqstring3"},{token:"string",regex:'"',next:"qqstring"},{token:"comment",regex:"@[A-Za-z0-9]+",next:"start"},{token:"comment",regex:"<.+>"},{token:"comment",regex:"\\| ",next:"table-item"},{token:"comment",regex:"\\|$",next:"start"}],qqstring3:[{token:"constant.language.escape",regex:s},{token:"string",regex:'"{3}',next:"start"},{defaultToken:"string"}],qqstring:[{token:"constant.language.escape",regex:s},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],"table-item":[{token:"string",regex:"[A-Za-z0-9 ]*",next:"start"}]}};r.inherits(o,i),t.GherkinHighlightRules=o}),ace.define("ace/mode/gherkin",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/gherkin_highlight_rules"],function(e,t,n){var r=e("../lib/oop"),i=e("./text").Mode,s=e("./gherkin_highlight_rules").GherkinHighlightRules,o=function(){this.HighlightRules=s};r.inherits(o,i),function(){this.lineCommentStart="#",this.$id="ace/mode/gherkin",this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),i=" ",s=this.getTokenizer().getLineTokens(t,e),o=s.tokens;return console.log(e),t.match("[ ]*\\|")&&(r+="| "),o.length&&o[o.length-1].type=="comment"?r:(e=="start"&&(t.match("Scenario:|Feature:|Scenario Outline:|Background:")?r+=i:t.match("(Given|Then).+(:)$|Examples:")?r+=i:t.match("\\*.+")&&(r+="* ")),r)}}.call(o.prototype),t.Mode=o}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/haskell.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/haskell",["require","exports","module"],function(e,t,n){"use strict";t.snippetText="snippet lang\n {-# LANGUAGE ${1:OverloadedStrings} #-}\nsnippet info\n -- |\n -- Module : ${1:Module.Namespace}\n -- Copyright : ${2:Author} ${3:2011-2012}\n -- License : ${4:BSD3}\n --\n -- Maintainer : ${5:email@something.com}\n -- Stability : ${6:experimental}\n -- Portability : ${7:unknown}\n --\n -- ${8:Description}\n --\nsnippet import\n import ${1:Data.Text}\nsnippet import2\n import ${1:Data.Text} (${2:head})\nsnippet importq\n import qualified ${1:Data.Text} as ${2:T}\nsnippet inst\n instance ${1:Monoid} ${2:Type} where\n ${3}\nsnippet type\n type ${1:Type} = ${2:Type}\nsnippet data\n data ${1:Type} = ${2:$1} ${3:Int}\nsnippet newtype\n newtype ${1:Type} = ${2:$1} ${3:Int}\nsnippet class\n class ${1:Class} a where\n ${2}\nsnippet module\n module `substitute(substitute(expand('%:r'), '[/\\\\]','.','g'),'^\\%(\\l*\\.\\)\\?','','')` (\n ) where\n `expand('%') =~ 'Main' ? \"\\n\\nmain = do\\n print \\\"hello world\\\"\" : \"\"`\n\nsnippet const\n ${1:name} :: ${2:a}\n $1 = ${3:undefined}\nsnippet fn\n ${1:fn} :: ${2:a} -> ${3:a}\n $1 ${4} = ${5:undefined}\nsnippet fn2\n ${1:fn} :: ${2:a} -> ${3:a} -> ${4:a}\n $1 ${5} = ${6:undefined}\nsnippet ap\n ${1:map} ${2:fn} ${3:list}\nsnippet do\n do\n \nsnippet \u03bb\n \\${1:x} -> ${2}\nsnippet \\\n \\${1:x} -> ${2}\nsnippet <-\n ${1:a} <- ${2:m a}\nsnippet \u2190\n ${1:a} <- ${2:m a}\nsnippet ->\n ${1:m a} -> ${2:a}\nsnippet \u2192\n ${1:m a} -> ${2:a}\nsnippet tup\n (${1:a}, ${2:b})\nsnippet tup2\n (${1:a}, ${2:b}, ${3:c})\nsnippet tup3\n (${1:a}, ${2:b}, ${3:c}, ${4:d})\nsnippet rec\n ${1:Record} { ${2:recFieldA} = ${3:undefined}\n , ${4:recFieldB} = ${5:undefined}\n }\nsnippet case\n case ${1:something} of\n ${2} -> ${3}\nsnippet let\n let ${1} = ${2}\n in ${3}\nsnippet where\n where\n ${1:fn} = ${2:undefined}\n",t.scope="haskell"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/markdown.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/markdown",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# Markdown\n\n# Includes octopress (http://octopress.org/) snippets\n\nsnippet [\n [${1:text}](http://${2:address} "${3:title}")\nsnippet [*\n [${1:link}](${2:`@*`} "${3:title}")${4}\n\nsnippet [:\n [${1:id}]: http://${2:url} "${3:title}"\nsnippet [:*\n [${1:id}]: ${2:`@*`} "${3:title}"\n\nsnippet ![\n ![${1:alttext}](${2:/images/image.jpg} "${3:title}")\nsnippet ![*\n ![${1:alt}](${2:`@*`} "${3:title}")${4}\n\nsnippet ![:\n ![${1:id}]: ${2:url} "${3:title}"\nsnippet ![:*\n ![${1:id}]: ${2:`@*`} "${3:title}"\n\nsnippet ===\nregex /^/=+/=*//\n ${PREV_LINE/./=/g}\n \n ${0}\nsnippet ---\nregex /^/-+/-*//\n ${PREV_LINE/./-/g}\n \n ${0}\nsnippet blockquote\n {% blockquote %}\n ${1:quote}\n {% endblockquote %}\n\nsnippet blockquote-author\n {% blockquote ${1:author}, ${2:title} %}\n ${3:quote}\n {% endblockquote %}\n\nsnippet blockquote-link\n {% blockquote ${1:author} ${2:URL} ${3:link_text} %}\n ${4:quote}\n {% endblockquote %}\n\nsnippet bt-codeblock-short\n ```\n ${1:code_snippet}\n ```\n\nsnippet bt-codeblock-full\n ``` ${1:language} ${2:title} ${3:URL} ${4:link_text}\n ${5:code_snippet}\n ```\n\nsnippet codeblock-short\n {% codeblock %}\n ${1:code_snippet}\n {% endcodeblock %}\n\nsnippet codeblock-full\n {% codeblock ${1:title} lang:${2:language} ${3:URL} ${4:link_text} %}\n ${5:code_snippet}\n {% endcodeblock %}\n\nsnippet gist-full\n {% gist ${1:gist_id} ${2:filename} %}\n\nsnippet gist-short\n {% gist ${1:gist_id} %}\n\nsnippet img\n {% img ${1:class} ${2:URL} ${3:width} ${4:height} ${5:title_text} ${6:alt_text} %}\n\nsnippet youtube\n {% youtube ${1:video_id} %}\n\n# The quote should appear only once in the text. It is inherently part of it.\n# See http://octopress.org/docs/plugins/pullquote/ for more info.\n\nsnippet pullquote\n {% pullquote %}\n ${1:text} {" ${2:quote} "} ${3:text}\n {% endpullquote %}\n',t.scope="markdown"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/theme-kuroir.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/theme/kuroir",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!1,t.cssClass="ace-kuroir",t.cssText=".ace-kuroir .ace_gutter {background: #e8e8e8;color: #333;}.ace-kuroir .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-kuroir {background-color: #E8E9E8;color: #363636;}.ace-kuroir .ace_cursor {color: #202020;}.ace-kuroir .ace_marker-layer .ace_selection {background: rgba(245, 170, 0, 0.57);}.ace-kuroir.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px #E8E9E8;border-radius: 2px;}.ace-kuroir .ace_marker-layer .ace_step {background: rgb(198, 219, 174);}.ace-kuroir .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgba(0, 0, 0, 0.29);}.ace-kuroir .ace_marker-layer .ace_active-line {background: rgba(203, 220, 47, 0.22);}.ace-kuroir .ace_gutter-active-line {background-color: rgba(203, 220, 47, 0.22);}.ace-kuroir .ace_marker-layer .ace_selected-word {border: 1px solid rgba(245, 170, 0, 0.57);}.ace-kuroir .ace_fold {border-color: #363636;}.ace-kuroir .ace_constant{color:#CD6839;}.ace-kuroir .ace_constant.ace_numeric{color:#9A5925;}.ace-kuroir .ace_support{color:#104E8B;}.ace-kuroir .ace_support.ace_function{color:#005273;}.ace-kuroir .ace_support.ace_constant{color:#CF6A4C;}.ace-kuroir .ace_storage{color:#A52A2A;}.ace-kuroir .ace_invalid.ace_illegal{color:#FD1224;background-color:rgba(255, 6, 0, 0.15);}.ace-kuroir .ace_invalid.ace_deprecated{text-decoration:underline;font-style:italic;color:#FD1732;background-color:#E8E9E8;}.ace-kuroir .ace_string{color:#639300;}.ace-kuroir .ace_string.ace_regexp{color:#417E00;background-color:#C9D4BE;}.ace-kuroir .ace_comment{color:rgba(148, 148, 148, 0.91);background-color:rgba(220, 220, 220, 0.56);}.ace-kuroir .ace_variable{color:#009ACD;}.ace-kuroir .ace_meta.ace_tag{color:#005273;}.ace-kuroir .ace_markup.ace_heading{color:#B8012D;background-color:rgba(191, 97, 51, 0.051);}.ace-kuroir .ace_markup.ace_list{color:#8F5B26;}";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/clojure.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/clojure",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='snippet comm\n (comment\n ${1}\n )\nsnippet condp\n (condp ${1:pred} ${2:expr}\n ${3})\nsnippet def\n (def ${1})\nsnippet defm\n (defmethod ${1:multifn} "${2:doc-string}" ${3:dispatch-val} [${4:args}]\n ${5})\nsnippet defmm\n (defmulti ${1:name} "${2:doc-string}" ${3:dispatch-fn})\nsnippet defma\n (defmacro ${1:name} "${2:doc-string}" ${3:dispatch-fn})\nsnippet defn\n (defn ${1:name} "${2:doc-string}" [${3:arg-list}]\n ${4})\nsnippet defp\n (defprotocol ${1:name}\n ${2})\nsnippet defr\n (defrecord ${1:name} [${2:fields}]\n ${3:protocol}\n ${4})\nsnippet deft\n (deftest ${1:name}\n (is (= ${2:assertion})))\n ${3})\nsnippet is\n (is (= ${1} ${2}))\nsnippet defty\n (deftype ${1:Name} [${2:fields}]\n ${3:Protocol}\n ${4})\nsnippet doseq\n (doseq [${1:elem} ${2:coll}]\n ${3})\nsnippet fn\n (fn [${1:arg-list}] ${2})\nsnippet if\n (if ${1:test-expr}\n ${2:then-expr}\n ${3:else-expr})\nsnippet if-let \n (if-let [${1:result} ${2:test-expr}]\n (${3:then-expr} $1)\n (${4:else-expr}))\nsnippet imp\n (:import [${1:package}])\n & {:keys [${1:keys}] :or {${2:defaults}}}\nsnippet let\n (let [${1:name} ${2:expr}]\n ${3})\nsnippet letfn\n (letfn [(${1:name) [${2:args}]\n ${3})])\nsnippet map\n (map ${1:func} ${2:coll})\nsnippet mapl\n (map #(${1:lambda}) ${2:coll})\nsnippet met\n (${1:name} [${2:this} ${3:args}]\n ${4})\nsnippet ns\n (ns ${1:name}\n ${2})\nsnippet dotimes\n (dotimes [_ 10]\n (time\n (dotimes [_ ${1:times}]\n ${2})))\nsnippet pmethod\n (${1:name} [${2:this} ${3:args}])\nsnippet refer\n (:refer-clojure :exclude [${1}])\nsnippet require\n (:require [${1:namespace} :as [${2}]])\nsnippet use\n (:use [${1:namespace} :only [${2}]])\nsnippet print\n (println ${1})\nsnippet reduce\n (reduce ${1:(fn [p n] ${3})} ${2})\nsnippet when\n (when ${1:test} ${2:body})\nsnippet when-let\n (when-let [${1:result} ${2:test}]\n ${3:body})\n',t.scope="clojure"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-textile.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/textile_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){this.$rules={start:[{token:function(e){return e.charAt(0)=="h"?"markup.heading."+e.charAt(1):"markup.heading"},regex:"h1|h2|h3|h4|h5|h6|bq|p|bc|pre",next:"blocktag"},{token:"keyword",regex:"[\\*]+|[#]+"},{token:"text",regex:".+"}],blocktag:[{token:"keyword",regex:"\\. ",next:"start"},{token:"keyword",regex:"\\(",next:"blocktagproperties"}],blocktagproperties:[{token:"keyword",regex:"\\)",next:"blocktag"},{token:"string",regex:"[a-zA-Z0-9\\-_]+"},{token:"keyword",regex:"#"}]}};r.inherits(s,i),t.TextileHighlightRules=s}),ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t,n){"use strict";var r=e("../range").Range,i=function(){};(function(){this.checkOutdent=function(e,t){return/^\s+$/.test(e)?/^\s*\}/.test(t):!1},this.autoOutdent=function(e,t){var n=e.getLine(t),i=n.match(/^(\s*\})/);if(!i)return 0;var s=i[1].length,o=e.findMatchingBracket({row:t,column:s});if(!o||o.row==t)return 0;var u=this.$getIndent(e.getLine(o.row));e.replace(new r(t,0,t,s-1),u)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(i.prototype),t.MatchingBraceOutdent=i}),ace.define("ace/mode/textile",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/textile_highlight_rules","ace/mode/matching_brace_outdent"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./textile_highlight_rules").TextileHighlightRules,o=e("./matching_brace_outdent").MatchingBraceOutdent,u=function(){this.HighlightRules=s,this.$outdent=new o};r.inherits(u,i),function(){this.type="text",this.getNextLineIndent=function(e,t,n){return e=="intag"?n:""},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.$id="ace/mode/textile"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/snippets/sh.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/snippets/sh",["require","exports","module"],function(e,t,n){"use strict";t.snippetText='# Shebang. Executing bash via /usr/bin/env makes scripts more portable.\nsnippet #!\n #!/usr/bin/env bash\n \nsnippet if\n if [[ ${1:condition} ]]; then\n ${2:#statements}\n fi\nsnippet elif\n elif [[ ${1:condition} ]]; then\n ${2:#statements}\nsnippet for\n for (( ${2:i} = 0; $2 < ${1:count}; $2++ )); do\n ${3:#statements}\n done\nsnippet fori\n for ${1:needle} in ${2:haystack} ; do\n ${3:#statements}\n done\nsnippet wh\n while [[ ${1:condition} ]]; do\n ${2:#statements}\n done\nsnippet until\n until [[ ${1:condition} ]]; do\n ${2:#statements}\n done\nsnippet case\n case ${1:word} in\n ${2:pattern})\n ${3};;\n esac\nsnippet go \n while getopts \'${1:o}\' ${2:opts} \n do \n case $$2 in\n ${3:o0})\n ${4:#staments};;\n esac\n done\n# Set SCRIPT_DIR variable to directory script is located.\nsnippet sdir\n SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"\n# getopt\nsnippet getopt\n __ScriptVersion="${1:version}"\n\n #=== FUNCTION ================================================================\n # NAME: usage\n # DESCRIPTION: Display usage information.\n #===============================================================================\n function usage ()\n {\n cat <<- EOT\n\n Usage : $${0:0} [options] [--] \n\n Options: \n -h|help Display this message\n -v|version Display script version\n\n EOT\n } # ---------- end of function usage ----------\n\n #-----------------------------------------------------------------------\n # Handle command line arguments\n #-----------------------------------------------------------------------\n\n while getopts ":hv" opt\n do\n case $opt in\n\n h|help ) usage; exit 0 ;;\n\n v|version ) echo "$${0:0} -- Version $__ScriptVersion"; exit 0 ;;\n\n \\? ) echo -e "\\n Option does not exist : $OPTARG\\n"\n usage; exit 1 ;;\n\n esac # --- end of case ---\n done\n shift $(($OPTIND-1))\n\n',t.scope="sh"}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/theme-github.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/theme/github",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!1,t.cssClass="ace-github",t.cssText='.ace-github .ace_gutter {background: #e8e8e8;color: #AAA;}.ace-github {background: #fff;color: #000;}.ace-github .ace_keyword {font-weight: bold;}.ace-github .ace_string {color: #D14;}.ace-github .ace_variable.ace_class {color: teal;}.ace-github .ace_constant.ace_numeric {color: #099;}.ace-github .ace_constant.ace_buildin {color: #0086B3;}.ace-github .ace_support.ace_function {color: #0086B3;}.ace-github .ace_comment {color: #998;font-style: italic;}.ace-github .ace_variable.ace_language {color: #0086B3;}.ace-github .ace_paren {font-weight: bold;}.ace-github .ace_boolean {font-weight: bold;}.ace-github .ace_string.ace_regexp {color: #009926;font-weight: normal;}.ace-github .ace_variable.ace_instance {color: teal;}.ace-github .ace_constant.ace_language {font-weight: bold;}.ace-github .ace_cursor {color: black;}.ace-github .ace_marker-layer .ace_active-line {background: rgb(255, 255, 204);}.ace-github .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-github.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;border-radius: 2px;}.ace-github.ace_nobold .ace_line > span {font-weight: normal !important;}.ace-github .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-github .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-github .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-github .ace_gutter-active-line {background-color : rgba(0, 0, 0, 0.07);}.ace-github .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-github .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-github .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}';var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-vhdl.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/vhdl_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e="access|after|ailas|all|architecture|assert|attribute|begin|block|buffer|bus|case|component|configuration|disconnect|downto|else|elsif|end|entity|file|for|function|generate|generic|guarded|if|impure|in|inertial|inout|is|label|linkage|literal|loop|mapnew|next|of|on|open|others|out|port|process|pure|range|record|reject|report|return|select|shared|subtype|then|to|transport|type|unaffected|united|until|wait|when|while|with",t="bit|bit_vector|boolean|character|integer|line|natural|positive|real|register|severity|signal|signed|std_logic|std_logic_vector|string||text|time|unsigned|variable",n="array|constant",r="abs|and|mod|nand|nor|not|rem|rol|ror|sla|sll|srasrl|xnor|xor",i="true|false|null",s=this.createKeywordMapper({"keyword.operator":r,keyword:e,"constant.language":i,"storage.modifier":n,"storage.type":t},"identifier",!0);this.$rules={start:[{token:"comment",regex:"--.*$"},{token:"string",regex:'".*?"'},{token:"string",regex:"'.*?'"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:"keyword",regex:"\\s*(?:library|package|use)\\b"},{token:s,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"&|\\*|\\+|\\-|\\/|<|=|>|\\||=>|\\*\\*|:=|\\/=|>=|<=|<>"},{token:"punctuation.operator",regex:"\\'|\\:|\\,|\\;|\\."},{token:"paren.lparen",regex:"[[(]"},{token:"paren.rparen",regex:"[\\])]"},{token:"text",regex:"\\s+"}]}};r.inherits(s,i),t.VHDLHighlightRules=s}),ace.define("ace/mode/vhdl",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/vhdl_highlight_rules","ace/range"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./vhdl_highlight_rules").VHDLHighlightRules,o=e("../range").Range,u=function(){this.HighlightRules=s};r.inherits(u,i),function(){this.lineCommentStart="--",this.$id="ace/mode/vhdl"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/mode-toml.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/mode/toml_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text_highlight_rules").TextHighlightRules,s=function(){var e=this.createKeywordMapper({"constant.language.boolean":"true|false"},"identifier"),t="[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*\\b";this.$rules={start:[{token:"comment.toml",regex:/#.*$/},{token:"string",regex:'"(?=.)',next:"qqstring"},{token:["variable.keygroup.toml"],regex:"(?:^\\s*)(\\[([^\\]]+)\\])"},{token:e,regex:t},{token:"support.date.toml",regex:"\\d{4}-\\d{2}-\\d{2}(T)\\d{2}:\\d{2}:\\d{2}(Z)"},{token:"constant.numeric.toml",regex:"-?\\d+(\\.?\\d+)?"}],qqstring:[{token:"string",regex:"\\\\$",next:"qqstring"},{token:"constant.language.escape",regex:'\\\\[0tnr"\\\\]'},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}]}};r.inherits(s,i),t.TomlHighlightRules=s}),ace.define("ace/mode/folding/ini",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t,n){"use strict";var r=e("../../lib/oop"),i=e("../../range").Range,s=e("./fold_mode").FoldMode,o=t.FoldMode=function(){};r.inherits(o,s),function(){this.foldingStartMarker=/^\s*\[([^\])]*)]\s*(?:$|[;#])/,this.getFoldWidgetRange=function(e,t,n){var r=this.foldingStartMarker,s=e.getLine(n),o=s.match(r);if(!o)return;var u=o[1]+".",a=s.length,f=e.getLength(),l=n,c=n;while(++n<f){s=e.getLine(n);if(/^\s*$/.test(s))continue;o=s.match(r);if(o&&o[1].lastIndexOf(u,0)!==0)break;c=n}if(c>l){var h=e.getLine(c).length;return new i(l,a,c,h)}}}.call(o.prototype)}),ace.define("ace/mode/toml",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/toml_highlight_rules","ace/mode/folding/ini"],function(e,t,n){"use strict";var r=e("../lib/oop"),i=e("./text").Mode,s=e("./toml_highlight_rules").TomlHighlightRules,o=e("./folding/ini").FoldMode,u=function(){this.HighlightRules=s,this.foldingRules=new o};r.inherits(u,i),function(){this.lineCommentStart="#",this.$id="ace/mode/toml"}.call(u.prototype),t.Mode=u}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/theme-clouds.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/theme/clouds",["require","exports","module","ace/lib/dom"],function(e,t,n){t.isDark=!1,t.cssClass="ace-clouds",t.cssText='.ace-clouds .ace_gutter {background: #ebebeb;color: #333}.ace-clouds .ace_print-margin {width: 1px;background: #e8e8e8}.ace-clouds {background-color: #FFFFFF;color: #000000}.ace-clouds .ace_cursor {color: #000000}.ace-clouds .ace_marker-layer .ace_selection {background: #BDD5FC}.ace-clouds.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px #FFFFFF;border-radius: 2px}.ace-clouds .ace_marker-layer .ace_step {background: rgb(255, 255, 0)}.ace-clouds .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid #BFBFBF}.ace-clouds .ace_marker-layer .ace_active-line {background: #FFFBD1}.ace-clouds .ace_gutter-active-line {background-color : #dcdcdc}.ace-clouds .ace_marker-layer .ace_selected-word {border: 1px solid #BDD5FC}.ace-clouds .ace_invisible {color: #BFBFBF}.ace-clouds .ace_keyword,.ace-clouds .ace_meta,.ace-clouds .ace_support.ace_constant.ace_property-value {color: #AF956F}.ace-clouds .ace_keyword.ace_operator {color: #484848}.ace-clouds .ace_keyword.ace_other.ace_unit {color: #96DC5F}.ace-clouds .ace_constant.ace_language {color: #39946A}.ace-clouds .ace_constant.ace_numeric {color: #46A609}.ace-clouds .ace_constant.ace_character.ace_entity {color: #BF78CC}.ace-clouds .ace_invalid {background-color: #FF002A}.ace-clouds .ace_fold {background-color: #AF956F;border-color: #000000}.ace-clouds .ace_storage,.ace-clouds .ace_support.ace_class,.ace-clouds .ace_support.ace_function,.ace-clouds .ace_support.ace_other,.ace-clouds .ace_support.ace_type {color: #C52727}.ace-clouds .ace_string {color: #5D90CD}.ace-clouds .ace_comment {color: #BCC8BA}.ace-clouds .ace_entity.ace_name.ace_tag,.ace-clouds .ace_entity.ace_other.ace_attribute-name {color: #606060}.ace-clouds .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y}';var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}) -------------------------------------------------------------------------------- /static/js/lib/ace/src-min-noconflict/theme-eclipse.js: -------------------------------------------------------------------------------- 1 | ace.define("ace/theme/eclipse",["require","exports","module","ace/lib/dom"],function(e,t,n){"use strict";t.isDark=!1,t.cssText='.ace-eclipse .ace_gutter {background: #ebebeb;border-right: 1px solid rgb(159, 159, 159);color: rgb(136, 136, 136);}.ace-eclipse .ace_print-margin {width: 1px;background: #ebebeb;}.ace-eclipse {background-color: #FFFFFF;color: black;}.ace-eclipse .ace_fold {background-color: rgb(60, 76, 114);}.ace-eclipse .ace_cursor {color: black;}.ace-eclipse .ace_storage,.ace-eclipse .ace_keyword,.ace-eclipse .ace_variable {color: rgb(127, 0, 85);}.ace-eclipse .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-eclipse .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-eclipse .ace_function {color: rgb(60, 76, 114);}.ace-eclipse .ace_string {color: rgb(42, 0, 255);}.ace-eclipse .ace_comment {color: rgb(113, 150, 130);}.ace-eclipse .ace_comment.ace_doc {color: rgb(63, 95, 191);}.ace-eclipse .ace_comment.ace_doc.ace_tag {color: rgb(127, 159, 191);}.ace-eclipse .ace_constant.ace_numeric {color: darkblue;}.ace-eclipse .ace_tag {color: rgb(25, 118, 116);}.ace-eclipse .ace_type {color: rgb(127, 0, 127);}.ace-eclipse .ace_xml-pe {color: rgb(104, 104, 91);}.ace-eclipse .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-eclipse .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-eclipse .ace_meta.ace_tag {color:rgb(25, 118, 116);}.ace-eclipse .ace_invisible {color: #ddd;}.ace-eclipse .ace_entity.ace_other.ace_attribute-name {color:rgb(127, 0, 127);}.ace-eclipse .ace_marker-layer .ace_step {background: rgb(255, 255, 0);}.ace-eclipse .ace_active-line {background: rgb(232, 242, 254);}.ace-eclipse .ace_gutter-active-line {background-color : #DADADA;}.ace-eclipse .ace_marker-layer .ace_selected-word {border: 1px solid rgb(181, 213, 255);}.ace-eclipse .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}',t.cssClass="ace-eclipse";var r=e("../lib/dom");r.importCssString(t.cssText,t.cssClass)}) -------------------------------------------------------------------------------- /data/i18n/zh_TW/help.html: -------------------------------------------------------------------------------- 1 | <div class="box"> 2 | <div class="title"><span>文件管理</span></div> 3 | <p><i class="icon-tags"></i>檔選擇:單選,滑鼠框選,shift連選,ctrl隨意選擇,鍵盤上下左右、home、end選擇。</p> 4 | <p><i class="icon-folder-open"></i>檔操作:選擇檔後,可以進行複製,剪切,刪除,屬性查看,壓縮,重命名,打開預覽等操作……</p> 5 | <p><i class="icon-cloud-upload"></i>文件上傳:多檔批量上傳;html5拖拽上傳(拖拽到視窗實現無縫上傳,支持資料夾拖拽)</p> 6 | <p><i class="icon-cogs"></i>右鍵功能:檔右鍵,資料夾右鍵,多選後右鍵操作,桌面右鍵,樹目錄右鍵操作,右鍵功能表綁定快速鍵<br/>         7 | (全選——複製——剪切——粘貼——刪除——重命名,設置……)</p> 8 | <p><i class="icon-sitemap"></i>檔流覽:清單模式,圖示模式;按兩下進入子資料夾;位址欄操作;打開資料夾記錄逆勢操作記錄(前進後退)</p> 9 | <p><i class="icon-move"></i>支援拖拽操作:選中後拖拽,實現剪切到指定資料夾功能</p> 10 | <p><i class="icon-reply"></i>快速鍵操作:delete刪除,ctrl+A全選,ctrl+C複製,ctrl+X剪切,檔搜索(內容中搜索)</p> 11 | </div> 12 | <div class="box"> 13 | <div class="title"><span>文件預覽</span></div> 14 | <p><i class="icon-edit"></i>文件預覽:文字檔內容查看編輯保存;html,swf文件預覽,</p> 15 | <p><i class="icon-picture"></i>圖片預覽:自動生成縮略圖,圖片幻燈片播放;</p> 16 | <p><i class="icon-music"></i>音訊播放:線上播放音樂,視頻檔;支持mp3,wma,mid,aac,wav;mp4,</p> 17 | <p><i class="icon-play"></i>視頻播放:線上視頻檔播放,支援格式:flv,f4v,3gp</p> 18 | <p><i class="icon-play"></i>office:office線上預覽,支援格式:doc,docx,ppt,pptx,xls,xlsx</p> 19 | </div> 20 | <div class="box"> 21 | <div class="title"><span>快速鍵</span></div> 22 | <p><i class="icon-tags"></i>enter 打開</p> 23 | <p><i class="icon-tags"></i>ctrl+a 全選</p> 24 | <p><i class="icon-tags"></i>ctrl+c 複製選中</p> 25 | <p><i class="icon-tags"></i>ctrl+v 粘貼</p> 26 | <p><i class="icon-tags"></i>ctrl+x 剪切</p> 27 | <p><i class="icon-tags"></i>ctrl+f 目前的目錄進行搜索</p> 28 | <p><i class="icon-tags"></i>alt+n 新建文件</p> 29 | <p><i class="icon-tags"></i>alt+m 新建資料夾</p> 30 | <p><i class="icon-tags"></i>delete 刪除選中</p> 31 | <p><i class="icon-tags"></i>backspace 後退</p> 32 | <p><i class="icon-tags"></i>ctrl+backspace 前進</p> 33 | <p><i class="icon-tags"></i>f2 重命名選中(檔資料夾)</p> 34 | <p><i class="icon-tags"></i>home/end/up/down/left/right 選擇檔</p> 35 | <p><i class="icon-tags"></i>anykey 選中以按下字元首字母的檔&資料夾 自動迴圈選中</p> 36 | </div> 37 | -------------------------------------------------------------------------------- /data/i18n/zh_CN/help.html: -------------------------------------------------------------------------------- 1 | <div class="box"> 2 | <div class="title"><span>文件管理</span></div> 3 | <p><i class="icon-tags"></i>文件选择:单选,鼠标框选,shift连选,ctrl随意选择,键盘上下左右、home、end选择。</p> 4 | <p><i class="icon-folder-open"></i>文件操作:选择文件后,可以进行复制,剪切,删除,属性查看,压缩,重命名,打开预览等操作……</p> 5 | <p><i class="icon-cloud-upload"></i>文件上传:多文件批量上传;html5拖拽上传(拖拽到窗口实现无缝上传,支持文件夹拖拽)</p> 6 | <p><i class="icon-cogs"></i>右键功能:文件右键,文件夹右键,多选后右键操作,桌面右键,树目录右键操作,右键菜单绑定快捷键<br/>         7 | (全选——复制——剪切——粘贴——删除——重命名,设置……)</p> 8 | <p><i class="icon-sitemap"></i>文件浏览:列表模式,图标模式;双击进入子文件夹;地址栏操作;打开文件夹记录逆势操作记录(前进后退)</p> 9 | <p><i class="icon-move"></i>支持拖拽操作:选中后拖拽,实现剪切到指定文件夹功能</p> 10 | <p><i class="icon-reply"></i>快捷键操作:delete删除,ctrl+A全选,ctrl+C复制,ctrl+X剪切,文件搜索(内容中搜索)</p> 11 | </div> 12 | <div class="box"> 13 | <div class="title"><span>文件预览</span></div> 14 | <p><i class="icon-edit"></i>文件预览:文本文件内容查看编辑保存;html,swf文件预览,</p> 15 | <p><i class="icon-picture"></i>图片预览:自动生成缩略图,图片幻灯片播放;</p> 16 | <p><i class="icon-music"></i>音频播放:在线播放音乐,视频文件;支持mp3,wma,mid,aac,wav;mp4,</p> 17 | <p><i class="icon-play"></i>视频播放:在线视频文件播放,支持格式:flv,f4v,3gp</p> 18 | <p><i class="icon-play"></i>office:office在线预览,支持格式:doc,docx,ppt,pptx,xls,xlsx</p> 19 | </div> 20 | <div class="box"> 21 | <div class="title"><span>快捷键</span></div> 22 | <p><i class="icon-tags"></i>enter 打开</p> 23 | <p><i class="icon-tags"></i>ctrl+a 全选</p> 24 | <p><i class="icon-tags"></i>ctrl+c 复制选中</p> 25 | <p><i class="icon-tags"></i>ctrl+v 粘贴</p> 26 | <p><i class="icon-tags"></i>ctrl+x 剪切</p> 27 | <p><i class="icon-tags"></i>ctrl+f 当前目录进行搜索</p> 28 | <p><i class="icon-tags"></i>alt+n 新建文件</p> 29 | <p><i class="icon-tags"></i>alt+m 新建文件夹</p> 30 | <p><i class="icon-tags"></i>delete 删除选中</p> 31 | <p><i class="icon-tags"></i>backspace 后退</p> 32 | <p><i class="icon-tags"></i>ctrl+backspace 前进</p> 33 | <p><i class="icon-tags"></i>f2 重命名选中(文件文件夹)</p> 34 | <p><i class="icon-tags"></i>home/end/up/down/left/right 选择文件</p> 35 | <p><i class="icon-tags"></i>anykey 选中以按下字符首字母的文件&文件夹 自动循环选中</p> 36 | </div> 37 | --------------------------------------------------------------------------------