在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 汽车租赁管理系统

汽车租赁管理系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:21.30M
  • 下载次数:18
  • 浏览次数:219
  • 发布时间:2020-10-08
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
JAVA SSH框架下 汽车租赁管理项目 带有数据库文件
【实例截图】
【核心代码】
(燕子1组)
└── 汽车租赁管理(燕子1组)
├── qczlgl
│   ├── config
│   │   ├── applicationContext_code.xml
│   │   ├── applicationContext_gsgl.xml
│   │   ├── applicationContext_system.xml
│   │   ├── applicationContext.xml
│   │   ├── applicationContext_zagl.xml
│   │   ├── dwr.xml
│   │   ├── jdbc.properties
│   │   ├── struts_code.xml
│   │   ├── struts_gsgl.xml
│   │   ├── struts.properties
│   │   ├── struts_system.xml
│   │   ├── struts.xml
│   │   └── struts_zagl.xml
│   ├── src
│   │   └── com
│   │   └── turing
│   │   ├── framework
│   │   │   ├── action
│   │   │   │   ├── AbstractAction.java
│   │   │   │   ├── CRUDInterface.java
│   │   │   │   ├── OpenAction.java
│   │   │   │   ├── PageAction.java
│   │   │   │   └── StartAction.java
│   │   │   ├── dao
│   │   │   │   ├── DaoImpl.java
│   │   │   │   └── IDao.java
│   │   │   ├── interceptor
│   │   │   │   └── LoginInterceptor.java
│   │   │   ├── page
│   │   │   │   ├── BasicDao.java
│   │   │   │   ├── BasicPage.java
│   │   │   │   └── Param.java
│   │   │   ├── select
│   │   │   │   ├── SelectAction.java
│   │   │   │   ├── SelectOptions.java
│   │   │   │   ├── SelectServiceImpl.java
│   │   │   │   └── SelectService.java
│   │   │   ├── service
│   │   │   │   ├── BasicService.java
│   │   │   │   └── BasicServicveImpl.java
│   │   │   ├── tag
│   │   │   │   ├── ButtonTag.java
│   │   │   │   ├── CodeListTag.java
│   │   │   │   ├── CodeNameTag.java
│   │   │   │   ├── PageTag2.java
│   │   │   │   ├── PageTag3.java
│   │   │   │   ├── PageTag4.java
│   │   │   │   ├── PageTag5.java
│   │   │   │   ├── PageTag6.java
│   │   │   │   ├── PageTag.java
│   │   │   │   └── TextLenTag.java
│   │   │   └── util
│   │   │   ├── Common.java
│   │   │   └── DateUtils.java
│   │   ├── manage
│   │   │   ├── codeXinyvdengji
│   │   │   │   ├── action
│   │   │   │   │   └── XYDJAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── XYDJPage.java
│   │   │   │   └── service
│   │   │   │   ├── IXYDJService.java
│   │   │   │   └── XYDJServiceImpl.java
│   │   │   ├── entity
│   │   │   │   ├── CodeXinyvdengji.hbm.xml
│   │   │   │   ├── CodeXinyvdengji.java
│   │   │   │   ├── QczlTCl.hbm.xml
│   │   │   │   ├── QczlTCl.java
│   │   │   │   ├── QczlTClss.hbm.xml
│   │   │   │   ├── QczlTClss.java
│   │   │   │   ├── QczlTSs.hbm.xml
│   │   │   │   ├── QczlTSs.java
│   │   │   │   ├── QczlTZc.hbm.xml
│   │   │   │   ├── QczlTZc.java
│   │   │   │   ├── QczlTZcr.hbm.xml
│   │   │   │   ├── QczlTZcr.java
│   │   │   │   ├── ZaptTBj.hbm.xml
│   │   │   │   ├── ZaptTBj.java
│   │   │   │   ├── ZaptTGs.hbm.xml
│   │   │   │   ├── ZaptTGs.java
│   │   │   │   ├── ZaptTGxscl.hbm.xml
│   │   │   │   ├── ZaptTGxscl.java
│   │   │   │   ├── ZaptTGxsryRyTf.hbm.xml
│   │   │   │   ├── ZaptTGxsryRyTf.java
│   │   │   │   ├── ZaptTJg.hbm.xml
│   │   │   │   ├── ZaptTJg.java
│   │   │   │   ├── ZaptTTf.hbm.xml
│   │   │   │   ├── ZaptTTf.java
│   │   │   │   ├── ZaptTTftz.hbm.xml
│   │   │   │   ├── ZaptTTftz.java
│   │   │   │   ├── ZaptTTz.hbm.xml
│   │   │   │   ├── ZaptTTz.java
│   │   │   │   ├── ZaptTZd.hbm.xml
│   │   │   │   ├── ZaptTZd.java
│   │   │   │   ├── ZaptTZscl.hbm.xml
│   │   │   │   └── ZaptTZscl.java
│   │   │   ├── gsglCheliangshousun
│   │   │   │   ├── action
│   │   │   │   │   ├── CLSSAction.java
│   │   │   │   │   └── CLSSActionsel.java
│   │   │   │   ├── page
│   │   │   │   │   ├── CLSSPage.java
│   │   │   │   │   └── CLSSPagesel.java
│   │   │   │   └── service
│   │   │   │   ├── CLSSServiceImpl.java
│   │   │   │   └── ICLSSService.java
│   │   │   ├── gsglclxx
│   │   │   │   ├── action
│   │   │   │   │   ├── CLCLXXAction.java
│   │   │   │   │   └── CLXXAction.java
│   │   │   │   ├── page
│   │   │   │   │   ├── CLCLXXPage.java
│   │   │   │   │   └── CLXXPage.java
│   │   │   │   └── service
│   │   │   │   ├── CLXXServiceImpl.java
│   │   │   │   └── CLXXService.java
│   │   │   ├── gsglKehuxinxi
│   │   │   │   ├── action
│   │   │   │   │   ├── KehuAction.java
│   │   │   │   │   └── KehuselAction.java
│   │   │   │   ├── page
│   │   │   │   │   ├── KehuPage.java
│   │   │   │   │   └── KehuselPage.java
│   │   │   │   └── service
│   │   │   │   ├── IKehuService.java
│   │   │   │   └── KehuServiceImpl.java
│   │   │   ├── gsglRenyuanxinxi
│   │   │   │   ├── action
│   │   │   │   │   └── RenyuanAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── RenyuanPage.java
│   │   │   │   └── service
│   │   │   │   ├── IRenyuanService.java
│   │   │   │   └── RenyuanServiceImpl.java
│   │   │   ├── gsglShousunqingkuang
│   │   │   │   ├── action
│   │   │   │   │   ├── CLSSQKAction.java
│   │   │   │   │   └── SSQKAction.java
│   │   │   │   ├── page
│   │   │   │   │   ├── CLSSQKPage.java
│   │   │   │   │   └── SSQKPage.java
│   │   │   │   └── service
│   │   │   │   ├── ISSQKService.java
│   │   │   │   └── SSQKServiceImpl.java
│   │   │   ├── gsglZuchexinxi
│   │   │   │   ├── action
│   │   │   │   │   └── ZCXXAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── ZCXXPage.java
│   │   │   │   └── service
│   │   │   │   ├── IZCXXService.java
│   │   │   │   └── ZCXXServiceImpl.java
│   │   │   ├── zaglBaojingxinxi
│   │   │   │   ├── action
│   │   │   │   │   └── BJXXAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── BJXXPage.java
│   │   │   │   └── service
│   │   │   │   ├── BJXXServiceImpl.java
│   │   │   │   └── IBJXXService.java
│   │   │   ├── zaglGongsixinxi
│   │   │   │   ├── action
│   │   │   │   │   └── GSAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── GSPage.java
│   │   │   │   └── service
│   │   │   │   ├── GSServiceImpl.java
│   │   │   │   └── IGSService.java
│   │   │   ├── zaglJigouxinxi
│   │   │   │   ├── action
│   │   │   │   │   ├── AAJGAction.java
│   │   │   │   │   └── JGAction.java
│   │   │   │   ├── page
│   │   │   │   │   ├── AAJGPage.java
│   │   │   │   │   └── JGPage.java
│   │   │   │   └── service
│   │   │   │   ├── IJGService.java
│   │   │   │   └── JGServiceImpl.java
│   │   │   ├── zaglTongzhi
│   │   │   │   ├── action
│   │   │   │   │   └── TZAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── TZPage.java
│   │   │   │   └── service
│   │   │   │   ├── ITZService.java
│   │   │   │   └── TZServiceImpl.java
│   │   │   ├── zaglZhaoshicheliang
│   │   │   │   ├── action
│   │   │   │   │   ├── SS_ZSCLAction.java
│   │   │   │   │   └── ZSCLAction.java
│   │   │   │   ├── page
│   │   │   │   │   ├── SS_ZSCLPage.java
│   │   │   │   │   └── ZSCLPage.java
│   │   │   │   └── service
│   │   │   │   ├── IZSCLService.java
│   │   │   │   └── ZSCLServiceImpl.java
│   │   │   ├── zaptGaoxiangsicheliang
│   │   │   │   ├── action
│   │   │   │   │   └── GXSCLAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── GXSCLPage.java
│   │   │   │   └── service
│   │   │   │   ├── GXSCLServiceImpl.java
│   │   │   │   └── IGXSCLService.java
│   │   │   ├── zaptGaoxiangsirenyuan
│   │   │   │   ├── action
│   │   │   │   │   └── GXSRYAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── GXSRYPage.java
│   │   │   │   └── service
│   │   │   │   ├── GXSRYServiceImpl.java
│   │   │   │   └── IGXSRYService.java
│   │   │   ├── zapttfxx
│   │   │   │   ├── action
│   │   │   │   │   └── TFXXAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── TFXXPage.java
│   │   │   │   └── service
│   │   │   │   ├── TFXXServiceImpl.java
│   │   │   │   └── TFXXService.java
│   │   │   ├── zaptZSCLshousun
│   │   │   │   ├── action
│   │   │   │   │   └── ZSCLSSAction.java
│   │   │   │   ├── page
│   │   │   │   │   └── ZSCLSSPage.java
│   │   │   │   └── service
│   │   │   │   ├── IZSCLSSService.java
│   │   │   │   └── ZSCLSSServiceImpl.java
│   │   │   └── zddm
│   │   │   ├── action
│   │   │   │   └── ZDAction.java
│   │   │   ├── page
│   │   │   │   └── ZDPage.java
│   │   │   └── service
│   │   │   ├── ZDServiceImpl.java
│   │   │   └── ZDService.java
│   │   └── system
│   │   ├── code
│   │   │   ├── action
│   │   │   │   └── CodeAction.java
│   │   │   ├── page
│   │   │   │   └── CodePage.java
│   │   │   └── service
│   │   │   ├── CodeServiceImpl.java
│   │   │   └── ICodeService.java
│   │   ├── dept
│   │   │   ├── action
│   │   │   │   └── DeptAction.java
│   │   │   ├── page
│   │   │   │   └── DeptPage.java
│   │   │   └── service
│   │   │   ├── DeptServiceImpl.java
│   │   │   └── IDeptService.java
│   │   ├── entity
│   │   │   ├── CodeDict.hbm.xml
│   │   │   ├── CodeDict.java
│   │   │   ├── CodeKind.hbm.xml
│   │   │   ├── CodeKind.java
│   │   │   ├── SysDept.hbm.xml
│   │   │   ├── SysDept.java
│   │   │   ├── SysMenu.hbm.xml
│   │   │   ├── SysMenu.java
│   │   │   ├── SysPerson.hbm.xml
│   │   │   ├── SysPerson.java
│   │   │   ├── SysPost.hbm.xml
│   │   │   ├── SysPost.java
│   │   │   ├── SysRole.hbm.xml
│   │   │   ├── SysRole.java
│   │   │   ├── SysRoleMenu.hbm.xml
│   │   │   ├── SysRoleMenu.java
│   │   │   ├── SysUser.hbm.xml
│   │   │   ├── SysUser.java
│   │   │   ├── SysUserRole.hbm.xml
│   │   │   └── SysUserRole.java
│   │   ├── login
│   │   │   ├── action
│   │   │   │   └── LoginAction.java
│   │   │   └── service
│   │   │   ├── ILoginService.java
│   │   │   └── LoginServiceImpl.java
│   │   ├── menu
│   │   │   ├── action
│   │   │   │   └── MenuAction.java
│   │   │   ├── page
│   │   │   │   └── MenuPage.java
│   │   │   └── service
│   │   │   ├── IMenuService.java
│   │   │   └── MenuServiceImpl.java
│   │   ├── person
│   │   │   ├── action
│   │   │   │   ├── PersonAction.java
│   │   │   │   └── SelPersonAction.java
│   │   │   ├── page
│   │   │   │   ├── PersonPage.java
│   │   │   │   └── SelPersonPage.java
│   │   │   └── service
│   │   │   ├── IPersonService.java
│   │   │   └── PersonServiceImpl.java
│   │   ├── pos
│   │   │   ├── action
│   │   │   │   └── PosAction.java
│   │   │   ├── page
│   │   │   │   └── PosPage.java
│   │   │   └── service
│   │   │   ├── IPosService.java
│   │   │   └── PosServiceImpl.java
│   │   ├── role
│   │   │   ├── action
│   │   │   │   └── RoleAction.java
│   │   │   ├── page
│   │   │   │   └── RolePage.java
│   │   │   └── service
│   │   │   ├── IRoleService.java
│   │   │   └── RoleServiceImpl.java
│   │   └── user
│   │   ├── action
│   │   │   └── UserAction.java
│   │   ├── page
│   │   │   └── UserPage.java
│   │   └── service
│   │   ├── IUserService.java
│   │   └── UserServiceImpl.java
│   └── WebRoot
│   ├── bridge.jsp
│   ├── common
│   │   ├── css
│   │   │   ├── left.css
│   │   │   ├── login.css
│   │   │   ├── mainStyle.css
│   │   │   └── top.css
│   │   ├── dtree
│   │   │   ├── dtree.css
│   │   │   ├── dtree.js
│   │   │   └── img
│   │   │   ├── base.gif
│   │   │   ├── cd.gif
│   │   │   ├── empty.gif
│   │   │   ├── folder.gif
│   │   │   ├── folderopen.gif
│   │   │   ├── globe.gif
│   │   │   ├── imgfolder.gif
│   │   │   ├── joinbottom.gif
│   │   │   ├── join.gif
│   │   │   ├── line.gif
│   │   │   ├── minusbottom.gif
│   │   │   ├── minus.gif
│   │   │   ├── musicfolder.gif
│   │   │   ├── nolines_minus.gif
│   │   │   ├── nolines_plus.gif
│   │   │   ├── page.gif
│   │   │   ├── plusbottom.gif
│   │   │   ├── plus.gif
│   │   │   ├── question.gif
│   │   │   └── trash.gif
│   │   ├── fckeditor
│   │   │   ├── _documentation.html
│   │   │   ├── editor
│   │   │   │   ├── css
│   │   │   │   │   ├── behaviors
│   │   │   │   │   │   ├── disablehandles.htc
│   │   │   │   │   │   └── showtableborders.htc
│   │   │   │   │   ├── fck_editorarea.css
│   │   │   │   │   ├── fck_internal.css
│   │   │   │   │   ├── fck_showtableborders_gecko.css
│   │   │   │   │   └── images
│   │   │   │   │   ├── block_address.png
│   │   │   │   │   ├── block_blockquote.png
│   │   │   │   │   ├── block_div.png
│   │   │   │   │   ├── block_h1.png
│   │   │   │   │   ├── block_h2.png
│   │   │   │   │   ├── block_h3.png
│   │   │   │   │   ├── block_h4.png
│   │   │   │   │   ├── block_h5.png
│   │   │   │   │   ├── block_h6.png
│   │   │   │   │   ├── block_p.png
│   │   │   │   │   ├── block_pre.png
│   │   │   │   │   ├── fck_anchor.gif
│   │   │   │   │   ├── fck_flashlogo.gif
│   │   │   │   │   ├── fck_hiddenfield.gif
│   │   │   │   │   ├── fck_pagebreak.gif
│   │   │   │   │   └── fck_plugin.gif
│   │   │   │   ├── dialog
│   │   │   │   │   ├── common
│   │   │   │   │   │   ├── fck_dialog_common.css
│   │   │   │   │   │   ├── fck_dialog_common.js
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── locked.gif
│   │   │   │   │   │   ├── reset.gif
│   │   │   │   │   │   └── unlocked.gif
│   │   │   │   │   ├── fck_about
│   │   │   │   │   │   ├── logo_fckeditor.gif
│   │   │   │   │   │   ├── logo_fredck.gif
│   │   │   │   │   │   └── sponsors
│   │   │   │   │   │   └── spellchecker_net.gif
│   │   │   │   │   ├── fck_about.html
│   │   │   │   │   ├── fck_anchor.html
│   │   │   │   │   ├── fck_button.html
│   │   │   │   │   ├── fck_checkbox.html
│   │   │   │   │   ├── fck_colorselector.html
│   │   │   │   │   ├── fck_div.html
│   │   │   │   │   ├── fck_docprops
│   │   │   │   │   │   └── fck_document_preview.html
│   │   │   │   │   ├── fck_docprops.html
│   │   │   │   │   ├── fck_flash
│   │   │   │   │   │   ├── fck_flash.js
│   │   │   │   │   │   └── fck_flash_preview.html
│   │   │   │   │   ├── fck_flash.html
│   │   │   │   │   ├── fck_form.html
│   │   │   │   │   ├── fck_hiddenfield.html
│   │   │   │   │   ├── fck_image
│   │   │   │   │   │   ├── fck_image.js
│   │   │   │   │   │   └── fck_image_preview.html
│   │   │   │   │   ├── fck_image.html
│   │   │   │   │   ├── fck_link
│   │   │   │   │   │   └── fck_link.js
│   │   │   │   │   ├── fck_link.html
│   │   │   │   │   ├── fck_listprop.html
│   │   │   │   │   ├── fck_paste.html
│   │   │   │   │   ├── fck_radiobutton.html
│   │   │   │   │   ├── fck_replace.html
│   │   │   │   │   ├── fck_scayt
│   │   │   │   │   │   └── scayt_dialog.css
│   │   │   │   │   ├── fck_scayt.html
│   │   │   │   │   ├── fck_select
│   │   │   │   │   │   └── fck_select.js
│   │   │   │   │   ├── fck_select.html
│   │   │   │   │   ├── fck_smiley.html
│   │   │   │   │   ├── fck_source.html
│   │   │   │   │   ├── fck_specialchar.html
│   │   │   │   │   ├── fck_spellerpages
│   │   │   │   │   │   └── spellerpages
│   │   │   │   │   │   ├── blank.html
│   │   │   │   │   │   ├── controls.html
│   │   │   │   │   │   ├── controlWindow.js
│   │   │   │   │   │   ├── server-scripts
│   │   │   │   │   │   │   ├── spellchecker.cfm
│   │   │   │   │   │   │   ├── spellchecker.php
│   │   │   │   │   │   │   └── spellchecker.pl
│   │   │   │   │   │   ├── spellchecker.html
│   │   │   │   │   │   ├── spellChecker.js
│   │   │   │   │   │   ├── spellerStyle.css
│   │   │   │   │   │   └── wordWindow.js
│   │   │   │   │   ├── fck_spellerpages.html
│   │   │   │   │   ├── fck_tablecell.html
│   │   │   │   │   ├── fck_table.html
│   │   │   │   │   ├── fck_template
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── template1.gif
│   │   │   │   │   │   ├── template2.gif
│   │   │   │   │   │   └── template3.gif
│   │   │   │   │   ├── fck_template.html
│   │   │   │   │   ├── fck_textarea.html
│   │   │   │   │   └── fck_textfield.html
│   │   │   │   ├── dtd
│   │   │   │   │   ├── fck_dtd_test.html
│   │   │   │   │   ├── fck_xhtml10strict.js
│   │   │   │   │   └── fck_xhtml10transitional.js
│   │   │   │   ├── fckdebug.html
│   │   │   │   ├── fckdialog.html
│   │   │   │   ├── fckeditor.html
│   │   │   │   ├── fckeditor.original.html
│   │   │   │   ├── filemanager
│   │   │   │   │   ├── browser
│   │   │   │   │   │   └── default
│   │   │   │   │   │   ├── browser.css
│   │   │   │   │   │   ├── browser.html
│   │   │   │   │   │   ├── frmactualfolder.html
│   │   │   │   │   │   ├── frmcreatefolder.html
│   │   │   │   │   │   ├── frmfolders.html
│   │   │   │   │   │   ├── frmresourceslist.html
│   │   │   │   │   │   ├── frmresourcetype.html
│   │   │   │   │   │   ├── frmupload.html
│   │   │   │   │   │   ├── images
│   │   │   │   │   │   │   ├── ButtonArrow.gif
│   │   │   │   │   │   │   ├── Folder32.gif
│   │   │   │   │   │   │   ├── Folder.gif
│   │   │   │   │   │   │   ├── FolderOpened32.gif
│   │   │   │   │   │   │   ├── FolderOpened.gif
│   │   │   │   │   │   │   ├── FolderUp.gif
│   │   │   │   │   │   │   ├── icons
│   │   │   │   │   │   │   │   ├── 32
│   │   │   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   │   │   ├── ai.gif
│   │   │   │   │   │   │   │   ├── avi.gif
│   │   │   │   │   │   │   │   ├── bmp.gif
│   │   │   │   │   │   │   │   ├── cs.gif
│   │   │   │   │   │   │   │   ├── default.icon.gif
│   │   │   │   │   │   │   │   ├── dll.gif
│   │   │   │   │   │   │   │   ├── doc.gif
│   │   │   │   │   │   │   │   ├── exe.gif
│   │   │   │   │   │   │   │   ├── fla.gif
│   │   │   │   │   │   │   │   ├── gif.gif
│   │   │   │   │   │   │   │   ├── htm.gif
│   │   │   │   │   │   │   │   ├── html.gif
│   │   │   │   │   │   │   │   ├── jpg.gif
│   │   │   │   │   │   │   │   ├── js.gif
│   │   │   │   │   │   │   │   ├── mdb.gif
│   │   │   │   │   │   │   │   ├── mp3.gif
│   │   │   │   │   │   │   │   ├── pdf.gif
│   │   │   │   │   │   │   │   ├── png.gif
│   │   │   │   │   │   │   │   ├── ppt.gif
│   │   │   │   │   │   │   │   ├── rdp.gif
│   │   │   │   │   │   │   │   ├── swf.gif
│   │   │   │   │   │   │   │   ├── swt.gif
│   │   │   │   │   │   │   │   ├── txt.gif
│   │   │   │   │   │   │   │   ├── vsd.gif
│   │   │   │   │   │   │   │   ├── xls.gif
│   │   │   │   │   │   │   │   ├── xml.gif
│   │   │   │   │   │   │   │   └── zip.gif
│   │   │   │   │   │   │   └── spacer.gif
│   │   │   │   │   │   └── js
│   │   │   │   │   │   ├── common.js
│   │   │   │   │   │   └── fckxml.js
│   │   │   │   │   └── connectors
│   │   │   │   │   ├── asp
│   │   │   │   │   │   ├── basexml.asp
│   │   │   │   │   │   ├── class_upload.asp
│   │   │   │   │   │   ├── commands.asp
│   │   │   │   │   │   ├── config.asp
│   │   │   │   │   │   ├── connector.asp
│   │   │   │   │   │   ├── io.asp
│   │   │   │   │   │   ├── upload.asp
│   │   │   │   │   │   └── util.asp
│   │   │   │   │   ├── aspx
│   │   │   │   │   │   ├── config.ascx
│   │   │   │   │   │   ├── connector.aspx
│   │   │   │   │   │   └── upload.aspx
│   │   │   │   │   ├── cfm
│   │   │   │   │   │   ├── cf5_connector.cfm
│   │   │   │   │   │   ├── cf5_upload.cfm
│   │   │   │   │   │   ├── cf_basexml.cfm
│   │   │   │   │   │   ├── cf_commands.cfm
│   │   │   │   │   │   ├── cf_connector.cfm
│   │   │   │   │   │   ├── cf_io.cfm
│   │   │   │   │   │   ├── cf_upload.cfm
│   │   │   │   │   │   ├── cf_util.cfm
│   │   │   │   │   │   ├── config.cfm
│   │   │   │   │   │   ├── connector.cfm
│   │   │   │   │   │   ├── image.cfc
│   │   │   │   │   │   ├── ImageObject.cfc
│   │   │   │   │   │   └── upload.cfm
│   │   │   │   │   ├── lasso
│   │   │   │   │   │   ├── config.lasso
│   │   │   │   │   │   ├── connector.lasso
│   │   │   │   │   │   └── upload.lasso
│   │   │   │   │   ├── perl
│   │   │   │   │   │   ├── basexml.pl
│   │   │   │   │   │   ├── commands.pl
│   │   │   │   │   │   ├── config.pl
│   │   │   │   │   │   ├── connector.cgi
│   │   │   │   │   │   ├── io.pl
│   │   │   │   │   │   ├── upload.cgi
│   │   │   │   │   │   ├── upload_fck.pl
│   │   │   │   │   │   └── util.pl
│   │   │   │   │   ├── php
│   │   │   │   │   │   ├── basexml.php
│   │   │   │   │   │   ├── commands.php
│   │   │   │   │   │   ├── config.php
│   │   │   │   │   │   ├── connector.php
│   │   │   │   │   │   ├── io.php
│   │   │   │   │   │   ├── phpcompat.php
│   │   │   │   │   │   ├── upload.php
│   │   │   │   │   │   └── util.php
│   │   │   │   │   ├── py
│   │   │   │   │   │   ├── config.py
│   │   │   │   │   │   ├── connector.py
│   │   │   │   │   │   ├── fckcommands.py
│   │   │   │   │   │   ├── fckconnector.py
│   │   │   │   │   │   ├── fckoutput.py
│   │   │   │   │   │   ├── fckutil.py
│   │   │   │   │   │   ├── htaccess.txt
│   │   │   │   │   │   ├── upload.py
│   │   │   │   │   │   ├── wsgi.py
│   │   │   │   │   │   └── zope.py
│   │   │   │   │   ├── test.html
│   │   │   │   │   └── uploadtest.html
│   │   │   │   ├── images
│   │   │   │   │   ├── anchor.gif
│   │   │   │   │   ├── arrow_ltr.gif
│   │   │   │   │   ├── arrow_rtl.gif
│   │   │   │   │   ├── smiley
│   │   │   │   │   │   └── msn
│   │   │   │   │   │   ├── angel_smile.gif
│   │   │   │   │   │   ├── angry_smile.gif
│   │   │   │   │   │   ├── broken_heart.gif
│   │   │   │   │   │   ├── cake.gif
│   │   │   │   │   │   ├── confused_smile.gif
│   │   │   │   │   │   ├── cry_smile.gif
│   │   │   │   │   │   ├── devil_smile.gif
│   │   │   │   │   │   ├── embaressed_smile.gif
│   │   │   │   │   │   ├── envelope.gif
│   │   │   │   │   │   ├── heart.gif
│   │   │   │   │   │   ├── kiss.gif
│   │   │   │   │   │   ├── lightbulb.gif
│   │   │   │   │   │   ├── omg_smile.gif
│   │   │   │   │   │   ├── regular_smile.gif
│   │   │   │   │   │   ├── sad_smile.gif
│   │   │   │   │   │   ├── shades_smile.gif
│   │   │   │   │   │   ├── teeth_smile.gif
│   │   │   │   │   │   ├── thumbs_down.gif
│   │   │   │   │   │   ├── thumbs_up.gif
│   │   │   │   │   │   ├── tounge_smile.gif
│   │   │   │   │   │   ├── whatchutalkingabout_smile.gif
│   │   │   │   │   │   └── wink_smile.gif
│   │   │   │   │   └── spacer.gif
│   │   │   │   ├── js
│   │   │   │   │   ├── fckadobeair.js
│   │   │   │   │   ├── fckeditorcode_gecko.js
│   │   │   │   │   └── fckeditorcode_ie.js
│   │   │   │   ├── lang
│   │   │   │   │   ├── af.js
│   │   │   │   │   ├── ar.js
│   │   │   │   │   ├── bg.js
│   │   │   │   │   ├── bn.js
│   │   │   │   │   ├── bs.js
│   │   │   │   │   ├── ca.js
│   │   │   │   │   ├── cs.js
│   │   │   │   │   ├── da.js
│   │   │   │   │   ├── de.js
│   │   │   │   │   ├── el.js
│   │   │   │   │   ├── en-au.js
│   │   │   │   │   ├── en-ca.js
│   │   │   │   │   ├── en.js
│   │   │   │   │   ├── en-uk.js
│   │   │   │   │   ├── eo.js
│   │   │   │   │   ├── es.js
│   │   │   │   │   ├── et.js
│   │   │   │   │   ├── eu.js
│   │   │   │   │   ├── fa.js
│   │   │   │   │   ├── fi.js
│   │   │   │   │   ├── fo.js
│   │   │   │   │   ├── fr-ca.js
│   │   │   │   │   ├── fr.js
│   │   │   │   │   ├── gl.js
│   │   │   │   │   ├── gu.js
│   │   │   │   │   ├── he.js
│   │   │   │   │   ├── hi.js
│   │   │   │   │   ├── hr.js
│   │   │   │   │   ├── hu.js
│   │   │   │   │   ├── is.js
│   │   │   │   │   ├── it.js
│   │   │   │   │   ├── ja.js
│   │   │   │   │   ├── km.js
│   │   │   │   │   ├── ko.js
│   │   │   │   │   ├── lt.js
│   │   │   │   │   ├── lv.js
│   │   │   │   │   ├── mn.js
│   │   │   │   │   ├── ms.js
│   │   │   │   │   ├── nb.js
│   │   │   │   │   ├── nl.js
│   │   │   │   │   ├── no.js
│   │   │   │   │   ├── pl.js
│   │   │   │   │   ├── pt-br.js
│   │   │   │   │   ├── pt.js
│   │   │   │   │   ├── ro.js
│   │   │   │   │   ├── ru.js
│   │   │   │   │   ├── sk.js
│   │   │   │   │   ├── sl.js
│   │   │   │   │   ├── sr.js
│   │   │   │   │   ├── sr-latn.js
│   │   │   │   │   ├── sv.js
│   │   │   │   │   ├── th.js
│   │   │   │   │   ├── _translationstatus.txt
│   │   │   │   │   ├── tr.js
│   │   │   │   │   ├── uk.js
│   │   │   │   │   ├── vi.js
│   │   │   │   │   ├── zh-cn.js
│   │   │   │   │   └── zh.js
│   │   │   │   ├── plugins
│   │   │   │   │   ├── autogrow
│   │   │   │   │   │   └── fckplugin.js
│   │   │   │   │   ├── bbcode
│   │   │   │   │   │   ├── fckplugin.js
│   │   │   │   │   │   └── _sample
│   │   │   │   │   │   ├── sample.config.js
│   │   │   │   │   │   └── sample.html
│   │   │   │   │   ├── dragresizetable
│   │   │   │   │   │   └── fckplugin.js
│   │   │   │   │   ├── placeholder
│   │   │   │   │   │   ├── fck_placeholder.html
│   │   │   │   │   │   ├── fckplugin.js
│   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   ├── de.js
│   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   ├── es.js
│   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   ├── it.js
│   │   │   │   │   │   │   └── pl.js
│   │   │   │   │   │   └── placeholder.gif
│   │   │   │   │   ├── simplecommands
│   │   │   │   │   │   └── fckplugin.js
│   │   │   │   │   └── tablecommands
│   │   │   │   │   └── fckplugin.js
│   │   │   │   ├── skins
│   │   │   │   │   ├── default
│   │   │   │   │   │   ├── fck_dialog.css
│   │   │   │   │   │   ├── fck_dialog_ie6.js
│   │   │   │   │   │   ├── fck_editor.css
│   │   │   │   │   │   ├── fck_strip.gif
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── dialog.sides.gif
│   │   │   │   │   │   ├── dialog.sides.png
│   │   │   │   │   │   ├── dialog.sides.rtl.png
│   │   │   │   │   │   ├── sprites.gif
│   │   │   │   │   │   ├── sprites.png
│   │   │   │   │   │   ├── toolbar.arrowright.gif
│   │   │   │   │   │   ├── toolbar.buttonarrow.gif
│   │   │   │   │   │   ├── toolbar.collapse.gif
│   │   │   │   │   │   ├── toolbar.end.gif
│   │   │   │   │   │   ├── toolbar.expand.gif
│   │   │   │   │   │   ├── toolbar.separator.gif
│   │   │   │   │   │   └── toolbar.start.gif
│   │   │   │   │   ├── _fckviewstrips.html
│   │   │   │   │   ├── office2003
│   │   │   │   │   │   ├── fck_dialog.css
│   │   │   │   │   │   ├── fck_dialog_ie6.js
│   │   │   │   │   │   ├── fck_editor.css
│   │   │   │   │   │   ├── fck_strip.gif
│   │   │   │   │   │   └── images
│   │   │   │   │   │   ├── dialog.sides.gif
│   │   │   │   │   │   ├── dialog.sides.png
│   │   │   │   │   │   ├── dialog.sides.rtl.png
│   │   │   │   │   │   ├── sprites.gif
│   │   │   │   │   │   ├── sprites.png
│   │   │   │   │   │   ├── toolbar.arrowright.gif
│   │   │   │   │   │   ├── toolbar.bg.gif
│   │   │   │   │   │   ├── toolbar.buttonarrow.gif
│   │   │   │   │   │   ├── toolbar.collapse.gif
│   │   │   │   │   │   ├── toolbar.end.gif
│   │   │   │   │   │   ├── toolbar.expand.gif
│   │   │   │   │   │   ├── toolbar.separator.gif
│   │   │   │   │   │   └── toolbar.start.gif
│   │   │   │   │   └── silver
│   │   │   │   │   ├── fck_dialog.css
│   │   │   │   │   ├── fck_dialog_ie6.js
│   │   │   │   │   ├── fck_editor.css
│   │   │   │   │   ├── fck_strip.gif
│   │   │   │   │   └── images
│   │   │   │   │   ├── dialog.sides.gif
│   │   │   │   │   ├── dialog.sides.png
│   │   │   │   │   ├── dialog.sides.rtl.png
│   │   │   │   │   ├── sprites.gif
│   │   │   │   │   ├── sprites.png
│   │   │   │   │   ├── toolbar.arrowright.gif
│   │   │   │   │   ├── toolbar.buttonarrow.gif
│   │   │   │   │   ├── toolbar.buttonbg.gif
│   │   │   │   │   ├── toolbar.collapse.gif
│   │   │   │   │   ├── toolbar.end.gif
│   │   │   │   │   ├── toolbar.expand.gif
│   │   │   │   │   ├── toolbar.separator.gif
│   │   │   │   │   └── toolbar.start.gif
│   │   │   │   ├── _source
│   │   │   │   │   ├── classes
│   │   │   │   │   │   ├── fckcontextmenu.js
│   │   │   │   │   │   ├── fckdataprocessor.js
│   │   │   │   │   │   ├── fckdocumentfragment_gecko.js
│   │   │   │   │   │   ├── fckdocumentfragment_ie.js
│   │   │   │   │   │   ├── fckdomrange_gecko.js
│   │   │   │   │   │   ├── fckdomrange_ie.js
│   │   │   │   │   │   ├── fckdomrangeiterator.js
│   │   │   │   │   │   ├── fckdomrange.js
│   │   │   │   │   │   ├── fckeditingarea.js
│   │   │   │   │   │   ├── fckelementpath.js
│   │   │   │   │   │   ├── fckenterkey.js
│   │   │   │   │   │   ├── fckevents.js
│   │   │   │   │   │   ├── fckhtmliterator.js
│   │   │   │   │   │   ├── fckicon.js
│   │   │   │   │   │   ├── fckiecleanup.js
│   │   │   │   │   │   ├── fckimagepreloader.js
│   │   │   │   │   │   ├── fckkeystrokehandler.js
│   │   │   │   │   │   ├── fckmenublock.js
│   │   │   │   │   │   ├── fckmenublockpanel.js
│   │   │   │   │   │   ├── fckmenuitem.js
│   │   │   │   │   │   ├── fckpanel.js
│   │   │   │   │   │   ├── fckplugin.js
│   │   │   │   │   │   ├── fckspecialcombo.js
│   │   │   │   │   │   ├── fckstyle.js
│   │   │   │   │   │   ├── fcktoolbarbreak_gecko.js
│   │   │   │   │   │   ├── fcktoolbarbreak_ie.js
│   │   │   │   │   │   ├── fcktoolbarbutton.js
│   │   │   │   │   │   ├── fcktoolbarbuttonui.js
│   │   │   │   │   │   ├── fcktoolbarfontformatcombo.js
│   │   │   │   │   │   ├── fcktoolbarfontscombo.js
│   │   │   │   │   │   ├── fcktoolbarfontsizecombo.js
│   │   │   │   │   │   ├── fcktoolbar.js
│   │   │   │   │   │   ├── fcktoolbarpanelbutton.js
│   │   │   │   │   │   ├── fcktoolbarspecialcombo.js
│   │   │   │   │   │   ├── fcktoolbarstylecombo.js
│   │   │   │   │   │   ├── fckw3crange.js
│   │   │   │   │   │   ├── fckxml_gecko.js
│   │   │   │   │   │   ├── fckxml_ie.js
│   │   │   │   │   │   └── fckxml.js
│   │   │   │   │   ├── commandclasses
│   │   │   │   │   │   ├── fckblockquotecommand.js
│   │   │   │   │   │   ├── fckcorestylecommand.js
│   │   │   │   │   │   ├── fckfitwindow.js
│   │   │   │   │   │   ├── fckindentcommands.js
│   │   │   │   │   │   ├── fckjustifycommands.js
│   │   │   │   │   │   ├── fcklistcommands.js
│   │   │   │   │   │   ├── fcknamedcommand.js
│   │   │   │   │   │   ├── fck_othercommands.js
│   │   │   │   │   │   ├── fckpasteplaintextcommand.js
│   │   │   │   │   │   ├── fckpastewordcommand.js
│   │   │   │   │   │   ├── fckremoveformatcommand.js
│   │   │   │   │   │   ├── fckshowblocks.js
│   │   │   │   │   │   ├── fckspellcheckcommand_gecko.js
│   │   │   │   │   │   ├── fckspellcheckcommand_ie.js
│   │   │   │   │   │   ├── fckstylecommand.js
│   │   │   │   │   │   ├── fcktablecommand.js
│   │   │   │   │   │   └── fcktextcolorcommand.js
│   │   │   │   │   ├── fckconstants.js
│   │   │   │   │   ├── fckeditorapi.js
│   │   │   │   │   ├── fckjscoreextensions.js
│   │   │   │   │   ├── fckscriptloader.js
│   │   │   │   │   └── internals
│   │   │   │   │   ├── fckbrowserinfo.js
│   │   │   │   │   ├── fckcodeformatter.js
│   │   │   │   │   ├── fckcommands.js
│   │   │   │   │   ├── fckconfig.js
│   │   │   │   │   ├── fck_contextmenu.js
│   │   │   │   │   ├── fckdebug_empty.js
│   │   │   │   │   ├── fckdebug.js
│   │   │   │   │   ├── fckdialog.js
│   │   │   │   │   ├── fckdocumentprocessor.js
│   │   │   │   │   ├── fckdomtools.js
│   │   │   │   │   ├── fck_gecko.js
│   │   │   │   │   ├── fck_ie.js
│   │   │   │   │   ├── fck.js
│   │   │   │   │   ├── fcklanguagemanager.js
│   │   │   │   │   ├── fcklisthandler.js
│   │   │   │   │   ├── fcklistslib.js
│   │   │   │   │   ├── fckplugins.js
│   │   │   │   │   ├── fckregexlib.js
│   │   │   │   │   ├── fckscayt.js
│   │   │   │   │   ├── fckselection_gecko.js
│   │   │   │   │   ├── fckselection_ie.js
│   │   │   │   │   ├── fckselection.js
│   │   │   │   │   ├── fckstyles.js
│   │   │   │   │   ├── fcktablehandler_gecko.js
│   │   │   │   │   ├── fcktablehandler_ie.js
│   │   │   │   │   ├── fcktablehandler.js
│   │   │   │   │   ├── fcktoolbaritems.js
│   │   │   │   │   ├── fcktoolbarset.js
│   │   │   │   │   ├── fcktools_gecko.js
│   │   │   │   │   ├── fcktools_ie.js
│   │   │   │   │   ├── fcktools.js
│   │   │   │   │   ├── fckundo.js
│   │   │   │   │   ├── fckurlparams.js
│   │   │   │   │   ├── fckxhtmlentities.js
│   │   │   │   │   ├── fckxhtml_gecko.js
│   │   │   │   │   ├── fckxhtml_ie.js
│   │   │   │   │   └── fckxhtml.js
│   │   │   │   └── wsc
│   │   │   │   ├── ciframe.html
│   │   │   │   ├── tmpFrameset.html
│   │   │   │   └── w.html
│   │   │   ├── fckconfig.js
│   │   │   ├── fckeditor.afp
│   │   │   ├── fckeditor.asp
│   │   │   ├── fckeditor.cfc
│   │   │   ├── fckeditor.cfm
│   │   │   ├── fckeditor.js
│   │   │   ├── fckeditor.lasso
│   │   │   ├── fckeditor.php
│   │   │   ├── fckeditor_php4.php
│   │   │   ├── fckeditor_php5.php
│   │   │   ├── fckeditor.pl
│   │   │   ├── fckeditor.py
│   │   │   ├── fckpackager.xml
│   │   │   ├── fckstyles.xml
│   │   │   ├── fcktemplates.xml
│   │   │   ├── fckutils.cfm
│   │   │   ├── license.txt
│   │   │   ├── _samples
│   │   │   │   ├── adobeair
│   │   │   │   │   ├── application.xml
│   │   │   │   │   ├── icons
│   │   │   │   │   │   ├── 128.png
│   │   │   │   │   │   ├── 16.png
│   │   │   │   │   │   ├── 32.png
│   │   │   │   │   │   └── 48.png
│   │   │   │   │   ├── package.bat
│   │   │   │   │   ├── run.bat
│   │   │   │   │   ├── sample01_cert.pfx
│   │   │   │   │   └── sample01.html
│   │   │   │   ├── afp
│   │   │   │   │   ├── fck.afpa
│   │   │   │   │   ├── fck.afpa.code
│   │   │   │   │   ├── sample01.afp
│   │   │   │   │   ├── sample02.afp
│   │   │   │   │   ├── sample03.afp
│   │   │   │   │   ├── sample04.afp
│   │   │   │   │   └── sampleposteddata.afp
│   │   │   │   ├── asp
│   │   │   │   │   ├── sample01.asp
│   │   │   │   │   ├── sample02.asp
│   │   │   │   │   ├── sample03.asp
│   │   │   │   │   ├── sample04.asp
│   │   │   │   │   └── sampleposteddata.asp
│   │   │   │   ├── cfm
│   │   │   │   │   ├── sample01.cfm
│   │   │   │   │   ├── sample01_mx.cfm
│   │   │   │   │   ├── sample02.cfm
│   │   │   │   │   ├── sample02_mx.cfm
│   │   │   │   │   ├── sample03.cfm
│   │   │   │   │   ├── sample03_mx.cfm
│   │   │   │   │   ├── sample04.cfm
│   │   │   │   │   ├── sample04_mx.cfm
│   │   │   │   │   └── sampleposteddata.cfm
│   │   │   │   ├── default.html
│   │   │   │   ├── html
│   │   │   │   │   ├── assets
│   │   │   │   │   │   ├── sample06.config.js
│   │   │   │   │   │   ├── sample11_frame.html
│   │   │   │   │   │   ├── sample14.config.js
│   │   │   │   │   │   ├── sample14.styles.css
│   │   │   │   │   │   ├── sample15.config.js
│   │   │   │   │   │   ├── sample16.config.js
│   │   │   │   │   │   ├── sample16.fla
│   │   │   │   │   │   ├── sample16.swf
│   │   │   │   │   │   └── swfobject.js
│   │   │   │   │   ├── sample01.html
│   │   │   │   │   ├── sample02.html
│   │   │   │   │   ├── sample03.html
│   │   │   │   │   ├── sample04.html
│   │   │   │   │   ├── sample05.html
│   │   │   │   │   ├── sample06.html
│   │   │   │   │   ├── sample07.html
│   │   │   │   │   ├── sample08.html
│   │   │   │   │   ├── sample09.html
│   │   │   │   │   ├── sample10.html
│   │   │   │   │   ├── sample11.html
│   │   │   │   │   ├── sample12.html
│   │   │   │   │   ├── sample13.html
│   │   │   │   │   ├── sample14.html
│   │   │   │   │   ├── sample15.html
│   │   │   │   │   └── sample16.html
│   │   │   │   ├── lasso
│   │   │   │   │   ├── sample01.lasso
│   │   │   │   │   ├── sample02.lasso
│   │   │   │   │   ├── sample03.lasso
│   │   │   │   │   ├── sample04.lasso
│   │   │   │   │   └── sampleposteddata.lasso
│   │   │   │   ├── perl
│   │   │   │   │   ├── sample01.cgi
│   │   │   │   │   ├── sample02.cgi
│   │   │   │   │   ├── sample03.cgi
│   │   │   │   │   ├── sample04.cgi
│   │   │   │   │   └── sampleposteddata.cgi
│   │   │   │   ├── php
│   │   │   │   │   ├── sample01.php
│   │   │   │   │   ├── sample02.php
│   │   │   │   │   ├── sample03.php
│   │   │   │   │   ├── sample04.php
│   │   │   │   │   └── sampleposteddata.php
│   │   │   │   ├── _plugins
│   │   │   │   │   ├── findreplace
│   │   │   │   │   │   ├── fckplugin.js
│   │   │   │   │   │   ├── find.gif
│   │   │   │   │   │   ├── find.html
│   │   │   │   │   │   ├── lang
│   │   │   │   │   │   │   ├── en.js
│   │   │   │   │   │   │   ├── fr.js
│   │   │   │   │   │   │   └── it.js
│   │   │   │   │   │   ├── replace.gif
│   │   │   │   │   │   └── replace.html
│   │   │   │   │   └── samples
│   │   │   │   │   └── fckplugin.js
│   │   │   │   ├── py
│   │   │   │   │   ├── sample01.py
│   │   │   │   │   └── sampleposteddata.py
│   │   │   │   ├── sample.css
│   │   │   │   └── sampleslist.html
│   │   │   ├── _upgrade.html
│   │   │   ├── _whatsnew_history.html
│   │   │   └── _whatsnew.html
│   │   ├── include.jsp
│   │   ├── jquery
│   │   │   ├── AUTHORS.txt
│   │   │   ├── demos
│   │   │   │   ├── accordion
│   │   │   │   │   ├── collapsible.html
│   │   │   │   │   ├── custom-icons.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── fillspace.html
│   │   │   │   │   ├── hoverintent.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── mouseover.html
│   │   │   │   │   ├── no-auto-height.html
│   │   │   │   │   └── sortable.html
│   │   │   │   ├── addClass
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── animate
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── autocomplete
│   │   │   │   │   ├── categories.html
│   │   │   │   │   ├── combobox.html
│   │   │   │   │   ├── custom-data.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── folding.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── jquery_32x32.png
│   │   │   │   │   │   ├── jqueryui_32x32.png
│   │   │   │   │   │   ├── sizzlejs_32x32.png
│   │   │   │   │   │   ├── transparent_1x1.png
│   │   │   │   │   │   └── ui-anim_basic_16x16.gif
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── london.xml
│   │   │   │   │   ├── maxheight.html
│   │   │   │   │   ├── multiple.html
│   │   │   │   │   ├── multiple-remote.html
│   │   │   │   │   ├── remote.html
│   │   │   │   │   ├── remote-jsonp.html
│   │   │   │   │   ├── remote-with-cache.html
│   │   │   │   │   ├── search.php
│   │   │   │   │   └── xml.html
│   │   │   │   ├── button
│   │   │   │   │   ├── checkbox.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── icons.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── radio.html
│   │   │   │   │   ├── splitbutton.html
│   │   │   │   │   └── toolbar.html
│   │   │   │   ├── datepicker
│   │   │   │   │   ├── alt-field.html
│   │   │   │   │   ├── animation.html
│   │   │   │   │   ├── buttonbar.html
│   │   │   │   │   ├── date-formats.html
│   │   │   │   │   ├── date-range.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── dropdown-month-year.html
│   │   │   │   │   ├── icon-trigger.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── calendar.gif
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── inline.html
│   │   │   │   │   ├── localization.html
│   │   │   │   │   ├── min-max.html
│   │   │   │   │   ├── multiple-calendars.html
│   │   │   │   │   ├── other-months.html
│   │   │   │   │   └── show-week.html
│   │   │   │   ├── demos.css
│   │   │   │   ├── dialog
│   │   │   │   │   ├── animated.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── modal-confirmation.html
│   │   │   │   │   ├── modal-form.html
│   │   │   │   │   ├── modal.html
│   │   │   │   │   └── modal-message.html
│   │   │   │   ├── draggable
│   │   │   │   │   ├── constrain-movement.html
│   │   │   │   │   ├── cursor-style.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── delay-start.html
│   │   │   │   │   ├── events.html
│   │   │   │   │   ├── handle.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── revert.html
│   │   │   │   │   ├── scroll.html
│   │   │   │   │   ├── snap-to.html
│   │   │   │   │   ├── sortable.html
│   │   │   │   │   └── visual-feedback.html
│   │   │   │   ├── droppable
│   │   │   │   │   ├── accepted-elements.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── high_tatras2.jpg
│   │   │   │   │   │   ├── high_tatras2_min.jpg
│   │   │   │   │   │   ├── high_tatras3.jpg
│   │   │   │   │   │   ├── high_tatras3_min.jpg
│   │   │   │   │   │   ├── high_tatras4.jpg
│   │   │   │   │   │   ├── high_tatras4_min.jpg
│   │   │   │   │   │   ├── high_tatras.jpg
│   │   │   │   │   │   └── high_tatras_min.jpg
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── photo-manager.html
│   │   │   │   │   ├── propagation.html
│   │   │   │   │   ├── revert.html
│   │   │   │   │   ├── shopping-cart.html
│   │   │   │   │   └── visual-feedback.html
│   │   │   │   ├── effect
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── easing.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── hide
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── images
│   │   │   │   │   ├── calendar.gif
│   │   │   │   │   ├── demo-config-on.gif
│   │   │   │   │   ├── demo-config-on-tile.gif
│   │   │   │   │   ├── demo-spindown-closed.gif
│   │   │   │   │   ├── demo-spindown-open.gif
│   │   │   │   │   ├── icon-docs-info.gif
│   │   │   │   │   └── pbar-ani.gif
│   │   │   │   ├── index.html
│   │   │   │   ├── position
│   │   │   │   │   ├── cycler.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── earth.jpg
│   │   │   │   │   │   ├── flight.jpg
│   │   │   │   │   │   └── rocket.jpg
│   │   │   │   │   └── index.html
│   │   │   │   ├── progressbar
│   │   │   │   │   ├── animated.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── images
│   │   │   │   │   │   └── pbar-ani.gif
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── resize.html
│   │   │   │   ├── removeClass
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── resizable
│   │   │   │   │   ├── animate.html
│   │   │   │   │   ├── aspect-ratio.html
│   │   │   │   │   ├── constrain-area.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── delay-start.html
│   │   │   │   │   ├── helper.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── max-min.html
│   │   │   │   │   ├── snap-to-grid.html
│   │   │   │   │   ├── synchronous-resize.html
│   │   │   │   │   ├── textarea.html
│   │   │   │   │   └── visual-feedback.html
│   │   │   │   ├── selectable
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── display-grid.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   └── serialize.html
│   │   │   │   ├── show
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── slider
│   │   │   │   │   ├── colorpicker.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── hotelrooms.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── multiple-vertical.html
│   │   │   │   │   ├── range.html
│   │   │   │   │   ├── rangemax.html
│   │   │   │   │   ├── rangemin.html
│   │   │   │   │   ├── range-vertical.html
│   │   │   │   │   ├── side-scroll.html
│   │   │   │   │   ├── slider-vertical.html
│   │   │   │   │   ├── steps.html
│   │   │   │   │   └── tabs.html
│   │   │   │   ├── sortable
│   │   │   │   │   ├── connect-lists.html
│   │   │   │   │   ├── connect-lists-through-tabs.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── delay-start.html
│   │   │   │   │   ├── display-grid.html
│   │   │   │   │   ├── empty-lists.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── items.html
│   │   │   │   │   ├── placeholder.html
│   │   │   │   │   └── portlets.html
│   │   │   │   ├── switchClass
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   ├── tabs
│   │   │   │   │   ├── ajax
│   │   │   │   │   │   ├── content1.html
│   │   │   │   │   │   ├── content2.html
│   │   │   │   │   │   ├── content3-slow.php
│   │   │   │   │   │   └── content4-broken.php
│   │   │   │   │   ├── ajax.html
│   │   │   │   │   ├── bottom.html
│   │   │   │   │   ├── collapsible.html
│   │   │   │   │   ├── cookie.html
│   │   │   │   │   ├── default.html
│   │   │   │   │   ├── index.html
│   │   │   │   │   ├── manipulation.html
│   │   │   │   │   ├── mouseover.html
│   │   │   │   │   ├── sortable.html
│   │   │   │   │   └── vertical.html
│   │   │   │   ├── toggle
│   │   │   │   │   ├── default.html
│   │   │   │   │   └── index.html
│   │   │   │   └── toggleClass
│   │   │   │   ├── default.html
│   │   │   │   └── index.html
│   │   │   ├── demos.css
│   │   │   ├── docs
│   │   │   │   ├── accordion.html
│   │   │   │   ├── addClass.html
│   │   │   │   ├── animate.html
│   │   │   │   ├── autocomplete.html
│   │   │   │   ├── button.html
│   │   │   │   ├── datepicker.html
│   │   │   │   ├── dialog.html
│   │   │   │   ├── draggable.html
│   │   │   │   ├── droppable.html
│   │   │   │   ├── effect.html
│   │   │   │   ├── hide.html
│   │   │   │   ├── position.html
│   │   │   │   ├── progressbar.html
│   │   │   │   ├── removeClass.html
│   │   │   │   ├── resizable.html
│   │   │   │   ├── selectable.html
│   │   │   │   ├── show.html
│   │   │   │   ├── slider.html
│   │   │   │   ├── sortable.html
│   │   │   │   ├── switchClass.html
│   │   │   │   ├── tabs.html
│   │   │   │   ├── toggleClass.html
│   │   │   │   └── toggle.html
│   │   │   ├── external
│   │   │   │   ├── jquery.bgiframe-2.1.2.js
│   │   │   │   ├── jquery.cookie.js
│   │   │   │   ├── jquery.metadata.js
│   │   │   │   ├── qunit.css
│   │   │   │   └── qunit.js
│   │   │   ├── GPL-LICENSE.txt
│   │   │   ├── jquery-1.4.2.min.js
│   │   │   ├── jquery-1.4.4.js
│   │   │   ├── jquery-ui-1.8.9.custom.min.js
│   │   │   ├── jquery.ui.all.css
│   │   │   ├── jquery.ui.autocomplete.js
│   │   │   ├── jquery.ui.core.js
│   │   │   ├── jquery.ui.position.js
│   │   │   ├── jquery.ui.widget.js
│   │   │   ├── MIT-LICENSE.txt
│   │   │   ├── themes
│   │   │   │   ├── base
│   │   │   │   │   ├── images
│   │   │   │   │   │   ├── ui-bg_flat_0_aaaaaa_40x100.png
│   │   │   │   │   │   ├── ui-bg_flat_75_ffffff_40x100.png
│   │   │   │   │   │   ├── ui-bg_glass_55_fbf9ee_1x400.png
│   │   │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   │   │   ├── ui-bg_glass_75_dadada_1x400.png
│   │   │   │   │   │   ├── ui-bg_glass_75_e6e6e6_1x400.png
│   │   │   │   │   │   ├── ui-bg_glass_95_fef1ec_1x400.png
│   │   │   │   │   │   ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│   │   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   │   ├── ui-icons_2e83ff_256x240.png
│   │   │   │   │   │   ├── ui-icons_454545_256x240.png
│   │   │   │   │   │   ├── ui-icons_888888_256x240.png
│   │   │   │   │   │   └── ui-icons_cd0a0a_256x240.png
│   │   │   │   │   ├── jquery.ui.accordion.css
│   │   │   │   │   ├── jquery.ui.all.css
│   │   │   │   │   ├── jquery.ui.autocomplete.css
│   │   │   │   │   ├── jquery.ui.base.css
│   │   │   │   │   ├── jquery.ui.button.css
│   │   │   │   │   ├── jquery.ui.core.css
│   │   │   │   │   ├── jquery.ui.datepicker.css
│   │   │   │   │   ├── jquery.ui.dialog.css
│   │   │   │   │   ├── jquery.ui.progressbar.css
│   │   │   │   │   ├── jquery.ui.resizable.css
│   │   │   │   │   ├── jquery.ui.selectable.css
│   │   │   │   │   ├── jquery.ui.slider.css
│   │   │   │   │   ├── jquery.ui.tabs.css
│   │   │   │   │   └── jquery.ui.theme.css
│   │   │   │   └── ui-lightness
│   │   │   │   ├── images
│   │   │   │   │   ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│   │   │   │   │   ├── ui-bg_diagonals-thick_20_666666_40x40.png
│   │   │   │   │   ├── ui-bg_flat_10_000000_40x100.png
│   │   │   │   │   ├── ui-bg_glass_100_f6f6f6_1x400.png
│   │   │   │   │   ├── ui-bg_glass_100_fdf5ce_1x400.png
│   │   │   │   │   ├── ui-bg_glass_65_ffffff_1x400.png
│   │   │   │   │   ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│   │   │   │   │   ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│   │   │   │   │   ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│   │   │   │   │   ├── ui-icons_222222_256x240.png
│   │   │   │   │   ├── ui-icons_228ef1_256x240.png
│   │   │   │   │   ├── ui-icons_ef8c08_256x240.png
│   │   │   │   │   ├── ui-icons_ffd27a_256x240.png
│   │   │   │   │   └── ui-icons_ffffff_256x240.png
│   │   │   │   ├── jquery-ui-1.8.9.custom.css
│   │   │   │   ├── jquery.ui.accordion.css
│   │   │   │   ├── jquery.ui.all.css
│   │   │   │   ├── jquery.ui.autocomplete.css
│   │   │   │   ├── jquery.ui.base.css
│   │   │   │   ├── jquery.ui.button.css
│   │   │   │   ├── jquery.ui.core.css
│   │   │   │   ├── jquery.ui.datepicker.css
│   │   │   │   ├── jquery.ui.dialog.css
│   │   │   │   ├── jquery.ui.progressbar.css
│   │   │   │   ├── jquery.ui.resizable.css
│   │   │   │   ├── jquery.ui.selectable.css
│   │   │   │   ├── jquery.ui.slider.css
│   │   │   │   ├── jquery.ui.tabs.css
│   │   │   │   └── jquery.ui.theme.css
│   │   │   ├── ui
│   │   │   │   ├── i18n
│   │   │   │   │   ├── jquery.ui.datepicker-af.js
│   │   │   │   │   ├── jquery.ui.datepicker-ar-DZ.js
│   │   │   │   │   ├── jquery.ui.datepicker-ar.js
│   │   │   │   │   ├── jquery.ui.datepicker-az.js
│   │   │   │   │   ├── jquery.ui.datepicker-bg.js
│   │   │   │   │   ├── jquery.ui.datepicker-bs.js
│   │   │   │   │   ├── jquery.ui.datepicker-ca.js
│   │   │   │   │   ├── jquery.ui.datepicker-cs.js
│   │   │   │   │   ├── jquery.ui.datepicker-da.js
│   │   │   │   │   ├── jquery.ui.datepicker-de.js
│   │   │   │   │   ├── jquery.ui.datepicker-el.js
│   │   │   │   │   ├── jquery.ui.datepicker-en-AU.js
│   │   │   │   │   ├── jquery.ui.datepicker-en-GB.js
│   │   │   │   │   ├── jquery.ui.datepicker-en-NZ.js
│   │   │   │   │   ├── jquery.ui.datepicker-eo.js
│   │   │   │   │   ├── jquery.ui.datepicker-es.js
│   │   │   │   │   ├── jquery.ui.datepicker-et.js
│   │   │   │   │   ├── jquery.ui.datepicker-eu.js
│   │   │   │   │   ├── jquery.ui.datepicker-fa.js
│   │   │   │   │   ├── jquery.ui.datepicker-fi.js
│   │   │   │   │   ├── jquery.ui.datepicker-fo.js
│   │   │   │   │   ├── jquery.ui.datepicker-fr-CH.js
│   │   │   │   │   ├── jquery.ui.datepicker-fr.js
│   │   │   │   │   ├── jquery.ui.datepicker-gl.js
│   │   │   │   │   ├── jquery.ui.datepicker-he.js
│   │   │   │   │   ├── jquery.ui.datepicker-hr.js
│   │   │   │   │   ├── jquery.ui.datepicker-hu.js
│   │   │   │   │   ├── jquery.ui.datepicker-hy.js
│   │   │   │   │   ├── jquery.ui.datepicker-id.js
│   │   │   │   │   ├── jquery.ui.datepicker-is.js
│   │   │   │   │   ├── jquery.ui.datepicker-it.js
│   │   │   │   │   ├── jquery.ui.datepicker-ja.js
│   │   │   │   │   ├── jquery.ui.datepicker-ko.js
│   │   │   │   │   ├── jquery.ui.datepicker-kz.js
│   │   │   │   │   ├── jquery.ui.datepicker-lt.js
│   │   │   │   │   ├── jquery.ui.datepicker-lv.js
│   │   │   │   │   ├── jquery.ui.datepicker-ml.js
│   │   │   │   │   ├── jquery.ui.datepicker-ms.js
│   │   │   │   │   ├── jquery.ui.datepicker-nl.js
│   │   │   │   │   ├── jquery.ui.datepicker-no.js
│   │   │   │   │   ├── jquery.ui.datepicker-pl.js
│   │   │   │   │   ├── jquery.ui.datepicker-pt-BR.js
│   │   │   │   │   ├── jquery.ui.datepicker-pt.js
│   │   │   │   │   ├── jquery.ui.datepicker-rm.js
│   │   │   │   │   ├── jquery.ui.datepicker-ro.js
│   │   │   │   │   ├── jquery.ui.datepicker-ru.js
│   │   │   │   │   ├── jquery.ui.datepicker-sk.js
│   │   │   │   │   ├── jquery.ui.datepicker-sl.js
│   │   │   │   │   ├── jquery.ui.datepicker-sq.js
│   │   │   │   │   ├── jquery.ui.datepicker-sr.js
│   │   │   │   │   ├── jquery.ui.datepicker-sr-SR.js
│   │   │   │   │   ├── jquery.ui.datepicker-sv.js
│   │   │   │   │   ├── jquery.ui.datepicker-ta.js
│   │   │   │   │   ├── jquery.ui.datepicker-th.js
│   │   │   │   │   ├── jquery.ui.datepicker-tr.js
│   │   │   │   │   ├── jquery.ui.datepicker-uk.js
│   │   │   │   │   ├── jquery.ui.datepicker-vi.js
│   │   │   │   │   ├── jquery.ui.datepicker-zh-CN.js
│   │   │   │   │   ├── jquery.ui.datepicker-zh-HK.js
│   │   │   │   │   ├── jquery.ui.datepicker-zh-TW.js
│   │   │   │   │   └── jquery-ui-i18n.js
│   │   │   │   ├── jquery.effects.blind.js
│   │   │   │   ├── jquery.effects.bounce.js
│   │   │   │   ├── jquery.effects.clip.js
│   │   │   │   ├── jquery.effects.core.js
│   │   │   │   ├── jquery.effects.drop.js
│   │   │   │   ├── jquery.effects.explode.js
│   │   │   │   ├── jquery.effects.fade.js
│   │   │   │   ├── jquery.effects.fold.js
│   │   │   │   ├── jquery.effects.highlight.js
│   │   │   │   ├── jquery.effects.pulsate.js
│   │   │   │   ├── jquery.effects.scale.js
│   │   │   │   ├── jquery.effects.shake.js
│   │   │   │   ├── jquery.effects.slide.js
│   │   │   │   ├── jquery.effects.transfer.js
│   │   │   │   ├── jquery-ui-1.8.9.custom.js
│   │   │   │   ├── jquery.ui.accordion.js
│   │   │   │   ├── jquery.ui.autocomplete.js
│   │   │   │   ├── jquery.ui.button.js
│   │   │   │   ├── jquery.ui.core.js
│   │   │   │   ├── jquery.ui.datepicker.js
│   │   │   │   ├── jquery.ui.dialog.js
│   │   │   │   ├── jquery.ui.draggable.js
│   │   │   │   ├── jquery.ui.droppable.js
│   │   │   │   ├── jquery.ui.mouse.js
│   │   │   │   ├── jquery.ui.position.js
│   │   │   │   ├── jquery.ui.progressbar.js
│   │   │   │   ├── jquery.ui.resizable.js
│   │   │   │   ├── jquery.ui.selectable.js
│   │   │   │   ├── jquery.ui.slider.js
│   │   │   │   ├── jquery.ui.sortable.js
│   │   │   │   ├── jquery.ui.tabs.js
│   │   │   │   ├── jquery.ui.widget.js
│   │   │   │   └── minified
│   │   │   │   ├── jquery.effects.blind.min.js
│   │   │   │   ├── jquery.effects.bounce.min.js
│   │   │   │   ├── jquery.effects.clip.min.js
│   │   │   │   ├── jquery.effects.core.min.js
│   │   │   │   ├── jquery.effects.drop.min.js
│   │   │   │   ├── jquery.effects.explode.min.js
│   │   │   │   ├── jquery.effects.fade.min.js
│   │   │   │   ├── jquery.effects.fold.min.js
│   │   │   │   ├── jquery.effects.highlight.min.js
│   │   │   │   ├── jquery.effects.pulsate.min.js
│   │   │   │   ├── jquery.effects.scale.min.js
│   │   │   │   ├── jquery.effects.shake.min.js
│   │   │   │   ├── jquery.effects.slide.min.js
│   │   │   │   ├── jquery.effects.transfer.min.js
│   │   │   │   ├── jquery.ui.accordion.min.js
│   │   │   │   ├── jquery.ui.autocomplete.min.js
│   │   │   │   ├── jquery.ui.button.min.js
│   │   │   │   ├── jquery.ui.core.min.js
│   │   │   │   ├── jquery.ui.datepicker.min.js
│   │   │   │   ├── jquery.ui.dialog.min.js
│   │   │   │   ├── jquery.ui.draggable.min.js
│   │   │   │   ├── jquery.ui.droppable.min.js
│   │   │   │   ├── jquery.ui.mouse.min.js
│   │   │   │   ├── jquery.ui.position.min.js
│   │   │   │   ├── jquery.ui.progressbar.min.js
│   │   │   │   ├── jquery.ui.resizable.min.js
│   │   │   │   ├── jquery.ui.selectable.min.js
│   │   │   │   ├── jquery.ui.slider.min.js
│   │   │   │   ├── jquery.ui.sortable.min.js
│   │   │   │   ├── jquery.ui.tabs.min.js
│   │   │   │   └── jquery.ui.widget.min.js
│   │   │   └── version.txt
│   │   ├── js
│   │   │   ├── common.js
│   │   │   ├── CRUD.js
│   │   │   ├── left.js
│   │   │   ├── tableSort.js
│   │   │   ├── uploadfile.js
│   │   │   └── xjValidate.js
│   │   └── My97DatePicker
│   │   ├── calendar.js
│   │   ├── config.js
│   │   ├── lang
│   │   │   ├── en.js
│   │   │   ├── zh-cn.js
│   │   │   └── zh-tw.js
│   │   ├── My97DatePicker.htm
│   │   ├── skin
│   │   │   ├── datePicker.gif
│   │   │   ├── default
│   │   │   │   ├── datepicker.css
│   │   │   │   └── img.gif
│   │   │   ├── WdatePicker.css
│   │   │   └── whyGreen
│   │   │   ├── bg.jpg
│   │   │   ├── datepicker.css
│   │   │   └── img.gif
│   │   └── WdatePicker.js
│   ├── frame
│   │   ├── center.htm
│   │   ├── frametop.jsp
│   │   ├── left.jsp
│   │   ├── main.jsp
│   │   └── mainright.jsp
│   ├── images
│   │   ├── a_button
│   │   │   ├── ck.gif
│   │   │   ├── del.gif
│   │   │   ├── fj.gif
│   │   │   ├── loadin.gif
│   │   │   ├── loadout.gif
│   │   │   ├── tiaoz.gif
│   │   │   └── upload.gif
│   │   ├── button
│   │   │   ├── date.png
│   │   │   ├── query.png
│   │   │   ├── standard_blue.gif
│   │   │   ├── standard_brown.gif
│   │   │   ├── standard.gif
│   │   │   ├── standard_red.gif
│   │   │   └── standard_yellow.gif
│   │   ├── jindutiao
│   │   │   ├── 3.gif
│   │   │   └── arr.gif
│   │   ├── kongzhi
│   │   │   ├── add.png
│   │   │   ├── baoji.png
│   │   │   ├── biao.png
│   │   │   ├── chu.jpg
│   │   │   ├── close.png
│   │   │   ├── con_img.png
│   │   │   ├── da.png
│   │   │   ├── dinglan.png
│   │   │   ├── dollar-sign.png
│   │   │   ├── fangda.jpg
│   │   │   ├── find.png
│   │   │   ├── go_home.png
│   │   │   ├── gongzhuang.jpg
│   │   │   ├── huanyuan.jpg
│   │   │   ├── ico.png
│   │   │   ├── jin.JPG
│   │   │   ├── kmines.png
│   │   │   ├── lilv.png
│   │   │   ├── next.png
│   │   │   ├── qian.png
│   │   │   ├── radar.png
│   │   │   ├── shang.jpg
│   │   │   ├── shuaxin.jpg
│   │   │   ├── suoxiao.jpg
│   │   │   ├── suoxiao.png
│   │   │   ├── xia.jpg
│   │   │   ├── xuan.png
│   │   │   ├── xuanze.jpg
│   │   │   ├── xuanzhuan.jpg
│   │   │   ├── you.jpg
│   │   │   ├── zuobiao.png
│   │   │   └── zuo.jpg
│   │   ├── left
│   │   │   ├── admin_left_0.gif
│   │   │   ├── admin_left_1.gif
│   │   │   ├── admin_left_2.gif
│   │   │   ├── admin_left_3.gif
│   │   │   ├── admin_left_4.gif
│   │   │   ├── admin_left_5.gif
│   │   │   ├── admin_left_6.gif
│   │   │   ├── li_bg_19.png
│   │   │   ├── li_bg_26.png
│   │   │   ├── li_bg_27.png
│   │   │   ├── li_bg_30.png
│   │   │   ├── nonebg2.png
│   │   │   ├── nonebg3.png
│   │   │   └── nonebg.png
│   │   ├── login
│   │   │   ├── 005.jpg
│   │   │   ├── 00.gif
│   │   │   ├── 01.gif
│   │   │   ├── 123.jpg
│   │   │   ├── 234.jpg
│   │   │   ├── 345.jpg
│   │   │   ├── btn_img.png
│   │   │   ├── input_bg_06.png
│   │   │   └── login_bg.jpg
│   │   ├── main
│   │   │   ├── 404.jpg
│   │   │   ├── 500.jpg
│   │   │   ├── arr_bottom.jpg
│   │   │   ├── arr_right.jpg
│   │   │   ├── arr_top.jpg
│   │   │   ├── back2.png
│   │   │   ├── building.jpg
│   │   │   ├── date.png
│   │   │   ├── deleteAll.gif
│   │   │   ├── delete.gif
│   │   │   ├── doing_3.jpg
│   │   │   ├── goto.png
│   │   │   ├── png-0404.png
│   │   │   ├── remove.png
│   │   │   ├── restore.gif
│   │   │   ├── td_title.gif
│   │   │   ├── th_bg.gif
│   │   │   ├── th.gif
│   │   │   ├── th_old.gif
│   │   │   ├── trans.gif
│   │   │   └── wu.jpg
│   │   ├── menu
│   │   │   ├── cal.png
│   │   │   ├── Chart.png
│   │   │   ├── cj.png
│   │   │   ├── credit_card.png
│   │   │   ├── czr.png
│   │   │   ├── db_add.png
│   │   │   ├── ES.png
│   │   │   ├── exit.png
│   │   │   ├── favorites-add.png
│   │   │   ├── fileShow.png
│   │   │   ├── fileUp2.png
│   │   │   ├── fileUp.png
│   │   │   ├── folder_home.png
│   │   │   ├── huiyuan2.png
│   │   │   ├── huiyuan.png
│   │   │   ├── jc.png
│   │   │   ├── key2.png
│   │   │   ├── key.png
│   │   │   ├── lj.png
│   │   │   ├── lock2.png
│   │   │   ├── lock.png
│   │   │   ├── mail1.png
│   │   │   ├── mail3.png
│   │   │   ├── mail.png
│   │   │   ├── password.png
│   │   │   ├── people.png
│   │   │   ├── plugin.png
│   │   │   ├── png-0007.png
│   │   │   ├── png-0010.png
│   │   │   ├── png-0051.png
│   │   │   ├── png-0074.png
│   │   │   ├── png-0127.png
│   │   │   ├── png-0579.png
│   │   │   ├── png-0673.png
│   │   │   ├── png-1426.png
│   │   │   ├── rwList.png
│   │   │   ├── rwQuery.png
│   │   │   ├── sb.png
│   │   │   ├── tm.png
│   │   │   ├── txm.png
│   │   │   └── vcard.png
│   │   ├── mrmflogo.jpg
│   │   ├── top
│   │   │   ├── 01_04.png
│   │   │   ├── line.jpg
│   │   │   └── topright.jpg
│   │   ├── turinglogo2.png
│   │   ├── turinglogo.png
│   │   └── uc
│   │   ├── er.png
│   │   ├── huiyuans
│   │   │   ├── 111.png
│   │   │   ├── 112.png
│   │   │   ├── 113.png
│   │   │   ├── 114.png
│   │   │   ├── 121.png
│   │   │   ├── 122.png
│   │   │   ├── 123.png
│   │   │   ├── 124.png
│   │   │   ├── 131.png
│   │   │   ├── 132.png
│   │   │   ├── 133.png
│   │   │   ├── 134.png
│   │   │   └── huiyuan.png
│   │   ├── jibens
│   │   │   ├── 111.png
│   │   │   ├── 112.png
│   │   │   ├── 113.png
│   │   │   ├── 114.png
│   │   │   ├── 115.png
│   │   │   ├── 121.png
│   │   │   ├── 122.png
│   │   │   ├── 123.png
│   │   │   ├── 124.png
│   │   │   ├── 125.png
│   │   │   ├── 131.png
│   │   │   ├── 132.png
│   │   │   ├── 133.png
│   │   │   ├── 134.png
│   │   │   ├── 135.png
│   │   │   ├── 141.png
│   │   │   ├── 142.png
│   │   │   ├── 143.png
│   │   │   ├── 144.png
│   │   │   ├── 145.png
│   │   │   └── shezhi.png
│   │   ├── kas
│   │   │   ├── 111.png
│   │   │   ├── 112.png
│   │   │   ├── 113.png
│   │   │   ├── 121.png
│   │   │   ├── 122.png
│   │   │   ├── 123.png
│   │   │   ├── 131.png
│   │   │   ├── 132.png
│   │   │   ├── 133.png
│   │   │   ├── 211.png
│   │   │   ├── 212.png
│   │   │   ├── 213.png
│   │   │   ├── 221.png
│   │   │   ├── 222.png
│   │   │   ├── 223.png
│   │   │   ├── 231.png
│   │   │   ├── 232.png
│   │   │   ├── 233.png
│   │   │   └── ka.png
│   │   ├── kucuns
│   │   │   ├── 111.png
│   │   │   ├── 112.png
│   │   │   ├── 113.png
│   │   │   ├── 114.png
│   │   │   ├── 115.png
│   │   │   ├── 121.png
│   │   │   ├── 122.png
│   │   │   ├── 123.png
│   │   │   ├── 124.png
│   │   │   ├── 125.png
│   │   │   ├── 131.png
│   │   │   ├── 132.png
│   │   │   ├── 133.png
│   │   │   ├── 134.png
│   │   │   ├── 135.png
│   │   │   ├── 141.png
│   │   │   ├── 142.png
│   │   │   ├── 143.png
│   │   │   ├── 144.png
│   │   │   ├── 145.png
│   │   │   ├── 211.png
│   │   │   ├── 212.png
│   │   │   ├── 213.png
│   │   │   ├── 214.png
│   │   │   ├── 215.png
│   │   │   ├── 221.png
│   │   │   ├── 222.png
│   │   │   ├── 223.png
│   │   │   ├── 224.png
│   │   │   ├── 225.png
│   │   │   ├── 231.png
│   │   │   ├── 232.png
│   │   │   ├── 233.png
│   │   │   ├── 234.png
│   │   │   ├── 235.png
│   │   │   ├── 241.png
│   │   │   ├── 242.png
│   │   │   ├── 243.png
│   │   │   ├── 244.png
│   │   │   ├── 245.png
│   │   │   ├── kucun2.png
│   │   │   └── kucun3.png
│   │   └── qiantais
│   │   ├── 111.png
│   │   ├── 112.png
│   │   ├── 113.png
│   │   ├── 114.png
│   │   ├── 121.png
│   │   ├── 122.png
│   │   ├── 123.png
│   │   ├── 124.png
│   │   ├── 131.png
│   │   ├── 132.png
│   │   ├── 133.png
│   │   ├── 134.png
│   │   ├── 141.png
│   │   ├── 142.png
│   │   ├── 143.png
│   │   ├── 144.png
│   │   ├── 211.png
│   │   ├── 212.png
│   │   ├── 213.png
│   │   ├── 214.png
│   │   ├── 221.png
│   │   ├── 222.png
│   │   ├── 223.png
│   │   ├── 224.png
│   │   ├── 231.png
│   │   ├── 232.png
│   │   ├── 233.png
│   │   ├── 234.png
│   │   ├── 241.png
│   │   ├── 242.png
│   │   ├── 243.png
│   │   ├── 244.png
│   │   └── qiantai.png
│   ├── index.jsp
│   ├── jsp
│   │   ├── common
│   │   │   ├── blank.jsp
│   │   │   ├── building.jsp
│   │   │   ├── error.jsp
│   │   │   ├── message.jsp
│   │   │   ├── middle.jsp
│   │   │   └── result.jsp
│   │   ├── example
│   │   │   ├── cardbuKa
│   │   │   │   ├── add_cbk.jsp
│   │   │   │   ├── edit_cbk.jsp
│   │   │   │   └── list_cbk.jsp
│   │   │   ├── cardchongzhi
│   │   │   │   ├── add_ccz.jsp
│   │   │   │   ├── edit_ccz.jsp
│   │   │   │   └── list_ccz.jsp
│   │   │   ├── cardhuiyuan
│   │   │   │   ├── add_chy.jsp
│   │   │   │   ├── edit_chy.jsp
│   │   │   │   ├── edit_pass_chy.jsp
│   │   │   │   ├── ifr_chy.jsp
│   │   │   │   ├── list_chy.jsp
│   │   │   │   ├── list_tj_chy.jsp
│   │   │   │   └── sel_chy.jsp
│   │   │   ├── cardtuika
│   │   │   │   ├── add_ctk.jsp
│   │   │   │   ├── edit_ctk.jsp
│   │   │   │   └── list_ctk.jsp
│   │   │   ├── cardType
│   │   │   │   ├── add_cardType.jsp
│   │   │   │   ├── edit_cardType.jsp
│   │   │   │   ├── ifr_cardType.jsp
│   │   │   │   ├── list_cardType.jsp
│   │   │   │   └── sel_cardType.jsp
│   │   │   ├── cardZhuan
│   │   │   │   ├── add_czk.jsp
│   │   │   │   ├── edit_czk.jsp
│   │   │   │   └── list_czk.jsp
│   │   │   ├── codeadds
│   │   │   │   ├── add_adds.jsp
│   │   │   │   ├── edit_adds.jsp
│   │   │   │   └── list_adds.jsp
│   │   │   ├── codejjfs
│   │   │   │   ├── add_jjfs.jsp
│   │   │   │   ├── edit_jjfs.jsp
│   │   │   │   └── list_jjfs.jsp
│   │   │   ├── codepjlx
│   │   │   │   ├── add_pjlx.jsp
│   │   │   │   ├── edit_pjlx.jsp
│   │   │   │   └── list_pjlx.jsp
│   │   │   ├── coderhfs
│   │   │   │   ├── add_rhfs.jsp
│   │   │   │   ├── edit_rhfs.jsp
│   │   │   │   └── list_rhfs.jsp
│   │   │   ├── codespdw
│   │   │   │   ├── add_spdw.jsp
│   │   │   │   ├── edit_spdw.jsp
│   │   │   │   └── list_spdw.jsp
│   │   │   ├── codesplx
│   │   │   │   ├── add_splx.jsp
│   │   │   │   ├── edit_splx.jsp
│   │   │   │   └── list_splx.jsp
│   │   │   ├── codesppp
│   │   │   │   ├── add_sppp.jsp
│   │   │   │   ├── edit_sppp.jsp
│   │   │   │   └── list_sppp.jsp
│   │   │   ├── codexydj
│   │   │   │   ├── add_xydj.jsp
│   │   │   │   ├── edit_xydj.jsp
│   │   │   │   └── list_xydj.jsp
│   │   │   ├── codeyplx
│   │   │   │   ├── add_yplx.jsp
│   │   │   │   ├── edit_yplx.jsp
│   │   │   │   └── list_yplx.jsp
│   │   │   ├── fwglhllx
│   │   │   │   ├── add_hllx.jsp
│   │   │   │   ├── edit_hllx.jsp
│   │   │   │   ├── list_hllx.jsp
│   │   │   │   └── sel_hllx.jsp
│   │   │   ├── fwgllchlct
│   │   │   │   ├── add_lchlct.jsp
│   │   │   │   ├── edit_lchlct.jsp
│   │   │   │   └── list_lchlct.jsp
│   │   │   ├── gdzcCwg
│   │   │   │   ├── add_cwg.jsp
│   │   │   │   ├── edit_cwg.jsp
│   │   │   │   ├── ifr_cwg.jsp
│   │   │   │   ├── list_cwg.jsp
│   │   │   │   └── sel_cwg.jsp
│   │   │   ├── gdzcypgl
│   │   │   │   ├── add_ypgl.jsp
│   │   │   │   ├── edit_ypgl.jsp
│   │   │   │   └── list_ypgl.jsp
│   │   │   ├── hyglcwgzl
│   │   │   │   ├── add_cwgzl.jsp
│   │   │   │   ├── edit_cwgzl.jsp
│   │   │   │   └── list_cwgzl.jsp
│   │   │   ├── hyglgmsp
│   │   │   │   ├── add_gmsp.jsp
│   │   │   │   ├── edit_gmsp.jsp
│   │   │   │   ├── list_gmsp.jsp
│   │   │   │   └── show_gmsp.jsp
│   │   │   ├── hyglhfjl
│   │   │   │   ├── add_hfjl.jsp
│   │   │   │   ├── edit_hfjl.jsp
│   │   │   │   └── list_hfjl.jsp
│   │   │   ├── hyglhuiyuan
│   │   │   │   ├── add_huiyuan.jsp
│   │   │   │   ├── edit_huiyuan.jsp
│   │   │   │   ├── ifr_huiyuan.jsp
│   │   │   │   ├── list_huiyuan.jsp
│   │   │   │   ├── list_sr_huiyuan.jsp
│   │   │   │   └── sel_huiyuan.jsp
│   │   │   ├── hyglYuyue
│   │   │   │   ├── add_yydj.jsp
│   │   │   │   ├── edit_yydj.jsp
│   │   │   │   └── list_yydj.jsp
│   │   │   ├── kcglbsby
│   │   │   │   ├── add_baosun.jsp
│   │   │   │   ├── edit_baosun.jsp
│   │   │   │   └── list_baosun.jsp
│   │   │   ├── kcglbsbysp
│   │   │   │   ├── list_bssp.jsp
│   │   │   │   └── show_bssp.jsp
│   │   │   ├── kcglCangku
│   │   │   │   ├── add_ckxx.jsp
│   │   │   │   ├── edit_ckxx.jsp
│   │   │   │   └── list_ckxx.jsp
│   │   │   ├── kcglchuku
│   │   │   │   ├── add_chuku.jsp
│   │   │   │   ├── edit_chuku.jsp
│   │   │   │   ├── list_chuku.jsp
│   │   │   │   └── show_chuku.jsp
│   │   │   ├── kcglfanku
│   │   │   │   ├── add_fanku.jsp
│   │   │   │   ├── edit_fanku.jsp
│   │   │   │   ├── list_fanku.jsp
│   │   │   │   └── show_ruku.jsp
│   │   │   ├── kcglfsgl
│   │   │   │   ├── add_fsgl.jsp
│   │   │   │   ├── edit_fsgl.jsp
│   │   │   │   ├── list_fsgl.jsp
│   │   │   │   └── show_fsgl.jsp
│   │   │   ├── kcglgoods
│   │   │   │   ├── add_goods.jsp
│   │   │   │   ├── edit_goods.jsp
│   │   │   │   ├── list_goods.jsp
│   │   │   │   ├── sel_goods.jsp
│   │   │   │   └── sel_kucun.jsp
│   │   │   ├── kcglnhsq
│   │   │   │   ├── add_nhsq.jsp
│   │   │   │   ├── edit_nhsq.jsp
│   │   │   │   ├── list_nhsq.jsp
│   │   │   │   └── mingxi_nhsq.jsp
│   │   │   ├── kcglpandian
│   │   │   │   ├── add_pdxx.jsp
│   │   │   │   ├── edit_pdxx.jsp
│   │   │   │   └── list_pdxx.jsp
│   │   │   ├── kcglpdqr
│   │   │   │   ├── list_pkqr.jsp
│   │   │   │   └── show_pkqr.jsp
│   │   │   ├── kcglrcksp
│   │   │   │   ├── list_rcksp.jsp
│   │   │   │   └── show_rcksp.jsp
│   │   │   ├── kcglruku
│   │   │   │   ├── add_ruku.jsp
│   │   │   │   ├── edit_ruku.jsp
│   │   │   │   ├── list_ruku.jsp
│   │   │   │   └── show_ruku.jsp
│   │   │   ├── kcglspdb
│   │   │   │   ├── add_spdb.jsp
│   │   │   │   ├── edit_spdb.jsp
│   │   │   │   ├── list_spdb.jsp
│   │   │   │   └── show_spdb.jsp
│   │   │   ├── kcglzysq
│   │   │   │   ├── add_zysq.jsp
│   │   │   │   ├── edit_zysq.jsp
│   │   │   │   ├── list_zysq.jsp
│   │   │   │   └── ziyongchakan.jsp
│   │   │   ├── khgldssp
│   │   │   │   ├── add_dssp.jsp
│   │   │   │   ├── edit_dssp.jsp
│   │   │   │   └── list_dssp.jsp
│   │   │   ├── khglgys
│   │   │   │   ├── add_gys.jsp
│   │   │   │   ├── add_gys.jsp.bak
│   │   │   │   ├── edit_gys.jsp
│   │   │   │   └── list_gys.jsp
│   │   │   ├── khgljljl
│   │   │   │   ├── add_jljl.jsp
│   │   │   │   ├── edit_jljl.jsp
│   │   │   │   └── list_jljl.jsp
│   │   │   ├── khgljzds
│   │   │   │   ├── add_jzds.jsp
│   │   │   │   ├── edit_jzds.jsp
│   │   │   │   └── list_jzds.jsp
│   │   │   ├── khglkh
│   │   │   │   ├── add_kh.jsp
│   │   │   │   ├── edit_kh.jsp
│   │   │   │   ├── list_kh.jsp
│   │   │   │   └── sel_kh.jsp
│   │   │   ├── khgllxr
│   │   │   │   ├── add_lxr.jsp
│   │   │   │   ├── edit_lxr.jsp
│   │   │   │   └── list_lxr.jsp
│   │   │   ├── yxglhdjl
│   │   │   │   ├── add_hdjl.jsp
│   │   │   │   ├── edit_hdjl.jsp
│   │   │   │   └── list_hdjl.jsp
│   │   │   ├── yxglhdjp
│   │   │   │   ├── add_hdjp.jsp
│   │   │   │   ├── edit_hdjp.jsp
│   │   │   │   └── list_hdjp.jsp
│   │   │   ├── yxglxcfs
│   │   │   │   ├── add_xcfs.jsp
│   │   │   │   ├── edit_xcfs.jsp
│   │   │   │   └── list_xcfs.jsp
│   │   │   └── yxglxcjl
│   │   │   ├── add_xcjl.jsp
│   │   │   ├── edit_xcjl.jsp
│   │   │   └── list_xcjl.jsp
│   │   ├── manage
│   │   │   ├── codexydj
│   │   │   │   ├── add_xydj.jsp
│   │   │   │   ├── edit_xydj.jsp
│   │   │   │   └── list_xydj.jsp
│   │   │   ├── gsglcheliangshousun
│   │   │   │   ├── add_clssadd.jsp
│   │   │   │   ├── add_clss.jsp
│   │   │   │   ├── edit_clss.jsp
│   │   │   │   ├── list_clss.jsp
│   │   │   │   └── list_clsssel.jsp
│   │   │   ├── gsglclxx
│   │   │   │   ├── add_gsgl.jsp
│   │   │   │   ├── edit_gsgl.jsp
│   │   │   │   ├── list_clgsgl.jsp
│   │   │   │   └── list_gsgl.jsp
│   │   │   ├── gsglkehuxinxi
│   │   │   │   ├── add_kehu.jsp
│   │   │   │   ├── edit_kehu.jsp
│   │   │   │   ├── list_kehu.jsp
│   │   │   │   └── list_kehusel.jsp
│   │   │   ├── gsglrenyuanxinxi
│   │   │   │   ├── add_renyuan.jsp
│   │   │   │   ├── edit_renyuan.jsp
│   │   │   │   └── list_renyuan.jsp
│   │   │   ├── gsglssqk
│   │   │   │   ├── add_ssqk.jsp
│   │   │   │   ├── edit_ssqk.jsp
│   │   │   │   ├── list_clssqk.jsp
│   │   │   │   └── list_ssqk.jsp
│   │   │   ├── gsglZuchexinxi
│   │   │   │   ├── add_zuchexinxi.jsp
│   │   │   │   ├── add_zuchexinxivip.jsp
│   │   │   │   ├── edit_zuchexinxi.jsp
│   │   │   │   └── list_zuchexinxi.jsp
│   │   │   ├── zaglbaojingxinxi
│   │   │   │   ├── add_baojingxinxi.jsp
│   │   │   │   ├── baojingchenggong.jsp
│   │   │   │   ├── edit_baojingxinxi.jsp
│   │   │   │   └── list_baojingxinxi.jsp
│   │   │   ├── zaglgs
│   │   │   │   ├── add_gs.jsp
│   │   │   │   ├── edit_gs.jsp
│   │   │   │   └── list_gs.jsp
│   │   │   ├── zaglgxscl
│   │   │   │   └── list_gxscl.jsp
│   │   │   ├── zaglgxsry
│   │   │   │   ├── add_gxsry.jsp
│   │   │   │   ├── edit_gxsry.jsp
│   │   │   │   └── list_gxsry.jsp
│   │   │   ├── zagljg
│   │   │   │   ├── add_jg.jsp
│   │   │   │   ├── edit_jg.jsp
│   │   │   │   ├── list_aajg.jsp
│   │   │   │   └── list_jg.jsp
│   │   │   ├── zagltz
│   │   │   │   ├── add_tz.jsp
│   │   │   │   ├── edit_tz.jsp
│   │   │   │   └── list_tz.jsp
│   │   │   ├── zaglzhaoshicheliang
│   │   │   │   ├── add_zscl.jsp
│   │   │   │   ├── edit_zscl.jsp
│   │   │   │   ├── list_ss_zscl.jsp
│   │   │   │   └── list_zscl.jsp
│   │   │   ├── zaglzsclss
│   │   │   │   ├── add_zsclss.jsp
│   │   │   │   ├── edit_zsclss.jsp
│   │   │   │   └── list_zsclss.jsp
│   │   │   ├── zapttfxx
│   │   │   │   ├── add_tfxx.jsp
│   │   │   │   ├── edit_tfxx.jsp
│   │   │   │   └── list_tfxx.jsp
│   │   │   └── zddm
│   │   │   ├── add_zd.jsp
│   │   │   ├── edit_zd.jsp
│   │   │   └── list_zd.jsp
│   │   ├── system
│   │   │   ├── code
│   │   │   │   ├── add_codeDict.jsp
│   │   │   │   ├── add_codeKind.jsp
│   │   │   │   ├── edit_codeDict.jsp
│   │   │   │   ├── edit_codeKind.jsp
│   │   │   │   ├── list_codeDict.jsp
│   │   │   │   └── list_codeKind.jsp
│   │   │   ├── dept
│   │   │   │   ├── add_dept.jsp
│   │   │   │   ├── edit_dept.jsp
│   │   │   │   ├── list_dept.jsp
│   │   │   │   └── main_dept.jsp
│   │   │   ├── menu
│   │   │   │   ├── add_menu.jsp
│   │   │   │   ├── edit_menu.jsp
│   │   │   │   └── list_menu.jsp
│   │   │   ├── person
│   │   │   │   ├── add_person.jsp
│   │   │   │   ├── createUser.jsp
│   │   │   │   ├── edit_person.jsp
│   │   │   │   ├── list_person.jsp
│   │   │   │   ├── sel_person.jsp
│   │   │   │   └── updateUser.jsp
│   │   │   ├── pos
│   │   │   │   ├── add_pos.jsp
│   │   │   │   ├── edit_pos.jsp
│   │   │   │   └── list_pos.jsp
│   │   │   ├── role
│   │   │   │   ├── add_role.jsp
│   │   │   │   ├── edit_role.jsp
│   │   │   │   ├── list_role.jsp
│   │   │   │   └── menu_role.jsp
│   │   │   └── user
│   │   │   ├── add_user.jsp
│   │   │   ├── edit_user.jsp
│   │   │   ├── list_user.jsp
│   │   │   ├── password.jsp
│   │   │   └── role_user.jsp
│   │   └── useCase
│   │   ├── cwgzl.htm
│   │   ├── cwgzl.js
│   │   ├── cwgzl.swf
│   │   ├── huiyuan
│   │   │   ├── qiantai_11.jsp
│   │   │   ├── qiantai_12.jsp
│   │   │   ├── qiantai_13.jsp
│   │   │   ├── qiantai_14.jsp
│   │   │   ├── qiantai_21.jsp
│   │   │   ├── qiantai_24.jsp
│   │   │   ├── qiantai_32.jsp
│   │   │   ├── qiantai_34.jsp
│   │   │   └── qiantai_Basic.jsp
│   │   ├── jiben
│   │   │   ├── jiben_11.jsp
│   │   │   ├── jiben_12.jsp
│   │   │   ├── jiben_13.jsp
│   │   │   ├── jiben_14.jsp
│   │   │   ├── jiben_15.jsp
│   │   │   ├── jiben_21.jsp
│   │   │   ├── jiben_24.jsp
│   │   │   ├── jiben_25.jsp
│   │   │   ├── jiben_31.jsp
│   │   │   ├── jiben_35.jsp
│   │   │   ├── jiben_41.jsp
│   │   │   ├── jiben_42.jsp
│   │   │   ├── jiben_43.jsp
│   │   │   ├── jiben_44.jsp
│   │   │   ├── jiben_45.jsp
│   │   │   ├── jiben_Basic.jsp
│   │   │   ├── jiben_code1.jsp
│   │   │   └── jiben_code2.jsp
│   │   ├── ka
│   │   │   ├── ka_11.jsp
│   │   │   ├── ka_12.jsp
│   │   │   ├── ka_13.jsp
│   │   │   ├── ka_22.jsp
│   │   │   ├── ka_23.jsp
│   │   │   ├── ka_31.jsp
│   │   │   ├── ka_33.jsp
│   │   │   └── ka_Basic.jsp
│   │   ├── kucun
│   │   │   ├── kucun_12.jsp
│   │   │   ├── kucun_13.jsp
│   │   │   ├── kucun_14.jsp
│   │   │   ├── kucun_15.jsp
│   │   │   ├── kucun_21.jsp
│   │   │   ├── kucun_22.jsp
│   │   │   ├── kucun_23.jsp
│   │   │   ├── kucun_25.jsp
│   │   │   ├── kucun_31.jsp
│   │   │   ├── kucun_34.jsp
│   │   │   ├── kucun_35.jsp
│   │   │   ├── kucun_41.jsp
│   │   │   ├── kucun_42.jsp
│   │   │   ├── kucun_43.jsp
│   │   │   ├── kucun_44.jsp
│   │   │   ├── kucun_45.jsp
│   │   │   └── kucun_Basic.jsp
│   │   └── Tabs.jsp
│   ├── login.jsp
│   ├── logOut.jsp
│   ├── META-INF
│   │   └── MANIFEST.MF
│   ├── relogin.jsp
│   └── WEB-INF
│   ├── classes
│   │   ├── applicationContext_code.xml
│   │   ├── applicationContext_gsgl.xml
│   │   ├── applicationContext_system.xml
│   │   ├── applicationContext.xml
│   │   ├── applicationContext_zagl.xml
│   │   ├── com
│   │   │   └── turing
│   │   │   ├── framework
│   │   │   │   ├── action
│   │   │   │   │   ├── AbstractAction.class
│   │   │   │   │   ├── CRUDInterface.class
│   │   │   │   │   ├── OpenAction.class
│   │   │   │   │   ├── PageAction.class
│   │   │   │   │   └── StartAction.class
│   │   │   │   ├── dao
│   │   │   │   │   ├── DaoImpl$1.class
│   │   │   │   │   ├── DaoImpl.class
│   │   │   │   │   └── IDao.class
│   │   │   │   ├── interceptor
│   │   │   │   │   └── LoginInterceptor.class
│   │   │   │   ├── page
│   │   │   │   │   ├── BasicDao$1.class
│   │   │   │   │   ├── BasicDao$2.class
│   │   │   │   │   ├── BasicDao.class
│   │   │   │   │   ├── BasicPage.class
│   │   │   │   │   └── Param.class
│   │   │   │   ├── select
│   │   │   │   │   ├── SelectAction.class
│   │   │   │   │   ├── SelectOptions.class
│   │   │   │   │   ├── SelectService.class
│   │   │   │   │   └── SelectServiceImpl.class
│   │   │   │   ├── service
│   │   │   │   │   ├── BasicService.class
│   │   │   │   │   └── BasicServicveImpl.class
│   │   │   │   ├── tag
│   │   │   │   │   ├── ButtonTag.class
│   │   │   │   │   ├── CodeListTag.class
│   │   │   │   │   ├── CodeNameTag.class
│   │   │   │   │   ├── PageTag2.class
│   │   │   │   │   ├── PageTag3.class
│   │   │   │   │   ├── PageTag4.class
│   │   │   │   │   ├── PageTag5.class
│   │   │   │   │   ├── PageTag6.class
│   │   │   │   │   ├── PageTag.class
│   │   │   │   │   └── TextLenTag.class
│   │   │   │   └── util
│   │   │   │   ├── Common.class
│   │   │   │   └── DateUtils.class
│   │   │   ├── manage
│   │   │   │   ├── codeXinyvdengji
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── XYDJAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── XYDJPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IXYDJService.class
│   │   │   │   │   └── XYDJServiceImpl.class
│   │   │   │   ├── entity
│   │   │   │   │   ├── CodeXinyvdengji.class
│   │   │   │   │   ├── CodeXinyvdengji.hbm.xml
│   │   │   │   │   ├── QczlTCl.class
│   │   │   │   │   ├── QczlTCl.hbm.xml
│   │   │   │   │   ├── QczlTClss.class
│   │   │   │   │   ├── QczlTClss.hbm.xml
│   │   │   │   │   ├── QczlTSs.class
│   │   │   │   │   ├── QczlTSs.hbm.xml
│   │   │   │   │   ├── QczlTZc.class
│   │   │   │   │   ├── QczlTZc.hbm.xml
│   │   │   │   │   ├── QczlTZcr.class
│   │   │   │   │   ├── QczlTZcr.hbm.xml
│   │   │   │   │   ├── ZaptTBj.class
│   │   │   │   │   ├── ZaptTBj.hbm.xml
│   │   │   │   │   ├── ZaptTGs.class
│   │   │   │   │   ├── ZaptTGs.hbm.xml
│   │   │   │   │   ├── ZaptTGxscl.class
│   │   │   │   │   ├── ZaptTGxscl.hbm.xml
│   │   │   │   │   ├── ZaptTGxsryRyTf.class
│   │   │   │   │   ├── ZaptTGxsryRyTf.hbm.xml
│   │   │   │   │   ├── ZaptTJg.class
│   │   │   │   │   ├── ZaptTJg.hbm.xml
│   │   │   │   │   ├── ZaptTTf.class
│   │   │   │   │   ├── ZaptTTf.hbm.xml
│   │   │   │   │   ├── ZaptTTftz.class
│   │   │   │   │   ├── ZaptTTftz.hbm.xml
│   │   │   │   │   ├── ZaptTTz.class
│   │   │   │   │   ├── ZaptTTz.hbm.xml
│   │   │   │   │   ├── ZaptTZd.class
│   │   │   │   │   ├── ZaptTZd.hbm.xml
│   │   │   │   │   ├── ZaptTZscl.class
│   │   │   │   │   └── ZaptTZscl.hbm.xml
│   │   │   │   ├── gsglCheliangshousun
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── CLSSAction.class
│   │   │   │   │   │   └── CLSSActionsel.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   ├── CLSSPage.class
│   │   │   │   │   │   └── CLSSPagesel.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── CLSSServiceImpl.class
│   │   │   │   │   └── ICLSSService.class
│   │   │   │   ├── gsglclxx
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── CLCLXXAction.class
│   │   │   │   │   │   └── CLXXAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   ├── CLCLXXPage.class
│   │   │   │   │   │   └── CLXXPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── CLXXService.class
│   │   │   │   │   └── CLXXServiceImpl.class
│   │   │   │   ├── gsglKehuxinxi
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── KehuAction.class
│   │   │   │   │   │   └── KehuselAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   ├── KehuPage.class
│   │   │   │   │   │   └── KehuselPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IKehuService.class
│   │   │   │   │   └── KehuServiceImpl.class
│   │   │   │   ├── gsglRenyuanxinxi
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── RenyuanAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── RenyuanPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IRenyuanService.class
│   │   │   │   │   └── RenyuanServiceImpl.class
│   │   │   │   ├── gsglShousunqingkuang
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── CLSSQKAction.class
│   │   │   │   │   │   └── SSQKAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   ├── CLSSQKPage.class
│   │   │   │   │   │   └── SSQKPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── ISSQKService.class
│   │   │   │   │   └── SSQKServiceImpl.class
│   │   │   │   ├── gsglZuchexinxi
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── ZCXXAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── ZCXXPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IZCXXService.class
│   │   │   │   │   └── ZCXXServiceImpl.class
│   │   │   │   ├── zaglBaojingxinxi
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── BJXXAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── BJXXPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── BJXXServiceImpl.class
│   │   │   │   │   └── IBJXXService.class
│   │   │   │   ├── zaglGongsixinxi
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── GSAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── GSPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── GSServiceImpl.class
│   │   │   │   │   └── IGSService.class
│   │   │   │   ├── zaglJigouxinxi
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── AAJGAction.class
│   │   │   │   │   │   └── JGAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   ├── AAJGPage.class
│   │   │   │   │   │   └── JGPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IJGService.class
│   │   │   │   │   └── JGServiceImpl.class
│   │   │   │   ├── zaglTongzhi
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── TZAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── TZPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── ITZService.class
│   │   │   │   │   └── TZServiceImpl.class
│   │   │   │   ├── zaglZhaoshicheliang
│   │   │   │   │   ├── action
│   │   │   │   │   │   ├── SS_ZSCLAction.class
│   │   │   │   │   │   └── ZSCLAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   ├── SS_ZSCLPage.class
│   │   │   │   │   │   └── ZSCLPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IZSCLService.class
│   │   │   │   │   └── ZSCLServiceImpl.class
│   │   │   │   ├── zaptGaoxiangsicheliang
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── GXSCLAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── GXSCLPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── GXSCLServiceImpl.class
│   │   │   │   │   └── IGXSCLService.class
│   │   │   │   ├── zaptGaoxiangsirenyuan
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── GXSRYAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── GXSRYPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── GXSRYServiceImpl.class
│   │   │   │   │   └── IGXSRYService.class
│   │   │   │   ├── zapttfxx
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── TFXXAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── TFXXPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── TFXXService.class
│   │   │   │   │   └── TFXXServiceImpl.class
│   │   │   │   ├── zaptZSCLshousun
│   │   │   │   │   ├── action
│   │   │   │   │   │   └── ZSCLSSAction.class
│   │   │   │   │   ├── page
│   │   │   │   │   │   └── ZSCLSSPage.class
│   │   │   │   │   └── service
│   │   │   │   │   ├── IZSCLSSService.class
│   │   │   │   │   └── ZSCLSSServiceImpl.class
│   │   │   │   └── zddm
│   │   │   │   ├── action
│   │   │   │   │   └── ZDAction.class
│   │   │   │   ├── page
│   │   │   │   │   └── ZDPage.class
│   │   │   │   └── service
│   │   │   │   ├── ZDService.class
│   │   │   │   └── ZDServiceImpl.class
│   │   │   └── system
│   │   │   ├── code
│   │   │   │   ├── action
│   │   │   │   │   └── CodeAction.class
│   │   │   │   ├── page
│   │   │   │   │   └── CodePage.class
│   │   │   │   └── service
│   │   │   │   ├── CodeServiceImpl.class
│   │   │   │   └── ICodeService.class
│   │   │   ├── dept
│   │   │   │   ├── action
│   │   │   │   │   └── DeptAction.class
│   │   │   │   ├── page
│   │   │   │   │   └── DeptPage.class
│   │   │   │   └── service
│   │   │   │   ├── DeptServiceImpl.class
│   │   │   │   └── IDeptService.class
│   │   │   ├── entity
│   │   │   │   ├── CodeDict.class
│   │   │   │   ├── CodeDict.hbm.xml
│   │   │   │   ├── CodeKind.class
│   │   │   │   ├── CodeKind.hbm.xml
│   │   │   │   ├── SysDept.class
│   │   │   │   ├── SysDept.hbm.xml
│   │   │   │   ├── SysMenu.class
│   │   │   │   ├── SysMenu.hbm.xml
│   │   │   │   ├── SysPerson.class
│   │   │   │   ├── SysPerson.hbm.xml
│   │   │   │   ├── SysPost.class
│   │   │   │   ├── SysPost.hbm.xml
│   │   │   │   ├── SysRole.class
│   │   │   │   ├── SysRole.hbm.xml
│   │   │   │   ├── SysRoleMenu.class
│   │   │   │   ├── SysRoleMenu.hbm.xml
│   │   │   │   ├── SysUser.class
│   │   │   │   ├── SysUser.hbm.xml
│   │   │   │   ├── SysUserRole.class
│   │   │   │   └── SysUserRole.hbm.xml
│   │   │   ├── login
│   │   │   │   ├── action
│   │   │   │   │   └── LoginAction.class
│   │   │   │   └── service
│   │   │   │   ├── ILoginService.class
│   │   │   │   └── LoginServiceImpl.class
│   │   │   ├── menu
│   │   │   │   ├── action
│   │   │   │   │   └── MenuAction.class
│   │   │   │   ├── page
│   │   │   │   │   └── MenuPage.class
│   │   │   │   └── service
│   │   │   │   ├── IMenuService.class
│   │   │   │   └── MenuServiceImpl.class
│   │   │   ├── person
│   │   │   │   ├── action
│   │   │   │   │   ├── PersonAction.class
│   │   │   │   │   └── SelPersonAction.class
│   │   │   │   ├── page
│   │   │   │   │   ├── PersonPage.class
│   │   │   │   │   └── SelPersonPage.class
│   │   │   │   └── service
│   │   │   │   ├── IPersonService.class
│   │   │   │   └── PersonServiceImpl.class
│   │   │   ├── pos
│   │   │   │   ├── action
│   │   │   │   │   └── PosAction.class
│   │   │   │   ├── page
│   │   │   │   │   └── PosPage.class
│   │   │   │   └── service
│   │   │   │   ├── IPosService.class
│   │   │   │   └── PosServiceImpl.class
│   │   │   ├── role
│   │   │   │   ├── action
│   │   │   │   │   └── RoleAction.class
│   │   │   │   ├── page
│   │   │   │   │   └── RolePage.class
│   │   │   │   └── service
│   │   │   │   ├── IRoleService.class
│   │   │   │   └── RoleServiceImpl.class
│   │   │   └── user
│   │   │   ├── action
│   │   │   │   └── UserAction.class
│   │   │   ├── page
│   │   │   │   └── UserPage.class
│   │   │   └── service
│   │   │   ├── IUserService.class
│   │   │   └── UserServiceImpl.class
│   │   ├── dwr.xml
│   │   ├── jdbc.properties
│   │   ├── struts_code.xml
│   │   ├── struts_gsgl.xml
│   │   ├── struts.properties
│   │   ├── struts_system.xml
│   │   ├── struts.xml
│   │   └── struts_zagl.xml
│   ├── lib
│   │   ├── antlr-2.7.5H3.jar
│   │   ├── asm-attrs.jar
│   │   ├── asm.jar
│   │   ├── c3p0-0.9.1-pre5a.jar
│   │   ├── cglib-2.1.jar
│   │   ├── cglib-nodep-2.1_3.jar
│   │   ├── commons-beanutils-1.8.0.jar
│   │   ├── commons-collections-2.1.1.jar
│   │   ├── commons-collections-3.2.1.jar
│   │   ├── commons-fileupload-1.2.jar
│   │   ├── commons-io-1.3.1.jar
│   │   ├── commons-lang-2.4.jar
│   │   ├── commons-logging-1.1.1.jar
│   │   ├── dom4j-1.6.jar
│   │   ├── dwr.jar
│   │   ├── ehcache-1.1.jar
│   │   ├── ezmorph-1.0.6.jar
│   │   ├── freemarker.jar
│   │   ├── hibernate3.jar
│   │   ├── jdbc2_0-stdext.jar
│   │   ├── json-lib-2.4-jdk15.jar
│   │   ├── jstl.jar
│   │   ├── jta.jar
│   │   ├── jtds-1.2.2.jar
│   │   ├── junit.jar
│   │   ├── mysql-connector-5.0.2.jar
│   │   ├── odmg.jar
│   │   ├── ognl.jar
│   │   ├── oscore.jar
│   │   ├── pull-parser-2.1.10.jar
│   │   ├── spring.jar
│   │   ├── standard.jar
│   │   ├── struts2-core-2.0.11.jar
│   │   ├── struts2-spring-plugin-2.0.8.jar
│   │   ├── velocity-1.4.jar
│   │   ├── xom-1.1.jar
│   │   └── xwork-2.0.4.jar
│   ├── myTag.tld
│   ├── page.tld
│   ├── weblogic.xml
│   └── web.xml
├── qczlgl.sql
└── 文档.doc

467 directories, 2071 files

标签:

实例下载地址

汽车租赁管理系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警