实例介绍
thinkphp后台管理系统,登录及权限管理框架。配有MYSQL脚本文件。华丽的模板。
【实例截图】
【核心代码】
b72fd78a-485a-4b1e-97c2-cb750a544679
└── itrm
├── Common
│ └── common.php
├── Conf
│ ├── config.php
│ └── taglibs.php
├── index.php
├── itrm.sql
├── jquery-1.6.1.min.js
├── Lang
│ └── zh-cn
│ └── user.php
├── Lib
│ ├── Action
│ │ ├── CommonAction.class.php
│ │ ├── FormAction.class.php
│ │ ├── GroupAction.class.php
│ │ ├── IndexAction.class.php
│ │ ├── NodeAction.class.php
│ │ ├── PublicAction.class.php
│ │ ├── RoleAction.class.php
│ │ └── UserAction.class.php
│ ├── Model
│ │ ├── CommonModel.class.php
│ │ ├── FormModel.class.php
│ │ ├── GroupModel.class.php
│ │ ├── NodeModel.class.php
│ │ ├── RoleModel.class.php
│ │ └── UserModel.class.php
│ ├── ORG
│ │ ├── Image.class.php
│ │ ├── Page.class.php
│ │ ├── RBAC.class.php
│ │ └── String.class.php
│ └── TagLib
│ ├── TagLibHtml.class.php
│ └── Tags
│ └── html.xml
├── Runtime
│ ├── Cache
│ │ ├── 0573c70d8602d961e53f714ea77bd87c.php
│ │ ├── 8466ecdcf08090cdb30a5c42b78611a8.php
│ │ └── f9eeff4422105e7b51c19b222bec7bbf.php
│ ├── Logs
│ │ └── 11_11_21.log
│ └── ~runtime.php
├── test.html
├── ThinkPHP
│ ├── Common
│ │ ├── alias.php
│ │ ├── compat.php
│ │ ├── convention.php
│ │ ├── core.php
│ │ ├── debug.php
│ │ ├── defines.php
│ │ ├── extend.php
│ │ ├── functions.php
│ │ ├── paths.php
│ │ └── runtime.php
│ ├── Lang
│ │ └── zh-cn.php
│ ├── Lib
│ │ ├── ORG
│ │ │ ├── Crypt
│ │ │ │ ├── Base64.class.php
│ │ │ │ ├── Crypt.class.php
│ │ │ │ ├── Des.class.php
│ │ │ │ ├── Hmac.class.php
│ │ │ │ ├── Rsa.class.php
│ │ │ │ └── Xxtea.class.php
│ │ │ ├── Io
│ │ │ │ └── Dir.class.php
│ │ │ ├── Net
│ │ │ │ ├── Http.class.php
│ │ │ │ ├── IpLocation.class.php
│ │ │ │ └── UploadFile.class.php
│ │ │ └── Util
│ │ │ ├── ArrayList.class.php
│ │ │ ├── CodeSwitch.class.php
│ │ │ ├── Date.class.php
│ │ │ ├── HashMap.class.php
│ │ │ ├── Image.class.php
│ │ │ ├── Input.class.php
│ │ │ ├── Page.class.php
│ │ │ ├── RBAC.class.php
│ │ │ ├── Socket.class.php
│ │ │ ├── Stack.class.php
│ │ │ └── String.class.php
│ │ └── Think
│ │ ├── Core
│ │ │ ├── Action.class.php
│ │ │ ├── App.class.php
│ │ │ ├── Log.class.php
│ │ │ ├── Model
│ │ │ │ ├── AdvModel.class.php
│ │ │ │ ├── RelationModel.class.php
│ │ │ │ └── ViewModel.class.php
│ │ │ ├── Model.class.php
│ │ │ ├── Think.class.php
│ │ │ └── View.class.php
│ │ ├── Db
│ │ │ ├── Db.class.php
│ │ │ └── Driver
│ │ │ ├── DbIbase.class.php
│ │ │ ├── DbMssql.class.php
│ │ │ ├── DbMysql.class.php
│ │ │ ├── DbMysqli.class.php
│ │ │ ├── DbOracle.class.php
│ │ │ ├── DbPdo.class.php
│ │ │ ├── DbPgsql.class.php
│ │ │ └── DbSqlite.class.php
│ │ ├── Exception
│ │ │ └── ThinkException.class.php
│ │ ├── Template
│ │ │ ├── TagLib
│ │ │ │ ├── TagLibCx.class.php
│ │ │ │ └── TagLibHtml.class.php
│ │ │ ├── TagLib.class.php
│ │ │ └── ThinkTemplate.class.php
│ │ └── Util
│ │ ├── Behavior.class.php
│ │ ├── Cache
│ │ │ ├── CacheApachenote.class.php
│ │ │ ├── CacheApc.class.php
│ │ │ ├── CacheDb.class.php
│ │ │ ├── CacheEaccelerator.class.php
│ │ │ ├── CacheFile.class.php
│ │ │ ├── CacheMemcache.class.php
│ │ │ ├── CacheShmop.class.php
│ │ │ ├── CacheSqlite.class.php
│ │ │ └── CacheXcache.class.php
│ │ ├── Cache.class.php
│ │ ├── Cookie.class.php
│ │ ├── Debug.class.php
│ │ ├── Dispatcher.class.php
│ │ ├── HtmlCache.class.php
│ │ ├── Session.class.php
│ │ ├── Template
│ │ │ ├── TemplateEase.class.php
│ │ │ ├── TemplateLite.class.php
│ │ │ ├── TemplateSmart.class.php
│ │ │ ├── TemplateSmarty.class.php
│ │ │ └── TemplateThink.class.php
│ │ └── Widget.class.php
│ ├── LICENSE.txt
│ ├── Mode
│ │ ├── Amf
│ │ │ ├── Action.class.php
│ │ │ ├── alias.php
│ │ │ ├── App.class.php
│ │ │ ├── Db.class.php
│ │ │ ├── Model.class.php
│ │ │ └── Think.class.php
│ │ ├── amf.php
│ │ ├── Cli
│ │ │ ├── Action.class.php
│ │ │ ├── alias.php
│ │ │ └── App.class.php
│ │ ├── cli.php
│ │ ├── Lite
│ │ │ ├── Action.class.php
│ │ │ ├── alias.php
│ │ │ ├── App.class.php
│ │ │ ├── Db.class.php
│ │ │ ├── Dispatcher.class.php
│ │ │ ├── Model.class.php
│ │ │ ├── ThinkTemplateCompiler.class.php
│ │ │ └── ThinkTemplateLite.class.php
│ │ ├── lite.php
│ │ ├── Phprpc
│ │ │ ├── Action.class.php
│ │ │ ├── alias.php
│ │ │ ├── App.class.php
│ │ │ ├── Db.class.php
│ │ │ └── Model.class.php
│ │ ├── phprpc.php
│ │ ├── Thin
│ │ │ ├── Action.class.php
│ │ │ ├── alias.php
│ │ │ ├── App.class.php
│ │ │ ├── Db.class.php
│ │ │ └── Model.class.php
│ │ └── thin.php
│ ├── ThinkPHP.php
│ ├── Tpl
│ │ ├── Autoindex
│ │ │ ├── hello.html
│ │ │ └── pointer.php
│ │ ├── AutoIndex.tpl.php
│ │ ├── BuildModeIndex.tpl.php
│ │ ├── DefaultIndex.tpl.php
│ │ ├── PageTrace.tpl.php
│ │ ├── ThinkCheckIndex.tpl.php
│ │ └── ThinkException.tpl.php
│ └── Vendor
│ ├── EaseTemplate
│ │ ├── template.core.php
│ │ └── template.ease.php
│ ├── phpRPC
│ │ ├── bigint.php
│ │ ├── compat.php
│ │ ├── dhparams
│ │ │ ├── 1024.dhp
│ │ │ ├── 128.dhp
│ │ │ ├── 1536.dhp
│ │ │ ├── 160.dhp
│ │ │ ├── 192.dhp
│ │ │ ├── 2048.dhp
│ │ │ ├── 256.dhp
│ │ │ ├── 3072.dhp
│ │ │ ├── 4096.dhp
│ │ │ ├── 512.dhp
│ │ │ ├── 768.dhp
│ │ │ └── 96.dhp
│ │ ├── dhparams.php
│ │ ├── pecl
│ │ │ └── xxtea
│ │ │ ├── bin
│ │ │ │ └── php5.2.9-1
│ │ │ │ └── win32
│ │ │ │ └── php_xxtea.dll
│ │ │ ├── config.m4
│ │ │ ├── config.w32
│ │ │ ├── CREDITS
│ │ │ ├── INSTALL
│ │ │ ├── LICENSE
│ │ │ ├── php_xxtea.c
│ │ │ ├── php_xxtea.dsp
│ │ │ ├── php_xxtea.h
│ │ │ ├── php_xxtea.sln
│ │ │ ├── php_xxtea.vcproj
│ │ │ ├── README
│ │ │ ├── test
│ │ │ │ └── test.php
│ │ │ ├── xxtea.c
│ │ │ └── xxtea.h
│ │ ├── phprpc_client.php
│ │ ├── phprpc_date.php
│ │ ├── phprpc_server.php
│ │ └── xxtea.php
│ ├── SmartTemplate
│ │ ├── class.smarttemplatedebugger.php
│ │ ├── class.smarttemplateparser.php
│ │ └── class.smarttemplate.php
│ ├── Smarty
│ │ ├── Config_File.class.php
│ │ ├── debug.tpl
│ │ ├── internals
│ │ │ ├── core.assemble_plugin_filepath.php
│ │ │ ├── core.assign_smarty_interface.php
│ │ │ ├── core.create_dir_structure.php
│ │ │ ├── core.display_debug_console.php
│ │ │ ├── core.get_include_path.php
│ │ │ ├── core.get_microtime.php
│ │ │ ├── core.get_php_resource.php
│ │ │ ├── core.is_secure.php
│ │ │ ├── core.is_trusted.php
│ │ │ ├── core.load_plugins.php
│ │ │ ├── core.load_resource_plugin.php
│ │ │ ├── core.process_cached_inserts.php
│ │ │ ├── core.process_compiled_include.php
│ │ │ ├── core.read_cache_file.php
│ │ │ ├── core.rm_auto.php
│ │ │ ├── core.rmdir.php
│ │ │ ├── core.run_insert_handler.php
│ │ │ ├── core.smarty_include_php.php
│ │ │ ├── core.write_cache_file.php
│ │ │ ├── core.write_compiled_include.php
│ │ │ ├── core.write_compiled_resource.php
│ │ │ └── core.write_file.php
│ │ ├── Smarty.class.php
│ │ └── Smarty_Compiler.class.php
│ ├── TemplateLite
│ │ ├── class.compiler.php
│ │ ├── class.config.php
│ │ ├── class.template.php
│ │ └── internal
│ │ ├── compile.compile_config.php
│ │ ├── compile.compile_custom_block.php
│ │ ├── compile.compile_custom_function.php
│ │ ├── compile.compile_if.php
│ │ ├── compile.generate_compiler_debug_output.php
│ │ ├── compile.include.php
│ │ ├── compile.parse_is_expr.php
│ │ ├── compile.section_start.php
│ │ ├── debug.tpl
│ │ ├── template.build_dir.php
│ │ ├── template.config_loader.php
│ │ ├── template.destroy_dir.php
│ │ ├── template.fetch_compile_include.php
│ │ └── template.generate_debug_output.php
│ └── Zend
│ ├── Amf
│ │ ├── Adobe
│ │ │ ├── Auth.php
│ │ │ ├── DbInspector.php
│ │ │ └── Introspector.php
│ │ ├── Auth
│ │ │ └── Abstract.php
│ │ ├── Constants.php
│ │ ├── Exception.php
│ │ ├── Parse
│ │ │ ├── Amf0
│ │ │ │ ├── Deserializer.php
│ │ │ │ └── Serializer.php
│ │ │ ├── Amf3
│ │ │ │ ├── Deserializer.php
│ │ │ │ └── Serializer.php
│ │ │ ├── Deserializer.php
│ │ │ ├── InputStream.php
│ │ │ ├── OutputStream.php
│ │ │ ├── Resource
│ │ │ │ ├── MysqliResult.php
│ │ │ │ ├── MysqlResult.php
│ │ │ │ └── Stream.php
│ │ │ ├── Serializer.php
│ │ │ └── TypeLoader.php
│ │ ├── Request
│ │ │ └── Http.php
│ │ ├── Request.php
│ │ ├── Response
│ │ │ └── Http.php
│ │ ├── Response.php
│ │ ├── Server
│ │ │ └── Exception.php
│ │ ├── Server.php
│ │ ├── Util
│ │ │ └── BinaryStream.php
│ │ └── Value
│ │ ├── ByteArray.php
│ │ ├── MessageBody.php
│ │ ├── MessageHeader.php
│ │ ├── Messaging
│ │ │ ├── AbstractMessage.php
│ │ │ ├── AcknowledgeMessage.php
│ │ │ ├── ArrayCollection.php
│ │ │ ├── AsyncMessage.php
│ │ │ ├── CommandMessage.php
│ │ │ ├── ErrorMessage.php
│ │ │ └── RemotingMessage.php
│ │ └── TraitsInfo.php
│ ├── Auth.php
│ ├── Date
│ │ ├── Cities.php
│ │ ├── DateObject.php
│ │ └── Exception.php
│ ├── Date.php
│ ├── Exception.php
│ ├── Loader
│ │ ├── Autoloader
│ │ │ ├── Interface.php
│ │ │ └── Resource.php
│ │ ├── Autoloader.php
│ │ ├── Exception.php
│ │ ├── PluginLoader
│ │ │ ├── Exception.php
│ │ │ └── Interface.php
│ │ └── PluginLoader.php
│ ├── Loader.php
│ ├── Server
│ │ ├── Abstract.php
│ │ ├── Cache.php
│ │ ├── Definition.php
│ │ ├── Exception.php
│ │ ├── Interface.php
│ │ ├── Method
│ │ │ ├── Callback.php
│ │ │ ├── Definition.php
│ │ │ ├── Parameter.php
│ │ │ └── Prototype.php
│ │ ├── Reflection
│ │ │ ├── Class.php
│ │ │ ├── Exception.php
│ │ │ ├── Function
│ │ │ │ └── Abstract.php
│ │ │ ├── Function.php
│ │ │ ├── Method.php
│ │ │ ├── Node.php
│ │ │ ├── Parameter.php
│ │ │ ├── Prototype.php
│ │ │ └── ReturnValue.php
│ │ └── Reflection.php
│ └── Version.php
└── Tpl
└── default
├── Form
│ ├── add.html
│ ├── edit.html
│ └── index.html
├── Group
│ ├── add.html
│ ├── edit.html
│ ├── index.html
│ └── sort.html
├── Index
│ ├── index0.html
│ └── index.html
├── Node
│ ├── add.html
│ ├── edit.html
│ ├── group.html
│ ├── index.html
│ ├── sort.html
│ └── treeSelect.html
├── Public
│ ├── bak
│ │ ├── error1.html
│ │ └── success0.html
│ ├── Css
│ │ └── bak
│ │ ├── blue.css
│ │ ├── common.css
│ │ ├── image1.gif
│ │ ├── image2.gif
│ │ ├── meneame.jpg
│ │ ├── myPage.css
│ │ ├── screen.css
│ │ └── style.css
│ ├── drag.html
│ ├── eeeeeeeeeeeee.html
│ ├── footer.html
│ ├── header.html
│ ├── Images
│ │ ├── admin
│ │ │ ├── admin_icon.png
│ │ │ ├── admin_logo0.png
│ │ │ ├── admin_logo.png
│ │ │ ├── admin_menubar.png
│ │ │ ├── adminright.png
│ │ │ ├── admin_style.css
│ │ │ ├── adv_nav_bg.png
│ │ │ ├── bianicion.gif
│ │ │ ├── commerce-check.png
│ │ │ ├── fullscreen.css
│ │ │ ├── fullscreenempty.css
│ │ │ ├── index_icon.png
│ │ │ ├── layout83
│ │ │ │ ├── bgB.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── down.png
│ │ │ │ ├── fullscreen.css
│ │ │ │ ├── fullscreenempty.css
│ │ │ │ ├── linkHome.png
│ │ │ │ ├── menu_expand.png
│ │ │ │ ├── menu_next.png
│ │ │ │ ├── menu_off.png
│ │ │ │ ├── menu_on.png
│ │ │ │ ├── navA.png
│ │ │ │ ├── options_ico.png
│ │ │ │ ├── options.png
│ │ │ │ ├── page.png
│ │ │ │ ├── pw_reset.css
│ │ │ │ ├── search.png
│ │ │ │ └── style.css
│ │ │ ├── lightbulb.png
│ │ │ ├── menu_icon.png
│ │ │ ├── pages.png
│ │ │ ├── pw_pushA.gif
│ │ │ ├── pw_pushB.gif
│ │ │ ├── style.css
│ │ │ ├── tuisongcode.gif
│ │ │ ├── warnning.png
│ │ │ ├── wordsfb
│ │ │ │ ├── conScan.png
│ │ │ │ ├── scan.png
│ │ │ │ ├── stopScan.png
│ │ │ │ └── word_state.png
│ │ │ ├── xiangdao
│ │ │ │ ├── bg.png
│ │ │ │ ├── bgspet.png
│ │ │ │ ├── cion.png
│ │ │ │ ├── close.png
│ │ │ │ └── xiangdao.css
│ │ │ ├── ystaticon.gif
│ │ │ ├── ystats.swf
│ │ │ └── yunbeta.png
│ │ ├── bak
│ │ │ ├── 1
│ │ │ │ ├── bgcolor1.gif
│ │ │ │ ├── bgline.gif
│ │ │ │ └── corner.gif
│ │ │ ├── activity.gif
│ │ │ ├── ajaxloading.gif
│ │ │ ├── allow.gif
│ │ │ ├── arrow.gif
│ │ │ ├── arrow_left.gif
│ │ │ ├── arrow_right.gif
│ │ │ ├── asc.gif
│ │ │ ├── bar_close.gif
│ │ │ ├── bar_open.gif
│ │ │ ├── b_drop.png
│ │ │ ├── b_edit.png
│ │ │ ├── bgcolor1.gif
│ │ │ ├── bgcolor.gif
│ │ │ ├── bggrey.gif
│ │ │ ├── bg_header.gif
│ │ │ ├── bg_home_content.gif
│ │ │ ├── bg-home-tile.jpg
│ │ │ ├── bg-interior-tile-drk.jpg
│ │ │ ├── bgline.gif
│ │ │ ├── bg_menu2.gif
│ │ │ ├── bg_menu.gif
│ │ │ ├── bg_primaryNav_left.gif
│ │ │ ├── bg_primaryNav_right.gif
│ │ │ ├── bg_secondaryNav_left.gif
│ │ │ ├── bg_secondaryNav_right.gif
│ │ │ ├── bg_subtleGrayGrad.gif
│ │ │ ├── big5.gif
│ │ │ ├── blank.png
│ │ │ ├── blog_ishidden.gif
│ │ │ ├── bntfnt_bg.jpg
│ │ │ ├── body_bg.gif
│ │ │ ├── brand.gif
│ │ │ ├── btn_grayGrad.jpg
│ │ │ ├── checked_out.png
│ │ │ ├── checkin.gif
│ │ │ ├── clear.gif
│ │ │ ├── copy.gif
│ │ │ ├── delall2.gif
│ │ │ ├── delall.gif
│ │ │ ├── del.gif
│ │ │ ├── desc.gif
│ │ │ ├── dir.gif
│ │ │ ├── disabled.png
│ │ │ ├── dot.gif
│ │ │ ├── downarrow0.png
│ │ │ ├── downarrow-1.png
│ │ │ ├── downarrow.png
│ │ │ ├── down.gif
│ │ │ ├── download.gif
│ │ │ ├── emot
│ │ │ │ ├── 11Z01592510140F.gif
│ │ │ │ ├── 11Z01592b0462G.gif
│ │ │ │ ├── 11Z01592CZ261W.gif
│ │ │ │ ├── 11Z01592P5033231.gif
│ │ │ │ ├── 11Z015931E05Yb.gif
│ │ │ │ ├── 11Z015933360E022.gif
│ │ │ │ ├── 11Z01593S50L011.gif
│ │ │ │ ├── 11Z015940020Q531.gif
│ │ │ │ ├── 11Z01594461096150.gif
│ │ │ │ ├── 11Z015946230102302.gif
│ │ │ │ ├── 11Z01594955012E43.gif
│ │ │ │ ├── 11Z01594NF112431.gif
│ │ │ │ ├── 11Z0159540131053.gif
│ │ │ │ ├── 11Z01595X6014T61.gif
│ │ │ │ ├── 11Z015960420152Q7.gif
│ │ │ │ ├── 11Z0159619601B955.gif
│ │ │ │ ├── 11Z0159B5501OL4.gif
│ │ │ │ ├── 11Z0159D1F1V607.gif
│ │ │ │ ├── 11Z0159EI01935V.gif
│ │ │ │ ├── 11Z015a1C02031K.gif
│ │ │ │ ├── 11Z015a3210219524.gif
│ │ │ │ ├── 11Z015a4H022Y35.gif
│ │ │ │ ├── 11Z015a593023cK.gif
│ │ │ │ ├── 11Z015aK024R07.gif
│ │ │ │ ├── 11Z015aYP255c3.gif
│ │ │ │ ├── 11Z015b05102E337.gif
│ │ │ │ ├── 11Z015b23Z2KG3.gif
│ │ │ │ ├── 11Z015b39302W014.gif
│ │ │ │ ├── 11Z015b54F292A8.gif
│ │ │ │ ├── 11Z015bEZ30Jc.gif
│ │ │ │ ├── 11Z015c12103140A.gif
│ │ │ │ ├── 11Z015c2Q0324F7.gif
│ │ │ │ ├── 11Z015c4460332619.gif
│ │ │ │ ├── 11Z015c6210349110.gif
│ │ │ │ ├── 11Z015cO60351Z4.gif
│ │ │ │ ├── 11Z0160025303621E.gif
│ │ │ │ ├── 11Z016003W03G4A.gif
│ │ │ │ ├── 11Z016005203Y244.gif
│ │ │ │ ├── 11Z01600a104144C.gif
│ │ │ │ ├── 11Z01600E20391245.gif
│ │ │ │ ├── 11Z01600S20402M7.gif
│ │ │ │ ├── 11Z016011130423538.gif
│ │ │ │ ├── 11Z01601256043c94.gif
│ │ │ │ ├── 11Z01601401044D57.gif
│ │ │ │ ├── 11Z0160163P45N52.gif
│ │ │ │ ├── angry.gif
│ │ │ │ ├── astonish.gif
│ │ │ │ ├── bad.gif
│ │ │ │ ├── ball.gif
│ │ │ │ ├── coffee.gif
│ │ │ │ ├── coolsmile.gif
│ │ │ │ ├── cry.gif
│ │ │ │ ├── envy.gif
│ │ │ │ ├── fear.gif
│ │ │ │ ├── flower.gif
│ │ │ │ ├── good.gif
│ │ │ │ ├── heartache.gif
│ │ │ │ ├── laugh.gif
│ │ │ │ ├── love.gif
│ │ │ │ ├── melon.gif
│ │ │ │ ├── money.gif
│ │ │ │ ├── moon.gif
│ │ │ │ ├── mute.gif
│ │ │ │ ├── phone.gif
│ │ │ │ ├── pig.gif
│ │ │ │ ├── present.gif
│ │ │ │ ├── puke.gif
│ │ │ │ ├── puzzled.gif
│ │ │ │ ├── sad.gif
│ │ │ │ ├── sh~t.gif
│ │ │ │ ├── shy.gif
│ │ │ │ ├── smile.gif
│ │ │ │ ├── sunny.gif
│ │ │ │ ├── sweat.gif
│ │ │ │ ├── wound.gif
│ │ │ │ └── zzz.gif
│ │ │ ├── error.gif
│ │ │ ├── expandall.png
│ │ │ ├── extension
│ │ │ │ ├── av.gif
│ │ │ │ ├── binary.gif
│ │ │ │ ├── common.gif
│ │ │ │ ├── folder.gif
│ │ │ │ ├── html.gif
│ │ │ │ ├── image.gif
│ │ │ │ ├── index.htm
│ │ │ │ ├── msoffice.gif
│ │ │ │ ├── pdf.gif
│ │ │ │ ├── rar.gif
│ │ │ │ ├── real.gif
│ │ │ │ ├── swf.gif
│ │ │ │ ├── text.gif
│ │ │ │ ├── torrent.gif
│ │ │ │ └── zip.gif
│ │ │ ├── feed.png
│ │ │ ├── file.gif
│ │ │ ├── filesave.png
│ │ │ ├── folder.gif
│ │ │ ├── gohome.gif
│ │ │ ├── hasread.gif
│ │ │ ├── help.gif
│ │ │ ├── high.gif
│ │ │ ├── home.gif
│ │ │ ├── idx_btnbg.gif
│ │ │ ├── impbnt_bg.jpg
│ │ │ ├── index.html
│ │ │ ├── kiosk.png
│ │ │ ├── laugh.gif
│ │ │ ├── limit.gif
│ │ │ ├── list-back2.gif
│ │ │ ├── list-back.gif
│ │ │ ├── list-end.gif
│ │ │ ├── list-next2.gif
│ │ │ ├── list-next.gif
│ │ │ ├── loading2.gif
│ │ │ ├── loading.gif
│ │ │ ├── locked.gif
│ │ │ ├── logo2.png
│ │ │ ├── logo.png
│ │ │ ├── mail.png
│ │ │ ├── main_bg.gif
│ │ │ ├── menu_divider.png
│ │ │ ├── nomail.png
│ │ │ ├── ok.gif
│ │ │ ├── overlay.png
│ │ │ ├── page.gif
│ │ │ ├── paste.gif
│ │ │ ├── plus.gif
│ │ │ ├── point.gif
│ │ │ ├── prected.gif
│ │ │ ├── preview_f2.png
│ │ │ ├── preview.png
│ │ │ ├── publish_g.png
│ │ │ ├── publish_r.png
│ │ │ ├── publish_x.png
│ │ │ ├── publish_y.png
│ │ │ ├── record.gif
│ │ │ ├── return.gif
│ │ │ ├── revert.gif
│ │ │ ├── ring.gif
│ │ │ ├── Se00.wav
│ │ │ ├── tick.png
│ │ │ ├── tips.gif
│ │ │ ├── title_01.gif
│ │ │ ├── titlebg.gif
│ │ │ ├── titlebg.jpg
│ │ │ ├── ubb
│ │ │ │ ├── backcolor.gif
│ │ │ │ ├── bold.gif
│ │ │ │ ├── bullist.gif
│ │ │ │ ├── charmap.gif
│ │ │ │ ├── code.gif
│ │ │ │ ├── color.gif
│ │ │ │ ├── comments.gif
│ │ │ │ ├── copy.gif
│ │ │ │ ├── cut.gif
│ │ │ │ ├── email.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── forecolor.gif
│ │ │ │ ├── fullscreen.gif
│ │ │ │ ├── hr.gif
│ │ │ │ ├── icon_date.gif
│ │ │ │ ├── icon_entry.gif
│ │ │ │ ├── image2.gif
│ │ │ │ ├── image.gif
│ │ │ │ ├── indent.gif
│ │ │ │ ├── insertdate.gif
│ │ │ │ ├── insertimage.gif
│ │ │ │ ├── insertlayer.gif
│ │ │ │ ├── italic.gif
│ │ │ │ ├── justifycenter.gif
│ │ │ │ ├── justifyfull.gif
│ │ │ │ ├── justifyleft.gif
│ │ │ │ ├── justifyright.gif
│ │ │ │ ├── link.gif
│ │ │ │ ├── more.gif
│ │ │ │ ├── newdocument.gif
│ │ │ │ ├── numlist.gif
│ │ │ │ ├── outdent.gif
│ │ │ │ ├── paste.gif
│ │ │ │ ├── pastetext.gif
│ │ │ │ ├── pasteword.gif
│ │ │ │ ├── print.gif
│ │ │ │ ├── quote.gif
│ │ │ │ ├── redo.gif
│ │ │ │ ├── removeformat.gif
│ │ │ │ ├── save.gif
│ │ │ │ ├── separator.gif
│ │ │ │ ├── smiley.gif
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── strikethrough.gif
│ │ │ │ ├── subscript.gif
│ │ │ │ ├── superscript.gif
│ │ │ │ ├── table.gif
│ │ │ │ ├── underline.gif
│ │ │ │ ├── undo.gif
│ │ │ │ ├── unlink.gif
│ │ │ │ └── url.gif
│ │ │ ├── uparrow0.png
│ │ │ ├── uparrow-1.png
│ │ │ ├── uparrow.png
│ │ │ ├── update.gif
│ │ │ ├── upload2.gif
│ │ │ ├── upload3.gif
│ │ │ ├── upload.gif
│ │ │ ├── use.gif
│ │ │ ├── users.png
│ │ │ ├── vote10.gif
│ │ │ ├── vote1.gif
│ │ │ ├── vote2.gif
│ │ │ ├── vote3.gif
│ │ │ ├── vote4.gif
│ │ │ ├── vote5.gif
│ │ │ ├── vote6.gif
│ │ │ ├── vote7.gif
│ │ │ ├── vote8.gif
│ │ │ ├── vote9.gif
│ │ │ ├── vote.gif
│ │ │ ├── warn.gif
│ │ │ ├── wav.gif
│ │ │ └── write.gif
│ │ └── login
│ │ ├── login.gif
│ │ ├── login-icon.gif
│ │ ├── logo0.png
│ │ ├── logo.png
│ │ ├── top_01.png
│ │ ├── top_02.png
│ │ └── top_03.png
│ ├── Js
│ │ ├── bak
│ │ │ ├── Ajax
│ │ │ │ ├── ajaxloading.gif
│ │ │ │ └── ThinkAjax.js
│ │ │ ├── Base.js
│ │ │ ├── city.js
│ │ │ ├── common.js
│ │ │ ├── editor
│ │ │ │ ├── attached
│ │ │ │ │ ├── 20090924050941_54997.gif
│ │ │ │ │ ├── 20090925090947_67046.jpg
│ │ │ │ │ └── 20090925110907_85151.jpg
│ │ │ │ ├── build.xml
│ │ │ │ ├── docs
│ │ │ │ │ ├── CHANGE.txt
│ │ │ │ │ ├── LICENCE.txt
│ │ │ │ │ ├── README.txt
│ │ │ │ │ └── THANKS.txt
│ │ │ │ ├── examples
│ │ │ │ │ ├── demo-01.html
│ │ │ │ │ ├── demo-02.html
│ │ │ │ │ ├── demo-03.html
│ │ │ │ │ ├── demo-04.html
│ │ │ │ │ ├── demo-05.html
│ │ │ │ │ ├── demo-06.html
│ │ │ │ │ ├── demo-07.html
│ │ │ │ │ ├── demo-08.html
│ │ │ │ │ ├── demo-09.html
│ │ │ │ │ ├── demo-10.html
│ │ │ │ │ ├── demo-11.html
│ │ │ │ │ ├── demo-12.html
│ │ │ │ │ ├── demo-13.html
│ │ │ │ │ ├── demo-14.html
│ │ │ │ │ ├── demo-15.html
│ │ │ │ │ ├── demo-16.html
│ │ │ │ │ ├── demo-17.html
│ │ │ │ │ ├── demo-18.html
│ │ │ │ │ ├── index.css
│ │ │ │ │ └── index.html
│ │ │ │ ├── kindeditor.js
│ │ │ │ ├── kindeditor-min.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── php
│ │ │ │ │ ├── demo.php
│ │ │ │ │ ├── file_manager_json.php
│ │ │ │ │ ├── JSON.php
│ │ │ │ │ ├── upload_json.php
│ │ │ │ │ └── upload.php
│ │ │ │ ├── plugins
│ │ │ │ │ ├── about.html
│ │ │ │ │ ├── advtable
│ │ │ │ │ │ └── advtable.html
│ │ │ │ │ ├── emoticons
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ ├── 107.gif
│ │ │ │ │ │ ├── 108.gif
│ │ │ │ │ │ ├── 109.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 110.gif
│ │ │ │ │ │ ├── 111.gif
│ │ │ │ │ │ ├── 112.gif
│ │ │ │ │ │ ├── 113.gif
│ │ │ │ │ │ ├── 114.gif
│ │ │ │ │ │ ├── 115.gif
│ │ │ │ │ │ ├── 116.gif
│ │ │ │ │ │ ├── 117.gif
│ │ │ │ │ │ ├── 118.gif
│ │ │ │ │ │ ├── 119.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 120.gif
│ │ │ │ │ │ ├── 121.gif
│ │ │ │ │ │ ├── 122.gif
│ │ │ │ │ │ ├── 123.gif
│ │ │ │ │ │ ├── 124.gif
│ │ │ │ │ │ ├── 125.gif
│ │ │ │ │ │ ├── 126.gif
│ │ │ │ │ │ ├── 127.gif
│ │ │ │ │ │ ├── 128.gif
│ │ │ │ │ │ ├── 129.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 130.gif
│ │ │ │ │ │ ├── 131.gif
│ │ │ │ │ │ ├── 132.gif
│ │ │ │ │ │ ├── 133.gif
│ │ │ │ │ │ ├── 134.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ ├── 17.gif
│ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ ├── 7.gif
│ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ ├── 9.gif
│ │ │ │ │ │ ├── etc_01.gif
│ │ │ │ │ │ ├── etc_02.gif
│ │ │ │ │ │ ├── etc_03.gif
│ │ │ │ │ │ ├── etc_04.gif
│ │ │ │ │ │ ├── etc_05.gif
│ │ │ │ │ │ ├── etc_06.gif
│ │ │ │ │ │ ├── etc_07.gif
│ │ │ │ │ │ ├── etc_08.gif
│ │ │ │ │ │ ├── etc_09.gif
│ │ │ │ │ │ ├── etc_10.gif
│ │ │ │ │ │ ├── etc_11.gif
│ │ │ │ │ │ ├── etc_12.gif
│ │ │ │ │ │ ├── etc_13.gif
│ │ │ │ │ │ ├── etc_14.gif
│ │ │ │ │ │ ├── etc_15.gif
│ │ │ │ │ │ ├── etc_16.gif
│ │ │ │ │ │ ├── etc_17.gif
│ │ │ │ │ │ ├── etc_18.gif
│ │ │ │ │ │ ├── etc_19.gif
│ │ │ │ │ │ ├── etc_20.gif
│ │ │ │ │ │ ├── etc_21.gif
│ │ │ │ │ │ ├── etc_22.gif
│ │ │ │ │ │ ├── etc_23.gif
│ │ │ │ │ │ ├── etc_24.gif
│ │ │ │ │ │ ├── etc_25.gif
│ │ │ │ │ │ ├── etc_26.gif
│ │ │ │ │ │ ├── etc_27.gif
│ │ │ │ │ │ ├── etc_28.gif
│ │ │ │ │ │ ├── etc_29.gif
│ │ │ │ │ │ ├── etc_30.gif
│ │ │ │ │ │ ├── etc_31.gif
│ │ │ │ │ │ ├── etc_32.gif
│ │ │ │ │ │ ├── etc_33.gif
│ │ │ │ │ │ ├── etc_34.gif
│ │ │ │ │ │ ├── etc_35.gif
│ │ │ │ │ │ ├── etc_36.gif
│ │ │ │ │ │ └── qq.gif
│ │ │ │ │ ├── file_manager
│ │ │ │ │ │ ├── file_manager.css
│ │ │ │ │ │ ├── file_manager.html
│ │ │ │ │ │ ├── file_manager.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── file-16.gif
│ │ │ │ │ │ ├── file-64.gif
│ │ │ │ │ │ ├── folder-16.gif
│ │ │ │ │ │ ├── folder-64.gif
│ │ │ │ │ │ └── go-up.gif
│ │ │ │ │ ├── flash.html
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── align_left.gif
│ │ │ │ │ │ ├── align_right.gif
│ │ │ │ │ │ ├── align_top.gif
│ │ │ │ │ │ └── refresh.gif
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── link.html
│ │ │ │ │ ├── media.html
│ │ │ │ │ ├── plainpaste.html
│ │ │ │ │ ├── remote_image.html
│ │ │ │ │ └── wordpaste.html
│ │ │ │ └── skins
│ │ │ │ ├── common
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── editor.css
│ │ │ │ │ ├── flash.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── media.gif
│ │ │ │ │ └── rm.gif
│ │ │ │ ├── default
│ │ │ │ │ └── default.gif
│ │ │ │ ├── default.css
│ │ │ │ ├── default.gif
│ │ │ │ ├── div.gif
│ │ │ │ ├── dl.gif
│ │ │ │ ├── editor.css
│ │ │ │ ├── ol.gif
│ │ │ │ ├── p.gif
│ │ │ │ ├── tinymce.css
│ │ │ │ ├── tinymce.gif
│ │ │ │ └── ul.gif
│ │ │ ├── Form
│ │ │ │ ├── Calendar.js
│ │ │ │ ├── CheckForm2.js
│ │ │ │ ├── CheckForm3.js
│ │ │ │ ├── CheckForm.js
│ │ │ │ ├── common.js
│ │ │ │ ├── MultiSelect.js
│ │ │ │ ├── Office.js
│ │ │ │ └── SortSelect.js
│ │ │ ├── Jquery
│ │ │ │ ├── jquery.form.js
│ │ │ │ ├── jqueryform.js
│ │ │ │ ├── jquery.js
│ │ │ │ └── jquery.validate.js
│ │ │ ├── jquery_002.js
│ │ │ ├── jquery.js
│ │ │ ├── kindeditor
│ │ │ │ ├── attached
│ │ │ │ │ ├── 20090924050941_54997.gif
│ │ │ │ │ ├── 20090925090947_67046.jpg
│ │ │ │ │ ├── 20090925110907_85151.jpg
│ │ │ │ │ └── 20100928085446_93671.png
│ │ │ │ ├── build.xml
│ │ │ │ ├── kindeditor.js
│ │ │ │ ├── kindeditor-min.js
│ │ │ │ ├── license.txt
│ │ │ │ ├── php
│ │ │ │ │ ├── demo.php
│ │ │ │ │ ├── file_manager_json.php
│ │ │ │ │ ├── JSON.php
│ │ │ │ │ ├── upload_json.php
│ │ │ │ │ └── upload.php
│ │ │ │ ├── plugins
│ │ │ │ │ ├── about.html
│ │ │ │ │ ├── advtable
│ │ │ │ │ │ └── advtable.html
│ │ │ │ │ ├── emoticons
│ │ │ │ │ │ ├── 0.gif
│ │ │ │ │ │ ├── 100.gif
│ │ │ │ │ │ ├── 101.gif
│ │ │ │ │ │ ├── 102.gif
│ │ │ │ │ │ ├── 103.gif
│ │ │ │ │ │ ├── 104.gif
│ │ │ │ │ │ ├── 105.gif
│ │ │ │ │ │ ├── 106.gif
│ │ │ │ │ │ ├── 107.gif
│ │ │ │ │ │ ├── 108.gif
│ │ │ │ │ │ ├── 109.gif
│ │ │ │ │ │ ├── 10.gif
│ │ │ │ │ │ ├── 110.gif
│ │ │ │ │ │ ├── 111.gif
│ │ │ │ │ │ ├── 112.gif
│ │ │ │ │ │ ├── 113.gif
│ │ │ │ │ │ ├── 114.gif
│ │ │ │ │ │ ├── 115.gif
│ │ │ │ │ │ ├── 116.gif
│ │ │ │ │ │ ├── 117.gif
│ │ │ │ │ │ ├── 118.gif
│ │ │ │ │ │ ├── 119.gif
│ │ │ │ │ │ ├── 11.gif
│ │ │ │ │ │ ├── 120.gif
│ │ │ │ │ │ ├── 121.gif
│ │ │ │ │ │ ├── 122.gif
│ │ │ │ │ │ ├── 123.gif
│ │ │ │ │ │ ├── 124.gif
│ │ │ │ │ │ ├── 125.gif
│ │ │ │ │ │ ├── 126.gif
│ │ │ │ │ │ ├── 127.gif
│ │ │ │ │ │ ├── 128.gif
│ │ │ │ │ │ ├── 129.gif
│ │ │ │ │ │ ├── 12.gif
│ │ │ │ │ │ ├── 130.gif
│ │ │ │ │ │ ├── 131.gif
│ │ │ │ │ │ ├── 132.gif
│ │ │ │ │ │ ├── 133.gif
│ │ │ │ │ │ ├── 134.gif
│ │ │ │ │ │ ├── 13.gif
│ │ │ │ │ │ ├── 14.gif
│ │ │ │ │ │ ├── 15.gif
│ │ │ │ │ │ ├── 16.gif
│ │ │ │ │ │ ├── 17.gif
│ │ │ │ │ │ ├── 18.gif
│ │ │ │ │ │ ├── 19.gif
│ │ │ │ │ │ ├── 1.gif
│ │ │ │ │ │ ├── 20.gif
│ │ │ │ │ │ ├── 21.gif
│ │ │ │ │ │ ├── 22.gif
│ │ │ │ │ │ ├── 23.gif
│ │ │ │ │ │ ├── 24.gif
│ │ │ │ │ │ ├── 25.gif
│ │ │ │ │ │ ├── 26.gif
│ │ │ │ │ │ ├── 27.gif
│ │ │ │ │ │ ├── 28.gif
│ │ │ │ │ │ ├── 29.gif
│ │ │ │ │ │ ├── 2.gif
│ │ │ │ │ │ ├── 30.gif
│ │ │ │ │ │ ├── 31.gif
│ │ │ │ │ │ ├── 32.gif
│ │ │ │ │ │ ├── 33.gif
│ │ │ │ │ │ ├── 34.gif
│ │ │ │ │ │ ├── 35.gif
│ │ │ │ │ │ ├── 36.gif
│ │ │ │ │ │ ├── 37.gif
│ │ │ │ │ │ ├── 38.gif
│ │ │ │ │ │ ├── 39.gif
│ │ │ │ │ │ ├── 3.gif
│ │ │ │ │ │ ├── 40.gif
│ │ │ │ │ │ ├── 41.gif
│ │ │ │ │ │ ├── 42.gif
│ │ │ │ │ │ ├── 43.gif
│ │ │ │ │ │ ├── 44.gif
│ │ │ │ │ │ ├── 45.gif
│ │ │ │ │ │ ├── 46.gif
│ │ │ │ │ │ ├── 47.gif
│ │ │ │ │ │ ├── 48.gif
│ │ │ │ │ │ ├── 49.gif
│ │ │ │ │ │ ├── 4.gif
│ │ │ │ │ │ ├── 50.gif
│ │ │ │ │ │ ├── 51.gif
│ │ │ │ │ │ ├── 52.gif
│ │ │ │ │ │ ├── 53.gif
│ │ │ │ │ │ ├── 54.gif
│ │ │ │ │ │ ├── 55.gif
│ │ │ │ │ │ ├── 56.gif
│ │ │ │ │ │ ├── 57.gif
│ │ │ │ │ │ ├── 58.gif
│ │ │ │ │ │ ├── 59.gif
│ │ │ │ │ │ ├── 5.gif
│ │ │ │ │ │ ├── 60.gif
│ │ │ │ │ │ ├── 61.gif
│ │ │ │ │ │ ├── 62.gif
│ │ │ │ │ │ ├── 63.gif
│ │ │ │ │ │ ├── 64.gif
│ │ │ │ │ │ ├── 65.gif
│ │ │ │ │ │ ├── 66.gif
│ │ │ │ │ │ ├── 67.gif
│ │ │ │ │ │ ├── 68.gif
│ │ │ │ │ │ ├── 69.gif
│ │ │ │ │ │ ├── 6.gif
│ │ │ │ │ │ ├── 70.gif
│ │ │ │ │ │ ├── 71.gif
│ │ │ │ │ │ ├── 72.gif
│ │ │ │ │ │ ├── 73.gif
│ │ │ │ │ │ ├── 74.gif
│ │ │ │ │ │ ├── 75.gif
│ │ │ │ │ │ ├── 76.gif
│ │ │ │ │ │ ├── 77.gif
│ │ │ │ │ │ ├── 78.gif
│ │ │ │ │ │ ├── 79.gif
│ │ │ │ │ │ ├── 7.gif
│ │ │ │ │ │ ├── 80.gif
│ │ │ │ │ │ ├── 81.gif
│ │ │ │ │ │ ├── 82.gif
│ │ │ │ │ │ ├── 83.gif
│ │ │ │ │ │ ├── 84.gif
│ │ │ │ │ │ ├── 85.gif
│ │ │ │ │ │ ├── 86.gif
│ │ │ │ │ │ ├── 87.gif
│ │ │ │ │ │ ├── 88.gif
│ │ │ │ │ │ ├── 89.gif
│ │ │ │ │ │ ├── 8.gif
│ │ │ │ │ │ ├── 90.gif
│ │ │ │ │ │ ├── 91.gif
│ │ │ │ │ │ ├── 92.gif
│ │ │ │ │ │ ├── 93.gif
│ │ │ │ │ │ ├── 94.gif
│ │ │ │ │ │ ├── 95.gif
│ │ │ │ │ │ ├── 96.gif
│ │ │ │ │ │ ├── 97.gif
│ │ │ │ │ │ ├── 98.gif
│ │ │ │ │ │ ├── 99.gif
│ │ │ │ │ │ ├── 9.gif
│ │ │ │ │ │ ├── etc_01.gif
│ │ │ │ │ │ ├── etc_02.gif
│ │ │ │ │ │ ├── etc_03.gif
│ │ │ │ │ │ ├── etc_04.gif
│ │ │ │ │ │ ├── etc_05.gif
│ │ │ │ │ │ ├── etc_06.gif
│ │ │ │ │ │ ├── etc_07.gif
│ │ │ │ │ │ ├── etc_08.gif
│ │ │ │ │ │ ├── etc_09.gif
│ │ │ │ │ │ ├── etc_10.gif
│ │ │ │ │ │ ├── etc_11.gif
│ │ │ │ │ │ ├── etc_12.gif
│ │ │ │ │ │ ├── etc_13.gif
│ │ │ │ │ │ ├── etc_14.gif
│ │ │ │ │ │ ├── etc_15.gif
│ │ │ │ │ │ ├── etc_16.gif
│ │ │ │ │ │ ├── etc_17.gif
│ │ │ │ │ │ ├── etc_18.gif
│ │ │ │ │ │ ├── etc_19.gif
│ │ │ │ │ │ ├── etc_20.gif
│ │ │ │ │ │ ├── etc_21.gif
│ │ │ │ │ │ ├── etc_22.gif
│ │ │ │ │ │ ├── etc_23.gif
│ │ │ │ │ │ ├── etc_24.gif
│ │ │ │ │ │ ├── etc_25.gif
│ │ │ │ │ │ ├── etc_26.gif
│ │ │ │ │ │ ├── etc_27.gif
│ │ │ │ │ │ ├── etc_28.gif
│ │ │ │ │ │ ├── etc_29.gif
│ │ │ │ │ │ ├── etc_30.gif
│ │ │ │ │ │ ├── etc_31.gif
│ │ │ │ │ │ ├── etc_32.gif
│ │ │ │ │ │ ├── etc_33.gif
│ │ │ │ │ │ ├── etc_34.gif
│ │ │ │ │ │ ├── etc_35.gif
│ │ │ │ │ │ ├── etc_36.gif
│ │ │ │ │ │ └── qq.gif
│ │ │ │ │ ├── file_manager
│ │ │ │ │ │ ├── file_manager.css
│ │ │ │ │ │ ├── file_manager.html
│ │ │ │ │ │ ├── file_manager.js
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── file-16.gif
│ │ │ │ │ │ ├── file-64.gif
│ │ │ │ │ │ ├── folder-16.gif
│ │ │ │ │ │ ├── folder-64.gif
│ │ │ │ │ │ └── go-up.gif
│ │ │ │ │ ├── flash.html
│ │ │ │ │ ├── image
│ │ │ │ │ │ ├── image.html
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── align_left.gif
│ │ │ │ │ │ ├── align_right.gif
│ │ │ │ │ │ ├── align_top.gif
│ │ │ │ │ │ └── refresh.gif
│ │ │ │ │ ├── image.html
│ │ │ │ │ ├── link
│ │ │ │ │ │ └── link.html
│ │ │ │ │ ├── link.html
│ │ │ │ │ ├── media.html
│ │ │ │ │ ├── plainpaste.html
│ │ │ │ │ ├── remote_image.html
│ │ │ │ │ └── wordpaste.html
│ │ │ │ └── skins
│ │ │ │ ├── common
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── editor.css
│ │ │ │ │ ├── flash.gif
│ │ │ │ │ ├── loading.gif
│ │ │ │ │ ├── media.gif
│ │ │ │ │ └── rm.gif
│ │ │ │ ├── default
│ │ │ │ │ └── default.gif
│ │ │ │ ├── default.css
│ │ │ │ ├── default.gif
│ │ │ │ ├── div.gif
│ │ │ │ ├── dl.gif
│ │ │ │ ├── editor.css
│ │ │ │ ├── ol.gif
│ │ │ │ ├── p.gif
│ │ │ │ ├── tinymce.css
│ │ │ │ ├── tinymce.gif
│ │ │ │ └── ul.gif
│ │ │ ├── mootools.js
│ │ │ ├── nicEdit.js
│ │ │ ├── prototype.js
│ │ │ ├── String
│ │ │ │ ├── base64.js
│ │ │ │ ├── jsTree.js
│ │ │ │ ├── md4.js
│ │ │ │ ├── Md52.js
│ │ │ │ ├── Md5.js
│ │ │ │ ├── sha1.js
│ │ │ │ ├── String.js
│ │ │ │ └── xxtea.js
│ │ │ ├── Think
│ │ │ │ └── ThinkAjax.js
│ │ │ ├── UbbEditor.js
│ │ │ ├── urchin.js
│ │ │ └── Util
│ │ │ ├── AddressTree.js
│ │ │ ├── AjaxStar.js
│ │ │ ├── Array.js
│ │ │ ├── Big5ToGb.js
│ │ │ ├── Calendar.js
│ │ │ ├── Convert.js
│ │ │ ├── Currency.js
│ │ │ ├── Date.js
│ │ │ ├── ImageLoader.js
│ │ │ ├── JTree.bak.js
│ │ │ ├── JTree.js
│ │ │ ├── SwfObject.js
│ │ │ └── tooltip.js
│ │ ├── Form
│ │ │ ├── utils.js
│ │ │ └── validator.js
│ │ └── Jquery
│ │ ├── jquery-1.6.1.js
│ │ ├── jquery-1.6.1.min.js
│ │ ├── jquery.form.js
│ │ ├── jqueryform.js
│ │ ├── jquery.js
│ │ └── jquery.validate.js
│ ├── login.html
│ ├── main.html
│ ├── menu.html
│ ├── password.html
│ ├── profile.html
│ ├── ssssssssssssssssssssss.html
│ ├── success.html
│ └── top.html
├── Role
│ ├── action.html
│ ├── add.html
│ ├── app.html
│ ├── edit.html
│ ├── group.html
│ ├── index.html
│ ├── module.html
│ ├── select.html
│ ├── user.html
│ └── userList.html
└── User
├── add.html
├── edit.html
├── index.html
├── multiSelect.html
└── password.html
142 directories, 1210 files
标签:
网友评论
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)
支持(0) 盖楼(回复)