├── ChangeLog.md
├── README.md
├── app
├── api
│ └── sso.class.php
├── controller
│ ├── api.class.php
│ ├── app.class.php
│ ├── desktop.class.php
│ ├── editor.class.php
│ ├── explorer.class.php
│ ├── fav.class.php
│ ├── pluginApp.class.php
│ ├── setting.class.php
│ ├── share.class.php
│ ├── systemGroup.class.php
│ ├── systemMember.class.php
│ ├── systemRole.class.php
│ ├── user.class.php
│ ├── userShare.class.php
│ └── utils.php
├── core
│ ├── Application.class.php
│ ├── Controller.class.php
│ └── Model.class.php
├── desktop_app.php
├── function
│ ├── common.function.php
│ ├── file.function.php
│ ├── helper.function.php
│ ├── others
│ │ └── JSON.php
│ └── web.function.php
├── kod
│ ├── Downloader.class.php
│ ├── FileCache.class.php
│ ├── Hook.class.php
│ ├── I18n.class.php
│ ├── ImageThumb.class.php
│ ├── KodArchive.class.php
│ ├── Mcrypt.class.php
│ ├── PluginBase.class.php
│ ├── archiveLib
│ │ ├── bin
│ │ │ ├── 7z
│ │ │ ├── 7z.exe
│ │ │ ├── rar
│ │ │ └── rar.exe
│ │ ├── kodRarArchive.class.php
│ │ ├── kodZipArchive.class.php
│ │ ├── pclerror.lib.php
│ │ ├── pcltar.lib.php
│ │ ├── pcltrace.lib.php
│ │ └── pclzip.class.php
│ └── imageGdBMP.class.php
├── model
│ ├── ConfigModel.class .php
│ └── PluginModel.class.php
├── sdks
│ ├── MyCaptcha.class.php
│ ├── MyCaptcha_fonts
│ │ ├── font_1.png
│ │ ├── font_2.png
│ │ └── font_3.png
│ ├── QRcode.class.php
│ └── lessc.class.php
├── template
│ ├── api
│ │ └── view.html
│ ├── app
│ │ └── index.html
│ ├── common
│ │ ├── footer.html
│ │ ├── footerCommon.html
│ │ ├── header.html
│ │ ├── navbar.html
│ │ ├── navbarShare.html
│ │ └── showTips.html
│ ├── desktop
│ │ └── index.html
│ ├── editor
│ │ ├── edit.html
│ │ └── editor.html
│ ├── explorer
│ │ ├── content.html
│ │ ├── explorerWap.html
│ │ └── index.html
│ ├── pluginApp
│ │ └── index.html
│ ├── setting
│ │ └── index.html
│ ├── share
│ │ ├── edit.html
│ │ ├── editor.html
│ │ ├── explorer.html
│ │ ├── explorerWap.html
│ │ ├── file.html
│ │ └── tips.html
│ └── user
│ │ ├── install.html
│ │ ├── license.html
│ │ ├── login.html
│ │ └── loginWap.html
└── update.php
├── config
├── config.php
├── i18n
│ ├── ar
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── bg
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── bn
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── ca
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── cs
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── da
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── de
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── el
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── en
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── es
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── et
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── fa
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── fi
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── fr
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── gl
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── hi
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── hr
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── hu
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── id
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── it
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── ja
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── ko
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── lt
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── nl
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── no
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── pl
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── pt
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── ro
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── ru
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── si
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── sk
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── sl
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── sr
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── sv
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── ta
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── th
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── tr
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── uk
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── uz
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── vi
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ ├── zh-CN
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
│ └── zh-TW
│ │ ├── about.html
│ │ ├── edit.html
│ │ ├── help.html
│ │ └── main.php
├── setting.php
└── version.php
├── data
├── Group
│ └── index.html
├── User
│ └── index.html
├── session
│ └── index.html
├── system
│ ├── apps.php
│ ├── desktop_app.php
│ ├── index.html
│ ├── system_group.php
│ ├── system_member.php
│ └── system_role.php
└── temp
│ ├── index.html
│ └── thumb
│ └── index.html
├── index.php
├── plugins
├── DPlayer
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── DPlayer
│ │ ├── DPlayer.min.css
│ │ ├── DPlayer.min.js
│ │ └── lib
│ │ │ ├── dash.all.min.js
│ │ │ ├── flv.min.js
│ │ │ ├── hls.min.js
│ │ │ └── webtorrent.min.js
│ │ ├── images
│ │ └── icon.png
│ │ ├── main.js
│ │ └── page.js
├── VLCPlayer
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── images
│ │ └── icon.png
│ │ └── main.js
├── adminer
│ ├── adminer
│ │ ├── adminer.css
│ │ └── index.php
│ ├── app.php
│ ├── i18n
│ │ ├── en.php
│ │ └── zh-CN.php
│ ├── package.json
│ └── static
│ │ └── screenshot.png
├── imageExif
│ ├── app.php
│ ├── i18n
│ │ ├── en.php
│ │ └── zh-CN.php
│ ├── package.json
│ └── static
│ │ └── main.js
├── jPlayer
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── images
│ │ └── icon.png
│ │ ├── jPlayer
│ │ ├── jquery.jplayer.min.js
│ │ ├── jquery.jplayer.swf
│ │ └── kod.flat
│ │ │ ├── control.js
│ │ │ ├── images
│ │ │ ├── music-playing.gif
│ │ │ └── sound-playing.gif
│ │ │ ├── style.css
│ │ │ └── template.js
│ │ ├── main.js
│ │ └── page.js
├── officeLive
│ ├── app.php
│ ├── i18n
│ │ ├── en.php
│ │ └── zh-CN.php
│ ├── package.json
│ └── static
│ │ ├── images
│ │ └── icon.png
│ │ └── main.js
├── photoSwipe
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── PhotoSwipe
│ │ ├── default-skin
│ │ │ ├── default-skin.css
│ │ │ ├── default-skin.png
│ │ │ ├── default-skin.svg
│ │ │ └── preloader.gif
│ │ ├── photoSwipe.html
│ │ ├── photoswipe-ui-default.min.js
│ │ ├── photoswipe.css
│ │ └── photoswipe.min.js
│ │ ├── main.js
│ │ └── page.js
├── picasa
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── main.js
│ │ ├── page.js
│ │ └── picasa
│ │ ├── picasa.js
│ │ └── style
│ │ ├── Picasa_Button.gif
│ │ ├── loading.gif
│ │ └── style.css
├── simpleClock
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── main.js
│ │ ├── page.css
│ │ ├── page.html
│ │ └── page.js
├── toolsCommon
│ ├── app.php
│ ├── package.json
│ └── static
│ │ ├── file_icon
│ │ └── vue.png
│ │ ├── main.js
│ │ └── pie
│ │ ├── .pie.tif
│ │ ├── pie.css
│ │ └── pie.htc
├── webodf
│ ├── app.php
│ ├── package.json
│ ├── php
│ │ └── template.php
│ └── static
│ │ ├── images
│ │ ├── screenshot1.png
│ │ └── screenshot2.png
│ │ ├── main.js
│ │ └── webodf.js
├── yzOffice
│ ├── app.php
│ ├── i18n
│ │ ├── en.php
│ │ └── zh-CN.php
│ ├── package.json
│ ├── php
│ │ ├── assign
│ │ │ ├── footer.php
│ │ │ └── header.php
│ │ ├── template.php
│ │ └── yzOffice.class.php
│ └── static
│ │ ├── images
│ │ └── icon.png
│ │ └── main.js
└── zipView
│ ├── app.php
│ ├── lib
│ └── bin
│ │ ├── 7z_mac
│ │ └── rar_mac
│ ├── package.json
│ └── static
│ ├── images
│ └── icon.png
│ ├── main.js
│ ├── page.js
│ └── zipView.js
└── static
├── images
├── common
│ ├── banner
│ │ ├── box.png
│ │ ├── dots.png
│ │ ├── fly.png
│ │ └── line.png
│ ├── bg.gif
│ ├── buttons_40.png
│ ├── cursor
│ │ ├── add.png
│ │ ├── add_blue.png
│ │ ├── default.png
│ │ ├── down.png
│ │ └── move.png
│ ├── desktop
│ │ ├── fengche.png
│ │ ├── narrow.png
│ │ ├── start.png
│ │ ├── taskbarbg.png
│ │ └── taskbarhover.png
│ ├── dialog
│ │ ├── btn-close.png
│ │ ├── btn-max.png
│ │ ├── btn-min.png
│ │ ├── btn-reg.png
│ │ ├── dialog.png
│ │ ├── dialog_loading-.gif
│ │ ├── dialog_loading.gif
│ │ └── resize_corner.png
│ ├── drop_upload.png
│ ├── favicon.ico
│ ├── hr.png
│ ├── ico.png
│ ├── line.png
│ ├── line_x.png
│ ├── loading.gif
│ ├── loading_black.gif
│ ├── loading_circle.gif
│ ├── loading_simple.gif
│ ├── loading_tree.gif
│ ├── login.png
│ ├── menu-plus.png
│ ├── menu_icon.png
│ ├── menu_icon@2x.png
│ ├── pic.jpg
│ ├── resize.png
│ ├── tree.png
│ ├── ybutton.png
│ └── ybutton1.png
├── file_icon
│ ├── icon_app
│ │ ├── 365.png
│ │ ├── ace.png
│ │ ├── baidu.png
│ │ ├── baidudoc.png
│ │ ├── ball8.png
│ │ ├── cal.png
│ │ ├── calcu.png
│ │ ├── canvas.jpg
│ │ ├── chuangketie.png
│ │ ├── douban.png
│ │ ├── folder_music.png
│ │ ├── folder_public.png
│ │ ├── folder_user.png
│ │ ├── icloud.png
│ │ ├── internet.png
│ │ ├── iqiyi.png
│ │ ├── js.png
│ │ ├── kingdom.png
│ │ ├── kuaidi.gif
│ │ ├── map.png
│ │ ├── meitu.gif
│ │ ├── naotu.png
│ │ ├── oexe.png
│ │ ├── officeconvert.png
│ │ ├── on.png
│ │ ├── pptv.jpg
│ │ ├── ps.png
│ │ ├── qqcanvas.png
│ │ ├── shimo.png
│ │ ├── souhu.jpg
│ │ ├── text.png
│ │ ├── time.png
│ │ ├── trello.png
│ │ ├── vector.png
│ │ ├── wangyi.jpg
│ │ ├── weather.png
│ │ ├── wechart.png
│ │ ├── xiangqi.jpg
│ │ ├── xunjie.png
│ │ ├── yingyuetai.png
│ │ ├── yiqixie.png
│ │ └── youdao.jpg
│ ├── icon_file
│ │ ├── 0.file-16.png
│ │ ├── 7z.png
│ │ ├── accdb.png
│ │ ├── ai.png
│ │ ├── air.png
│ │ ├── apk.png
│ │ ├── arj.png
│ │ ├── as.png
│ │ ├── asax.png
│ │ ├── ascx.png
│ │ ├── ashx.png
│ │ ├── asm.png
│ │ ├── asmx.png
│ │ ├── aspx.png
│ │ ├── autodesk
│ │ │ ├── 3dm.png
│ │ │ ├── 3ds.png
│ │ │ ├── autodesk.png
│ │ │ ├── dae.png
│ │ │ ├── dwf.png
│ │ │ ├── dwg.png
│ │ │ ├── dxf.png
│ │ │ ├── dxf1.png
│ │ │ ├── fbx.png
│ │ │ ├── iam.png
│ │ │ ├── ifc.png
│ │ │ ├── rvt.png
│ │ │ ├── skp.png
│ │ │ ├── stl.png
│ │ │ └── vnd-dgn.png
│ │ ├── bin.png
│ │ ├── bmp.png
│ │ ├── bz2.png
│ │ ├── c.png
│ │ ├── cab.png
│ │ ├── cdr.png
│ │ ├── cer.png
│ │ ├── chm.png
│ │ ├── class.png
│ │ ├── cmd.png
│ │ ├── code.png
│ │ ├── cpp.png
│ │ ├── cs.png
│ │ ├── cshtml.png
│ │ ├── csproj.png
│ │ ├── css.png
│ │ ├── csv.png
│ │ ├── djvu.png
│ │ ├── dll.png
│ │ ├── dmg.png
│ │ ├── dng.png
│ │ ├── doc.png
│ │ ├── docm.png
│ │ ├── docx.png
│ │ ├── dot.png
│ │ ├── dotm.png
│ │ ├── dotx.png
│ │ ├── dtd.png
│ │ ├── eml.png
│ │ ├── eps.png
│ │ ├── epub.png
│ │ ├── exe.png
│ │ ├── f.png
│ │ ├── file.png
│ │ ├── fla.png
│ │ ├── font.png
│ │ ├── framework.png
│ │ ├── gif.png
│ │ ├── graph_icon.png
│ │ ├── gz.png
│ │ ├── h.png
│ │ ├── hdr.png
│ │ ├── hlp.png
│ │ ├── html.png
│ │ ├── ico.png
│ │ ├── indd.png
│ │ ├── ini.png
│ │ ├── ipa.png
│ │ ├── iso.png
│ │ ├── jar.png
│ │ ├── java.png
│ │ ├── jpg.png
│ │ ├── js.png
│ │ ├── json.png
│ │ ├── key.png
│ │ ├── ldf.png
│ │ ├── lnk.png
│ │ ├── makefile.png
│ │ ├── md.png
│ │ ├── mdb.png
│ │ ├── mdf.png
│ │ ├── mht.png
│ │ ├── mhtml.png
│ │ ├── midi.png
│ │ ├── movie
│ │ │ ├── avi.png
│ │ │ ├── flv.png
│ │ │ ├── mkv.png
│ │ │ ├── mov.png
│ │ │ ├── movie.png
│ │ │ ├── mp4.png
│ │ │ └── rmvb.png
│ │ ├── mpp.png
│ │ ├── mpt.png
│ │ ├── msg.png
│ │ ├── msi.png
│ │ ├── music.png
│ │ ├── music1.png
│ │ ├── numbers.png
│ │ ├── o.png
│ │ ├── odp.png
│ │ ├── ods.png
│ │ ├── odt.png
│ │ ├── oexe.png
│ │ ├── oexe1.png
│ │ ├── office-others.png
│ │ ├── ogg.png
│ │ ├── pages.png
│ │ ├── pdb.png
│ │ ├── pdf.png
│ │ ├── php.png
│ │ ├── php_small.png
│ │ ├── picture_error.png
│ │ ├── pkg.png
│ │ ├── pl.png
│ │ ├── png.png
│ │ ├── pot.png
│ │ ├── potx.png
│ │ ├── pps.png
│ │ ├── ppsx.png
│ │ ├── ppt.png
│ │ ├── pptx.png
│ │ ├── prproj.png
│ │ ├── ps1.png
│ │ ├── psd.png
│ │ ├── pspimage.png
│ │ ├── pst.png
│ │ ├── pub.png
│ │ ├── py.png
│ │ ├── rar.png
│ │ ├── rb.png
│ │ ├── reg.png
│ │ ├── resx.png
│ │ ├── rtf.png
│ │ ├── s.png
│ │ ├── sitx.png
│ │ ├── sln.png
│ │ ├── sql.png
│ │ ├── suo.png
│ │ ├── svg.png
│ │ ├── swf.png
│ │ ├── swift.png
│ │ ├── tar.png
│ │ ├── tga.png
│ │ ├── tgz.png
│ │ ├── txt.png
│ │ ├── txt_small.png
│ │ ├── utorrent.png
│ │ ├── vb.png
│ │ ├── vbproj.png
│ │ ├── vbs.png
│ │ ├── vcf.png
│ │ ├── vcproj.png
│ │ ├── vcxproj.png
│ │ ├── vdw.png
│ │ ├── vdx.png
│ │ ├── vsd.png
│ │ ├── vsdx.png
│ │ ├── vss.png
│ │ ├── vst.png
│ │ ├── vsx.png
│ │ ├── vtx.png
│ │ ├── xaml.png
│ │ ├── xap.png
│ │ ├── xls.png
│ │ ├── xlsb.png
│ │ ├── xlsm.png
│ │ ├── xlsx.png
│ │ ├── xlt.png
│ │ ├── xltx.png
│ │ ├── xml.png
│ │ ├── xps.png
│ │ ├── xsd.png
│ │ ├── xsl.png
│ │ ├── y.png
│ │ ├── zip.png
│ │ └── zip_all.png
│ └── icon_others
│ │ ├── appStore.png
│ │ ├── app_link.png
│ │ ├── computer.png
│ │ ├── edit.png
│ │ ├── error.png
│ │ ├── folder.png
│ │ ├── folder_alpha.png
│ │ ├── folder_mac.png
│ │ ├── folder_mac_small.png
│ │ ├── folder_public.png
│ │ ├── folder_win10.png
│ │ ├── folder_win10_small.png
│ │ ├── groupGuest.png
│ │ ├── groupRoot.png
│ │ ├── groupSelf.png
│ │ ├── groupSelfOwner.png
│ │ ├── groupSelfRoot.png
│ │ ├── info.png
│ │ ├── logout.png
│ │ ├── path_self_public.png
│ │ ├── plugins.png
│ │ ├── recycle.png
│ │ ├── recycle_full.png
│ │ ├── search.png
│ │ ├── setting.png
│ │ ├── treeFav.png
│ │ ├── upload.png
│ │ ├── user.png
│ │ └── userSelf.png
├── thumb
│ └── theme
│ │ ├── alpha_image.png
│ │ ├── alpha_image_sky.png
│ │ ├── alpha_image_sun.png
│ │ ├── diy.png
│ │ ├── mac.png
│ │ ├── metro.png
│ │ ├── metro_green.png
│ │ ├── metro_orange.png
│ │ ├── metro_pink.png
│ │ ├── metro_purple.png
│ │ ├── win10.png
│ │ └── win7.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
├── js
├── app
│ └── src
│ │ ├── api
│ │ ├── default
│ │ │ └── main.js
│ │ └── view
│ │ │ └── main.js
│ │ ├── app
│ │ └── main.js
│ │ ├── desktop
│ │ └── main.js
│ │ ├── edit
│ │ └── main.js
│ │ ├── editor
│ │ └── main.js
│ │ ├── explorer
│ │ └── main.js
│ │ ├── explorerWap
│ │ └── main.js
│ │ ├── plugins
│ │ └── main.js
│ │ ├── setting
│ │ └── main.js
│ │ ├── shareEditor
│ │ └── main.js
│ │ ├── shareExplorer
│ │ └── main.js
│ │ ├── shareIndex
│ │ └── main.js
│ │ └── user
│ │ └── main.js
└── lib
│ ├── ace
│ ├── emmet.min.js
│ ├── ext-searchboxKod.js
│ └── src-min-noconflict
│ │ ├── ace.js
│ │ ├── ext-beautify.js
│ │ ├── ext-code_lens.js
│ │ ├── ext-elastic_tabstops_lite.js
│ │ ├── ext-emmet.js
│ │ ├── ext-error_marker.js
│ │ ├── ext-keybinding_menu.js
│ │ ├── ext-language_tools.js
│ │ ├── ext-linking.js
│ │ ├── ext-modelist.js
│ │ ├── ext-options.js
│ │ ├── ext-prompt.js
│ │ ├── ext-rtl.js
│ │ ├── ext-searchbox.js
│ │ ├── ext-settings_menu.js
│ │ ├── ext-spellcheck.js
│ │ ├── ext-split.js
│ │ ├── ext-static_highlight.js
│ │ ├── ext-statusbar.js
│ │ ├── ext-textarea.js
│ │ ├── ext-themelist.js
│ │ ├── ext-whitespace.js
│ │ ├── keybinding-emacs.js
│ │ ├── keybinding-sublime.js
│ │ ├── keybinding-vim.js
│ │ ├── keybinding-vscode.js
│ │ ├── mode-abap.js
│ │ ├── mode-abc.js
│ │ ├── mode-actionscript.js
│ │ ├── mode-ada.js
│ │ ├── mode-alda.js
│ │ ├── mode-apache_conf.js
│ │ ├── mode-apex.js
│ │ ├── mode-applescript.js
│ │ ├── mode-aql.js
│ │ ├── mode-asciidoc.js
│ │ ├── mode-asl.js
│ │ ├── mode-assembly_x86.js
│ │ ├── mode-autohotkey.js
│ │ ├── mode-batchfile.js
│ │ ├── mode-c9search.js
│ │ ├── mode-c_cpp.js
│ │ ├── mode-cirru.js
│ │ ├── mode-clojure.js
│ │ ├── mode-cobol.js
│ │ ├── mode-coffee.js
│ │ ├── mode-coldfusion.js
│ │ ├── mode-crystal.js
│ │ ├── mode-csharp.js
│ │ ├── mode-csound_document.js
│ │ ├── mode-csound_orchestra.js
│ │ ├── mode-csound_score.js
│ │ ├── mode-csp.js
│ │ ├── mode-css.js
│ │ ├── mode-curly.js
│ │ ├── mode-d.js
│ │ ├── mode-dart.js
│ │ ├── mode-diff.js
│ │ ├── mode-django.js
│ │ ├── mode-dockerfile.js
│ │ ├── mode-dot.js
│ │ ├── mode-drools.js
│ │ ├── mode-edifact.js
│ │ ├── mode-eiffel.js
│ │ ├── mode-ejs.js
│ │ ├── mode-elixir.js
│ │ ├── mode-elm.js
│ │ ├── mode-erlang.js
│ │ ├── mode-forth.js
│ │ ├── mode-fortran.js
│ │ ├── mode-fsharp.js
│ │ ├── mode-fsl.js
│ │ ├── mode-ftl.js
│ │ ├── mode-gcode.js
│ │ ├── mode-gherkin.js
│ │ ├── mode-gitignore.js
│ │ ├── mode-glsl.js
│ │ ├── mode-gobstones.js
│ │ ├── mode-golang.js
│ │ ├── mode-graphqlschema.js
│ │ ├── mode-groovy.js
│ │ ├── mode-haml.js
│ │ ├── mode-handlebars.js
│ │ ├── mode-haskell.js
│ │ ├── mode-haskell_cabal.js
│ │ ├── mode-haxe.js
│ │ ├── mode-hjson.js
│ │ ├── mode-html.js
│ │ ├── mode-html_elixir.js
│ │ ├── mode-html_ruby.js
│ │ ├── mode-ini.js
│ │ ├── mode-io.js
│ │ ├── mode-jack.js
│ │ ├── mode-jade.js
│ │ ├── mode-java.js
│ │ ├── mode-javascript.js
│ │ ├── mode-json.js
│ │ ├── mode-json5.js
│ │ ├── mode-jsoniq.js
│ │ ├── mode-jsp.js
│ │ ├── mode-jssm.js
│ │ ├── mode-jsx.js
│ │ ├── mode-julia.js
│ │ ├── mode-kotlin.js
│ │ ├── mode-latex.js
│ │ ├── mode-less.js
│ │ ├── mode-liquid.js
│ │ ├── mode-lisp.js
│ │ ├── mode-livescript.js
│ │ ├── mode-logiql.js
│ │ ├── mode-logtalk.js
│ │ ├── mode-lsl.js
│ │ ├── mode-lua.js
│ │ ├── mode-luapage.js
│ │ ├── mode-lucene.js
│ │ ├── mode-makefile.js
│ │ ├── mode-markdown.js
│ │ ├── mode-mask.js
│ │ ├── mode-matlab.js
│ │ ├── mode-maze.js
│ │ ├── mode-mediawiki.js
│ │ ├── mode-mel.js
│ │ ├── mode-mixal.js
│ │ ├── mode-mushcode.js
│ │ ├── mode-mysql.js
│ │ ├── mode-nginx.js
│ │ ├── mode-nim.js
│ │ ├── mode-nix.js
│ │ ├── mode-nsis.js
│ │ ├── mode-nunjucks.js
│ │ ├── mode-objectivec.js
│ │ ├── mode-ocaml.js
│ │ ├── mode-pascal.js
│ │ ├── mode-perl.js
│ │ ├── mode-perl6.js
│ │ ├── mode-pgsql.js
│ │ ├── mode-phhp.js
│ │ ├── mode-php_laravel_blade.js
│ │ ├── mode-pig.js
│ │ ├── mode-plain_text.js
│ │ ├── mode-powershell.js
│ │ ├── mode-praat.js
│ │ ├── mode-prisma.js
│ │ ├── mode-prolog.js
│ │ ├── mode-properties.js
│ │ ├── mode-protobuf.js
│ │ ├── mode-puppet.js
│ │ ├── mode-python.js
│ │ ├── mode-qml.js
│ │ ├── mode-r.js
│ │ ├── mode-razor.js
│ │ ├── mode-rdoc.js
│ │ ├── mode-red.js
│ │ ├── mode-redshift.js
│ │ ├── mode-rhtml.js
│ │ ├── mode-rst.js
│ │ ├── mode-ruby.js
│ │ ├── mode-rust.js
│ │ ├── mode-sass.js
│ │ ├── mode-scad.js
│ │ ├── mode-scala.js
│ │ ├── mode-scheme.js
│ │ ├── mode-scss.js
│ │ ├── mode-sh.js
│ │ ├── mode-sjs.js
│ │ ├── mode-slim.js
│ │ ├── mode-smarty.js
│ │ ├── mode-snippets.js
│ │ ├── mode-soy_template.js
│ │ ├── mode-space.js
│ │ ├── mode-sparql.js
│ │ ├── mode-sql.js
│ │ ├── mode-sqlserver.js
│ │ ├── mode-stylus.js
│ │ ├── mode-svg.js
│ │ ├── mode-swift.js
│ │ ├── mode-tcl.js
│ │ ├── mode-terraform.js
│ │ ├── mode-tex.js
│ │ ├── mode-text.js
│ │ ├── mode-textile.js
│ │ ├── mode-toml.js
│ │ ├── mode-tsx.js
│ │ ├── mode-turtle.js
│ │ ├── mode-twig.js
│ │ ├── mode-typescript.js
│ │ ├── mode-vala.js
│ │ ├── mode-vbscript.js
│ │ ├── mode-velocity.js
│ │ ├── mode-verilog.js
│ │ ├── mode-vhdl.js
│ │ ├── mode-visualforce.js
│ │ ├── mode-wollok.js
│ │ ├── mode-xml.js
│ │ ├── mode-xquery.js
│ │ ├── mode-yaml.js
│ │ ├── mode-zeek.js
│ │ ├── snippets
│ │ ├── abap.js
│ │ ├── abc.js
│ │ ├── actionscript.js
│ │ ├── ada.js
│ │ ├── alda.js
│ │ ├── apache_conf.js
│ │ ├── apex.js
│ │ ├── applescript.js
│ │ ├── aql.js
│ │ ├── asciidoc.js
│ │ ├── asl.js
│ │ ├── assembly_x86.js
│ │ ├── autohotkey.js
│ │ ├── batchfile.js
│ │ ├── c9search.js
│ │ ├── c_cpp.js
│ │ ├── cirru.js
│ │ ├── clojure.js
│ │ ├── cobol.js
│ │ ├── coffee.js
│ │ ├── coldfusion.js
│ │ ├── crystal.js
│ │ ├── csharp.js
│ │ ├── csound_document.js
│ │ ├── csound_orchestra.js
│ │ ├── csound_score.js
│ │ ├── csp.js
│ │ ├── css.js
│ │ ├── curly.js
│ │ ├── d.js
│ │ ├── dart.js
│ │ ├── diff.js
│ │ ├── django.js
│ │ ├── dockerfile.js
│ │ ├── dot.js
│ │ ├── drools.js
│ │ ├── edifact.js
│ │ ├── eiffel.js
│ │ ├── ejs.js
│ │ ├── elixir.js
│ │ ├── elm.js
│ │ ├── erlang.js
│ │ ├── forth.js
│ │ ├── fortran.js
│ │ ├── fsharp.js
│ │ ├── fsl.js
│ │ ├── ftl.js
│ │ ├── gcode.js
│ │ ├── gherkin.js
│ │ ├── gitignore.js
│ │ ├── glsl.js
│ │ ├── gobstones.js
│ │ ├── golang.js
│ │ ├── graphqlschema.js
│ │ ├── groovy.js
│ │ ├── haml.js
│ │ ├── handlebars.js
│ │ ├── haskell.js
│ │ ├── haskell_cabal.js
│ │ ├── haxe.js
│ │ ├── hjson.js
│ │ ├── html.js
│ │ ├── html_elixir.js
│ │ ├── html_ruby.js
│ │ ├── ini.js
│ │ ├── io.js
│ │ ├── jack.js
│ │ ├── jade.js
│ │ ├── java.js
│ │ ├── javascript.js
│ │ ├── json.js
│ │ ├── json5.js
│ │ ├── jsoniq.js
│ │ ├── jsp.js
│ │ ├── jssm.js
│ │ ├── jsx.js
│ │ ├── julia.js
│ │ ├── kotlin.js
│ │ ├── latex.js
│ │ ├── less.js
│ │ ├── liquid.js
│ │ ├── lisp.js
│ │ ├── livescript.js
│ │ ├── logiql.js
│ │ ├── logtalk.js
│ │ ├── lsl.js
│ │ ├── lua.js
│ │ ├── luapage.js
│ │ ├── lucene.js
│ │ ├── makefile.js
│ │ ├── markdown.js
│ │ ├── mask.js
│ │ ├── matlab.js
│ │ ├── maze.js
│ │ ├── mediawiki.js
│ │ ├── mel.js
│ │ ├── mixal.js
│ │ ├── mushcode.js
│ │ ├── mysql.js
│ │ ├── nginx.js
│ │ ├── nim.js
│ │ ├── nix.js
│ │ ├── nsis.js
│ │ ├── nunjucks.js
│ │ ├── objectivec.js
│ │ ├── ocaml.js
│ │ ├── pascal.js
│ │ ├── perl.js
│ │ ├── perl6.js
│ │ ├── pgsql.js
│ │ ├── phhp.js
│ │ ├── php_laravel_blade.js
│ │ ├── pig.js
│ │ ├── plain_text.js
│ │ ├── powershell.js
│ │ ├── praat.js
│ │ ├── prisma.js
│ │ ├── prolog.js
│ │ ├── properties.js
│ │ ├── protobuf.js
│ │ ├── puppet.js
│ │ ├── python.js
│ │ ├── qml.js
│ │ ├── r.js
│ │ ├── razor.js
│ │ ├── rdoc.js
│ │ ├── red.js
│ │ ├── redshift.js
│ │ ├── rhtml.js
│ │ ├── rst.js
│ │ ├── ruby.js
│ │ ├── rust.js
│ │ ├── sass.js
│ │ ├── scad.js
│ │ ├── scala.js
│ │ ├── scheme.js
│ │ ├── scss.js
│ │ ├── sh.js
│ │ ├── sjs.js
│ │ ├── slim.js
│ │ ├── smarty.js
│ │ ├── snippets.js
│ │ ├── soy_template.js
│ │ ├── space.js
│ │ ├── sparql.js
│ │ ├── sql.js
│ │ ├── sqlserver.js
│ │ ├── stylus.js
│ │ ├── svg.js
│ │ ├── swift.js
│ │ ├── tcl.js
│ │ ├── terraform.js
│ │ ├── tex.js
│ │ ├── text.js
│ │ ├── textile.js
│ │ ├── toml.js
│ │ ├── tsx.js
│ │ ├── turtle.js
│ │ ├── twig.js
│ │ ├── typescript.js
│ │ ├── vala.js
│ │ ├── vbscript.js
│ │ ├── velocity.js
│ │ ├── verilog.js
│ │ ├── vhdl.js
│ │ ├── visualforce.js
│ │ ├── wollok.js
│ │ ├── xml.js
│ │ ├── xquery.js
│ │ ├── yaml.js
│ │ └── zeek.js
│ │ ├── theme-ambiance.js
│ │ ├── theme-chaos.js
│ │ ├── theme-chrome.js
│ │ ├── theme-clouds.js
│ │ ├── theme-clouds_midnight.js
│ │ ├── theme-cobalt.js
│ │ ├── theme-crimson_editor.js
│ │ ├── theme-dawn.js
│ │ ├── theme-dracula.js
│ │ ├── theme-dreamweaver.js
│ │ ├── theme-eclipse.js
│ │ ├── theme-github.js
│ │ ├── theme-gob.js
│ │ ├── theme-gruvbox.js
│ │ ├── theme-idle_fingers.js
│ │ ├── theme-iplastic.js
│ │ ├── theme-katzenmilch.js
│ │ ├── theme-kr_theme.js
│ │ ├── theme-kuroir.js
│ │ ├── theme-merbivore.js
│ │ ├── theme-merbivore_soft.js
│ │ ├── theme-mono_industrial.js
│ │ ├── theme-monokai.js
│ │ ├── theme-nord_dark.js
│ │ ├── theme-pastel_on_dark.js
│ │ ├── theme-solarized_dark.js
│ │ ├── theme-solarized_light.js
│ │ ├── theme-sqlserver.js
│ │ ├── theme-terminal.js
│ │ ├── theme-textmate.js
│ │ ├── theme-tomorrow.js
│ │ ├── theme-tomorrow_night.js
│ │ ├── theme-tomorrow_night_blue.js
│ │ ├── theme-tomorrow_night_bright.js
│ │ ├── theme-tomorrow_night_eighties.js
│ │ ├── theme-twilight.js
│ │ ├── theme-vibrant_ink.js
│ │ ├── theme-xcode.js
│ │ ├── worker-base.js
│ │ ├── worker-coffee.js
│ │ ├── worker-css.js
│ │ ├── worker-html.js
│ │ ├── worker-javascript.js
│ │ ├── worker-json.js
│ │ ├── worker-lua.js
│ │ ├── worker-phhp.js
│ │ ├── worker-xml.js
│ │ └── worker-xquery.js
│ ├── artDialog
│ ├── icons
│ │ ├── error.png
│ │ ├── face-sad.png
│ │ ├── face-smile.png
│ │ ├── loading.png
│ │ ├── question.png
│ │ ├── succeed.png
│ │ └── warning.png
│ └── jquery-artDialog.js
│ ├── bootstrap-slider
│ ├── bootstrap-slider.css
│ └── bootstrap-slider.js
│ ├── city-picker
│ ├── city-picker.data.js
│ ├── city-picker.js
│ ├── css
│ │ └── city-picker.css
│ └── demo.html
│ ├── code_beautify.js
│ ├── colorpicker
│ ├── css
│ │ └── colorpicker.css
│ ├── images
│ │ ├── blank.gif
│ │ ├── colorpicker_background.png
│ │ ├── colorpicker_hex.png
│ │ ├── colorpicker_hsb_b.png
│ │ ├── colorpicker_hsb_h.png
│ │ ├── colorpicker_hsb_s.png
│ │ ├── colorpicker_indic.gif
│ │ ├── colorpicker_overlay.png
│ │ ├── colorpicker_rgb_b.png
│ │ ├── colorpicker_rgb_g.png
│ │ ├── colorpicker_rgb_r.png
│ │ ├── colorpicker_select.gif
│ │ ├── colorpicker_submit.png
│ │ ├── custom_background.png
│ │ ├── custom_hex.png
│ │ ├── custom_hsb_b.png
│ │ ├── custom_hsb_h.png
│ │ ├── custom_hsb_s.png
│ │ ├── custom_indic.gif
│ │ ├── custom_rgb_b.png
│ │ ├── custom_rgb_g.png
│ │ ├── custom_rgb_r.png
│ │ ├── custom_submit.png
│ │ ├── select.png
│ │ ├── select2.png
│ │ └── slider.png
│ └── js
│ │ └── colorpicker.js
│ ├── contextMenu
│ └── jquery-contextMenu.js
│ ├── jquery-1.8.0.min.js
│ ├── jquery-lib.js
│ ├── jquery.datetimepicker
│ ├── jquery.datetimepicker.css
│ └── jquery.datetimepicker.js
│ ├── laydate
│ ├── laydate.html
│ ├── laydate.js
│ └── theme
│ │ └── default
│ │ ├── font
│ │ ├── iconfont.eot
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ └── iconfont.woff
│ │ └── laydate.css
│ ├── markdown
│ ├── highlight.min.js
│ ├── katex
│ │ ├── contrib
│ │ │ └── auto-render.min.js
│ │ ├── fonts
│ │ │ ├── KaTeX_Main-Regular.eot
│ │ │ ├── KaTeX_Main-Regular.ttf
│ │ │ ├── KaTeX_Main-Regular.woff
│ │ │ ├── KaTeX_Main-Regular.woff2
│ │ │ ├── KaTeX_Math-Italic.eot
│ │ │ ├── KaTeX_Math-Italic.ttf
│ │ │ ├── KaTeX_Math-Italic.woff
│ │ │ ├── KaTeX_Math-Italic.woff2
│ │ │ ├── KaTeX_Size1-Regular.eot
│ │ │ ├── KaTeX_Size1-Regular.ttf
│ │ │ ├── KaTeX_Size1-Regular.woff
│ │ │ ├── KaTeX_Size1-Regular.woff2
│ │ │ ├── KaTeX_Size2-Regular.eot
│ │ │ ├── KaTeX_Size2-Regular.ttf
│ │ │ ├── KaTeX_Size2-Regular.woff
│ │ │ ├── KaTeX_Size2-Regular.woff2
│ │ │ ├── KaTeX_Size3-Regular.eot
│ │ │ ├── KaTeX_Size3-Regular.ttf
│ │ │ ├── KaTeX_Size3-Regular.woff
│ │ │ ├── KaTeX_Size3-Regular.woff2
│ │ │ ├── KaTeX_Size4-Regular.eot
│ │ │ ├── KaTeX_Size4-Regular.ttf
│ │ │ ├── KaTeX_Size4-Regular.woff
│ │ │ └── KaTeX_Size4-Regular.woff2
│ │ ├── katex.min.css
│ │ └── katex.min.js
│ ├── markdown-it.min.js
│ └── mermaid
│ │ ├── mermaid.min.css
│ │ └── mermaid.min.js
│ ├── others
│ ├── fastClick.js
│ └── particles.js
│ ├── poshytip
│ ├── jquery.poshytip.js
│ └── skin.css
│ ├── purify.min.js
│ ├── seajs
│ └── sea.js
│ ├── select2
│ ├── css
│ │ └── select2.min.css
│ └── js
│ │ ├── i18n
│ │ ├── ar.js
│ │ ├── az.js
│ │ ├── bg.js
│ │ ├── ca.js
│ │ ├── cs.js
│ │ ├── da.js
│ │ ├── de.js
│ │ ├── el.js
│ │ ├── en.js
│ │ ├── es.js
│ │ ├── et.js
│ │ ├── eu.js
│ │ ├── fa.js
│ │ ├── fi.js
│ │ ├── fr.js
│ │ ├── gl.js
│ │ ├── he.js
│ │ ├── hi.js
│ │ ├── hr.js
│ │ ├── hu.js
│ │ ├── id.js
│ │ ├── is.js
│ │ ├── it.js
│ │ ├── ja.js
│ │ ├── km.js
│ │ ├── ko.js
│ │ ├── lt.js
│ │ ├── lv.js
│ │ ├── mk.js
│ │ ├── ms.js
│ │ ├── nb.js
│ │ ├── nl.js
│ │ ├── pl.js
│ │ ├── pt-BR.js
│ │ ├── pt.js
│ │ ├── ro.js
│ │ ├── ru.js
│ │ ├── sk.js
│ │ ├── sr-Cyrl.js
│ │ ├── sr.js
│ │ ├── sv.js
│ │ ├── th.js
│ │ ├── tr.js
│ │ ├── uk.js
│ │ ├── vi.js
│ │ ├── zh-CN.js
│ │ └── zh-TW.js
│ │ └── select2.full.min.js
│ ├── util.js
│ ├── webuploader
│ ├── Uploader.swf
│ ├── webuploader-min.js
│ └── webuploader.css
│ └── ztree
│ └── ztree.js
├── others
├── app
│ ├── icon
│ │ ├── icon_192.png
│ │ └── icon_512.png
│ ├── manifest.json
│ └── sw.js
├── newfile-tpl
│ ├── newfile.docx
│ ├── newfile.html
│ ├── newfile.php
│ ├── newfile.pptx
│ └── newfile.xlsx
└── sound
│ ├── drag_drop.mp3
│ ├── drag_upload.mp3
│ ├── error_tips.mp3
│ ├── file_remove.mp3
│ ├── folder_open.mp3
│ ├── recycle_clear.mp3
│ └── window_min.mp3
└── style
├── common.css
├── font-awesome
├── css
│ ├── font-awesome-ie7.css
│ └── font-awesome.css
├── demo.html
└── font
│ ├── FontAwesome.otf
│ ├── flag.png
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── font
└── sourcecodepro
│ └── SourceCodePro-Regular.otf.woff
├── login.css
├── skin
├── alpha_image.css
├── alpha_image_sky.css
├── alpha_image_sun.css
├── base
│ ├── app_code_edit.css
│ ├── app_desktop.css
│ ├── app_editor.css
│ ├── app_explorer.css
│ ├── app_setting.css
│ ├── common.css
│ └── fileIcon.css
├── diy.css
├── mac.css
├── metro.css
├── metro_green.css
├── metro_orange.css
├── metro_pink.css
├── metro_purple.css
├── win10.css
└── win7.css
└── wap
├── app_explorer.css
└── login.css
/app/controller/utils.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/controller/utils.php
--------------------------------------------------------------------------------
/app/kod/archiveLib/bin/7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/kod/archiveLib/bin/7z
--------------------------------------------------------------------------------
/app/kod/archiveLib/bin/7z.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/kod/archiveLib/bin/7z.exe
--------------------------------------------------------------------------------
/app/kod/archiveLib/bin/rar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/kod/archiveLib/bin/rar
--------------------------------------------------------------------------------
/app/kod/archiveLib/bin/rar.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/kod/archiveLib/bin/rar.exe
--------------------------------------------------------------------------------
/app/kod/archiveLib/pclerror.lib.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/kod/archiveLib/pclerror.lib.php
--------------------------------------------------------------------------------
/app/kod/archiveLib/pcltrace.lib.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/app/kod/archiveLib/pcltrace.lib.php
--------------------------------------------------------------------------------
/app/model/ConfigModel.class .php:
--------------------------------------------------------------------------------
1 | {"1":{"groupID":1,"name":"public","parentID":"","children":"","config":{"sizeMax":0,"sizeUse":0},"path":"public","createTime":""}}
--------------------------------------------------------------------------------
/data/system/system_member.php:
--------------------------------------------------------------------------------
1 | {"1":{"userID":"1","name":"admin","password":"21232f297a57a5a743894a0e4a801fc3","role":"1","config":{"sizeMax":1,"sizeUse":5369},"groupInfo":{"1":"write"},"path":"admin","status":1,"createTime":"","sizeMax":"1","lastLogin":""},"100":{"userID":"100","name":"demo","password":"fe01ce2a7fbac8fafaed7c982a04e229","role":"2","config":{"sizeMax":5,"sizeUse":1048576},"groupInfo":{"1":"write"},"path":"demo","status":1,"lastLogin":"","createTime":""},"101":{"userID":"101","name":"guest","password":"084e0343a0486ff05530df6c705c8bb4","role":"100","config":{"sizeMax":0.1,"sizeUse":1048576},"groupInfo":{"1":"read"},"path":"guest","status":1,"lastLogin":"","createTime":""}}
--------------------------------------------------------------------------------
/data/temp/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/data/temp/index.html
--------------------------------------------------------------------------------
/data/temp/thumb/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/data/temp/thumb/index.html
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 | run();
7 | ?>
8 |
--------------------------------------------------------------------------------
/plugins/DPlayer/app.php:
--------------------------------------------------------------------------------
1 | hookRegiest(array(
9 | 'user.commonJs.insert' => 'DPlayerPlugin.echoJs',
10 | ));
11 | }
12 | public function echoJs($st,$act){
13 | if($this->isFileExtence($st,$act)){
14 | $this->echoFile('static/main.js');
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/plugins/DPlayer/static/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/DPlayer/static/images/icon.png
--------------------------------------------------------------------------------
/plugins/VLCPlayer/app.php:
--------------------------------------------------------------------------------
1 | hookRegiest(array(
9 | 'user.commonJs.insert' => 'VLCPlayerPlugin.echoJs',
10 | ));
11 | }
12 | public function echoJs($st,$act){
13 | if($this->isFileExtence($st,$act)){
14 | $this->echoFile('static/main.js');
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/plugins/VLCPlayer/static/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/VLCPlayer/static/images/icon.png
--------------------------------------------------------------------------------
/plugins/adminer/adminer/index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/adminer/adminer/index.php
--------------------------------------------------------------------------------
/plugins/adminer/i18n/en.php:
--------------------------------------------------------------------------------
1 | "Database management",
4 | 'Adminer.meta.desc' => " Database management in a single PHP file.
support:MySQL, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB, Firebird"
5 | );
--------------------------------------------------------------------------------
/plugins/adminer/i18n/zh-CN.php:
--------------------------------------------------------------------------------
1 | "数据库管理工具",
5 | 'Adminer.meta.desc' => "Adminer 是一款全功能的数据库管理工具,类似phpMyAdmin,相比而言更轻量强大。
支持管理的数据库:MySQL, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB, Firebird
由于安全要求比较高,此插件仅限管理员可以使用"
6 | );
--------------------------------------------------------------------------------
/plugins/adminer/static/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/adminer/static/screenshot.png
--------------------------------------------------------------------------------
/plugins/imageExif/i18n/en.php:
--------------------------------------------------------------------------------
1 | 'Image EXIF',
4 | 'imageExif.meta.title' => 'Image EXIF Get',
5 | 'imageExif.meta.desc' => 'Picture EXIF access; camera phone to take pictures automatically correct direction',
6 | 'imageExif.Config.missLib' => "Lack php exif extensions, try again after installation"
7 | );
--------------------------------------------------------------------------------
/plugins/imageExif/i18n/zh-CN.php:
--------------------------------------------------------------------------------
1 | '图片EXIF',
4 | 'imageExif.meta.title' => '图片EXIF获取',
5 | 'imageExif.meta.desc' => '图片EXIF获取;手机拍摄图片方向自动校正',
6 | 'imageExif.Config.missLib' => "缺少php扩展exif,请安装后再试",
7 | );
--------------------------------------------------------------------------------
/plugins/jPlayer/app.php:
--------------------------------------------------------------------------------
1 | hookRegiest(array(
9 | 'user.commonJs.insert' => 'jPlayerPlugin.echoJs',
10 | ));
11 | }
12 | public function echoJs($st,$act){
13 | if($this->isFileExtence($st,$act)){
14 | $this->echoFile('static/main.js');
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/plugins/jPlayer/static/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/jPlayer/static/images/icon.png
--------------------------------------------------------------------------------
/plugins/jPlayer/static/jPlayer/jquery.jplayer.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/jPlayer/static/jPlayer/jquery.jplayer.swf
--------------------------------------------------------------------------------
/plugins/jPlayer/static/jPlayer/kod.flat/images/music-playing.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/jPlayer/static/jPlayer/kod.flat/images/music-playing.gif
--------------------------------------------------------------------------------
/plugins/jPlayer/static/jPlayer/kod.flat/images/sound-playing.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/jPlayer/static/jPlayer/kod.flat/images/sound-playing.gif
--------------------------------------------------------------------------------
/plugins/officeLive/static/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/officeLive/static/images/icon.png
--------------------------------------------------------------------------------
/plugins/officeLive/static/main.js:
--------------------------------------------------------------------------------
1 | kodReady.push(function(){
2 | kodApp.add({
3 | name:"officeLive",
4 | title:"{{LNG.officeLive.meta.name}}",
5 | icon:'{{pluginHost}}static/images/icon.png',
6 | ext:"{{config.fileExt}}",
7 | sort:"{{config.fileSort}}",
8 | callback:function(path,ext){
9 | var url = '{{pluginApi}}&path='+core.pathCommon(path);
10 | if('window' == "{{config.openWith}}" && !core.isFileView() ){
11 | window.open(url);
12 | }else{
13 | core.openDialog(url,core.icon(ext),htmlEncode(core.pathThis(path)));
14 | }
15 | }
16 | });
17 | });
18 |
--------------------------------------------------------------------------------
/plugins/photoSwipe/app.php:
--------------------------------------------------------------------------------
1 | hookRegiest(array(
9 | 'user.commonJs.insert' => 'photoSwipePlugin.echoJs',
10 | ));
11 | }
12 | public function echoJs($st,$act){
13 | if($this->isFileExtence($st,$act)){
14 | $this->echoFile('static/main.js');
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/plugins/photoSwipe/static/PhotoSwipe/default-skin/default-skin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/photoSwipe/static/PhotoSwipe/default-skin/default-skin.png
--------------------------------------------------------------------------------
/plugins/photoSwipe/static/PhotoSwipe/default-skin/preloader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/photoSwipe/static/PhotoSwipe/default-skin/preloader.gif
--------------------------------------------------------------------------------
/plugins/picasa/app.php:
--------------------------------------------------------------------------------
1 | hookRegiest(array(
9 | 'user.commonJs.insert' => 'picasaPlugin.echoJs',
10 | ));
11 | }
12 | public function echoJs($st,$act){
13 | if($this->isFileExtence($st,$act)){
14 | $this->echoFile('static/main.js');
15 | }
16 | }
17 | }
--------------------------------------------------------------------------------
/plugins/picasa/static/main.js:
--------------------------------------------------------------------------------
1 | kodReady.push(function(){
2 | kodApp.add({
3 | name:"picasa",
4 | title:"{{LNG.Plugin.default.picasa}}",
5 | ext:"{{config.fileExt}}",
6 | sort:"{{config.fileSort}}",
7 | icon:"x-item-file x-png",
8 | callback:function(imagePath,ext){
9 | var appStatic = "{{pluginHost}}static/";
10 | require.async(appStatic+'page.js',function(app){
11 | app(imagePath,appStatic)
12 | });
13 | }
14 | });
15 | });
16 |
--------------------------------------------------------------------------------
/plugins/picasa/static/picasa/style/Picasa_Button.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/picasa/static/picasa/style/Picasa_Button.gif
--------------------------------------------------------------------------------
/plugins/picasa/static/picasa/style/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/picasa/static/picasa/style/loading.gif
--------------------------------------------------------------------------------
/plugins/simpleClock/app.php:
--------------------------------------------------------------------------------
1 | hookRegiest(array(
12 | 'user.commonJs.insert' => 'simpleClockPlugin.echoJs'
13 | ));
14 | }
15 | public function echoJs($st,$act){
16 | $this->echoFile('static/main.js');
17 | }
18 | public function index(){
19 | include($this->pluginPath.'static/page.html');
20 | }
21 | }
--------------------------------------------------------------------------------
/plugins/simpleClock/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "id":"simpleClock",
3 | "name":"clock",
4 | "title":"时钟 clock",
5 | "version":"1.1",
6 | "source":{
7 | "className":"font-icon icon-time bg-blue-6"
8 | },
9 | "description":"桌面时钟挂件(desktop widget)",
10 | "auther":{
11 | "copyright":"kodcloud.",
12 | "homePage":"http://www.kodcloud.com",
13 | },
14 | "configItem":{
15 | "pluginAuth":{
16 | "type":"userSelect",
17 | "value":"all:1",
18 | "display":"{{LNG.Plugin.config.auth}}",
19 | "desc":"{{LNG.Plugin.config.authDesc}}",
20 | "require":1
21 | }
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/plugins/simpleClock/static/main.js:
--------------------------------------------------------------------------------
1 | kodReady.push(function(){
2 | if(!$.supportCss3() || isWap()){//ie8 ie9
3 | return;
4 | }
5 | if(lodash.get(window,'Config.pageApp') != 'desktop'){
6 | return;
7 | }
8 | //加载时钟挂件
9 | $.artDialog.open("{{pluginApi}}",{
10 | title:"clock",
11 | top: 40,
12 | left:$(window).width() - 210,
13 | width:'200px',
14 | height:'200px',
15 | simple:true
16 | });
17 | });
--------------------------------------------------------------------------------
/plugins/toolsCommon/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "id":"toolsCommon",
3 | "name":"toolsCommon",
4 | "title":"toos setting",
5 | "version":"1.1",
6 | "hidden":1,
7 | "source":{
8 | "className":"x-item-file x-ini"
9 | },
10 | "description":"some configs",
11 | "auther":{
12 | "copyright":"kodcloud.",
13 | "homePage":"http://www.kodcloud.com",
14 | },
15 | "configItem":{
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/plugins/toolsCommon/static/file_icon/vue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/toolsCommon/static/file_icon/vue.png
--------------------------------------------------------------------------------
/plugins/toolsCommon/static/pie/.pie.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/toolsCommon/static/pie/.pie.tif
--------------------------------------------------------------------------------
/plugins/webodf/static/images/screenshot1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/webodf/static/images/screenshot1.png
--------------------------------------------------------------------------------
/plugins/webodf/static/images/screenshot2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/kalcaddle/KodExplorer/5cf233f7556b442100cf67b5e92d57ceabb126c6/plugins/webodf/static/images/screenshot2.png
--------------------------------------------------------------------------------
/plugins/webodf/static/main.js:
--------------------------------------------------------------------------------
1 | kodReady.push(function(){
2 | if( !$.supportCanvas() ){
3 | return;
4 | }
5 | kodApp.add({
6 | name:"webodfView",
7 | title:"Opendocument Viewer",
8 | ext:"{{config.fileExt}}",
9 | sort:"{{config.fileSort}}",
10 | icon:'x-item-file x-odt',
11 | callback:function(path,ext){
12 | var url = '{{pluginApi}}&path='+core.pathCommon(path)+'#locale='+G.lang;
13 | if('window' == "{{config.openWith}}" && !core.isFileView() ){
14 | window.open(url);
15 | }else{
16 | core.openDialog(url,core.icon(ext),htmlEncode(core.pathThis(path)));
17 | }
18 | }
19 | });
20 | });
--------------------------------------------------------------------------------
/plugins/yzOffice/php/assign/footer.php:
--------------------------------------------------------------------------------
1 |
16 |