├── .classpath
├── .gitattributes
├── .gitignore
├── .mymetadata
├── .project
├── .settings
├── .jsdtscope
├── org.eclipse.jdt.core.prefs
├── org.eclipse.wst.common.component
├── org.eclipse.wst.common.project.facet.core.xml
├── org.eclipse.wst.jsdt.ui.superType.container
└── org.eclipse.wst.jsdt.ui.superType.name
├── README.md
├── WebRoot
├── META-INF
│ └── MANIFEST.MF
├── WEB-INF
│ ├── classes
│ │ ├── c3p0-config.xml
│ │ ├── com
│ │ │ └── findu
│ │ │ │ ├── dao
│ │ │ │ ├── ApplyDAO.class
│ │ │ │ ├── GoodsDAO.class
│ │ │ │ ├── TypeDAO.class
│ │ │ │ └── UserDao.class
│ │ │ │ ├── entity
│ │ │ │ ├── Apply.class
│ │ │ │ ├── G.class
│ │ │ │ ├── Good.class
│ │ │ │ ├── PageBean.class
│ │ │ │ ├── Type.class
│ │ │ │ ├── U.class
│ │ │ │ └── User.class
│ │ │ │ ├── exception
│ │ │ │ ├── ApplyException.class
│ │ │ │ ├── ChangeUserException.class
│ │ │ │ ├── RegisterException.class
│ │ │ │ └── UserExistsException.class
│ │ │ │ ├── service
│ │ │ │ ├── ApplyService.class
│ │ │ │ ├── GoodService.class
│ │ │ │ ├── TypeService.class
│ │ │ │ └── UserService.class
│ │ │ │ ├── servlet
│ │ │ │ ├── AJAXSearchServlet.class
│ │ │ │ ├── AppDownloadServlet.class
│ │ │ │ ├── ApplyServlet.class
│ │ │ │ ├── ChangeApplyServlet.class
│ │ │ │ ├── ChangePassServlet.class
│ │ │ │ ├── ChangePostServlet.class
│ │ │ │ ├── CheckServlet.class
│ │ │ │ ├── DealApplyServlet.class
│ │ │ │ ├── DelApplyServlet.class
│ │ │ │ ├── DeleteServlet.class
│ │ │ │ ├── InfoChangeServlet.class
│ │ │ │ ├── LoginOutServlet.class
│ │ │ │ ├── LoginServlet.class
│ │ │ │ ├── PageServlet.class
│ │ │ │ ├── PostGoodServlet.class
│ │ │ │ ├── RegisterServlet.class
│ │ │ │ └── SearchServlet.class
│ │ │ │ └── utils
│ │ │ │ ├── C3P0Utils.class
│ │ │ │ ├── GetTime.class
│ │ │ │ ├── JDBCUtils.class
│ │ │ │ ├── Judge.class
│ │ │ │ ├── SendEmail$1.class
│ │ │ │ ├── SendEmail$2.class
│ │ │ │ ├── SendEmail.class
│ │ │ │ ├── UUIDUtils.class
│ │ │ │ └── test.class
│ │ └── dbinfo.properties
│ ├── lib
│ │ ├── c3p0-0.9.1.2.jar
│ │ ├── commons-dbutils-1.4.jar
│ │ ├── javax.mail.jar
│ │ ├── jspSmartUplodeCN.jar
│ │ └── mysql-connector-java-5.0.8-bin.jar
│ └── web.xml
└── html
│ ├── 404.html
│ ├── all-classifieds.jsp
│ ├── apply-error.jsp
│ ├── apply.jsp
│ ├── applymanage.jsp
│ ├── categories.jsp
│ ├── change-apply.jsp
│ ├── change-post.jsp
│ ├── contact.jsp
│ ├── css
│ ├── admin.css
│ ├── admin2.css
│ ├── bootstrap-select.css
│ ├── bootstrap.min.css
│ ├── easy-responsive-tabs.css
│ ├── flexslider.css
│ ├── font-awesome.css
│ ├── font-awesome.min.4.7.css
│ ├── font-awesome.min.css
│ ├── jquery-ui.css
│ ├── jquery-ui1.css
│ ├── jquery.uls.css
│ ├── jquery.uls.grid.css
│ ├── jquery.uls.lcd.css
│ ├── menu_sideslide.css
│ ├── pintuer.css
│ └── style.css
│ ├── feedback.jsp
│ ├── fonts
│ ├── FontAwesome.otf
│ ├── font1.css
│ ├── font2.css
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ ├── fontawesome-webfont.woff2
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
│ ├── footer.jsp
│ ├── head.jsp
│ ├── help.jsp
│ ├── howitworks.jsp
│ ├── images
│ ├── 1.jpg
│ ├── 404.jpg
│ ├── account-bg.jpg
│ ├── ad1.jpg
│ ├── ad2.jpg
│ ├── ad3.jpg
│ ├── ad4.jpg
│ ├── ad5.jpg
│ ├── ad6.jpg
│ ├── app.png
│ ├── arrow1.png
│ ├── arrow2.png
│ ├── b1.jpg
│ ├── b10.jpg
│ ├── b11.jpg
│ ├── b12.jpg
│ ├── b13.jpg
│ ├── b2.jpg
│ ├── b3.jpg
│ ├── b4.jpg
│ ├── b5.jpg
│ ├── b6.jpg
│ ├── b7.jpg
│ ├── b8.jpg
│ ├── b9.jpg
│ ├── banner.jpg
│ ├── bk1.jpg
│ ├── bk10.jpg
│ ├── bk11.jpg
│ ├── bk12.jpg
│ ├── bk13.jpg
│ ├── bk2.jpg
│ ├── bk3.jpg
│ ├── bk4.jpg
│ ├── bk5.jpg
│ ├── bk6.jpg
│ ├── bk7.jpg
│ ├── bk8.jpg
│ ├── bk9.jpg
│ ├── c1.jpg
│ ├── c10.jpg
│ ├── c11.jpg
│ ├── c12.jpg
│ ├── c13.jpg
│ ├── c2.jpg
│ ├── c3.jpg
│ ├── c4.jpg
│ ├── c5.jpg
│ ├── c6.jpg
│ ├── c7.jpg
│ ├── c8.jpg
│ ├── c9.jpg
│ ├── cat1.png
│ ├── cat10.png
│ ├── cat11.png
│ ├── cat12.png
│ ├── cat2.png
│ ├── cat3.png
│ ├── cat4.png
│ ├── cat5.png
│ ├── cat6.png
│ ├── cat7.png
│ ├── cat8.png
│ ├── cat9.png
│ ├── client_1.jpg
│ ├── client_2.jpg
│ ├── client_3.jpg
│ ├── client_4.jpg
│ ├── close-quatation.jpg
│ ├── close.png
│ ├── d1.jpg
│ ├── d10.jpg
│ ├── d11.jpg
│ ├── d12.jpg
│ ├── d13.jpg
│ ├── d2.jpg
│ ├── d3.jpg
│ ├── d4.jpg
│ ├── d5.jpg
│ ├── d6.jpg
│ ├── d7.jpg
│ ├── d8.jpg
│ ├── d9.jpg
│ ├── e1.jpg
│ ├── e10.jpg
│ ├── e11.jpg
│ ├── e12.jpg
│ ├── e13.jpg
│ ├── e2.jpg
│ ├── e3.jpg
│ ├── e4.jpg
│ ├── e5.jpg
│ ├── e6.jpg
│ ├── e7.jpg
│ ├── e8.jpg
│ ├── e9.jpg
│ ├── f1.jpg
│ ├── f2.jpg
│ ├── f3.jpg
│ ├── fa1.jpg
│ ├── fa10.jpg
│ ├── fa11.jpg
│ ├── fa12.jpg
│ ├── fa13.jpg
│ ├── fa2.jpg
│ ├── fa3.jpg
│ ├── fa4.jpg
│ ├── fa5.jpg
│ ├── fa6.jpg
│ ├── fa7.jpg
│ ├── fa8.jpg
│ ├── fa9.jpg
│ ├── findu.ico
│ ├── fr1.jpg
│ ├── fr10.jpg
│ ├── fr11.jpg
│ ├── fr12.jpg
│ ├── fr13.jpg
│ ├── fr2.jpg
│ ├── fr3.jpg
│ ├── fr4.jpg
│ ├── fr5.jpg
│ ├── fr6.jpg
│ ├── fr7.jpg
│ ├── fr8.jpg
│ ├── fr9.jpg
│ ├── icons.png
│ ├── img-sprite1.png
│ ├── k1.jpg
│ ├── k10.jpg
│ ├── k11.jpg
│ ├── k12.jpg
│ ├── k13.jpg
│ ├── k2.jpg
│ ├── k3.jpg
│ ├── k4.jpg
│ ├── k5.jpg
│ ├── k6.jpg
│ ├── k7.jpg
│ ├── k8.jpg
│ ├── k9.jpg
│ ├── lock.png
│ ├── m1.jpg
│ ├── m10.jpg
│ ├── m11.jpg
│ ├── m12.jpg
│ ├── m13.jpg
│ ├── m2.jpg
│ ├── m3.jpg
│ ├── m4.jpg
│ ├── m5.jpg
│ ├── m6.jpg
│ ├── m7.jpg
│ ├── m8.jpg
│ ├── m9.jpg
│ ├── mob2.png
│ ├── nopic.jpg
│ ├── open-quatation.jpg
│ ├── p-1.png
│ ├── p-10.png
│ ├── p-2.png
│ ├── p-3.gif
│ ├── p-3.png
│ ├── p-4.png
│ ├── p-5.png
│ ├── p-6.png
│ ├── p-7.png
│ ├── p-8.png
│ ├── p-9.png
│ ├── p1.jpg
│ ├── p10.jpg
│ ├── p11.jpg
│ ├── p12.jpg
│ ├── p2.jpg
│ ├── p3.jpg
│ ├── p4.jpg
│ ├── p5.jpg
│ ├── p6.jpg
│ ├── p7.jpg
│ ├── p8.jpg
│ ├── p9.jpg
│ ├── r1.jpg
│ ├── r10.jpg
│ ├── r11.jpg
│ ├── r12.jpg
│ ├── r13.jpg
│ ├── r2.jpg
│ ├── r3.jpg
│ ├── r4.jpg
│ ├── r5.jpg
│ ├── r6.jpg
│ ├── r7.jpg
│ ├── r8.jpg
│ ├── r9.jpg
│ ├── search.png
│ ├── ss1.jpg
│ ├── ss2.jpg
│ ├── ss3.jpg
│ ├── ss4.jpg
│ ├── themes.gif
│ ├── themes1.png
│ ├── tick (1).png
│ ├── tick.png
│ ├── top-arrow.png
│ ├── user.png
│ ├── weixin.png
│ └── world_map.png
│ ├── index.jsp
│ ├── info.jsp
│ ├── js
│ ├── bootstrap-select.js
│ ├── bootstrap.js
│ ├── classie.js
│ ├── easing.js
│ ├── easyResponsiveTabs.js
│ ├── filedrag.js
│ ├── jquery-1.10.2.js
│ ├── jquery-1.11.0.min.js
│ ├── jquery-ui-1.10.4.custom.min.js
│ ├── jquery-ui-timepicker-addon.js
│ ├── jquery-ui-timepicker-zh-CN.js
│ ├── jquery-ui.js
│ ├── jquery.fileupload.js
│ ├── jquery.flexisel.js
│ ├── jquery.flexslider.js
│ ├── jquery.knob.js
│ ├── jquery.leanModal.min.js
│ ├── jquery.min.js
│ ├── jquery.ui.datepicker-zh-CN.js
│ ├── jquery.ui.widget.js
│ ├── jquery.uls.core.js
│ ├── jquery.uls.data.js
│ ├── jquery.uls.data.utils.js
│ ├── jquery.uls.languagefilter.js
│ ├── jquery.uls.lcd.js
│ ├── jquery.uls.regionfilter.js
│ ├── main.js
│ ├── move-top.js
│ ├── responsiveslides.min.js
│ ├── script.js
│ └── tabs.js
│ ├── laydate
│ ├── laydate.js
│ ├── need
│ │ └── laydate.css
│ └── skins
│ │ ├── dahong
│ │ ├── icon.png
│ │ └── laydate.css
│ │ ├── danlan
│ │ ├── icon.png
│ │ └── laydate.css
│ │ ├── default
│ │ ├── icon.png
│ │ └── laydate.css
│ │ ├── qianhuang
│ │ ├── icon.png
│ │ └── laydate.css
│ │ ├── yahui
│ │ ├── icon.png
│ │ └── laydate.css
│ │ └── yalan
│ │ ├── icon.png
│ │ └── laydate.css
│ ├── menu_search.jsp
│ ├── message.jsp
│ ├── mobileapp.jsp
│ ├── myapply.jsp
│ ├── mypost.jsp
│ ├── pass.jsp
│ ├── popular-search.jsp
│ ├── post-ad.jsp
│ ├── post-test.jsp
│ ├── privacy.jsp
│ ├── regions.jsp
│ ├── search-result.jsp
│ ├── signin.jsp
│ ├── signup.jsp
│ ├── single.jsp
│ ├── sitemap.jsp
│ ├── terms.jsp
│ ├── test.jsp
│ ├── time.jsp
│ ├── upload.php
│ └── user-info.jsp
├── findu.sql
└── src
├── c3p0-config.xml
├── com
└── findu
│ ├── dao
│ ├── ApplyDAO.java
│ ├── GoodsDAO.java
│ ├── TypeDAO.java
│ └── UserDao.java
│ ├── entity
│ ├── Apply.java
│ ├── G.java
│ ├── Good.java
│ ├── PageBean.java
│ ├── Type.java
│ ├── U.java
│ └── User.java
│ ├── exception
│ ├── ApplyException.java
│ ├── ChangeUserException.java
│ ├── RegisterException.java
│ └── UserExistsException.java
│ ├── service
│ ├── ApplyService.java
│ ├── GoodService.java
│ ├── TypeService.java
│ └── UserService.java
│ ├── servlet
│ ├── AJAXSearchServlet.java
│ ├── AppDownloadServlet.java
│ ├── ApplyServlet.java
│ ├── ChangeApplyServlet.java
│ ├── ChangePassServlet.java
│ ├── ChangePostServlet.java
│ ├── CheckServlet.java
│ ├── DealApplyServlet.java
│ ├── DelApplyServlet.java
│ ├── DeleteServlet.java
│ ├── InfoChangeServlet.java
│ ├── LoginOutServlet.java
│ ├── LoginServlet.java
│ ├── PageServlet.java
│ ├── PostGoodServlet.java
│ ├── RegisterServlet.java
│ └── SearchServlet.java
│ └── utils
│ ├── C3P0Utils.java
│ ├── GetTime.java
│ ├── JDBCUtils.java
│ ├── Judge.java
│ ├── SendEmail.java
│ ├── UUIDUtils.java
│ └── test.java
└── dbinfo.properties
/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | *.js linguist-language=Java
2 | *.css linguist-language=Java
3 | *.vm linguist-language=Java
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/.gitignore
--------------------------------------------------------------------------------
/.mymetadata:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | FindU
4 |
5 |
6 |
7 |
8 |
9 | org.eclipse.wst.common.project.facet.core.builder
10 |
11 |
12 |
13 |
14 | org.eclipse.wst.jsdt.core.javascriptValidator
15 |
16 |
17 |
18 |
19 | com.genuitec.eclipse.j2eedt.core.WebClasspathBuilder
20 |
21 |
22 |
23 |
24 | org.eclipse.jdt.core.javabuilder
25 |
26 |
27 |
28 |
29 | com.genuitec.eclipse.j2eedt.core.J2EEProjectValidator
30 |
31 |
32 |
33 |
34 | com.genuitec.eclipse.j2eedt.core.DeploymentDescriptorValidator
35 |
36 |
37 |
38 |
39 | org.eclipse.wst.validation.validationbuilder
40 |
41 |
42 |
43 |
44 | com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder
45 |
46 |
47 |
48 |
49 |
50 | com.genuitec.eclipse.ast.deploy.core.deploymentnature
51 | org.eclipse.jem.workbench.JavaEMFNature
52 | com.genuitec.eclipse.j2eedt.core.webnature
53 | org.eclipse.jdt.core.javanature
54 | org.eclipse.wst.jsdt.core.jsNature
55 | org.eclipse.wst.common.project.facet.core.nature
56 | org.eclipse.wst.common.modulecore.ModuleCoreNature
57 |
58 |
59 |
--------------------------------------------------------------------------------
/.settings/.jsdtscope:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | eclipse.preferences.version=1
2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4 | org.eclipse.jdt.core.compiler.compliance=1.6
5 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7 | org.eclipse.jdt.core.compiler.source=1.6
8 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.common.component:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.common.project.facet.core.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.jsdt.ui.superType.container:
--------------------------------------------------------------------------------
1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary
--------------------------------------------------------------------------------
/.settings/org.eclipse.wst.jsdt.ui.superType.name:
--------------------------------------------------------------------------------
1 | Window
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## FindU
2 | ### 基于JAVA EE入门的失物招领系统
3 | - 2016年11月份花一个多月时间做的一个失物招领系统,使用的非常基础的J2EE技术,新手入门可参考
4 | - 后期可能会完善更多功能
5 | - 现已部署至线上:http://findu.exrick.cn/
6 | - 已实现功能:
7 |
8 | - [x] 首页、个人中心、发布物品、申领物品、发布与申领管理、搜索查询、退出等模块
9 | - [x] 在首页模块实现了模糊查询、分类查询等功能
10 | - [x] 用户管理模块实现了登录、注册、修改、查看信息等功能
11 | - [x] 个人中心模块实现了查看、删除、修改发布物品、处理申领等功能
12 |
13 |
14 | 
15 |
16 | 
17 |
18 | 
19 |
20 | 
21 |
22 | ### 所用技术
23 |
24 | - JSP
25 | - Servlet
26 | - JDBC
27 | - MySQL
28 | - DBUtil:Apache的对JDBC简单封装的开源工具类库
29 | - C3P0:数据库连接池
30 | - Ajax
31 | - Bootstrap
32 | - HTML
33 | - JavaScript
34 | - CSS
35 |
36 | ### 本地开发运行部署
37 | - 使用`MyEclipse`开发,导入打开项目即可
38 | - 新建`findu`数据库,执行`findu.sql`文件(已有部分服务器中数据),在`src/dbinfo.properties`文件中配置你的数据库连接配置
39 | - 配置`Tomcat`服务器,访问相应端口+项目名即可,例如 http://localhost:8080/FindU/
--------------------------------------------------------------------------------
/WebRoot/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/c3p0-config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | root
5 | 123456
6 | com.mysql.jdbc.Driver
7 | jdbc:mysql://localhost:3306/findu
8 |
9 | 10
10 | 30
11 | 100
12 | 10
13 |
14 |
15 |
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/dao/ApplyDAO.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/dao/ApplyDAO.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/dao/GoodsDAO.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/dao/GoodsDAO.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/dao/TypeDAO.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/dao/TypeDAO.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/dao/UserDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/dao/UserDao.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/Apply.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/Apply.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/G.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/G.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/Good.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/Good.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/PageBean.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/PageBean.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/Type.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/Type.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/U.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/U.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/entity/User.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/entity/User.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/exception/ApplyException.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/exception/ApplyException.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/exception/ChangeUserException.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/exception/ChangeUserException.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/exception/RegisterException.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/exception/RegisterException.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/exception/UserExistsException.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/exception/UserExistsException.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/service/ApplyService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/service/ApplyService.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/service/GoodService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/service/GoodService.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/service/TypeService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/service/TypeService.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/service/UserService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/service/UserService.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/AJAXSearchServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/AJAXSearchServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/AppDownloadServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/AppDownloadServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/ApplyServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/ApplyServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/ChangeApplyServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/ChangeApplyServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/ChangePassServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/ChangePassServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/ChangePostServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/ChangePostServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/CheckServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/CheckServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/DealApplyServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/DealApplyServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/DelApplyServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/DelApplyServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/DeleteServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/DeleteServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/InfoChangeServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/InfoChangeServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/LoginOutServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/LoginOutServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/LoginServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/LoginServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/PageServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/PageServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/PostGoodServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/PostGoodServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/RegisterServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/RegisterServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/servlet/SearchServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/servlet/SearchServlet.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/C3P0Utils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/C3P0Utils.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/GetTime.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/GetTime.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/JDBCUtils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/JDBCUtils.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/Judge.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/Judge.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/SendEmail$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/SendEmail$1.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/SendEmail$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/SendEmail$2.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/SendEmail.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/SendEmail.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/UUIDUtils.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/UUIDUtils.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/com/findu/utils/test.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/classes/com/findu/utils/test.class
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/classes/dbinfo.properties:
--------------------------------------------------------------------------------
1 | driver = com.mysql.jdbc.Driver
2 | url = jdbc:mysql://localhost:3306/findu
3 | user = root
4 | password = 123456
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/lib/c3p0-0.9.1.2.jar
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/lib/commons-dbutils-1.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/lib/commons-dbutils-1.4.jar
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/lib/javax.mail.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/lib/javax.mail.jar
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/lib/jspSmartUplodeCN.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/lib/jspSmartUplodeCN.jar
--------------------------------------------------------------------------------
/WebRoot/WEB-INF/lib/mysql-connector-java-5.0.8-bin.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/WEB-INF/lib/mysql-connector-java-5.0.8-bin.jar
--------------------------------------------------------------------------------
/WebRoot/html/404.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 404-页面找不到了
6 |
47 |
48 |
49 |
55 |
58 |
59 |
60 |
61 |
--------------------------------------------------------------------------------
/WebRoot/html/css/admin2.css:
--------------------------------------------------------------------------------
1 | body {
2 | color: #333;
3 | font-size: 13px;
4 | }
5 |
6 | input, select, textarea {
7 | color: #333;
8 | }
9 |
10 | .bg {
11 | width: 100%;
12 | height: 100%;
13 | position: absolute;
14 | background: url(../images/bg.jpg)
15 | }
16 |
17 | .panel {
18 | background: #fff;
19 | }
20 |
21 | form .form-group:last-child {
22 | padding-bottom: 0;
23 | }
24 |
25 | .passcode {
26 | position: absolute;
27 | right: 0;
28 | bottom: 0;
29 | height: 32px;
30 | margin: 1px;
31 | border-left: solid 1px #ddd;
32 | text-align: center;
33 | line-height: 32px;
34 | border-radius: 0 4px 4px 0;
35 | }
36 |
37 | ul, li {
38 | list-style-type: none;
39 | }
40 |
41 | .lefter {
42 | position: relative;
43 | float: left;
44 | width: 180px;
45 | margin-right: -180px;
46 | background: #e6f2fb;
47 | text-align: center;
48 | }
49 |
50 | .righter {
51 | float: right;
52 | width: 100%;
53 | padding-top: 15px;
54 | background: #e6f2fb;
55 | }
56 |
57 | .mainer {
58 | margin-left: 180px;
59 | }
60 |
61 | .field-icon-right .icon {
62 | bottom: 0px;
63 | top: auto;
64 | }
65 |
66 | .logo {
67 | float: left;
68 | color: #FFF;
69 | margin-top: 10px;
70 | line-height: 45px;
71 | }
72 |
73 | .logo img {
74 | float: left;
75 | margin-right: 10px;
76 | }
77 |
78 | .loginbox {
79 | background: url(../images/tmbg-white.png);
80 | border: 0px;
81 | }
82 |
83 |
84 | /********头部******/
85 |
86 | .header {
87 | height: 70px;
88 | overflow: hidden;
89 | background: url(../images/bg.jpg) no-repeat 0 -1000px;
90 | }
91 |
92 | .head-l {
93 | float: left;
94 | margin-top: 17px;
95 | margin-left: 15px;
96 | }
97 |
98 | .head-l .button {
99 | padding: 8px 15px;
100 | }
101 |
102 | .head-l .bg-blue:hover {
103 | background-color: #03b6fd;
104 | }
105 |
106 | .leftnav {
107 | margin: 0 auto;
108 | font-size: 25px;
109 | text-align: center;
110 | }
111 |
112 | .leftnav ul {
113 | list-style: none;
114 | }
115 |
116 | .leftnav li {
117 | display: inline-block;
118 | text-align: center;
119 | border-top: 4px;
120 | }
121 |
122 | .leftnav ul li a {
123 | line-height: 2em;
124 | padding: 2px;
125 | padding: 1px 3px;
126 | font-family: "microsoft yahei";
127 | }
128 |
129 | .leftnav ul li:hover {
130 | border-top: 4px solid black;
131 | border-left: 1px solid black;
132 | border-right: 1px solid black;
133 | }
134 |
135 | .test a {
136 | line-height: 2em;
137 | padding: 2px;
138 | padding: 1px 3px;
139 | font-family: "microsoft yahei";
140 | }
141 | /***主要内容***/
142 |
143 | .content {
144 | width: 100%;
145 | }
146 |
147 | .body-content {
148 | padding: 20px 0;
149 | overflow: hidden;
150 | }
151 |
152 | .content .title {
153 | border-bottom: 1px solid #dfdfdf;
154 | line-height: 35px;
155 | font-size: 14px;
156 | font-weight: bold;
157 | color: #09c
158 | }
159 |
160 | .form-x .form-group .label {
161 | width: 10%;
162 | }
163 |
164 | .form-x .form-button {
165 | margin-left: 10%;
166 | }
167 |
168 | .w50 {
169 | width: 25%;
170 | float: left;
171 | }
172 |
173 | .form-x .tipss {
174 | float: left;
175 | padding-left: 10px;
176 | color: #888;
177 | line-height: 42px;
178 | }
179 |
180 | .input-help {
181 | float: left;
182 | line-height: 30px;
183 | }
184 |
185 | .input-help li {
186 | float: left;
187 | margin-left: 10px;
188 | }
189 |
190 | .bread {
191 | margin-left: 190px;
192 | margin-top: 4px;
193 | }
194 |
195 | .bread li {
196 | float: left;
197 | }
198 |
199 | .label label {
200 | font-weight: normal;
201 | color: #333;
202 | }
203 |
204 | .form-group {
205 | margin-bottom: 12px;
206 | }
207 |
208 | .button {
209 | padding: 10px 15px;
210 | }
211 |
212 | .form-group .field .file {
213 | background: #FFF;
214 | border: 0px;
215 | }
216 |
217 | .form-group .field input[type=radio] {
218 | vertical-align: middle;
219 | line-height: 35px;
220 | margin-right: 5px;
221 | }
222 |
223 | .form-group .radio {
224 | line-height: 35px;
225 | }
226 |
227 | .table th {
228 | text-align: center;
229 | }
230 |
231 | .table td {
232 | vertical-align: middle;
233 | }
234 |
235 | .tip img {
236 | width: 100px;
237 | height: 100px;
238 | }
239 |
240 | .clear {
241 | clear: both;
242 | overflow: hidden;
243 | }
244 |
245 | .pagelist {
246 | padding: 10px 0;
247 | text-align: center;
248 | }
249 |
250 | .pagelist span, .pagelist a {
251 | border-radius: 3px;
252 | border: 1px solid #dfdfdf;
253 | display: inline-block;
254 | padding: 5px 12px;
255 | }
256 |
257 | .pagelist a {
258 | margin: 0 3px;
259 | }
260 |
261 | .pagelist span.current {
262 | background: #09F;
263 | color: #FFF;
264 | border-color: #09F;
265 | margin: 0 2px;
266 | }
267 |
268 | .pagelist a:hover {
269 | background: #09F;
270 | color: #FFF;
271 | border-color: #09F;
272 | }
273 |
274 | .pagelist label {
275 | padding-left: 15px;
276 | color: #999;
277 | }
278 |
279 | .pagelist label b {
280 | color: red;
281 | font-weight: normal;
282 | margin: 0 3px;
283 | }
284 |
285 | .search {
286 | overflow: hidden;
287 | }
288 |
289 | .search li {
290 | float: left;
291 | margin-right: 15px;
292 | line-height: 35px;
293 | }
294 |
295 | .button.bg-main.icon-check-square-o {
296 | padding: 10px 30px;
297 | }
298 |
299 | .button.bg-main.icon-check-square-o:hover {
300 | background: #08bbe1;
301 | }
302 |
303 | input[type="checkbox"], input[type="radio"] {
304 | width: 15px;
305 | height: 15px;
306 | vertical-align: -3px;
307 | margin-right: 5px;
308 | }
309 |
310 | textarea[name=content] {
311 | width: 100%;
312 | height: 500px;
313 | border: 1px solid #ddd;
314 | border-radius: 3px;
315 | -webkit-border-radius: 3px;
316 | }
317 |
318 | .input-width {
319 | width: 30%;
320 | float: left;
321 | }
322 |
323 |
324 | .test {
325 | display: inline-block;
326 | width: 120px;
327 | font-size: 20px;
328 | border: 2px solid blue;
329 | }
330 |
--------------------------------------------------------------------------------
/WebRoot/html/css/easy-responsive-tabs.css:
--------------------------------------------------------------------------------
1 | ul.resp-tabs-list, p {
2 | margin: 0px;
3 | padding: 0px;
4 | }
5 |
6 | .resp-tabs-list li {
7 | font-weight: 400;
8 | font-size: 17px;
9 | display: inline-block;
10 | padding: 13px 15px;
11 | margin: 0 4px 0 0;
12 | list-style: none;
13 | cursor: pointer;
14 | float: left;
15 | font-family: 'Ubuntu Condensed', sans-serif;
16 | }
17 |
18 | .resp-tabs-container {
19 | padding: 0px;
20 | background-color: #fff;
21 | clear: left;
22 | }
23 |
24 | h2.resp-accordion {
25 | cursor: pointer;
26 | padding: 5px;
27 | display: none;
28 | }
29 |
30 | .resp-tab-content {
31 | display: none;
32 | padding: 15px;
33 | }
34 |
35 | .resp-tab-active {
36 | border: 1px solid #5AB1D0 !important;
37 | border-bottom: none;
38 | margin-bottom: -1px !important;
39 | padding: 12px 14px 14px 14px !important;
40 | border-bottom: 0px #fff solid !important;
41 | border-top: 4px solid #709DCA !important;
42 | }
43 |
44 | .resp-tab-active {
45 | border-bottom: none;
46 | background-color: #fff;
47 | }
48 |
49 | .resp-content-active, .resp-accordion-active {
50 | display: block;
51 | }
52 |
53 | .resp-tab-content {
54 | border: 1px solid #c1c1c1;
55 | border-top-color: #5AB1D0;
56 | }
57 |
58 | h2.resp-accordion {
59 | font-size: 13px;
60 | border: 1px solid #c1c1c1;
61 | border-top: 0px solid #c1c1c1;
62 | margin: 0px;
63 | padding: 10px 15px;
64 | }
65 |
66 | h2.resp-tab-active {
67 | border-bottom: 0px solid #c1c1c1 !important;
68 | margin-bottom: 0px !important;
69 | padding: 10px 15px !important;
70 | }
71 |
72 | h2.resp-tab-title:last-child {
73 | border-bottom: 12px solid #c1c1c1 !important;
74 | background: blue;
75 | }
76 |
77 | /*-----------Vertical tabs-----------*/
78 | .agileits-tab_nav {
79 | float: left;
80 | width: 30%;
81 | margin-top: 0!important;
82 | min-height: 831px;
83 | }
84 | ul.resp-tabs-list.hor_1 {
85 | margin-top: 0!important;
86 | padding-top: 12px;
87 | }
88 | a.w3ls-ads {
89 | text-decoration: none;
90 | color: #0099e5;
91 | font-size: 15px;
92 | margin: 25px 0 0px 0;
93 | display: block;
94 | text-align: center;
95 | }
96 | a.w3ls-ads:hover {
97 | color:#ff4c4c;
98 | }
99 | .resp-vtabs .resp-tabs-list li {
100 | display: block;
101 | padding: 15px 15px !important;
102 | margin: 0 0 4px;
103 | cursor: pointer;
104 | float: none;
105 | border: 1px solid #F5F5F5;
106 | border-color: rgb(245, 245, 245)!important;
107 | border-left: 4px solid #F5F5F5 !important;
108 | background-color: rgb(249, 249, 249)!important;
109 | }
110 |
111 | .resp-vtabs .resp-tabs-container {
112 | padding: 0px;
113 | background-color: #fff;
114 | border: none;
115 | float: left;
116 | width: 70%;
117 | border: 1px solid #CCCCCC !important;
118 | border-radius: 0;
119 | clear: none;
120 | min-height: 831px;
121 | }
122 |
123 | .resp-vtabs .resp-tab-content {
124 | border: none;
125 | word-wrap: break-word;
126 | }
127 | /*--
128 | li.resp-tab-item.hor_1.resp-tab-active:after {
129 | content: '';
130 | position: absolute;
131 | right: -18px;
132 | top: 6px;
133 | border-left: 1px solid #5AB1D0;
134 | border-right: 0px solid #5AB1D0;
135 | border-bottom: 1px solid #FFFFFF;
136 | transform: rotate(134deg);
137 | border-top: 1px solid #5AB1D0;
138 | padding: 0 33px 33px 0px;
139 | }
140 | --*/
141 |
142 | .resp-vtabs li.resp-tab-active {
143 | position: relative;
144 | z-index: 1;
145 | margin-right: -1px !important;
146 | padding: 14px 15px 15px 14px !important;
147 | border-top: 1px solid;
148 | border: 1px solid #CCCCCC !important;
149 | border-left: 4px solid rgba(0, 153, 229, 0.74) !important;
150 | margin-bottom: 4px !important;
151 | border-right: 1px #FFF solid !important;
152 | background-color: #fff!important;
153 | }
154 |
155 | .resp-arrow {
156 | width: 0;
157 | height: 0;
158 | float: right;
159 | margin-top: 3px;
160 | border-left: 6px solid transparent;
161 | border-right: 6px solid transparent;
162 | border-top: 12px solid #c1c1c1;
163 | }
164 |
165 | h2.resp-tab-active span.resp-arrow {
166 | border: none;
167 | border-left: 6px solid transparent;
168 | border-right: 6px solid transparent;
169 | border-bottom: 12px solid #9B9797;
170 | }
171 |
172 | /*-----------Accordion styles-----------*/
173 | h2.resp-tab-active {
174 | background: #DBDBDB;/* !important;*/
175 | }
176 |
177 | .resp-easy-accordion h2.resp-accordion {
178 | display: block;
179 | }
180 |
181 | .resp-easy-accordion .resp-tab-content {
182 | border: 1px solid #c1c1c1;
183 | }
184 |
185 | .resp-easy-accordion .resp-tab-content:last-child {
186 | border-bottom: 1px solid #c1c1c1;/* !important;*/
187 | }
188 |
189 | .resp-jfit {
190 | width: 100%;
191 | margin: 0px;
192 | }
193 |
194 | .resp-tab-content-active {
195 | display: block;
196 | }
197 |
198 | h2.resp-accordion:first-child {
199 | border-top: 1px solid #c1c1c1;/* !important;*/
200 | }
201 |
202 | /*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
203 | @media only screen and (max-width: 768px) {
204 | ul.resp-tabs-list {
205 | display: none;
206 | }
207 |
208 | h2.resp-accordion {
209 | display: block;
210 | }
211 |
212 | .resp-vtabs .resp-tab-content {
213 | border: 1px solid #C1C1C1;
214 | }
215 |
216 | .resp-vtabs .resp-tabs-container {
217 | border: none;
218 | width: 100%;
219 | min-height: 100px;
220 | clear: none;
221 | }
222 |
223 | .resp-accordion-closed {
224 | display: none !important;
225 | }
226 |
227 | .resp-vtabs .resp-tab-content:last-child {
228 | border-bottom: 1px solid #c1c1c1 !important;
229 | }
230 | }
231 | @media (max-width: 768px){
232 | h2.resp-accordion {
233 | font-size: 17px;
234 | border: 1px solid #c1c1c1;
235 | border-top: 0px solid #c1c1c1;
236 | margin: 0px;
237 | padding: 15px 15px;
238 | }
239 | .agileits-tab_nav {
240 | float: none;
241 | width: 100%;
242 | margin-top: 0!important;
243 | min-height: auto;
244 | margin-bottom: 16px;
245 | }
246 | }
247 |
--------------------------------------------------------------------------------
/WebRoot/html/css/jquery-ui1.css:
--------------------------------------------------------------------------------
1 |
2 | /* right-aligned */
3 |
4 | .ui-menu .ui-menu-icon { position: static; float: right; }
5 |
6 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; }
7 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
8 | .ui-resizable { position: relative;}
9 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
10 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
11 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
12 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
13 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
14 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
15 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
16 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
17 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
18 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
19 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
20 |
21 | .ui-slider { position: relative; text-align: left; }
22 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
23 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
24 |
25 | .ui-slider-horizontal { height: 6px; }
26 | .ui-slider-horizontal .ui-slider-handle {
27 | top: -5px;
28 | margin-left: 0;
29 | }
30 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
31 | .ui-slider-horizontal .ui-slider-range-min { left: 0; }
32 | .ui-slider-horizontal .ui-slider-range-max { right: 0; }
33 |
34 | .ui-slider-vertical { width: .3em; height: 100px; }
35 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
36 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
37 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
38 | .ui-slider-vertical .ui-slider-range-max { top: 0; }
39 | .ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
40 | .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
41 | .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; }
42 | .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
43 | .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
44 | .ui-spinner-up { top: 0; }
45 | .ui-spinner-down { bottom: 0; }
46 |
47 |
48 |
49 | /* Fades and background-images don't work well together in IE6, drop the image */
50 | /* Component containers
51 | ----------------------------------*/
52 | .ui-widget { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1.1em/*{fsDefault}*/; }
53 | .ui-widget .ui-widget { font-size: 1em; }
54 | .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif/*{ffDefault}*/; font-size: 1em; }
55 | .ui-widget-content { background: #e0ddda; color: #222222; margin-top: 3em; }
56 | .ui-widget-content a { color: #222222/*{fcContent}*/; }
57 | .ui-widget-header { background: rgba(0, 153, 229, 0.78); color: #222222/*{fcHeader}*/; font-weight: bold; }
58 | .ui-widget-header a { color: #222222/*{fcHeader}*/; }
59 |
60 | /* Interaction states
61 | ----------------------------------*/
62 |
63 | .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 0px solid #ff5d56/*{borderColorDefault}*/;
64 | background: rgb(255, 137, 137);
65 | font-weight: normal/*{fwDefault}*/;
66 | color: #555555/*{fcDefault}*/;
67 | outline: none;
68 | width: 15px;
69 | height: 15px;
70 | cursor: pointer;
71 | border-radius: 100%;
72 | }
73 | .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555/*{fcDefault}*/; text-decoration: none; }
--------------------------------------------------------------------------------
/WebRoot/html/css/jquery.uls.lcd.css:
--------------------------------------------------------------------------------
1 | .uls-lcd-region-section ul li a:hover {
2 | color: #0099e5;
3 | }
4 |
5 | .uls-lcd-region-section {
6 | margin-top: 10px;
7 | }
8 |
9 | /* Language list */
10 | .uls-language-list {
11 | height: 17em;
12 | overflow: auto;
13 | width: auto;
14 | }
15 |
16 | .uls-language-block ul {
17 | margin: 0 0 1.5em;
18 | }
19 |
20 | .uls-language-list ul li {
21 | cursor: pointer;
22 | font-weight: normal;
23 | overflow: hidden;
24 | white-space: nowrap;
25 |
26 | /*
27 | * Some languages have long names for various reasons and we still want
28 | * them to appear on one line.
29 | * To make it work correctly, the directionality must be set correctly
30 | * on the item level.
31 | */
32 | text-overflow: ellipsis;
33 |
34 | /*
35 | * The directionality (ltr/rtl) for each list item is set dynamically
36 | * as HTML attributes in JavaScript. Setting directionality also applies
37 | * alignment, but a list with mixed alignment is hard to read.
38 | * All items are therefore explicitly aligned to the left, including names
39 | * of right-to-left languages in left-to-right environment and vice versa.
40 | * As long as the directionality of the item is set correctly, the text
41 | * is readable.
42 | */
43 | text-align: left;
44 |
45 | /*
46 | * We don't want any visible bullets in this list.
47 | */
48 | list-style-image: none;
49 | list-style-type: none;
50 | }
51 |
52 | .uls-language-list strong {
53 | text-decoration: underline;
54 | }
55 |
56 | .uls-language-list a {
57 | font-weight: normal;
58 | text-decoration: none;
59 | color: #ff4c4c;
60 | font-size: 14px;
61 | line-height: 1.6em;
62 | }
63 |
64 | .uls-menu .uls-language-block .columns {
65 | width: 22%;
66 | }
67 | .uls-language-block {
68 | width: 100%;
69 | }
70 |
71 | .uls-no-results-view {
72 | color: #555;
73 | height: 100%;
74 | }
75 |
76 | .uls-no-found-more {
77 | font-size: 0.9em;
78 | background: #F8F8F8;
79 | width: 100%;
80 | margin-top: 1.6em;
81 | line-height: 1.6em;
82 | position: absolute;
83 | bottom: 0;
84 | left: 0;
85 | }
86 |
87 | .uls-no-found-more a {
88 | cursor: pointer;
89 | }
90 |
91 | @media (max-width: 480px){
92 | .uls-language-list a {
93 | font-size: 13px;
94 | line-height: 1.8em;
95 | }
96 | }
97 | @media (max-width: 414px){
98 | .uls-menu .uls-language-block .columns {
99 | width: 32%;
100 | margin-left: 8.333%;
101 | }
102 | }
--------------------------------------------------------------------------------
/WebRoot/html/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/WebRoot/html/fonts/font1.css:
--------------------------------------------------------------------------------
1 | /* cyrillic-ext */
2 | @font-face {
3 | font-family: 'Ubuntu Condensed';
4 | font-style: normal;
5 | font-weight: 400;
6 | src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrDrvev4WAjW489CRDHIkJ90.woff2) format('woff2');
7 | unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
8 | }
9 | /* cyrillic */
10 | @font-face {
11 | font-family: 'Ubuntu Condensed';
12 | font-style: normal;
13 | font-weight: 400;
14 | src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrCGXDOnx9ptx3UTSPTrfsgk.woff2) format('woff2');
15 | unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
16 | }
17 | /* greek-ext */
18 | @font-face {
19 | font-family: 'Ubuntu Condensed';
20 | font-style: normal;
21 | font-weight: 400;
22 | src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrAZ98xO_Wnt-JIem4AuLGfs.woff2) format('woff2');
23 | unicode-range: U+1F00-1FFF;
24 | }
25 | /* greek */
26 | @font-face {
27 | font-family: 'Ubuntu Condensed';
28 | font-style: normal;
29 | font-weight: 400;
30 | src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrE1G989qbVg6RT5ly5jB8V8.woff2) format('woff2');
31 | unicode-range: U+0370-03FF;
32 | }
33 | /* latin-ext */
34 | @font-face {
35 | font-family: 'Ubuntu Condensed';
36 | font-style: normal;
37 | font-weight: 400;
38 | src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrD86pq2NkPzVgw_9lpT6RGI.woff2) format('woff2');
39 | unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
40 | }
41 | /* latin */
42 | @font-face {
43 | font-family: 'Ubuntu Condensed';
44 | font-style: normal;
45 | font-weight: 400;
46 | src: local('Ubuntu Condensed'), local('UbuntuCondensed-Regular'), url(http://fonts.gstatic.com/s/ubuntucondensed/v7/DBCt-NXN57MTAFjitYxdrDAdhzWOYhqHvOZMRGaEyPo.woff2) format('woff2');
47 | unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
48 | }
--------------------------------------------------------------------------------
/WebRoot/html/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/WebRoot/html/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/WebRoot/html/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/WebRoot/html/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/WebRoot/html/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/WebRoot/html/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/WebRoot/html/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/WebRoot/html/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/WebRoot/html/footer.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %>
2 |
3 |
4 |
76 |
77 |
--------------------------------------------------------------------------------
/WebRoot/html/images/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/404.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/account-bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/account-bg.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ad1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ad1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ad2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ad2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ad3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ad3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ad4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ad4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ad5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ad5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ad6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ad6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/app.png
--------------------------------------------------------------------------------
/WebRoot/html/images/arrow1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/arrow1.png
--------------------------------------------------------------------------------
/WebRoot/html/images/arrow2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/arrow2.png
--------------------------------------------------------------------------------
/WebRoot/html/images/b1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/b9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/b9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/banner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/banner.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/bk9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/bk9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/c9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/c9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/cat1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat1.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat10.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat11.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat12.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat2.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat3.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat4.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat5.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat6.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat7.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat8.png
--------------------------------------------------------------------------------
/WebRoot/html/images/cat9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/cat9.png
--------------------------------------------------------------------------------
/WebRoot/html/images/client_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/client_1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/client_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/client_2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/client_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/client_3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/client_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/client_4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/close-quatation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/close-quatation.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/close.png
--------------------------------------------------------------------------------
/WebRoot/html/images/d1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/d9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/d9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/e9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/e9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/f1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/f1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/f2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/f2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/f3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/f3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fa9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fa9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/findu.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/findu.ico
--------------------------------------------------------------------------------
/WebRoot/html/images/fr1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/fr9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/fr9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/icons.png
--------------------------------------------------------------------------------
/WebRoot/html/images/img-sprite1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/img-sprite1.png
--------------------------------------------------------------------------------
/WebRoot/html/images/k1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/k9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/k9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/lock.png
--------------------------------------------------------------------------------
/WebRoot/html/images/m1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/m9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/m9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/mob2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/mob2.png
--------------------------------------------------------------------------------
/WebRoot/html/images/nopic.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/nopic.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/open-quatation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/open-quatation.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-1.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-10.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-2.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-3.gif
--------------------------------------------------------------------------------
/WebRoot/html/images/p-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-3.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-4.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-5.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-6.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-7.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-8.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p-9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p-9.png
--------------------------------------------------------------------------------
/WebRoot/html/images/p1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/p9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/p9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r10.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r11.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r12.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r13.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r5.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r6.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r7.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r8.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/r9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/r9.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/search.png
--------------------------------------------------------------------------------
/WebRoot/html/images/ss1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ss1.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ss2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ss2.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ss3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ss3.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/ss4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/ss4.jpg
--------------------------------------------------------------------------------
/WebRoot/html/images/themes.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/themes.gif
--------------------------------------------------------------------------------
/WebRoot/html/images/themes1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/themes1.png
--------------------------------------------------------------------------------
/WebRoot/html/images/tick (1).png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/tick (1).png
--------------------------------------------------------------------------------
/WebRoot/html/images/tick.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/tick.png
--------------------------------------------------------------------------------
/WebRoot/html/images/top-arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/top-arrow.png
--------------------------------------------------------------------------------
/WebRoot/html/images/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/user.png
--------------------------------------------------------------------------------
/WebRoot/html/images/weixin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/weixin.png
--------------------------------------------------------------------------------
/WebRoot/html/images/world_map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/images/world_map.png
--------------------------------------------------------------------------------
/WebRoot/html/js/classie.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * classie - class helper functions
3 | * from bonzo https://github.com/ded/bonzo
4 | *
5 | * classie.has( elem, 'my-class' ) -> true/false
6 | * classie.add( elem, 'my-new-class' )
7 | * classie.remove( elem, 'my-unwanted-class' )
8 | * classie.toggle( elem, 'my-class' )
9 | */
10 |
11 | /*jshint browser: true, strict: true, undef: true */
12 | /*global define: false */
13 |
14 | ( function( window ) {
15 |
16 | 'use strict';
17 |
18 | // class helper functions from bonzo https://github.com/ded/bonzo
19 |
20 | function classReg( className ) {
21 | return new RegExp("(^|\\s+)" + className + "(\\s+|$)");
22 | }
23 |
24 | // classList support for class management
25 | // altho to be fair, the api sucks because it won't accept multiple classes at once
26 | var hasClass, addClass, removeClass;
27 |
28 | if ( 'classList' in document.documentElement ) {
29 | hasClass = function( elem, c ) {
30 | return elem.classList.contains( c );
31 | };
32 | addClass = function( elem, c ) {
33 | elem.classList.add( c );
34 | };
35 | removeClass = function( elem, c ) {
36 | elem.classList.remove( c );
37 | };
38 | }
39 | else {
40 | hasClass = function( elem, c ) {
41 | return classReg( c ).test( elem.className );
42 | };
43 | addClass = function( elem, c ) {
44 | if ( !hasClass( elem, c ) ) {
45 | elem.className = elem.className + ' ' + c;
46 | }
47 | };
48 | removeClass = function( elem, c ) {
49 | elem.className = elem.className.replace( classReg( c ), ' ' );
50 | };
51 | }
52 |
53 | function toggleClass( elem, c ) {
54 | var fn = hasClass( elem, c ) ? removeClass : addClass;
55 | fn( elem, c );
56 | }
57 |
58 | var classie = {
59 | // full names
60 | hasClass: hasClass,
61 | addClass: addClass,
62 | removeClass: removeClass,
63 | toggleClass: toggleClass,
64 | // short names
65 | has: hasClass,
66 | add: addClass,
67 | remove: removeClass,
68 | toggle: toggleClass
69 | };
70 |
71 | // transport
72 | if ( typeof define === 'function' && define.amd ) {
73 | // AMD
74 | define( classie );
75 | } else {
76 | // browser global
77 | window.classie = classie;
78 | }
79 |
80 | })( window );
81 |
--------------------------------------------------------------------------------
/WebRoot/html/js/easing.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery EasIng v1.1.2 - http://gsgd.co.uk/sandbox/jquery.easIng.php
3 | *
4 | * Uses the built In easIng capabilities added In jQuery 1.1
5 | * to offer multiple easIng options
6 | *
7 | * Copyright (c) 2007 George Smith
8 | * Licensed under the MIT License:
9 | * http://www.opensource.org/licenses/mit-license.php
10 | */
11 |
12 | // t: current time, b: begInnIng value, c: change In value, d: duration
13 |
14 | jQuery.extend( jQuery.easing,
15 | {
16 | easeInQuad: function (x, t, b, c, d) {
17 | return c*(t/=d)*t + b;
18 | },
19 | easeOutQuad: function (x, t, b, c, d) {
20 | return -c *(t/=d)*(t-2) + b;
21 | },
22 | easeInOutQuad: function (x, t, b, c, d) {
23 | if ((t/=d/2) < 1) return c/2*t*t + b;
24 | return -c/2 * ((--t)*(t-2) - 1) + b;
25 | },
26 | easeInCubic: function (x, t, b, c, d) {
27 | return c*(t/=d)*t*t + b;
28 | },
29 | easeOutCubic: function (x, t, b, c, d) {
30 | return c*((t=t/d-1)*t*t + 1) + b;
31 | },
32 | easeInOutCubic: function (x, t, b, c, d) {
33 | if ((t/=d/2) < 1) return c/2*t*t*t + b;
34 | return c/2*((t-=2)*t*t + 2) + b;
35 | },
36 | easeInQuart: function (x, t, b, c, d) {
37 | return c*(t/=d)*t*t*t + b;
38 | },
39 | easeOutQuart: function (x, t, b, c, d) {
40 | return -c * ((t=t/d-1)*t*t*t - 1) + b;
41 | },
42 | easeInOutQuart: function (x, t, b, c, d) {
43 | if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
44 | return -c/2 * ((t-=2)*t*t*t - 2) + b;
45 | },
46 | easeInQuint: function (x, t, b, c, d) {
47 | return c*(t/=d)*t*t*t*t + b;
48 | },
49 | easeOutQuint: function (x, t, b, c, d) {
50 | return c*((t=t/d-1)*t*t*t*t + 1) + b;
51 | },
52 | easeInOutQuint: function (x, t, b, c, d) {
53 | if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
54 | return c/2*((t-=2)*t*t*t*t + 2) + b;
55 | },
56 | easeInSine: function (x, t, b, c, d) {
57 | return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
58 | },
59 | easeOutSine: function (x, t, b, c, d) {
60 | return c * Math.sin(t/d * (Math.PI/2)) + b;
61 | },
62 | easeInOutSine: function (x, t, b, c, d) {
63 | return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
64 | },
65 | easeInExpo: function (x, t, b, c, d) {
66 | return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
67 | },
68 | easeOutExpo: function (x, t, b, c, d) {
69 | return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
70 | },
71 | easeInOutExpo: function (x, t, b, c, d) {
72 | if (t==0) return b;
73 | if (t==d) return b+c;
74 | if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
75 | return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
76 | },
77 | easeInCirc: function (x, t, b, c, d) {
78 | return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
79 | },
80 | easeOutCirc: function (x, t, b, c, d) {
81 | return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
82 | },
83 | easeInOutCirc: function (x, t, b, c, d) {
84 | if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
85 | return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
86 | },
87 | easeInElastic: function (x, t, b, c, d) {
88 | var s=1.70158;var p=0;var a=c;
89 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
90 | if (a < Math.abs(c)) { a=c; var s=p/4; }
91 | else var s = p/(2*Math.PI) * Math.asin (c/a);
92 | return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
93 | },
94 | easeOutElastic: function (x, t, b, c, d) {
95 | var s=1.70158;var p=0;var a=c;
96 | if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
97 | if (a < Math.abs(c)) { a=c; var s=p/4; }
98 | else var s = p/(2*Math.PI) * Math.asin (c/a);
99 | return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
100 | },
101 | easeInOutElastic: function (x, t, b, c, d) {
102 | var s=1.70158;var p=0;var a=c;
103 | if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
104 | if (a < Math.abs(c)) { a=c; var s=p/4; }
105 | else var s = p/(2*Math.PI) * Math.asin (c/a);
106 | if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
107 | return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
108 | },
109 | easeInBack: function (x, t, b, c, d, s) {
110 | if (s == undefined) s = 1.70158;
111 | return c*(t/=d)*t*((s+1)*t - s) + b;
112 | },
113 | easeOutBack: function (x, t, b, c, d, s) {
114 | if (s == undefined) s = 1.70158;
115 | return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
116 | },
117 | easeInOutBack: function (x, t, b, c, d, s) {
118 | if (s == undefined) s = 1.70158;
119 | if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
120 | return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
121 | },
122 | easeInBounce: function (x, t, b, c, d) {
123 | return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
124 | },
125 | easeOutBounce: function (x, t, b, c, d) {
126 | if ((t/=d) < (1/2.75)) {
127 | return c*(7.5625*t*t) + b;
128 | } else if (t < (2/2.75)) {
129 | return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
130 | } else if (t < (2.5/2.75)) {
131 | return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
132 | } else {
133 | return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
134 | }
135 | },
136 | easeInOutBounce: function (x, t, b, c, d) {
137 | if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
138 | return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
139 | }
140 | });
141 |
--------------------------------------------------------------------------------
/WebRoot/html/js/filedrag.js:
--------------------------------------------------------------------------------
1 | /*
2 | filedrag.js - HTML5 File Drag & Drop demonstration
3 | Featured on SitePoint.com
4 | Developed by Craig Buckler (@craigbuckler) of OptimalWorks.net
5 | */
6 | (function() {
7 |
8 | // getElementById
9 | function $id(id) {
10 | return document.getElementById(id);
11 | }
12 |
13 |
14 | // output information
15 | function Output(msg) {
16 | var m = $id("messages");
17 | m.innerHTML = msg + m.innerHTML;
18 | }
19 |
20 |
21 | // file drag hover
22 | function FileDragHover(e) {
23 | e.stopPropagation();
24 | e.preventDefault();
25 | e.target.className = (e.type == "dragover" ? "hover" : "");
26 | }
27 |
28 |
29 | // file selection
30 | function FileSelectHandler(e) {
31 |
32 | // cancel event and hover styling
33 | FileDragHover(e);
34 |
35 | // fetch FileList object
36 | var files = e.target.files || e.dataTransfer.files;
37 |
38 | // process all File objects
39 | for (var i = 0, f; f = files[i]; i++) {
40 | ParseFile(f);
41 | }
42 |
43 | }
44 |
45 |
46 | // output file information
47 | function ParseFile(file) {
48 |
49 | Output(
50 | "File information: " + file.name +
51 | " type: " + file.type +
52 | " size: " + file.size +
53 | " bytes
"
54 | );
55 |
56 | }
57 |
58 |
59 | // initialize
60 | function Init() {
61 |
62 | var fileselect = $id("fileselect"),
63 | filedrag = $id("filedrag"),
64 | submitbutton = $id("submitbutton");
65 |
66 | // file select
67 | fileselect.addEventListener("change", FileSelectHandler, false);
68 |
69 | // is XHR2 available?
70 | var xhr = new XMLHttpRequest();
71 | if (xhr.upload) {
72 |
73 | // file drop
74 | filedrag.addEventListener("dragover", FileDragHover, false);
75 | filedrag.addEventListener("dragleave", FileDragHover, false);
76 | filedrag.addEventListener("drop", FileSelectHandler, false);
77 | filedrag.style.display = "block";
78 |
79 | // remove submit button
80 | submitbutton.style.display = "none";
81 | }
82 |
83 | }
84 |
85 | // call initialization file
86 | if (window.File && window.FileList && window.FileReader) {
87 | Init();
88 | }
89 |
90 |
91 | })();
--------------------------------------------------------------------------------
/WebRoot/html/js/jquery-ui-timepicker-zh-CN.js:
--------------------------------------------------------------------------------
1 | /* Simplified Chinese translation for the jQuery Timepicker Addon /
2 | / Written by Will Lu */
3 | (function($) {
4 | $.timepicker.regional['zh-CN'] = {
5 | timeOnlyTitle: '选择时间',
6 | timeText: '时间',
7 | hourText: '小时',
8 | minuteText: '分钟',
9 | secondText: '秒钟',
10 | millisecText: '微秒',
11 | microsecText: '毫秒',
12 | timezoneText: '时区',
13 | currentText: '当前时间',
14 | closeText: '确定',
15 | timeFormat: 'HH:mm',
16 | amNames: ['AM', 'A'],
17 | pmNames: ['PM', 'P'],
18 | isRTL: false
19 | };
20 | $.timepicker.setDefaults($.timepicker.regional['zh-CN']);
21 | })(jQuery);
--------------------------------------------------------------------------------
/WebRoot/html/js/jquery.leanModal.min.js:
--------------------------------------------------------------------------------
1 | // leanModal v1.1 by Ray Stone - http://finelysliced.com.au
2 | // Dual licensed under the MIT and GPL
3 |
4 | (function($){$.fn.extend({leanModal:function(options){var defaults={top:100,overlay:0.5,closeButton:null};var overlay=$("
");$("body").append(overlay);options=$.extend(defaults,options);return this.each(function(){var o=options;$(this).click(function(e){var modal_id=$(this).attr("href");$("#lean_overlay").click(function(){close_modal(modal_id)});$(o.closeButton).click(function(){close_modal(modal_id)});var modal_height=$(modal_id).outerHeight();var modal_width=$(modal_id).outerWidth();
5 | $("#lean_overlay").css({"display":"block",opacity:0});$("#lean_overlay").fadeTo(200,o.overlay);$(modal_id).css({"display":"block","position":"fixed","opacity":0,"z-index":11000,"left":50+"%","margin-left":-(modal_width/2)+"px","top":o.top+"px"});$(modal_id).fadeTo(200,1);e.preventDefault()})});function close_modal(modal_id){$("#lean_overlay").fadeOut(200);$(modal_id).css({"display":"none"})}}})})(jQuery);
6 |
--------------------------------------------------------------------------------
/WebRoot/html/js/jquery.ui.datepicker-zh-CN.js:
--------------------------------------------------------------------------------
1 | /* Chinese initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Cloudream (cloudream@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['zh-CN'] = {
5 | closeText: '关闭',
6 | prevText: '<上月',
7 | nextText: '下月>',
8 | currentText: '今天',
9 | monthNames: ['一月','二月','三月','四月','五月','六月',
10 | '七月','八月','九月','十月','十一月','十二月'],
11 | monthNamesShort: ['一月','二月','三月','四月','五月','六月',
12 | '七月','八月','九月','十月','十一月','十二月'],
13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'],
14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'],
15 | dayNamesMin: ['日','一','二','三','四','五','六'],
16 | weekHeader: '周',
17 | dateFormat: 'yy-mm-dd',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: true,
21 | yearSuffix: '年'};
22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']);
23 | });
24 |
--------------------------------------------------------------------------------
/WebRoot/html/js/jquery.uls.regionfilter.js:
--------------------------------------------------------------------------------
1 | /**
2 | * jQuery region filter plugin.
3 | *
4 | * Copyright (C) 2012 Alolita Sharma, Amir Aharoni, Arun Ganesh, Brandon Harris,
5 | * Niklas Laxström, Pau Giner, Santhosh Thottingal, Siebrand Mazeland and other
6 | * contributors. See CREDITS for a list.
7 | *
8 | * UniversalLanguageSelector is dual licensed GPLv2 or later and MIT. You don't
9 | * have to do anything special to choose one license or the other and you don't
10 | * have to notify anyone which license you are using. You are free to use
11 | * UniversalLanguageSelector in commercial projects as long as the copyright
12 | * header is left intact. See files GPL-LICENSE and MIT-LICENSE for details.
13 | *
14 | * @file
15 | * @ingroup Extensions
16 | * @licence GNU General Public Licence 2.0 or later
17 | * @licence MIT License
18 | */
19 |
20 | ( function ( $ ) {
21 | 'use strict';
22 |
23 | /* RegionSelector plugin definition */
24 |
25 | var RegionSelector;
26 |
27 | /**
28 | * Region selector is a language selector based on regions.
29 | * Usage: $( 'jqueryselector' ).regionselector( options );
30 | * The attached element should have data-regiongroup attribute
31 | * that defines the regiongroup for the selector.
32 | */
33 | RegionSelector = function ( element, options ) {
34 | this.$element = $( element );
35 | this.options = $.extend( {}, $.fn.regionselector.defaults, options );
36 | this.$element.addClass( 'regionselector' );
37 | this.regions = [];
38 | this.cache= null;
39 | this.regionGroup = this.$element.data( 'regiongroup' );
40 | this.init();
41 | this.listen();
42 | };
43 |
44 | RegionSelector.prototype = {
45 | constructor: RegionSelector,
46 |
47 | init: function () {
48 | var region = this.$element.data( 'region' );
49 | this.regions = $.uls.data.getRegionsInGroup( this.regionGroup );
50 |
51 | if ( region ) {
52 | this.regions.push( region );
53 | }
54 | },
55 |
56 | test: function ( langCode ) {
57 | var region, i,
58 | langRegions = $.uls.data.getRegions( langCode );
59 |
60 | for ( i = 0; i < this.regions.length; i++ ) {
61 | region = this.regions[i];
62 |
63 | if ( $.inArray( region, langRegions ) >= 0 ) {
64 | this.render( langCode, region );
65 | this.cache[langCode] = region;
66 |
67 | return;
68 | }
69 | }
70 | },
71 |
72 | show: function () {
73 | var result, languagesByScriptGroup, scriptGroup, languages, i,
74 | $element = this.options.$target && this.options.$target.$element,
75 | $parent = $element && $element.parent(),
76 | $prev = $element && $element.prev();
77 |
78 | if ( $element && $parent ) {
79 | // Avoid reflows while adding new elements to the list
80 | // Use .detach() to keep jQuery events and data associated with elements
81 | $element.detach();
82 | }
83 |
84 | if ( this.cache ) {
85 | // If the result cache is present, render the results from there.
86 | //noinspection JSUnusedAssignment
87 | result = null;
88 |
89 | for ( result in this.cache ) {
90 | this.render( result, this.cache[result] );
91 | }
92 | } else {
93 | this.cache = {};
94 | // Get the languages grouped by script group
95 | languagesByScriptGroup = $.uls.data.getLanguagesByScriptGroup( this.options.languages );
96 |
97 | // Make sure that we go by the original order
98 | // of script groups
99 | for ( scriptGroup in $.uls.data.scriptgroups ) {
100 | // Get the languages for the script group
101 | languages = languagesByScriptGroup[scriptGroup];
102 |
103 | // It's possible that some script groups are missing
104 | if ( !languages ) {
105 | continue;
106 | }
107 |
108 | // Sort it based on autonym
109 | languages.sort( $.uls.data.sortByAutonym );
110 |
111 | for ( i = 0; i < languages.length; i++ ) {
112 | // Check whether it belongs to the region
113 | this.test( languages[i] );
114 | }
115 | }
116 | }
117 |
118 | if ( $element && $parent ) {
119 | // Restore the element to where we removed it from
120 | if ( $prev ) {
121 | $prev.after( $element );
122 | } else {
123 | $parent.append( $element );
124 | }
125 | }
126 |
127 | if ( this.options.success ) {
128 | this.options.success( this );
129 | }
130 | },
131 |
132 | render: function ( langCode, region ) {
133 | var $target = this.options.$target;
134 |
135 | if ( !$target ) {
136 | return;
137 | }
138 |
139 | $target.append( langCode, region );
140 | },
141 |
142 | listen: function () {
143 | this.$element.on( 'click', $.proxy( this.click, this ) );
144 | },
145 |
146 | click: function () {
147 | // Don't do anything if a region is selected already
148 | if ( this.$element.hasClass( 'active' ) ) {
149 | return;
150 | }
151 |
152 | // Re-populate the list of languages
153 | this.options.$target.empty();
154 | this.show();
155 | // Make the selected region (and it only) active
156 | $( '.regionselector' ).removeClass( 'active' );
157 |
158 | if ( this.regionGroup ) {
159 | // if there is a region group, make it active.
160 | this.$element.addClass( 'active' );
161 | }
162 | }
163 | };
164 |
165 | /* RegionSelector plugin definition */
166 |
167 | $.fn.regionselector = function ( option ) {
168 | return this.each( function () {
169 | var $this = $( this ),
170 | data = $this.data( 'regionselector' ),
171 | options = typeof option === 'object' && option;
172 |
173 | if ( !data ) {
174 | $this.data( 'regionselector', ( data = new RegionSelector( this, options ) ) );
175 | }
176 |
177 | if ( typeof option === 'string' ) {
178 | data[option]();
179 | }
180 | } );
181 | };
182 |
183 | $.fn.regionselector.defaults = {
184 | $target: null, // Where to render the results
185 | success: null, // callback if any results found.
186 | noresults: null, // callback when no results to show
187 | languages: null
188 | };
189 |
190 | $.fn.regionselector.Constructor = RegionSelector;
191 |
192 | } ( jQuery ) );
193 |
--------------------------------------------------------------------------------
/WebRoot/html/js/main.js:
--------------------------------------------------------------------------------
1 | /**
2 | * main.js
3 | * http://www.codrops.com
4 | *
5 | * Licensed under the MIT license.
6 | * http://www.opensource.org/licenses/mit-license.php
7 | *
8 | * Copyright 2014, Codrops
9 | * http://www.codrops.com
10 | */
11 | (function() {
12 |
13 | var bodyEl = document.body,
14 | content = document.querySelector( '.content-wrap' ),
15 | openbtn = document.getElementById( 'open-button' ),
16 | closebtn = document.getElementById( 'close-button' ),
17 | isOpen = false;
18 |
19 | function init() {
20 | initEvents();
21 | }
22 |
23 | function initEvents() {
24 | openbtn.addEventListener( 'click', toggleMenu );
25 | if( closebtn ) {
26 | closebtn.addEventListener( 'click', toggleMenu );
27 | }
28 |
29 | // close the menu element if the target it´s not the menu element or one of its descendants..
30 | /**content.addEventListener( 'click', function(ev) {
31 | var target = ev.target;
32 | if( isOpen && target !== openbtn ) {
33 | toggleMenu();
34 | }
35 | } ); */
36 | }
37 |
38 | function toggleMenu() {
39 | if( isOpen ) {
40 | classie.remove( bodyEl, 'show-menu' );
41 | }
42 | else {
43 | classie.add( bodyEl, 'show-menu' );
44 | }
45 | isOpen = !isOpen;
46 | }
47 |
48 | init();
49 |
50 | })();
--------------------------------------------------------------------------------
/WebRoot/html/js/move-top.js:
--------------------------------------------------------------------------------
1 | /* UItoTop jQuery Plugin 1.2 | Matt Varone | http://www.mattvarone.com/web-design/uitotop-jquery-plugin */
2 | (function($){$.fn.UItoTop=function(options){var defaults={text:'To Top',min:200,inDelay:600,outDelay:400,containerID:'toTop',containerHoverID:'toTopHover',scrollSpeed:1000,easingType:'linear'},settings=$.extend(defaults,options),containerIDhash='#'+settings.containerID,containerHoverIDHash='#'+settings.containerHoverID;$('body').append(''+settings.text+' ');$(containerIDhash).hide().on('click.UItoTop',function(){$('html, body').animate({scrollTop:0},settings.scrollSpeed,settings.easingType);$('#'+settings.containerHoverID,this).stop().animate({'opacity':0},settings.inDelay,settings.easingType);return false;}).prepend(' ').hover(function(){$(containerHoverIDHash,this).stop().animate({'opacity':1},600,'linear');},function(){$(containerHoverIDHash,this).stop().animate({'opacity':0},700,'linear');});$(window).scroll(function(){var sd=$(window).scrollTop();if(typeof document.body.style.maxHeight==="undefined"){$(containerIDhash).css({'position':'absolute','top':sd+$(window).height()-50});}
3 | if(sd>settings.min)
4 | $(containerIDhash).fadeIn(settings.inDelay);else
5 | $(containerIDhash).fadeOut(settings.Outdelay);});};})(jQuery);
--------------------------------------------------------------------------------
/WebRoot/html/js/responsiveslides.min.js:
--------------------------------------------------------------------------------
1 | (function(c,I,B){c.fn.responsiveSlides=function(l){var a=c.extend({auto:!0,speed:500,timeout:4E3,pager:!1,nav:!1,random:!1,pause:!1,pauseControls:!0,prevText:"Previous",nextText:"Next",maxwidth:"",navContainer:"",manualControls:"",namespace:"rslides",before:c.noop,after:c.noop},l);return this.each(function(){B++;var f=c(this),s,r,t,m,p,q,n=0,e=f.children(),C=e.size(),h=parseFloat(a.speed),D=parseFloat(a.timeout),u=parseFloat(a.maxwidth),g=a.namespace,d=g+B,E=g+"_nav "+d+"_nav",v=g+"_here",j=d+"_on",
2 | w=d+"_s",k=c(""),x={"float":"left",position:"relative",opacity:1,zIndex:2},y={"float":"none",position:"absolute",opacity:0,zIndex:1},F=function(){var b=(document.body||document.documentElement).style,a="transition";if("string"===typeof b[a])return!0;s=["Moz","Webkit","Khtml","O","ms"];var a=a.charAt(0).toUpperCase()+a.substr(1),c;for(c=0;c"+a+" "});k.append(A);l.navContainer?c(a.navContainer).append(k):f.after(k)}a.manualControls&&(k=c(a.manualControls),k.addClass(g+"_tabs "+d+"_tabs"));(a.pager||a.manualControls)&&k.find("li").each(function(a){c(this).addClass(w+(a+1))});if(a.pager||a.manualControls)q=
5 | k.find("a"),r=function(a){q.closest("li").removeClass(v).eq(a).addClass(v)};a.auto&&(t=function(){p=setInterval(function(){e.stop(!0,!0);var b=n+1"+a.prevText+""+a.nextText+" ";l.navContainer?c(a.navContainer).append(g):f.after(g);var d=c("."+d+"_nav"),G=d.filter(".prev");d.bind("click",function(b){b.preventDefault();b=c("."+j);if(!b.queue("fx").length){var d=e.index(b);b=d-1;d=d+1u&&f.css("width",u)};H();c(I).bind("resize",function(){H()})}})}})(jQuery,this,0);
--------------------------------------------------------------------------------
/WebRoot/html/js/script.js:
--------------------------------------------------------------------------------
1 | $(function(){
2 |
3 | var ul = $('#upload ul');
4 |
5 | $('#drop a').click(function(){
6 | // Simulate a click on the file input button
7 | // to show the file browser dialog
8 | $(this).parent().find('input').click();
9 | });
10 |
11 | // Initialize the jQuery File Upload plugin
12 | $('#upload').fileupload({
13 |
14 | // This element will accept file drag/drop uploading
15 | dropZone: $('#drop'),
16 |
17 | // This function is called when a file is added to the queue;
18 | // either via the browse button, or via drag/drop:
19 | add: function (e, data) {
20 |
21 | var tpl = $('
');
23 |
24 | // Append the file name and file size
25 | tpl.find('p').text(data.files[0].name)
26 | .append('' + formatFileSize(data.files[0].size) + ' ');
27 |
28 | // Add the HTML to the UL element
29 | data.context = tpl.appendTo(ul);
30 |
31 | // Initialize the knob plugin
32 | tpl.find('input').knob();
33 |
34 | // Listen for clicks on the cancel icon
35 | tpl.find('span').click(function(){
36 |
37 | if(tpl.hasClass('working')){
38 | jqXHR.abort();
39 | }
40 |
41 | tpl.fadeOut(function(){
42 | tpl.remove();
43 | });
44 |
45 | });
46 |
47 | // Automatically upload the file once it is added to the queue
48 | var jqXHR = data.submit();
49 | },
50 |
51 | progress: function(e, data){
52 |
53 | // Calculate the completion percentage of the upload
54 | var progress = parseInt(data.loaded / data.total * 100, 10);
55 |
56 | // Update the hidden input field and trigger a change
57 | // so that the jQuery knob plugin knows to update the dial
58 | data.context.find('input').val(progress).change();
59 |
60 | if(progress == 100){
61 | data.context.removeClass('working');
62 | }
63 | },
64 |
65 | fail:function(e, data){
66 | // Something has gone wrong!
67 | data.context.addClass('error');
68 | }
69 |
70 | });
71 |
72 |
73 | // Prevent the default action when a file is dropped on the window
74 | $(document).on('drop dragover', function (e) {
75 | e.preventDefault();
76 | });
77 |
78 | // Helper function that formats the file sizes
79 | function formatFileSize(bytes) {
80 | if (typeof bytes !== 'number') {
81 | return '';
82 | }
83 |
84 | if (bytes >= 1000000000) {
85 | return (bytes / 1000000000).toFixed(2) + ' GB';
86 | }
87 |
88 | if (bytes >= 1000000) {
89 | return (bytes / 1000000).toFixed(2) + ' MB';
90 | }
91 |
92 | return (bytes / 1000).toFixed(2) + ' KB';
93 | }
94 |
95 | });
--------------------------------------------------------------------------------
/WebRoot/html/js/tabs.js:
--------------------------------------------------------------------------------
1 | (function($) {
2 |
3 | 'use strict';
4 |
5 | $(document).on('show.bs.tab', '.nav-tabs-responsive [data-toggle="tab"]', function(e) {
6 | var $target = $(e.target);
7 | var $tabs = $target.closest('.nav-tabs-responsive');
8 | var $current = $target.closest('li');
9 | var $parent = $current.closest('li.dropdown');
10 | $current = $parent.length > 0 ? $parent : $current;
11 | var $next = $current.next();
12 | var $prev = $current.prev();
13 | var updateDropdownMenu = function($el, position){
14 | $el
15 | .find('.dropdown-menu')
16 | .removeClass('pull-xs-left pull-xs-center pull-xs-right')
17 | .addClass( 'pull-xs-' + position );
18 | };
19 |
20 | $tabs.find('>li').removeClass('next prev');
21 | $prev.addClass('prev');
22 | $next.addClass('next');
23 |
24 | updateDropdownMenu( $prev, 'left' );
25 | updateDropdownMenu( $current, 'center' );
26 | updateDropdownMenu( $next, 'right' );
27 | });
28 |
29 | })(jQuery);
--------------------------------------------------------------------------------
/WebRoot/html/laydate/need/laydate.css:
--------------------------------------------------------------------------------
1 | html{_background-image:url(about:blank); _background-attachment:fixed;}
2 | .laydate_body .laydate_box, .laydate_body .laydate_box *{margin:0; padding:0;}
3 | .laydate-icon,
4 | .laydate-icon-default,
5 | .laydate-icon-yahui,
6 | .laydate-icon-danlan,
7 | .laydate-icon-qianhuang,
8 | .laydate-icon-yalan,
9 | .laydate-icon-dahong{height:22px; line-height:22px; padding-right:20px; background-repeat:no-repeat; background-position:right center; background-color:#fff; outline:0;}
10 | .laydate-icon-default{border:1px solid #C6C6C6; background-image:url(../skins/default/icon.png)}
11 | .laydate-icon-yahui{border:1px solid #C6C6C6; background-image:url(../skins/yahui/icon.png)}
12 | .laydate-icon-danlan{border:1px solid #B1D2EC; background-image:url(../skins/danlan/icon.png)}
13 | .laydate-icon-qianhuang{border:1px solid #E7D7CB; background-image:url(../skins/qianhuang/icon.png)}
14 | .laydate-icon-yalan{border:1px solid #34AADC; background-image:url(../skins/yalan/icon.png)}
15 | .laydate-icon-dahong{border:1px solid #D91600; background-image:url(../skins/dahong/icon.png)}
16 | .laydate_body .laydate_box{width:240px; font:12px '\5B8B\4F53'; z-index:99999999; *margin:-2px 0 0 -2px; *overflow:hidden; _margin:0; _position:absolute!important; background-color:#fff;}
17 | .laydate_body .laydate_box li{list-style:none;}
18 | .laydate_body .laydate_box .laydate_void{cursor:text!important;}
19 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{text-decoration:none; blr:expression(this.onFocus=this.blur()); cursor:pointer;}
20 | .laydate_body .laydate_box a:hover{text-decoration:none;}
21 | .laydate_body .laydate_box cite, .laydate_body .laydate_box label{position:absolute; width:0; height:0; border-width:5px; border-style:dashed; border-color:transparent; overflow:hidden; cursor:pointer;}
22 | .laydate_body .laydate_box .laydate_yms, .laydate_body .laydate_box .laydate_time{display:none;}
23 | .laydate_body .laydate_box .laydate_show{display:block;}
24 | .laydate_body .laydate_box input{outline:0; font-size:14px; background-color:#fff;}
25 | .laydate_body .laydate_top{position:relative; height:26px; padding:5px; *width:100%; z-index:99;}
26 | .laydate_body .laydate_ym{position:relative; float:left; width height:24px; cursor:pointer;}
27 | .laydate_body .laydate_ym input{float:left; height:24px; line-height:24px; text-align:center; border:none; cursor:pointer;}
28 | .laydate_body .laydate_ym .laydate_yms{position:absolute; left: -1px; top: 24px; height:181px;}
29 | .laydate_body .laydate_y{width:121px; margin-right:6px;}
30 | .laydate_body .laydate_y input{width:64px; margin-right:15px;}
31 | .laydate_body .laydate_y .laydate_yms{width:121px; text-align:center;}
32 | .laydate_body .laydate_y .laydate_yms a{position:relative; display:block; height:20px;}
33 | .laydate_body .laydate_y .laydate_yms ul{height:139px; padding:0; *overflow:hidden;}
34 | .laydate_body .laydate_y .laydate_yms ul li{float:left; width:60px; height:20px; line-height: 20px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;}
35 | .laydate_body .laydate_m{width:99px;}
36 | .laydate_body .laydate_m .laydate_yms{width:99px; padding:0;}
37 | .laydate_body .laydate_m input{width:42px; margin-right:15px;}
38 | .laydate_body .laydate_m .laydate_yms span{display:block; float:left; width:42px; margin: 5px 0 0 5px; line-height:24px; text-align:center; _display:inline;}
39 | .laydate_body .laydate_choose{display:block; float:left; position:relative; width:20px; height:24px;}
40 | .laydate_body .laydate_choose cite, .laydate_body .laydate_tab cite{left:50%; top:50%;}
41 | .laydate_body .laydate_chtop cite{margin:-7px 0 0 -5px; border-bottom-style:solid;}
42 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{top:50%; margin:-2px 0 0 -5px; border-top-style:solid;}
43 | .laydate_body .laydate_chprev cite{margin:-5px 0 0 -7px;}
44 | .laydate_body .laydate_chnext cite{margin:-5px 0 0 -2px;}
45 | .laydate_body .laydate_ym label{right:28px;}
46 | .laydate_body .laydate_table{ width:230px; margin:0 5px; border-collapse:collapse; border-spacing:0px; }
47 | .laydate_body .laydate_table td{width:31px; height:19px; line-height:19px; text-align: center; cursor:pointer; font-size: 12px;}
48 | .laydate_body .laydate_table thead{height:22px; line-height:22px;}
49 | .laydate_body .laydate_table thead th{font-weight:400; font-size:12px;}
50 | .laydate_body .laydate_bottom{position:relative; height:22px; line-height:20px; padding:5px; font-size:12px;}
51 | .laydate_body .laydate_bottom #laydate_hms{position: relative; z-index: 1; float:left; }
52 | .laydate_body .laydate_time{ position:absolute; left:5px; bottom: 26px; width:129px; height:125px; *overflow:hidden;}
53 | .laydate_body .laydate_time .laydate_hmsno{ padding:5px 0 0 5px;}
54 | .laydate_body .laydate_time .laydate_hmsno span{display:block; float:left; width:24px; height:19px; line-height:19px; text-align:center; cursor:pointer; *margin-bottom:-5px;}
55 | .laydate_body .laydate_time1{width:228px; height:154px;}
56 | .laydate_body .laydate_time1 .laydate_hmsno{ padding:0; *padding:4px 0 0 5px;}
57 | .laydate_body .laydate_msg{left:49px; bottom:67px; width:141px; height:auto; overflow: hidden;}
58 | .laydate_body .laydate_msg p{padding:5px 10px;}
59 | .laydate_body .laydate_bottom li{float:left; height:20px; line-height:20px; border-right:none; font-weight:900;}
60 | .laydate_body .laydate_bottom .laydate_sj{width:33px; text-align:center; font-weight:400;}
61 | .laydate_body .laydate_bottom input{float:left; width:21px; height:20px; line-height:20px; border:none; text-align:center; cursor:pointer; font-size:12px; font-weight:400;}
62 | .laydate_body .laydate_bottom .laydte_hsmtex{height:20px; line-height:20px; text-align:center;}
63 | .laydate_body .laydate_bottom .laydte_hsmtex span{position:absolute; width:20px; top:0; right:0px; cursor:pointer;}
64 | .laydate_body .laydate_bottom .laydte_hsmtex span:hover{font-size:14px;}
65 | .laydate_body .laydate_bottom .laydate_btn{position:absolute; right:5px; top:5px;}
66 | .laydate_body .laydate_bottom .laydate_btn a{float:left; height:20px; padding:0 6px; _padding:0 5px;}
67 | .laydate_body .laydate_bottom .laydate_v{position:absolute; left:10px; top:6px; font-family:Courier; z-index:0;}
68 |
69 |
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/dahong/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/laydate/skins/dahong/icon.png
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/dahong/laydate.css:
--------------------------------------------------------------------------------
1 | /**
2 |
3 | @Name: laydate皮肤:大红
4 | @Author:贤心
5 | @Site:http://sentsin.com/layui/laydate
6 |
7 | **/
8 |
9 | .laydate-icon{border:1px solid #ccc; background-image:url(icon.png)}
10 |
11 | .laydate_body .laydate_box,
12 | .laydate_body .laydate_bottom #laydate_hms,
13 | .laydate_body .laydate_time{border:1px solid #ccc;}
14 |
15 | .laydate_body .laydate_box,
16 | .laydate_body .laydate_ym .laydate_yms,
17 | .laydate_body .laydate_time{box-shadow: 2px 2px 5px rgba(0,0,0,.1);}
18 |
19 | .laydate_body .laydate_box{border-top:none; border-bottom:none; background-color:#fff; color:#333;}
20 | .laydate_body .laydate_box input{background:none!important; color:#fff;}
21 | .laydate_body .laydate_box .laydate_void{color:#ccc!important; /*text-decoration:line-through;*/}
22 | .laydate_body .laydate_box .laydate_void:hover{background-color:#fff!important}
23 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{color:#333;}
24 | .laydate_body .laydate_box a:hover{color:#666;}
25 | .laydate_body .laydate_click{background-color:#F32043!important; color:#fff!important;}
26 | .laydate_body .laydate_top{border-top:1px solid #D91600; background-color:#D91600}
27 | .laydate_body .laydate_ym{background-color:#D91600;}
28 | .laydate_body .laydate_ym .laydate_yms{border:1px solid #D91600; background-color:#D91600; color:#fff;}
29 | .laydate_body .laydate_y .laydate_yms a{border-bottom:1px solid #D91600;}
30 | .laydate_body .laydate_y .laydate_yms .laydate_chdown{border-top:1px solid #D91600; border-bottom:none;}
31 | .laydate_body .laydate_choose{border-left:1px solid #D91600;}
32 | .laydate_body .laydate_chprev{border-left:none; border-right:1px solid #D91600;}
33 | .laydate_body .laydate_choose:hover,
34 | .laydate_body .laydate_y .laydate_yms a:hover{background-color:#F54766;}
35 | .laydate_body .laydate_chtop cite{border-bottom-color:#fff;}
36 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{border-top-color:#fff;}
37 | .laydate_body .laydate_chprev cite{border-right-style:solid; border-right-color:#fff;}
38 | .laydate_body .laydate_chnext cite{border-left-style:solid; border-left-color:#fff;}
39 | .laydate_body .laydate_table{width: 240px!important; margin: 0!important; border:1px solid #fff; border-left:none; border-right:none;}
40 | .laydate_body .laydate_table td{border:none; height:21px!important; line-height:21px!important; background-color:#fff; color:#333;}
41 | .laydate_body .laydate_table .laydate_nothis{color:#999;}
42 | .laydate_body .laydate_table thead{border-bottom:1px solid #ccc; height:21px!important; line-height:21px!important;}
43 | .laydate_body .laydate_table thead th{}
44 | .laydate_body .laydate_bottom{border-bottom:1px solid #ccc;}
45 | .laydate_body .laydate_bottom #laydate_hms{background-color:#fff;}
46 | .laydate_body .laydate_time{background-color:#fff;}
47 | .laydate_body .laydate_bottom .laydate_sj{border-right:1px solid #ccc; background-color:#fff;}
48 | .laydate_body .laydate_bottom input{background-color:#fff; color:#333;}
49 | .laydate_body .laydate_bottom .laydte_hsmtex{border-bottom:1px solid #ccc;}
50 | .laydate_body .laydate_bottom .laydate_btn{border-right:1px solid #ccc;}
51 | .laydate_body .laydate_bottom .laydate_v{color:#999}
52 | .laydate_body .laydate_bottom .laydate_btn a{border: 1px solid #ccc; border-right:none; background-color:#fff;}
53 |
54 | .laydate_body .laydate_m .laydate_yms span:hover,
55 | .laydate_body .laydate_time .laydate_hmsno span:hover,
56 | .laydate_body .laydate_y .laydate_yms ul li:hover,
57 | .laydate_body .laydate_table td:hover,
58 | .laydate_body .laydate_bottom .laydate_btn a:hover{background-color:#F54766; color:#fff;}
59 |
60 |
61 |
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/danlan/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/laydate/skins/danlan/icon.png
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/danlan/laydate.css:
--------------------------------------------------------------------------------
1 | /**
2 |
3 | @Name: laydate皮肤:淡蓝
4 | @Author:贤心
5 | @Site:http://sentsin.com/layui/laydate
6 |
7 | **/
8 |
9 | .laydate-icon{border:1px solid #B1D2EC; background-image:url(icon.png)}
10 |
11 | .laydate_body .laydate_box,
12 | .laydate_body .laydate_ym,
13 | .laydate_body .laydate_ym .laydate_yms,
14 | .laydate_body .laydate_table,
15 | .laydate_body .laydate_table td,
16 | .laydate_body .laydate_bottom #laydate_hms,
17 | .laydate_body .laydate_time,
18 | .laydate_body .laydate_bottom .laydate_btn a{border:1px solid #B1D2EC;}
19 |
20 | .laydate_body .laydate_y .laydate_yms a,
21 | .laydate_body .laydate_choose,
22 | .laydate_body .laydate_table thead{background-color:#DEECF8;}
23 |
24 | .laydate_body .laydate_box,
25 | .laydate_body .laydate_ym .laydate_yms,
26 | .laydate_body .laydate_time{box-shadow: 2px 2px 5px rgba(0,0,0,.1);}
27 |
28 | .laydate_body .laydate_box{border-top:none; border-bottom:none; background-color:#fff; color:#1F547E;}
29 | .laydate_body .laydate_box input{color:#1F547E;}
30 | .laydate_body .laydate_box .laydate_void{color:#BDD8EE!important;}
31 | .laydate_body .laydate_box .laydate_void:hover{background-color:#fff!important}
32 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{color:#1F547E;}
33 | .laydate_body .laydate_click{background-color:#DEECF8!important;}
34 | .laydate_body .laydate_top{border-top:1px solid #B1D2EC;}
35 | .laydate_body .laydate_ym .laydate_yms{background-color:#fff;}
36 | .laydate_body .laydate_y .laydate_yms a{border-bottom:1px solid #B1D2EC;}
37 | .laydate_body .laydate_y .laydate_yms .laydate_chdown{border-top:1px solid #B1D2EC; border-bottom:none;}
38 | .laydate_body .laydate_y .laydate_yms ul li:hover,
39 | .laydate_body .laydate_m .laydate_yms span:hover{color:#000;}
40 | .laydate_body .laydate_choose{border-left:1px solid #B1D2EC;}
41 | .laydate_body .laydate_chprev{border-left:none; border-right:1px solid #B1D2EC;}
42 | .laydate_body .laydate_chtop cite{border-bottom-color:#3081C2;}
43 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{border-top-color:#3081C2;}
44 | .laydate_body .laydate_chprev cite{border-right-style:solid; border-right-color:#3081C2;}
45 | .laydate_body .laydate_chnext cite{border-left-style:solid; border-left-color:#3081C2;}
46 | .laydate_body .laydate_table td{background-color:#fff; color:#1F547E;}
47 | .laydate_body .laydate_table .laydate_nothis{color:#60A2D7;}
48 | .laydate_body .laydate_table thead{color:#163A58;}
49 | .laydate_body .laydate_bottom{border-bottom:1px solid #B1D2EC;}
50 | .laydate_body .laydate_bottom #laydate_hms{background-color:#fff;}
51 | .laydate_body .laydate_time{background-color:#fff;}
52 | .laydate_body .laydate_bottom .laydate_sj{border-right:1px solid #B1D2EC; background-color:#ECF4FB;}
53 | .laydate_body .laydate_bottom input{background-color:#fff;}
54 | .laydate_body .laydate_bottom .laydte_hsmtex{border-bottom:1px solid #B1D2EC;}
55 | .laydate_body .laydate_bottom .laydate_btn{border-right:1px solid #B1D2EC;}
56 | .laydate_body .laydate_bottom .laydate_v{color:#75AEDD}
57 | .laydate_body .laydate_bottom .laydate_btn a{ border-right:none; background-color:#ECF4FB;}
58 | .laydate_body .laydate_bottom .laydate_btn a:hover{ background-color:#fff;}
59 |
60 | .laydate_body .laydate_y .laydate_yms ul li:hover,
61 | .laydate_body .laydate_m .laydate_yms span:hover,
62 | .laydate_body .laydate_choose:hover,
63 | .laydate_body .laydate_y .laydate_yms a:hover,
64 | .laydate_body .laydate_table td:hover,
65 | .laydate_body .laydate_bottom .laydate_time span:hover,
66 | .laydate_body .laydate_bottom .laydte_hsmtex{background-color:#ECF4FB}
67 |
68 |
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/default/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/laydate/skins/default/icon.png
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/default/laydate.css:
--------------------------------------------------------------------------------
1 | /**
2 |
3 | @Name: laydate皮肤:默认
4 | @Author:贤心
5 | @Site:http://sentsin.com/layui/laydate
6 |
7 | **/
8 |
9 | .laydate-icon{border:1px solid #C6C6C6; background-image:url(icon.png)}
10 |
11 | .laydate_body .laydate_box,
12 | .laydate_body .laydate_ym,
13 | .laydate_body .laydate_ym .laydate_yms,
14 | .laydate_body .laydate_table,
15 | .laydate_body .laydate_table td,
16 | .laydate_body .laydate_bottom #laydate_hms,
17 | .laydate_body .laydate_time,
18 | .laydate_body .laydate_bottom .laydate_btn a{border:1px solid #ccc;}
19 |
20 | .laydate_body .laydate_y .laydate_yms a,
21 | .laydate_body .laydate_choose,
22 | .laydate_body .laydate_table thead,
23 | .laydate_body .laydate_bottom .laydte_hsmtex{background-color:#F6F6F6;}
24 |
25 | .laydate_body .laydate_box,
26 | .laydate_body .laydate_ym .laydate_yms,
27 | .laydate_body .laydate_time{box-shadow: 2px 2px 5px rgba(0,0,0,.1);}
28 |
29 | .laydate_body .laydate_box{border-top:none; border-bottom:none; background-color:#fff; color:#333;}
30 | .laydate_body .laydate_box input{color:#333;}
31 | .laydate_body .laydate_box .laydate_void{color:#ccc!important; /*text-decoration:line-through;*/}
32 | .laydate_body .laydate_box .laydate_void:hover{background-color:#fff!important}
33 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{color:#333;}
34 | .laydate_body .laydate_box a:hover{color:#666;}
35 | .laydate_body .laydate_click{background-color:#eee!important;}
36 | .laydate_body .laydate_top{border-top:1px solid #C6C6C6;}
37 | .laydate_body .laydate_ym .laydate_yms{border:1px solid #C6C6C6; background-color:#fff;}
38 | .laydate_body .laydate_y .laydate_yms a{border-bottom:1px solid #C6C6C6;}
39 | .laydate_body .laydate_y .laydate_yms .laydate_chdown{border-top:1px solid #C6C6C6; border-bottom:none;}
40 | .laydate_body .laydate_choose{border-left:1px solid #C6C6C6;}
41 | .laydate_body .laydate_chprev{border-left:none; border-right:1px solid #C6C6C6;}
42 | .laydate_body .laydate_choose:hover,
43 | .laydate_body .laydate_y .laydate_yms a:hover{background-color:#fff;}
44 | .laydate_body .laydate_chtop cite{border-bottom-color:#666;}
45 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{border-top-color:#666;}
46 | .laydate_body .laydate_chprev cite{border-right-style:solid; border-right-color:#666;}
47 | .laydate_body .laydate_chnext cite{border-left-style:solid; border-left-color:#666;}
48 | .laydate_body .laydate_table td{border:none; height:21px!important; line-height:21px!important; background-color:#fff;}
49 | .laydate_body .laydate_table .laydate_nothis{color:#999;}
50 | .laydate_body .laydate_table thead{height:21px!important; line-height:21px!important; border-bottom:1px solid #ccc;}
51 | .laydate_body .laydate_table thead th{}
52 | .laydate_body .laydate_bottom{border-bottom:1px solid #C6C6C6;}
53 | .laydate_body .laydate_bottom #laydate_hms{background-color:#fff;}
54 | .laydate_body .laydate_time{background-color:#fff;}
55 | .laydate_body .laydate_bottom .laydate_sj{border-right:1px solid #C6C6C6; background-color:#F6F6F6;}
56 | .laydate_body .laydate_bottom input{background-color:#fff;}
57 | .laydate_body .laydate_bottom .laydte_hsmtex{border-bottom:1px solid #C6C6C6;}
58 | .laydate_body .laydate_bottom .laydate_btn{border-right:1px solid #C6C6C6;}
59 | .laydate_body .laydate_bottom .laydate_v{color:#999}
60 | .laydate_body .laydate_bottom .laydate_btn a{border-right:none; background-color:#F6F6F6;}
61 | .laydate_body .laydate_bottom .laydate_btn a:hover{color:#000; background-color:#fff;}
62 |
63 | .laydate_body .laydate_m .laydate_yms span:hover,
64 | .laydate_body .laydate_y .laydate_yms ul li:hover,
65 | .laydate_body .laydate_table td:hover{background-color:#F3F3F3}
66 |
67 |
68 |
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/qianhuang/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/laydate/skins/qianhuang/icon.png
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/qianhuang/laydate.css:
--------------------------------------------------------------------------------
1 | /**
2 |
3 | @Name: laydate皮肤:浅黄
4 | @Author:贤心
5 | @Site:http://sentsin.com/layui/laydate
6 |
7 | **/
8 |
9 | .laydate-icon{border:1px solid #E7D7CB; background-image:url(icon.png)}
10 |
11 | .laydate_body .laydate_box,
12 | .laydate_body .laydate_ym,
13 | .laydate_body .laydate_ym .laydate_yms,
14 | .laydate_body .laydate_table,
15 | .laydate_body .laydate_table td,
16 | .laydate_body .laydate_bottom #laydate_hms,
17 | .laydate_body .laydate_time,
18 | .laydate_body .laydate_bottom .laydate_btn a{border:1px solid #DEC8B8;}
19 |
20 | .laydate_body .laydate_y .laydate_yms a,
21 | .laydate_body .laydate_ym,
22 | .laydate_body .laydate_choose,
23 | .laydate_body .laydate_table thead{background-color:#fff;}
24 |
25 | .laydate_body .laydate_box,
26 | .laydate_body .laydate_ym .laydate_yms,
27 | .laydate_body .laydate_time{box-shadow: 2px 2px 5px rgba(0,0,0,.1);}
28 |
29 | .laydate_body .laydate_box{border-top:none; border-bottom:none; background-color: #F7F4ED!important; color:#8B743F;}
30 | .laydate_body .laydate_box input{color:#8B743F;}
31 | .laydate_body .laydate_box .laydate_void{color:#CBB98D!important;}
32 | .laydate_body .laydate_box .laydate_void:hover{background-color:#fff!important;}
33 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{color:#8B743F;}
34 | .laydate_body .laydate_box a:hover{color:#8B743F;}
35 | .laydate_body .laydate_click{background-color:#DEC8B8!important;}
36 | .laydate_body .laydate_top{border-top:1px solid #DEC8B8;}
37 | .laydate_body .laydate_ym .laydate_yms{background-color:#fff;}
38 | .laydate_body .laydate_y .laydate_yms a{border-bottom:1px solid #DEC8B8;}
39 | .laydate_body .laydate_y .laydate_yms .laydate_chdown{border-top:1px solid #DEC8B8; border-bottom:none;}
40 | .laydate_body .laydate_y .laydate_yms ul li:hover,
41 | .laydate_body .laydate_m .laydate_yms span:hover{color:#8B743F;}
42 | .laydate_body .laydate_choose{border-left:1px solid #DEC8B8;}
43 | .laydate_body .laydate_chprev{border-left:none; border-right:1px solid #DEC8B8;}
44 | .laydate_body .laydate_chtop cite{border-bottom-color:#8B743F;}
45 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{border-top-color:#8B743F;}
46 | .laydate_body .laydate_chprev cite{border-right-style:solid; border-right-color:#8B743F;}
47 | .laydate_body .laydate_chnext cite{border-left-style:solid; border-left-color:#8B743F;}
48 | .laydate_body .laydate_table td{background-color:#F4F0E6; color:#8B743F;}
49 | .laydate_body .laydate_table .laydate_nothis{background-color:#fff; color:#C0AA76;}
50 | .laydate_body .laydate_table thead{color:#163A58;}
51 | .laydate_body .laydate_bottom{border-bottom:1px solid #DEC8B8;}
52 | .laydate_body .laydate_bottom #laydate_hms{background-color:#fff;}
53 | .laydate_body .laydate_time{background-color:#fff;}
54 | .laydate_body .laydate_bottom .laydate_sj{border-right:1px solid #DEC8B8;}
55 | .laydate_body .laydate_bottom input{background-color:#fff;}
56 | .laydate_body .laydate_bottom .laydte_hsmtex{border-bottom:1px solid #DEC8B8;}
57 | .laydate_body .laydate_bottom .laydate_btn{border-right:1px solid #DEC8B8;}
58 | .laydate_body .laydate_bottom .laydate_btn a{ border-right:none; background-color:#fff;}
59 | .laydate_body .laydate_bottom .laydate_btn a:hover{color:#163A58;}
60 |
61 | .laydate_body .laydate_y .laydate_yms ul li:hover,
62 | .laydate_body .laydate_m .laydate_yms span:hover,
63 | .laydate_body .laydate_choose:hover,
64 | .laydate_body .laydate_y .laydate_yms a:hover,
65 | .laydate_body .laydate_table td:hover,
66 | .laydate_body .laydate_bottom .laydate_sj,
67 | .laydate_body .laydate_bottom .laydate_time span:hover,
68 | .laydate_body .laydate_bottom .laydte_hsmtex,
69 | .laydate_body .laydate_bottom .laydate_btn a:hover{background-color:#F7F4ED}
70 |
71 |
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/yahui/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/laydate/skins/yahui/icon.png
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/yahui/laydate.css:
--------------------------------------------------------------------------------
1 | /**
2 |
3 | @Name: laydate皮肤:雅灰
4 | @Author:贤心
5 | @Site:http://sentsin.com/layui/laydate
6 |
7 | **/
8 |
9 | .laydate-icon{border:1px solid #C6C6C6; background-image:url(icon.png)}
10 |
11 | .laydate_body .laydate_box,
12 | .laydate_body .laydate_ym,
13 | .laydate_body .laydate_ym .laydate_yms,
14 | .laydate_body .laydate_table,
15 | .laydate_body .laydate_table td,
16 | .laydate_body .laydate_bottom #laydate_hms,
17 | .laydate_body .laydate_time,
18 | .laydate_body .laydate_bottom .laydate_btn a{border:1px solid #C6C6C6;}
19 |
20 | .laydate_body .laydate_y .laydate_yms a,
21 | .laydate_body .laydate_choose,
22 | .laydate_body .laydate_table thead,
23 | .laydate_body .laydate_bottom .laydte_hsmtex{background-color:#F0F0F0;}
24 |
25 | .laydate_body .laydate_box,
26 | .laydate_body .laydate_ym .laydate_yms,
27 | .laydate_body .laydate_time{box-shadow: 2px 2px 5px rgba(0,0,0,.1);}
28 |
29 | .laydate_body .laydate_box{border-top:none; border-bottom:none; background-color:#fff; color:#333;}
30 | .laydate_body .laydate_box input{color:#333;}
31 | .laydate_body .laydate_box .laydate_void{color:#ccc!important; /*text-decoration:line-through;*/}
32 | .laydate_body .laydate_box .laydate_void:hover{background-color:#fff!important}
33 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{color:#333;}
34 | .laydate_body .laydate_box a:hover{color:#666;}
35 | .laydate_body .laydate_click{background-color:#E9E9E9!important;}
36 | .laydate_body .laydate_top{border-top:1px solid #C6C6C6;}
37 | .laydate_body .laydate_ym .laydate_yms{border:1px solid #C6C6C6; background-color:#fff;}
38 | .laydate_body .laydate_y .laydate_yms a{border-bottom:1px solid #C6C6C6;}
39 | .laydate_body .laydate_y .laydate_yms .laydate_chdown{border-top:1px solid #C6C6C6; border-bottom:none;}
40 | .laydate_body .laydate_y .laydate_yms ul li:hover{background-color:#F1F1F1; color:#000;}
41 | .laydate_body .laydate_m .laydate_yms span:hover{background-color:#F1F1F1; color:#000;}
42 | .laydate_body .laydate_choose{border-left:1px solid #C6C6C6;}
43 | .laydate_body .laydate_chprev{border-left:none; border-right:1px solid #C6C6C6;}
44 | .laydate_body .laydate_choose:hover,
45 | .laydate_body .laydate_y .laydate_yms a:hover{background-color:#F6F6F6;}
46 | .laydate_body .laydate_chtop cite{border-bottom-color:#666;}
47 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{border-top-color:#666;}
48 | .laydate_body .laydate_chprev cite{border-right-style:solid; border-right-color:#666;}
49 | .laydate_body .laydate_chnext cite{border-left-style:solid; border-left-color:#666;}
50 | .laydate_body .laydate_table td{border:1px solid #C6C6C6; color:#333;}
51 | .laydate_body .laydate_table .laydate_nothis{color:#999;}
52 | .laydate_body .laydate_table thead{ background-color:#E3E3E3; color:#000;}
53 | .laydate_body .laydate_table thead th{}
54 | .laydate_body .laydate_bottom{border-bottom:1px solid #C6C6C6;}
55 | .laydate_body .laydate_bottom #laydate_hms{background-color:#fff;}
56 | .laydate_body .laydate_time{background-color:#fff;}
57 | .laydate_body .laydate_bottom .laydate_sj{border-right:1px solid #C6C6C6; background-color:#F3F3F3;}
58 | .laydate_body .laydate_bottom input{background-color:#fff;}
59 | .laydate_body .laydate_bottom .laydte_hsmtex{border-bottom:1px solid #C6C6C6;}
60 | .laydate_body .laydate_bottom .laydate_btn{border-right:1px solid #C6C6C6;}
61 | .laydate_body .laydate_bottom .laydate_v{color:#999}
62 | .laydate_body .laydate_bottom .laydate_btn a{border-right:none; background-color:#F0F0F0;}
63 | .laydate_body .laydate_bottom .laydate_btn a:hover{color:#000; background-color:#fff;}
64 |
65 | .laydate_body .laydate_table td:hover,
66 | .laydate_body .laydate_bottom .laydate_time span:hover{background-color:#F2F2F2}
67 |
68 |
69 |
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/yalan/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/laydate/skins/yalan/icon.png
--------------------------------------------------------------------------------
/WebRoot/html/laydate/skins/yalan/laydate.css:
--------------------------------------------------------------------------------
1 | /**
2 |
3 | @Name: laydate皮肤:雅兰
4 | @Author:贤心
5 | @Site:http://sentsin.com/layui/laydate
6 |
7 | **/
8 |
9 | .laydate-icon{border:1px solid #34AADC; background-image:url(icon.png)}
10 |
11 | .laydate_body .laydate_box,
12 | .laydate_body .laydate_table,
13 | .laydate_body .laydate_table td,
14 | .laydate_body .laydate_bottom #laydate_hms,
15 | .laydate_body .laydate_time,
16 | .laydate_body .laydate_bottom .laydate_btn a{border:1px solid #34AADC;}
17 |
18 | .laydate_body .laydate_box{box-shadow: 2px 2px 5px rgba(0,0,0,.1);}
19 |
20 | .laydate_body .laydate_box{background-color:#34AADC!important; color:#fff;}
21 | .laydate_body .laydate_box input{background:none!important; color:#fff;}
22 | .laydate_body .laydate_box .laydate_void{color:#fff!important; background:none!important;}
23 | .laydate_body .laydate_box a, .laydate_body .laydate_box a:hover{color:#333;}
24 | .laydate_body .laydate_box a:hover{color:#666;}
25 | .laydate_body .laydate_click{background-color:#67BFE4!important; color:#fff!important;}
26 | .laydate_body .laydate_top{}
27 | .laydate_body .laydate_ym{background-color:#50B5E0; border:1px solid #50B5E0;}
28 | .laydate_body .laydate_ym .laydate_yms{border:1px solid #2293C4; background-color:#2293C4;}
29 | .laydate_body .laydate_y .laydate_yms a{border-bottom:1px solid #50B5E0; background-color:#50B5E0;}
30 | .laydate_body .laydate_y .laydate_yms .laydate_chdown{border-top:1px solid #50B5E0; border-bottom:none;}
31 | .laydate_body .laydate_choose{}
32 | .laydate_body .laydate_chprev{border-left:none; border-right:1px solid #50B5E0;}
33 | .laydate_body .laydate_choose:hover,
34 | .laydate_body .laydate_y .laydate_yms a:hover{background-color:#61BBE2;}
35 | .laydate_body .laydate_chtop cite{border-bottom-color:#C7E8F5;}
36 | .laydate_body .laydate_chdown cite, .laydate_body .laydate_ym label{border-top-color:#C7E8F5;}
37 | .laydate_body .laydate_chprev cite{border-right-style:solid; border-right-color:#C7E8F5;}
38 | .laydate_body .laydate_chnext cite{border-left-style:solid; border-left-color:#C7E8F5;}
39 | .laydate_body .laydate_table td{border:none; height:21px!important; line-height:21px!important; background-color:#50B5E0; color:#fff;}
40 | .laydate_body .laydate_table .laydate_nothis{background:none;}
41 | .laydate_body .laydate_table thead{height:21px!important; line-height:21px!important;}
42 | .laydate_body .laydate_table thead th{}
43 | .laydate_body .laydate_bottom{border-bottom:1px solid #34AADC; color:#fff;}
44 | .laydate_body .laydate_bottom #laydate_hms{background-color:#50B5E0;}
45 | .laydate_body .laydate_time{background-color:#2293C4;}
46 | .laydate_body .laydate_bottom .laydate_sj{border-right:1px solid #50B5E0; background-color:#50B5E0; color:#fff;}
47 | .laydate_body .laydate_bottom .laydte_hsmtex{border-bottom:1px solid #67BFE4; background-color:#2293C4;}
48 | .laydate_body .laydate_bottom .laydate_btn{border-right:1px solid #34AADC;}
49 | .laydate_body .laydate_bottom .laydate_v{color:#ccc}
50 | .laydate_body .laydate_bottom .laydate_btn a{border-right:none; background-color:#50B5E0; color:#fff;}
51 | .laydate_body .laydate_bottom .laydate_btn a:hover{background-color:#6BC0E4;}
52 |
53 | .laydate_body .laydate_m .laydate_yms span:hover,
54 | .laydate_body .laydate_y .laydate_yms ul li:hover,
55 | .laydate_body .laydate_table td:hover,
56 | .laydate_body .laydate_time .laydate_hmsno span:hover{background-color:#87CBE9; color:#fff;}
57 |
58 |
59 |
--------------------------------------------------------------------------------
/WebRoot/html/menu_search.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java"
2 | import="java.util.*,com.findu.entity.*,com.findu.dao.*,java.text.*,com.findu.service.*"
3 | contentType="text/html; charset=utf-8"%>
4 | <%
5 | String searchx=(String)request.getAttribute("search");
6 | if(searchx==null){
7 | searchx="";
8 | }
9 |
10 | String typeNamex=(String)request.getAttribute("typeName");
11 | if(typeNamex==null){
12 | typeNamex="";
13 | }
14 | %>
15 |
84 |
85 |
126 |
127 |
128 |
129 |
--------------------------------------------------------------------------------
/WebRoot/html/myapply.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*,com.findu.entity.*,com.findu.service.*,java.text.*,com.findu.utils.*,com.findu.dao.*" contentType="text/html; charset=utf-8" %>
2 | <%
3 | User u6=(User)session.getAttribute("user");
4 | GoodService gservice=new GoodService();
5 | ApplyService aservice=new ApplyService();
6 | UserService uservice=new UserService();
7 | %>
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
内容列表
26 |
27 |
28 | 序号
29 | 申请物品图片预览
30 | 物品标题
31 | 发布者
32 | 申请理由
33 | 申请图片
34 | 留下的联系方式
35 | 申请时间
36 | 申请结果
37 | 操作
38 |
39 | <%
40 | ArrayList list=aservice.getApplyByApplyId(u6.getId());
41 | if(list!=null||list.size()>0){
42 | int count=0;
43 | for(int i=0;i
72 |
73 | <%=count %>
74 |
75 | <%=g.getName() %>
76 | <%=fabu %>
77 | <%=a.getExplain() %>
78 |
79 | <%=a.getContact() %>
80 | <%=applytime %>
81 | <%=goodstate %>
82 |
83 |
92 |
93 |
94 |
101 | <%
102 | }
103 | }
104 | %>
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
--------------------------------------------------------------------------------
/WebRoot/html/mypost.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*,com.findu.entity.*,com.findu.service.*,java.text.*,com.findu.utils.*,com.findu.dao.*" contentType="text/html; charset=utf-8" %>
2 | <%
3 | User u5=(User)session.getAttribute("user");
4 | GoodService gservice=new GoodService();
5 | ApplyService aservice=new ApplyService();
6 | %>
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
内容列表
24 |
25 |
26 | 序号
27 | 物品图片预览(点击查看大图)
28 | 物品标题
29 | 发布时间
30 | 申请人数
31 | 物品状态
32 | 操作
33 |
34 | <%
35 | ArrayList list=gservice.getGoodByFabuId(u5.getId());
36 | if(list!=null||list.size()>0){
37 | int count=0;
38 | for(int i=0;i
58 |
59 | <%=count %>
60 |
61 | <%=g.getName() %>
62 | <%=fabutime %>
63 | <%=applyCount %>
64 | <%=goodstate %>
65 |
66 |
67 |
83 |
84 |
85 |
86 |
93 | <%
94 | }
95 | }
96 | %>
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
--------------------------------------------------------------------------------
/WebRoot/html/pass.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*,com.findu.entity.*,com.findu.service.*" contentType="text/html; charset=utf-8" %>
2 | <%
3 | User u4=(User)session.getAttribute("user");
4 | %>
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
69 |
70 |
71 |
72 |
--------------------------------------------------------------------------------
/WebRoot/html/test.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/WebRoot/html/test.jsp
--------------------------------------------------------------------------------
/WebRoot/html/time.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" contentType="text/html; charset=utf-8" %>
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
29 |
30 |
31 |
32 |
33 |
34 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/WebRoot/html/upload.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | root
5 | 123456
6 | com.mysql.jdbc.Driver
7 | jdbc:mysql://localhost:3306/findu
8 |
9 | 10
10 | 30
11 | 100
12 | 10
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/com/findu/dao/ApplyDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/dao/ApplyDAO.java
--------------------------------------------------------------------------------
/src/com/findu/dao/GoodsDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/dao/GoodsDAO.java
--------------------------------------------------------------------------------
/src/com/findu/dao/TypeDAO.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/dao/TypeDAO.java
--------------------------------------------------------------------------------
/src/com/findu/dao/UserDao.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/dao/UserDao.java
--------------------------------------------------------------------------------
/src/com/findu/entity/Apply.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | import java.sql.Timestamp;
4 |
5 | public class Apply {
6 |
7 | private int id;
8 | private Timestamp applytime;
9 | private String explain;
10 | private String state;
11 | private int goodid;
12 | private int userid;
13 | private String contact;
14 | private String picture;
15 |
16 | public Apply(String explain, String contact, String picture) {
17 | this.explain = explain;
18 | this.contact = contact;
19 | this.picture = picture;
20 | }
21 |
22 | public Apply(String explain, int goodid, int userid, String contact,
23 | String picture) {
24 | this.explain = explain;
25 | this.goodid = goodid;
26 | this.userid = userid;
27 | this.contact = contact;
28 | this.picture = picture;
29 | }
30 |
31 | public String getPicture() {
32 | return this.picture;
33 | }
34 |
35 | public void setPicture(String picture) {
36 | this.picture = picture;
37 | }
38 |
39 | public Apply(String explain, int goodid, int userid, String contact) {
40 | this.explain = explain;
41 | this.goodid = goodid;
42 | this.userid = userid;
43 | this.contact = contact;
44 | }
45 |
46 | public int getId() {
47 | return this.id;
48 | }
49 |
50 | public void setId(int id) {
51 | this.id = id;
52 | }
53 |
54 | public Timestamp getApplyTime() {
55 | return this.applytime;
56 | }
57 |
58 | public void setApplyTime(Timestamp applytime) {
59 | this.applytime = applytime;
60 | }
61 |
62 | public String getExplain() {
63 | return this.explain;
64 | }
65 |
66 | public void setExplain(String explain) {
67 | this.explain = explain;
68 | }
69 |
70 | public String getState() {
71 | return this.state;
72 | }
73 |
74 | public void setState(String state) {
75 | this.state = state;
76 | }
77 |
78 | public int getGoodid() {
79 | return this.goodid;
80 | }
81 |
82 | public void setGoodid(int goodid) {
83 | this.goodid = goodid;
84 | }
85 |
86 | public int getUserid() {
87 | return this.userid;
88 | }
89 |
90 | public void setUserid(int userid) {
91 | this.userid = userid;
92 | }
93 |
94 | public String getContact() {
95 | return this.contact;
96 | }
97 |
98 | public void setContact(String contact) {
99 | this.contact = contact;
100 | }
101 |
102 | public Apply() {
103 | }
104 |
105 | public String toString() {
106 | return "Apply [id=" + this.id + ", applytime=" + this.applytime
107 | + ", explain=" + this.explain + ", state=" + this.state
108 | + ", goodid=" + this.goodid + ", userid=" + this.userid
109 | + ", contact=" + this.contact + ", picture=" + this.picture
110 | + "]";
111 | }
112 | }
--------------------------------------------------------------------------------
/src/com/findu/entity/G.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | import java.sql.Timestamp;
4 | import java.util.Date;
5 |
6 | public class G {
7 | private int goodid;
8 | private String goodname;
9 | private String goodsite;
10 | private String goodexplain;
11 | private int goodtype;
12 | private int fabuid;
13 | private String goodstate;
14 | private String goodpicture;
15 | private String fabucontact;
16 | private Timestamp goodtime;
17 | private Timestamp fabutime;
18 | private int goodvalue;
19 | public int getGoodid() {
20 | return goodid;
21 | }
22 | public void setGoodid(int goodid) {
23 | this.goodid = goodid;
24 | }
25 | public String getGoodname() {
26 | return goodname;
27 | }
28 | public void setGoodname(String goodname) {
29 | this.goodname = goodname;
30 | }
31 | public String getGoodsite() {
32 | return goodsite;
33 | }
34 | public void setGoodsite(String goodsite) {
35 | this.goodsite = goodsite;
36 | }
37 | public String getGoodexplain() {
38 | return goodexplain;
39 | }
40 | public void setGoodexplain(String goodexplain) {
41 | this.goodexplain = goodexplain;
42 | }
43 | public int getGoodtype() {
44 | return goodtype;
45 | }
46 | public void setGoodtype(int goodtype) {
47 | this.goodtype = goodtype;
48 | }
49 | public int getFabuid() {
50 | return fabuid;
51 | }
52 | public void setFabuid(int fabuid) {
53 | this.fabuid = fabuid;
54 | }
55 | public String getGoodstate() {
56 | return goodstate;
57 | }
58 | public void setGoodstate(String goodstate) {
59 | this.goodstate = goodstate;
60 | }
61 | public String getGoodpicture() {
62 | return goodpicture;
63 | }
64 | public void setGoodpicture(String goodpicture) {
65 | this.goodpicture = goodpicture;
66 | }
67 | public String getFabucontact() {
68 | return fabucontact;
69 | }
70 | public void setFabucontact(String fabucontact) {
71 | this.fabucontact = fabucontact;
72 | }
73 | public Timestamp getGoodtime() {
74 | return goodtime;
75 | }
76 | public void setGoodtime(Timestamp goodtime) {
77 | this.goodtime = goodtime;
78 | }
79 | public Timestamp getFabutime() {
80 | return fabutime;
81 | }
82 | public void setFabutime(Timestamp fabutime) {
83 | this.fabutime = fabutime;
84 | }
85 | public int getGoodvalue() {
86 | return goodvalue;
87 | }
88 | public void setGoodvalue(int goodvalue) {
89 | this.goodvalue = goodvalue;
90 | }
91 | @Override
92 | public String toString() {
93 | return "G [goodid=" + goodid + ", goodname=" + goodname + ", goodsite="
94 | + goodsite + ", goodexplain=" + goodexplain + ", goodtype="
95 | + goodtype + ", fabuid=" + fabuid + ", goodstate=" + goodstate
96 | + ", goodpicture=" + goodpicture + ", fabucontact="
97 | + fabucontact + ", goodtime=" + goodtime + ", fabutime="
98 | + fabutime + ", goodvalue=" + goodvalue + "]";
99 | }
100 | }
101 |
--------------------------------------------------------------------------------
/src/com/findu/entity/Good.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | import java.sql.Timestamp;
4 |
5 | public class Good {
6 |
7 | private int id;
8 | private String name;
9 | private String site;
10 | private String explain;
11 | private int type;
12 | private int fabuid;
13 | private String state;
14 | private String picture;
15 | private String fabucontact;
16 | private Timestamp goodtime;
17 | private Timestamp fabutime;
18 | private int value;
19 | private String time;
20 |
21 | public Good(String name, String site, String explain, int type, int value,
22 | String fabucontact, String time) {
23 | this.name = name;
24 | this.site = site;
25 | this.explain = explain;
26 | this.type = type;
27 | this.value = value;
28 | this.fabucontact = fabucontact;
29 | this.time = time;
30 | }
31 |
32 | public Good(String name, String site, String explain, int type, int fabuid,
33 | String fabucontact, Timestamp goodtime, int value, String picture) {
34 | this.name = name;
35 | this.site = site;
36 | this.explain = explain;
37 | this.type = type;
38 | this.fabuid = fabuid;
39 | this.picture = picture;
40 | this.fabucontact = fabucontact;
41 | this.goodtime = goodtime;
42 | this.value = value;
43 | }
44 |
45 | public Good(String name, String site, String explain, int type, int fabuid,
46 | String fabucontact, String time, int value, String picture) {
47 | this.name = name;
48 | this.site = site;
49 | this.explain = explain;
50 | this.type = type;
51 | this.fabuid = fabuid;
52 | this.picture = picture;
53 | this.fabucontact = fabucontact;
54 | this.time = time;
55 | this.value = value;
56 | }
57 |
58 | public String getTime() {
59 | return this.time;
60 | }
61 |
62 | public void setTime(String time) {
63 | this.time = time;
64 | }
65 |
66 | public int getValue() {
67 | return this.value;
68 | }
69 |
70 | public void setValue(int value) {
71 | this.value = value;
72 | }
73 |
74 | public Timestamp getFabutime() {
75 | return this.fabutime;
76 | }
77 |
78 | public void setFabutime(Timestamp fabutime) {
79 | this.fabutime = fabutime;
80 | }
81 |
82 | public String getFabucontact() {
83 | return this.fabucontact;
84 | }
85 |
86 | public void setFabucontact(String fabucontact) {
87 | this.fabucontact = fabucontact;
88 | }
89 |
90 | public Timestamp getGoodtime() {
91 | return this.goodtime;
92 | }
93 |
94 | public void setGoodtime(Timestamp goodtime) {
95 | this.goodtime = goodtime;
96 | }
97 |
98 | public int getId() {
99 | return this.id;
100 | }
101 |
102 | public void setId(int id) {
103 | this.id = id;
104 | }
105 |
106 | public String getName() {
107 | return this.name;
108 | }
109 |
110 | public void setName(String name) {
111 | this.name = name;
112 | }
113 |
114 | public String getSite() {
115 | return this.site;
116 | }
117 |
118 | public void setSite(String site) {
119 | this.site = site;
120 | }
121 |
122 | public String getExplain() {
123 | return this.explain;
124 | }
125 |
126 | public void setExplain(String explain) {
127 | this.explain = explain;
128 | }
129 |
130 | public int getType() {
131 | return this.type;
132 | }
133 |
134 | public void setType(int type) {
135 | this.type = type;
136 | }
137 |
138 | public int getFabuid() {
139 | return this.fabuid;
140 | }
141 |
142 | public void setFabuid(int fabuid) {
143 | this.fabuid = fabuid;
144 | }
145 |
146 | public void setState(String state) {
147 | this.state = state;
148 | }
149 |
150 | public String getPicture() {
151 | return this.picture;
152 | }
153 |
154 | public void setPicture(String picture) {
155 | this.picture = picture;
156 | }
157 |
158 | public String getState() {
159 | return this.state;
160 | }
161 |
162 | public Good() {
163 | }
164 |
165 | public String toString() {
166 | return "Good [id=" + this.id + ", name=" + this.name + ", site="
167 | + this.site + ", explain=" + this.explain + ", type="
168 | + this.type + ", fabuid=" + this.fabuid + ", state="
169 | + this.state + ", picture=" + this.picture + ", fabucontact="
170 | + this.fabucontact + ", goodtime=" + this.goodtime
171 | + ", fabutime=" + this.fabutime + ", value=" + this.value + "]";
172 | }
173 | }
--------------------------------------------------------------------------------
/src/com/findu/entity/PageBean.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | import java.util.List;
4 |
5 | public class PageBean {
6 | private int currentPage;
7 | private int pageSize;
8 | private int count;
9 | private int totalPage;
10 | private List goods;
11 | public int getCurrentPage() {
12 | return currentPage;
13 | }
14 | public void setCurrentPage(int currentPage) {
15 | this.currentPage = currentPage;
16 | }
17 | public int getPageSize() {
18 | return pageSize;
19 | }
20 | public void setPageSize(int pageSize) {
21 | this.pageSize = pageSize;
22 | }
23 | public int getCount() {
24 | return count;
25 | }
26 | public void setCount(int count) {
27 | this.count = count;
28 | }
29 | public int getTotalPage() {
30 | return totalPage;
31 | }
32 | public void setTotalPage(int totalPage) {
33 | this.totalPage = totalPage;
34 | }
35 | public List getGoods() {
36 | return goods;
37 | }
38 | public void setGoods(List goods) {
39 | this.goods = goods;
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/src/com/findu/entity/Type.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | public class Type {
4 |
5 | private int typeid;
6 | private String typename;
7 |
8 | public int getTypeid() {
9 | return this.typeid;
10 | }
11 |
12 | public void setTypeid(int typeid) {
13 | this.typeid = typeid;
14 | }
15 |
16 | public String getTypename() {
17 | return this.typename;
18 | }
19 |
20 | public void setTypename(String typename) {
21 | this.typename = typename;
22 | }
23 |
24 | public Type(int typeid, String typename) {
25 | this.typeid = typeid;
26 | this.typename = typename;
27 | }
28 |
29 | public Type() {
30 | }
31 |
32 | public String toString() {
33 | return "Type [typeid=" + this.typeid + ", typename=" + this.typename
34 | + "]";
35 | }
36 | }
--------------------------------------------------------------------------------
/src/com/findu/entity/U.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | import java.util.Date;
4 |
5 | public class U {
6 | private int userid;
7 | private String username;
8 | private String userpassword;
9 | private String useremail;
10 | private String userphone;
11 | private String usergender;
12 | private Date userbirthday;
13 | private String useraddress;
14 | private String userhead;
15 | private String userexplain;
16 | private String userqq;
17 | @Override
18 | public String toString() {
19 | return "U [userid=" + userid + ", username=" + username
20 | + ", userpassword=" + userpassword + ", useremail=" + useremail
21 | + ", userphone=" + userphone + ", usergender=" + usergender
22 | + ", userbirthday=" + userbirthday + ", useraddress="
23 | + useraddress + ", userhead=" + userhead + ", userexplain="
24 | + userexplain + ", userqq=" + userqq + "]";
25 | }
26 | public int getUserid() {
27 | return userid;
28 | }
29 | public void setUserid(int userid) {
30 | this.userid = userid;
31 | }
32 | public String getUsername() {
33 | return username;
34 | }
35 | public void setUsername(String username) {
36 | this.username = username;
37 | }
38 | public String getUserpassword() {
39 | return userpassword;
40 | }
41 | public void setUserpassword(String userpassword) {
42 | this.userpassword = userpassword;
43 | }
44 | public String getUseremail() {
45 | return useremail;
46 | }
47 | public void setUseremail(String useremail) {
48 | this.useremail = useremail;
49 | }
50 | public String getUserphone() {
51 | return userphone;
52 | }
53 | public void setUserphone(String userphone) {
54 | this.userphone = userphone;
55 | }
56 | public String getUsergender() {
57 | return usergender;
58 | }
59 | public void setUsergender(String usergender) {
60 | this.usergender = usergender;
61 | }
62 | public Date getUserbirthday() {
63 | return userbirthday;
64 | }
65 | public void setUserbirthday(Date userbirthday) {
66 | this.userbirthday = userbirthday;
67 | }
68 | public String getUseraddress() {
69 | return useraddress;
70 | }
71 | public void setUseraddress(String useraddress) {
72 | this.useraddress = useraddress;
73 | }
74 | public String getUserhead() {
75 | return userhead;
76 | }
77 | public void setUserhead(String userhead) {
78 | this.userhead = userhead;
79 | }
80 | public String getUserexplain() {
81 | return userexplain;
82 | }
83 | public void setUserexplain(String userexplain) {
84 | this.userexplain = userexplain;
85 | }
86 | public String getUserqq() {
87 | return userqq;
88 | }
89 | public void setUserqq(String userqq) {
90 | this.userqq = userqq;
91 | }
92 |
93 | }
94 |
--------------------------------------------------------------------------------
/src/com/findu/entity/User.java:
--------------------------------------------------------------------------------
1 | package com.findu.entity;
2 |
3 | import java.util.Date;
4 |
5 | public class User {
6 |
7 | private int id;
8 | private String name;
9 | private String password;
10 | private String email;
11 | private String phone;
12 | private String gender;
13 | private Date birthday;
14 | private String address;
15 | private String head;
16 | private String explain;
17 | private String qq;
18 |
19 | public User(int id, String name, String phone, String email, String gender,
20 | Date birthday, String qq, String address, String explain) {
21 | super();
22 | this.id = id;
23 | this.name = name;
24 | this.email = email;
25 | this.phone = phone;
26 | this.gender = gender;
27 | this.birthday = birthday;
28 | this.address = address;
29 | this.explain = explain;
30 | this.qq = qq;
31 | }
32 |
33 | public User(String gender, Date birthday, String address, String explain,
34 | String qq) {
35 | super();
36 | this.gender = gender;
37 | this.birthday = birthday;
38 | this.address = address;
39 | this.explain = explain;
40 | this.qq = qq;
41 | }
42 |
43 | public User(String password, String email, String phone, String gender,
44 | Date birthday, String address, String head, String explain,
45 | String qq) {
46 | this.password = password;
47 | this.email = email;
48 | this.phone = phone;
49 | this.gender = gender;
50 | this.birthday = birthday;
51 | this.address = address;
52 | this.head = head;
53 | this.explain = explain;
54 | this.qq = qq;
55 | }
56 |
57 | public String getQq() {
58 | return this.qq;
59 | }
60 |
61 | public void setQq(String qq) {
62 | this.qq = qq;
63 | }
64 |
65 | public String getExplain() {
66 | return this.explain;
67 | }
68 |
69 | public void setExplain(String explain) {
70 | this.explain = explain;
71 | }
72 |
73 | public String getGender() {
74 | return this.gender;
75 | }
76 |
77 | public void setGender(String gender) {
78 | this.gender = gender;
79 | }
80 |
81 | public Date getBirthday() {
82 | return this.birthday;
83 | }
84 |
85 | public void setBirthday(Date birthday) {
86 | this.birthday = birthday;
87 | }
88 |
89 | public String getAddress() {
90 | return this.address;
91 | }
92 |
93 | public void setAddress(String address) {
94 | this.address = address;
95 | }
96 |
97 | public String getHead() {
98 | return this.head;
99 | }
100 |
101 | public void setHead(String head) {
102 | this.head = head;
103 | }
104 |
105 | public int getId() {
106 | return this.id;
107 | }
108 |
109 | public void setId(int id) {
110 | this.id = id;
111 | }
112 |
113 | public String getName() {
114 | return this.name;
115 | }
116 |
117 | public void setName(String name) {
118 | this.name = name;
119 | }
120 |
121 | public String getPassword() {
122 | return this.password;
123 | }
124 |
125 | public void setPassword(String password) {
126 | this.password = password;
127 | }
128 |
129 | public String getEmail() {
130 | return this.email;
131 | }
132 |
133 | public void setEmail(String email) {
134 | this.email = email;
135 | }
136 |
137 | public String getPhone() {
138 | return this.phone;
139 | }
140 |
141 | public void setPhone(String phone) {
142 | this.phone = phone;
143 | }
144 |
145 | public String toString() {
146 | return "User [id=" + this.id + ", name=" + this.name + ", password="
147 | + this.password + ", email=" + this.email + ", phone="
148 | + this.phone + ", gender=" + this.gender + ", birthday="
149 | + this.birthday + ", address=" + this.address + ", head="
150 | + this.head + ", explain=" + this.explain + ", qq=" + this.qq
151 | + "]";
152 | }
153 |
154 | public User() {
155 | }
156 |
157 | public User(String name, String password, String email, String phone) {
158 | this.name = name;
159 | this.password = password;
160 | this.email = email;
161 | this.phone = phone;
162 | }
163 | }
--------------------------------------------------------------------------------
/src/com/findu/exception/ApplyException.java:
--------------------------------------------------------------------------------
1 | package com.findu.exception;
2 |
3 | public class ApplyException extends Exception {
4 |
5 | public ApplyException() {
6 | super();
7 | }
8 |
9 | public ApplyException(String message, Throwable cause) {
10 | super(message, cause);
11 | }
12 |
13 | public ApplyException(String message) {
14 | super(message);
15 | }
16 |
17 | public ApplyException(Throwable cause) {
18 | super(cause);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/com/findu/exception/ChangeUserException.java:
--------------------------------------------------------------------------------
1 | package com.findu.exception;
2 |
3 | public class ChangeUserException extends Exception {
4 |
5 | public ChangeUserException() {
6 | super();
7 | }
8 |
9 | public ChangeUserException(String message, Throwable cause) {
10 | super(message, cause);
11 | }
12 |
13 | public ChangeUserException(String message) {
14 | super(message);
15 | }
16 |
17 | public ChangeUserException(Throwable cause) {
18 | super(cause);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/src/com/findu/exception/RegisterException.java:
--------------------------------------------------------------------------------
1 | package com.findu.exception;
2 |
3 | public class RegisterException extends Exception {
4 |
5 | public RegisterException() {
6 | super();
7 | }
8 |
9 | public RegisterException(String message, Throwable cause) {
10 | super(message, cause);
11 | }
12 |
13 | public RegisterException(String message) {
14 | super(message);
15 | }
16 |
17 | public RegisterException(Throwable cause) {
18 | super(cause);
19 | }
20 | }
--------------------------------------------------------------------------------
/src/com/findu/exception/UserExistsException.java:
--------------------------------------------------------------------------------
1 | package com.findu.exception;
2 |
3 | public class UserExistsException extends Exception {
4 |
5 | public UserExistsException() {
6 | super();
7 | }
8 |
9 | public UserExistsException(String message, Throwable cause) {
10 | super(message, cause);
11 | }
12 |
13 | public UserExistsException(String message) {
14 | super(message);
15 | }
16 |
17 | public UserExistsException(Throwable cause) {
18 | super(cause);
19 | }
20 | }
--------------------------------------------------------------------------------
/src/com/findu/service/ApplyService.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/service/ApplyService.java
--------------------------------------------------------------------------------
/src/com/findu/service/GoodService.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/service/GoodService.java
--------------------------------------------------------------------------------
/src/com/findu/service/TypeService.java:
--------------------------------------------------------------------------------
1 | package com.findu.service;
2 |
3 | import com.findu.dao.TypeDAO;
4 | import com.findu.entity.Type;
5 |
6 | import java.util.ArrayList;
7 |
8 | public class TypeService {
9 |
10 | private TypeDAO dao = new TypeDAO();
11 |
12 | public Type findTypeById(int typeid) throws Exception {
13 | return TypeDAO.findTypeById(typeid);
14 | }
15 |
16 | public String findTypeNameById(int typeid) throws Exception {
17 | return this.dao.findTypeNameById(typeid);
18 | }
19 |
20 | public int findTypeIdByName(String typename) throws Exception {
21 | return this.dao.findTypeIdByName(typename);
22 | }
23 |
24 | public ArrayList getAllTypes() throws Exception {
25 | return this.dao.getAllTypes();
26 | }
27 | }
--------------------------------------------------------------------------------
/src/com/findu/service/UserService.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/service/UserService.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/AJAXSearchServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/AJAXSearchServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/AppDownloadServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/AppDownloadServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/ApplyServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/ApplyServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/ChangeApplyServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/ChangeApplyServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/ChangePassServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/ChangePassServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/ChangePostServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/ChangePostServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/CheckServlet.java:
--------------------------------------------------------------------------------
1 | package com.findu.servlet;
2 |
3 | import java.io.IOException;
4 | import java.io.PrintWriter;
5 | import java.sql.SQLException;
6 |
7 | import javax.servlet.ServletException;
8 | import javax.servlet.http.HttpServlet;
9 | import javax.servlet.http.HttpServletRequest;
10 | import javax.servlet.http.HttpServletResponse;
11 |
12 | import com.findu.dao.UserDao;
13 | import com.findu.entity.User;
14 | import com.findu.utils.Judge;
15 |
16 | public class CheckServlet extends HttpServlet {
17 |
18 | public void doGet(HttpServletRequest request, HttpServletResponse response)
19 | throws ServletException, IOException {
20 |
21 | response.setContentType("text/html;charset=utf-8");
22 | request.setCharacterEncoding("utf-8");
23 |
24 | PrintWriter out = response.getWriter();
25 |
26 | String name = request.getParameter("name");
27 | String email = request.getParameter("email");
28 | String tel = request.getParameter("tel");
29 |
30 | if(name!=null&&!"".equals(name)&&Judge.isName(name)){
31 | out.print("specialName");
32 | return;
33 | }
34 |
35 | try {
36 | if (UserDao.findUserByName(name) != null) {
37 | out.print("name");
38 | }
39 | if (UserDao.findUserByEmail(email) != null) {
40 | out.print("email");
41 | }
42 | if (UserDao.findUserByPhone(tel) != null) {
43 | out.print("tel");
44 | }
45 | } catch (SQLException e) {
46 | e.printStackTrace();
47 | }
48 | }
49 |
50 | public void doPost(HttpServletRequest request, HttpServletResponse response)
51 | throws ServletException, IOException {
52 |
53 | doGet(request, response);
54 | }
55 |
56 | }
57 |
--------------------------------------------------------------------------------
/src/com/findu/servlet/DealApplyServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/DealApplyServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/DelApplyServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/DelApplyServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/DeleteServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/DeleteServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/InfoChangeServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/InfoChangeServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/LoginOutServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/LoginOutServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/LoginServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/LoginServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/PageServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/PageServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/PostGoodServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/PostGoodServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/RegisterServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/RegisterServlet.java
--------------------------------------------------------------------------------
/src/com/findu/servlet/SearchServlet.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/servlet/SearchServlet.java
--------------------------------------------------------------------------------
/src/com/findu/utils/C3P0Utils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/C3P0Utils.java
--------------------------------------------------------------------------------
/src/com/findu/utils/GetTime.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/GetTime.java
--------------------------------------------------------------------------------
/src/com/findu/utils/JDBCUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/JDBCUtils.java
--------------------------------------------------------------------------------
/src/com/findu/utils/Judge.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/Judge.java
--------------------------------------------------------------------------------
/src/com/findu/utils/SendEmail.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/SendEmail.java
--------------------------------------------------------------------------------
/src/com/findu/utils/UUIDUtils.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/UUIDUtils.java
--------------------------------------------------------------------------------
/src/com/findu/utils/test.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Exrick/findu/0c2bb8edb975312c04a26d4694ff658b2db8f17f/src/com/findu/utils/test.java
--------------------------------------------------------------------------------
/src/dbinfo.properties:
--------------------------------------------------------------------------------
1 | driver = com.mysql.jdbc.Driver
2 | url = jdbc:mysql://localhost:3306/findu
3 | user = root
4 | password = 123456
--------------------------------------------------------------------------------