├── 1-1.BeanHandler.bmp
├── 1-1程序引入.txt
├── 1-3.MapHandler.bmp
├── 1-4.toBean.bmp
├── 1-5.多表查询映射.bmp
├── 1-6.Log4j.doc
├── 1-7.day01任务.txt
├── 2-1. 激活功能.bmp
├── 2-1注册功能分析.bmp
├── 2-3.登录功能流程分析.jpg
├── 2-4.修改密码.bmp
├── 2-5.退出功能.jpg
├── 2-6.显示所有分类流程分类.png
├── 3-1. 分页分析.jpg
├── 3-2.图书模块.bmp
├── 4-10.修改条目数量.bmp
├── 4-11.查询被勾选条目.bmp
├── 4-12.订单模块功能介绍.bmp
├── 4-13.订单模块之我的订单.bmp
├── 4-14.订单模块之生成订单.bmp
├── 4-15.查询订单详细信息.bmp
├── 4-16.取消订单、确认收货.bmp
├── 4-17.支付准备功能.bmp
├── 4-18.在线支付介绍.bmp
├── 4-19.易宝的支付流程.bmp
├── 4-1删除和批量删除.bmp
├── 4-2.修改条目数量.bmp
├── 4-20.订单支付之请求易宝.bmp
├── 4-3.查询被勾选条目.bmp
├── 4-4.订单模块功能介绍.bmp
├── 4-5.订单模块之我的订单.bmp
├── 4-6.订单模块之生成订单.bmp
├── 4-7.查询订单详细信息.bmp
├── 4-8.取消订单、确认收货.bmp
├── 4-9删除和批量删除.bmp
├── 5-1.登录过滤器.bmp
├── 5-10.删除一级分类.bmp
├── 5-11.删除二级分类.bmp
├── 5-12.图书管理功能介绍.bmp
├── 5-13.图书管理之与前台相同查询功能.bmp
├── 5-2.后台页面和模块的介绍.bmp
├── 5-3.管理员模块介绍及相关类创建.bmp
├── 5-4.分类管理.bmp
├── 5-5.分类管理之查询所有分类功能之流程分析.bmp
├── 5-6.分类管理之添加父分类.bmp
├── 5-7.分类管理之添加二级分类.bmp
├── 5-8.编辑一级分类.bmp
├── 5-9.编辑二级分类.bmp
├── 6-1.添加图书.bmp
├── 6-2.添加图书第二步.bmp
├── 6-3.编辑图书.bmp
├── 6-4.编辑图书之页面添加js代码.bmp
├── 6-5.编辑图书之第二步流程分析.bmp
├── 6-6.删除图书.bmp
├── 6-7.订单管理介绍,及相关类创建.bmp
├── 6-8.订单管理之功能实现.bmp
├── MyEclipse无提示信息-解决方案.jpg
├── README.md
├── goods.sql
├── goods
├── .classpath
├── .mymetadata
├── .project
├── .settings
│ ├── .jsdtscope
│ ├── com.genuitec.eclipse.core.prefs
│ ├── 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
├── WebRoot
│ ├── META-INF
│ │ └── MANIFEST.MF
│ ├── WEB-INF
│ │ ├── classes
│ │ │ ├── c3p0-config.xml
│ │ │ ├── cn
│ │ │ │ └── itcast
│ │ │ │ │ └── goods
│ │ │ │ │ ├── admin
│ │ │ │ │ ├── admin
│ │ │ │ │ │ ├── dao
│ │ │ │ │ │ │ └── AdminDao.class
│ │ │ │ │ │ ├── domain
│ │ │ │ │ │ │ └── Admin.class
│ │ │ │ │ │ ├── service
│ │ │ │ │ │ │ └── AdminService.class
│ │ │ │ │ │ └── web
│ │ │ │ │ │ │ └── servlet
│ │ │ │ │ │ │ └── AdminServlet.class
│ │ │ │ │ ├── book
│ │ │ │ │ │ └── web
│ │ │ │ │ │ │ └── servlet
│ │ │ │ │ │ │ ├── AdminAddBookServlet.class
│ │ │ │ │ │ │ └── AdminBookServlet.class
│ │ │ │ │ ├── category
│ │ │ │ │ │ └── web
│ │ │ │ │ │ │ └── servlet
│ │ │ │ │ │ │ └── AdminCategoryServlet.class
│ │ │ │ │ └── web
│ │ │ │ │ │ ├── filter
│ │ │ │ │ │ └── AdminLoginFilter.class
│ │ │ │ │ │ └── servlet
│ │ │ │ │ │ └── AdminOrderServlet.class
│ │ │ │ │ ├── book
│ │ │ │ │ ├── dao
│ │ │ │ │ │ └── BookDao.class
│ │ │ │ │ ├── domain
│ │ │ │ │ │ └── Book.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ └── BookService.class
│ │ │ │ │ └── web
│ │ │ │ │ │ └── servlet
│ │ │ │ │ │ └── BookServlet.class
│ │ │ │ │ ├── cart
│ │ │ │ │ ├── dao
│ │ │ │ │ │ └── CartItemDao.class
│ │ │ │ │ ├── domain
│ │ │ │ │ │ └── CartItem.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ └── CartItemService.class
│ │ │ │ │ └── web
│ │ │ │ │ │ └── servlet
│ │ │ │ │ │ └── CartItemServlet.class
│ │ │ │ │ ├── category
│ │ │ │ │ ├── dao
│ │ │ │ │ │ └── CategoryDao.class
│ │ │ │ │ ├── domain
│ │ │ │ │ │ └── Category.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ └── CategoryService.class
│ │ │ │ │ └── web
│ │ │ │ │ │ └── servlet
│ │ │ │ │ │ └── CategoryServlet.class
│ │ │ │ │ ├── order
│ │ │ │ │ ├── dao
│ │ │ │ │ │ └── OrderDao.class
│ │ │ │ │ ├── domain
│ │ │ │ │ │ ├── Order.class
│ │ │ │ │ │ └── OrderItem.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ └── OrderService.class
│ │ │ │ │ └── web
│ │ │ │ │ │ └── servlet
│ │ │ │ │ │ ├── OrderServlet.class
│ │ │ │ │ │ └── PaymentUtil.class
│ │ │ │ │ ├── pager
│ │ │ │ │ ├── Expression.class
│ │ │ │ │ ├── PageBean.class
│ │ │ │ │ └── PageConstants.class
│ │ │ │ │ ├── user
│ │ │ │ │ ├── dao
│ │ │ │ │ │ └── UserDao.class
│ │ │ │ │ ├── domain
│ │ │ │ │ │ └── User.class
│ │ │ │ │ ├── service
│ │ │ │ │ │ ├── UserService.class
│ │ │ │ │ │ └── exception
│ │ │ │ │ │ │ └── UserException.class
│ │ │ │ │ └── web
│ │ │ │ │ │ └── servlet
│ │ │ │ │ │ └── UserServlet.class
│ │ │ │ │ └── web
│ │ │ │ │ └── filter
│ │ │ │ │ └── LoginFilter.class
│ │ │ ├── email_template.properties
│ │ │ ├── goods.sql
│ │ │ └── payment.properties
│ │ ├── lib
│ │ │ ├── activation.jar
│ │ │ ├── c3p0-0.9.2-pre1.jar
│ │ │ ├── c3p0-oracle-thin-extras-0.9.2-pre1.jar
│ │ │ ├── commons-beanutils-1.8.3.jar
│ │ │ ├── commons-collections-3.0.jar
│ │ │ ├── commons-dbutils-1.4.jar
│ │ │ ├── commons-fileupload-1.2.2.jar
│ │ │ ├── commons-io-1.4.jar
│ │ │ ├── commons-lang-2.1.jar
│ │ │ ├── commons-logging-1.1.1.jar
│ │ │ ├── itcast-tools-1.4.jar
│ │ │ ├── log4j-1.2.9.jar
│ │ │ ├── mail.jar
│ │ │ ├── mchange-commons-0.2.jar
│ │ │ └── mysql-connector-java-5.1.13-bin.jar
│ │ └── web.xml
│ ├── adminjsps
│ │ ├── admin
│ │ │ ├── body.jsp
│ │ │ ├── book
│ │ │ │ ├── add.jsp
│ │ │ │ ├── body.jsp
│ │ │ │ ├── desc.jsp
│ │ │ │ ├── gj.jsp
│ │ │ │ ├── left.jsp
│ │ │ │ ├── list.jsp
│ │ │ │ └── main.jsp
│ │ │ ├── category
│ │ │ │ ├── add.jsp
│ │ │ │ ├── add2.jsp
│ │ │ │ ├── edit.jsp
│ │ │ │ ├── edit2.jsp
│ │ │ │ └── list.jsp
│ │ │ ├── css
│ │ │ │ ├── book
│ │ │ │ │ ├── add.css
│ │ │ │ │ ├── desc.css
│ │ │ │ │ ├── left.css
│ │ │ │ │ ├── list.css
│ │ │ │ │ └── main.css
│ │ │ │ ├── category
│ │ │ │ │ └── list.css
│ │ │ │ ├── main.css
│ │ │ │ └── order
│ │ │ │ │ ├── desc.css
│ │ │ │ │ └── list.css
│ │ │ ├── index.jsp
│ │ │ ├── js
│ │ │ │ └── book
│ │ │ │ │ ├── desc.js
│ │ │ │ │ └── list.js
│ │ │ ├── main.jsp
│ │ │ ├── msg.jsp
│ │ │ ├── order
│ │ │ │ ├── desc.jsp
│ │ │ │ └── list.jsp
│ │ │ └── top.jsp
│ │ ├── login.jsp
│ │ └── msg.jsp
│ ├── bank_img
│ │ ├── abc.bmp
│ │ ├── bc.bmp
│ │ ├── bcc.bmp
│ │ ├── beijingnongshang.bmp
│ │ ├── bh.bmp
│ │ ├── bj.bmp
│ │ ├── ccb.bmp
│ │ ├── cib.bmp
│ │ ├── cmb.bmp
│ │ ├── cmbc.bmp
│ │ ├── dy.bmp
│ │ ├── gf.bmp
│ │ ├── guangda.bmp
│ │ ├── hx.bmp
│ │ ├── icbc.bmp
│ │ ├── nanjing.bmp
│ │ ├── ningbo.bmp
│ │ ├── pingan.bmp
│ │ ├── post.bmp
│ │ ├── sfz.bmp
│ │ ├── sh.bmp
│ │ ├── shpd.bmp
│ │ ├── zheshang.bmp
│ │ └── zx.bmp
│ ├── book_img
│ │ ├── 20285763-1_b.jpg
│ │ ├── 20285763-1_w.jpg
│ │ ├── 20412979-1_b.jpg
│ │ ├── 20412979-1_w.jpg
│ │ ├── 20417467-1_b.jpg
│ │ ├── 20417467-1_w.jpg
│ │ ├── 20420983-1_b.jpg
│ │ ├── 20420983-1_w.jpg
│ │ ├── 20446562-1_b.jpg
│ │ ├── 20446562-1_w.jpg
│ │ ├── 20459091-1_b.jpg
│ │ ├── 20459091-1_w.jpg
│ │ ├── 20500255-1_b.jpg
│ │ ├── 20500255-1_w.jpg
│ │ ├── 20637368-1_b_2.jpg
│ │ ├── 20637368-1_w_2.jpg
│ │ ├── 20756351-1_b_1.jpg
│ │ ├── 20756351-1_w_1.jpg
│ │ ├── 20773347-1_b.jpg
│ │ ├── 20773347-1_w_1.jpg
│ │ ├── 20810282-1_b.jpg
│ │ ├── 20810282-1_w_1.jpg
│ │ ├── 20813806-1_b.jpg
│ │ ├── 20813806-1_w_1.jpg
│ │ ├── 20915948-1_b.jpg
│ │ ├── 20915948-1_w_3.jpg
│ │ ├── 20928547-1_b.jpg
│ │ ├── 20928547-1_w_1.jpg
│ │ ├── 20988080-1_b.jpg
│ │ ├── 20988080-1_w_1.jpg
│ │ ├── 20991549-1_b.jpg
│ │ ├── 20991549-1_w_1.jpg
│ │ ├── 21006995-1_b.jpg
│ │ ├── 21006995-1_w_1.jpg
│ │ ├── 21049601-1_b.jpg
│ │ ├── 21049601-1_w_1.jpg
│ │ ├── 21108671-1_b.jpg
│ │ ├── 21108671-1_w_1.jpg
│ │ ├── 21110929-1_b.jpg
│ │ ├── 21110929-1_w_1.jpg
│ │ ├── 21110930-1_b.jpg
│ │ ├── 21110930-1_w_1.jpg
│ │ ├── 21117631-1_b.jpg
│ │ ├── 21117631-1_w_1.jpg
│ │ ├── 21118835-1_b.jpg
│ │ ├── 21118835-1_w_1.jpg
│ │ ├── 21122188-1_b.jpg
│ │ ├── 21122188-1_w_1.jpg
│ │ ├── 22577578-1_b.jpg
│ │ ├── 22577578-1_w.jpg
│ │ ├── 22579686-1_b.jpg
│ │ ├── 22579686-1_w.jpg
│ │ ├── 22588603-1_b.jpg
│ │ ├── 22588603-1_l.jpg
│ │ ├── 22588603-1_w.jpg
│ │ ├── 22605701-1_b.jpg
│ │ ├── 22605701-1_w.jpg
│ │ ├── 22606835-1_b.jpg
│ │ ├── 22606835-1_w.jpg
│ │ ├── 22606836-1_b.jpg
│ │ ├── 22606836-1_w.jpg
│ │ ├── 22623020-1_b.jpg
│ │ ├── 22623020-1_w.jpg
│ │ ├── 22623766-1_b.jpg
│ │ ├── 22623766-1_w.jpg
│ │ ├── 22628333-1_b.jpg
│ │ ├── 22628333-1_w.jpg
│ │ ├── 22633574-1_b.jpg
│ │ ├── 22633574-1_w.jpg
│ │ ├── 22638286-1_b.jpg
│ │ ├── 22638286-1_w.jpg
│ │ ├── 22685703-1_b.jpg
│ │ ├── 22685703-1_w.jpg
│ │ ├── 22692811-1_b.jpg
│ │ ├── 22692811-1_w.jpg
│ │ ├── 22717349-1_b.jpg
│ │ ├── 22717349-1_w.jpg
│ │ ├── 22722790-1_b.jpg
│ │ ├── 22722790-1_w.jpg
│ │ ├── 22757564-1_b.jpg
│ │ ├── 22757564-1_w.jpg
│ │ ├── 22783904-1_b.jpg
│ │ ├── 22783904-1_w.jpg
│ │ ├── 22786088-1_b.jpg
│ │ ├── 22786088-1_w.jpg
│ │ ├── 22788412-1_b.jpg
│ │ ├── 22788412-1_w.jpg
│ │ ├── 22813026-1_b.jpg
│ │ ├── 22813026-1_w.jpg
│ │ ├── 22819430-1_b.jpg
│ │ ├── 22819430-1_w.jpg
│ │ ├── 22839309-1_b.jpg
│ │ ├── 22839309-1_w.jpg
│ │ ├── 22844118-1_b.jpg
│ │ ├── 22844118-1_w.jpg
│ │ ├── 22847009-1_b.jpg
│ │ ├── 22847009-1_w.jpg
│ │ ├── 22862056-1_b.jpg
│ │ ├── 22862056-1_w.jpg
│ │ ├── 22862057-1_b.jpg
│ │ ├── 22862057-1_w.jpg
│ │ ├── 22862060-1_b.jpg
│ │ ├── 22862060-1_w.jpg
│ │ ├── 22862061-1_b.jpg
│ │ ├── 22862061-1_w.jpg
│ │ ├── 22868759-1_b.jpg
│ │ ├── 22868759-1_w.jpg
│ │ ├── 22872884-1_b.jpg
│ │ ├── 22872884-1_w.jpg
│ │ ├── 22873894-1_b.jpg
│ │ ├── 22873894-1_w.jpg
│ │ ├── 22881618-1_b.jpg
│ │ ├── 22881618-1_w.jpg
│ │ ├── 22881803-1_b.jpg
│ │ ├── 22881803-1_w.jpg
│ │ ├── 22886581-1_b.jpg
│ │ ├── 22886581-1_w.jpg
│ │ ├── 22910975-1_b.jpg
│ │ ├── 22910975-1_w.jpg
│ │ ├── 22928649-1_b.jpg
│ │ ├── 22928649-1_w.jpg
│ │ ├── 22938396-1_b.jpg
│ │ ├── 22938396-1_w.jpg
│ │ ├── 22938474-1_b.jpg
│ │ ├── 22938474-1_w.jpg
│ │ ├── 23042420-1_b.jpg
│ │ ├── 23042420-1_w.jpg
│ │ ├── 23169892-1_b.jpg
│ │ ├── 23169892-1_w.jpg
│ │ ├── 23179003-1_b.jpg
│ │ ├── 23179003-1_w.jpg
│ │ ├── 23184673-1_b.jpg
│ │ ├── 23184673-1_w.jpg
│ │ ├── 23200995-1_b.jpg
│ │ ├── 23200995-1_w.jpg
│ │ ├── 23201813-1_b.jpg
│ │ ├── 23201813-1_w.jpg
│ │ ├── 23219358-1_b.jpg
│ │ ├── 23219358-1_w.jpg
│ │ ├── 23219731-1_b.jpg
│ │ ├── 23219731-1_w.jpg
│ │ ├── 23224089-1_b.jpg
│ │ ├── 23224089-1_w.jpg
│ │ ├── 23239786-1_b.jpg
│ │ ├── 23239786-1_w.jpg
│ │ ├── 23252196-1_b.jpg
│ │ ├── 23252196-1_w.jpg
│ │ ├── 23254532-1_b.jpg
│ │ ├── 23254532-1_w.jpg
│ │ ├── 23259731-1_b.jpg
│ │ ├── 23259731-1_w.jpg
│ │ ├── 23263012-1_b.jpg
│ │ ├── 23263012-1_w.jpg
│ │ ├── 23266270-1_b.jpg
│ │ ├── 23266270-1_w.jpg
│ │ ├── 23266633-1_b.jpg
│ │ ├── 23266633-1_w.jpg
│ │ ├── 23266635-1_b.jpg
│ │ ├── 23266635-1_w.jpg
│ │ ├── 23268958-1_b.jpg
│ │ ├── 23268958-1_w.jpg
│ │ ├── 23280478-1_b.jpg
│ │ ├── 23280478-1_w.jpg
│ │ ├── 23280479-1_b.jpg
│ │ ├── 23280479-1_w.jpg
│ │ ├── 23301847-1_b.jpg
│ │ ├── 23301847-1_w_1.jpg
│ │ ├── 23329703-1_b.jpg
│ │ ├── 23329703-1_w_1.jpg
│ │ ├── 23339643-1_b.jpg
│ │ ├── 23339643-1_w.jpg
│ │ ├── 23348683-1_b.jpg
│ │ ├── 23348683-1_w_1.jpg
│ │ ├── 23351049-1_b.jpg
│ │ ├── 23351049-1_w_1.jpg
│ │ ├── 23362142-1_b.jpg
│ │ ├── 23362142-1_w_1.jpg
│ │ ├── 23363997-1_b.jpg
│ │ ├── 23363997-1_w_1.jpg
│ │ ├── 23368351-1_b.jpg
│ │ ├── 23368351-1_w_2.jpg
│ │ ├── 696673-1_b.jpg
│ │ ├── 696673-1_w.jpg
│ │ ├── 9062293-1_b.jpg
│ │ ├── 9062293-1_w.jpg
│ │ ├── 9186890-1_b.jpg
│ │ ├── 9186890-1_w.jpg
│ │ ├── 9265169-1_b.jpg
│ │ ├── 9265169-1_w.jpg
│ │ ├── 9288920-1_b.jpg
│ │ ├── 9288920-1_w.jpg
│ │ ├── 9317290-1_b.jpg
│ │ ├── 9317290-1_w.jpg
│ │ └── book1.jpg
│ ├── css
│ │ └── css.css
│ ├── images
│ │ ├── 20131225111747348.jpg
│ │ ├── all.png
│ │ ├── bg_1.jpg
│ │ ├── bg_btns.png
│ │ ├── bt_02.jpg
│ │ ├── btn.bmp
│ │ ├── btn.png
│ │ ├── cart.png
│ │ ├── confirm.jpg
│ │ ├── csdn.jpg
│ │ ├── cuohao.png
│ │ ├── duihao.jpg
│ │ ├── error.png
│ │ ├── hei_1_btn.jpg
│ │ ├── hong_1_btn.jpg
│ │ ├── hong_2_btn.jpg
│ │ ├── huang_1_btn.jpg
│ │ ├── huang_2_btn.jpg
│ │ ├── icon.png
│ │ ├── icon2.png
│ │ ├── icon_empty.png
│ │ ├── itcast_link.gif
│ │ ├── login1.jpg
│ │ ├── login2.jpg
│ │ ├── login_sprites_20110808.png
│ │ ├── logo.gif
│ │ ├── mhzxxls.jpg
│ │ ├── paginating_bg.png
│ │ ├── qd.png
│ │ ├── regist1.jpg
│ │ ├── regist2.jpg
│ │ ├── register_btn.png
│ │ ├── select_key_star_bg.png
│ │ ├── sprites_orderdetails.gif
│ │ ├── star.jpg
│ │ ├── welcome.jpg
│ │ └── zj.png
│ ├── index.jsp
│ ├── jquery
│ │ ├── calendar-green.gif
│ │ ├── calendar.gif
│ │ ├── calendar.js
│ │ ├── jquery-1.5.1.js
│ │ ├── jquery.datepick-zh-CN.js
│ │ ├── jquery.datepick.css
│ │ ├── jquery.datepick.js
│ │ └── jqueryui
│ │ │ ├── demos.css
│ │ │ ├── images
│ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ ├── ui-icons_222222_256x240.png
│ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ ├── ui-icons_454545_256x240.png
│ │ │ ├── ui-icons_888888_256x240.png
│ │ │ └── ui-icons_cd0a0a_256x240.png
│ │ │ ├── themes
│ │ │ ├── base
│ │ │ │ ├── images
│ │ │ │ │ ├── btn.png
│ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png
│ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png
│ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png
│ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png
│ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png
│ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png
│ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png
│ │ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ │ ├── ui-icons_2e83ff_256x240.png
│ │ │ │ │ ├── ui-icons_454545_256x240.png
│ │ │ │ │ ├── ui-icons_888888_256x240.png
│ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png
│ │ │ │ │ └── 新建位图图像.bmp
│ │ │ │ ├── jquery-ui-1.8.14.custom.css
│ │ │ │ ├── jquery.ui.accordion.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ ├── jquery.ui.button.css
│ │ │ │ ├── jquery.ui.core.css
│ │ │ │ ├── jquery.ui.datepicker.css
│ │ │ │ ├── jquery.ui.dialog.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.resizable.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.slider.css
│ │ │ │ ├── jquery.ui.tabs.css
│ │ │ │ └── jquery.ui.theme.css
│ │ │ └── ui-lightness
│ │ │ │ ├── images
│ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png
│ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png
│ │ │ │ ├── ui-bg_flat_10_000000_40x100.png
│ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png
│ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png
│ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png
│ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png
│ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png
│ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png
│ │ │ │ ├── ui-icons_222222_256x240.png
│ │ │ │ ├── ui-icons_228ef1_256x240.png
│ │ │ │ ├── ui-icons_ef8c08_256x240.png
│ │ │ │ ├── ui-icons_ffd27a_256x240.png
│ │ │ │ └── ui-icons_ffffff_256x240.png
│ │ │ │ ├── jquery-ui-1.8.14.custom.css
│ │ │ │ ├── jquery.ui.accordion.css
│ │ │ │ ├── jquery.ui.all.css
│ │ │ │ ├── jquery.ui.autocomplete.css
│ │ │ │ ├── jquery.ui.base.css
│ │ │ │ ├── jquery.ui.button.css
│ │ │ │ ├── jquery.ui.core.css
│ │ │ │ ├── jquery.ui.datepicker.css
│ │ │ │ ├── jquery.ui.dialog.css
│ │ │ │ ├── jquery.ui.progressbar.css
│ │ │ │ ├── jquery.ui.resizable.css
│ │ │ │ ├── jquery.ui.selectable.css
│ │ │ │ ├── jquery.ui.slider.css
│ │ │ │ ├── jquery.ui.tabs.css
│ │ │ │ └── jquery.ui.theme.css
│ │ │ └── ui
│ │ │ ├── i18n
│ │ │ ├── jquery-ui-i18n.js
│ │ │ ├── jquery.ui.datepicker-af.js
│ │ │ ├── jquery.ui.datepicker-ar-DZ.js
│ │ │ ├── jquery.ui.datepicker-ar.js
│ │ │ ├── jquery.ui.datepicker-az.js
│ │ │ ├── jquery.ui.datepicker-bg.js
│ │ │ ├── jquery.ui.datepicker-bs.js
│ │ │ ├── jquery.ui.datepicker-ca.js
│ │ │ ├── jquery.ui.datepicker-cs.js
│ │ │ ├── jquery.ui.datepicker-da.js
│ │ │ ├── jquery.ui.datepicker-de.js
│ │ │ ├── jquery.ui.datepicker-el.js
│ │ │ ├── jquery.ui.datepicker-en-AU.js
│ │ │ ├── jquery.ui.datepicker-en-GB.js
│ │ │ ├── jquery.ui.datepicker-en-NZ.js
│ │ │ ├── jquery.ui.datepicker-eo.js
│ │ │ ├── jquery.ui.datepicker-es.js
│ │ │ ├── jquery.ui.datepicker-et.js
│ │ │ ├── jquery.ui.datepicker-eu.js
│ │ │ ├── jquery.ui.datepicker-fa.js
│ │ │ ├── jquery.ui.datepicker-fi.js
│ │ │ ├── jquery.ui.datepicker-fo.js
│ │ │ ├── jquery.ui.datepicker-fr-CH.js
│ │ │ ├── jquery.ui.datepicker-fr.js
│ │ │ ├── jquery.ui.datepicker-gl.js
│ │ │ ├── jquery.ui.datepicker-he.js
│ │ │ ├── jquery.ui.datepicker-hr.js
│ │ │ ├── jquery.ui.datepicker-hu.js
│ │ │ ├── jquery.ui.datepicker-hy.js
│ │ │ ├── jquery.ui.datepicker-id.js
│ │ │ ├── jquery.ui.datepicker-is.js
│ │ │ ├── jquery.ui.datepicker-it.js
│ │ │ ├── jquery.ui.datepicker-ja.js
│ │ │ ├── jquery.ui.datepicker-ko.js
│ │ │ ├── jquery.ui.datepicker-kz.js
│ │ │ ├── jquery.ui.datepicker-lt.js
│ │ │ ├── jquery.ui.datepicker-lv.js
│ │ │ ├── jquery.ui.datepicker-ml.js
│ │ │ ├── jquery.ui.datepicker-ms.js
│ │ │ ├── jquery.ui.datepicker-nl.js
│ │ │ ├── jquery.ui.datepicker-no.js
│ │ │ ├── jquery.ui.datepicker-pl.js
│ │ │ ├── jquery.ui.datepicker-pt-BR.js
│ │ │ ├── jquery.ui.datepicker-pt.js
│ │ │ ├── jquery.ui.datepicker-rm.js
│ │ │ ├── jquery.ui.datepicker-ro.js
│ │ │ ├── jquery.ui.datepicker-ru.js
│ │ │ ├── jquery.ui.datepicker-sk.js
│ │ │ ├── jquery.ui.datepicker-sl.js
│ │ │ ├── jquery.ui.datepicker-sq.js
│ │ │ ├── jquery.ui.datepicker-sr-SR.js
│ │ │ ├── jquery.ui.datepicker-sr.js
│ │ │ ├── jquery.ui.datepicker-sv.js
│ │ │ ├── jquery.ui.datepicker-ta.js
│ │ │ ├── jquery.ui.datepicker-th.js
│ │ │ ├── jquery.ui.datepicker-tj.js
│ │ │ ├── jquery.ui.datepicker-tr.js
│ │ │ ├── jquery.ui.datepicker-uk.js
│ │ │ ├── jquery.ui.datepicker-vi.js
│ │ │ ├── jquery.ui.datepicker-zh-CN.js
│ │ │ ├── jquery.ui.datepicker-zh-HK.js
│ │ │ └── jquery.ui.datepicker-zh-TW.js
│ │ │ ├── jquery-ui-1.8.14.custom.js
│ │ │ ├── jquery.effects.blind.js
│ │ │ ├── jquery.effects.bounce.js
│ │ │ ├── jquery.effects.clip.js
│ │ │ ├── jquery.effects.core.js
│ │ │ ├── jquery.effects.drop.js
│ │ │ ├── jquery.effects.explode.js
│ │ │ ├── jquery.effects.fade.js
│ │ │ ├── jquery.effects.fold.js
│ │ │ ├── jquery.effects.highlight.js
│ │ │ ├── jquery.effects.pulsate.js
│ │ │ ├── jquery.effects.scale.js
│ │ │ ├── jquery.effects.shake.js
│ │ │ ├── jquery.effects.slide.js
│ │ │ ├── jquery.effects.transfer.js
│ │ │ ├── jquery.ui.accordion.js
│ │ │ ├── jquery.ui.autocomplete.js
│ │ │ ├── jquery.ui.button.js
│ │ │ ├── jquery.ui.core.js
│ │ │ ├── jquery.ui.datepicker.js
│ │ │ ├── jquery.ui.dialog.js
│ │ │ ├── jquery.ui.draggable.js
│ │ │ ├── jquery.ui.droppable.js
│ │ │ ├── jquery.ui.mouse.js
│ │ │ ├── jquery.ui.position.js
│ │ │ ├── jquery.ui.progressbar.js
│ │ │ ├── jquery.ui.resizable.js
│ │ │ ├── jquery.ui.selectable.js
│ │ │ ├── jquery.ui.slider.js
│ │ │ ├── jquery.ui.sortable.js
│ │ │ ├── jquery.ui.tabs.js
│ │ │ ├── jquery.ui.widget.js
│ │ │ └── minified
│ │ │ ├── jquery.effects.blind.min.js
│ │ │ ├── jquery.effects.bounce.min.js
│ │ │ ├── jquery.effects.clip.min.js
│ │ │ ├── jquery.effects.core.min.js
│ │ │ ├── jquery.effects.drop.min.js
│ │ │ ├── jquery.effects.explode.min.js
│ │ │ ├── jquery.effects.fade.min.js
│ │ │ ├── jquery.effects.fold.min.js
│ │ │ ├── jquery.effects.highlight.min.js
│ │ │ ├── jquery.effects.pulsate.min.js
│ │ │ ├── jquery.effects.scale.min.js
│ │ │ ├── jquery.effects.shake.min.js
│ │ │ ├── jquery.effects.slide.min.js
│ │ │ ├── jquery.effects.transfer.min.js
│ │ │ ├── jquery.ui.accordion.min.js
│ │ │ ├── jquery.ui.autocomplete.min.js
│ │ │ ├── jquery.ui.button.min.js
│ │ │ ├── jquery.ui.core.min.js
│ │ │ ├── jquery.ui.datepicker.min.js
│ │ │ ├── jquery.ui.dialog.min.js
│ │ │ ├── jquery.ui.draggable.min.js
│ │ │ ├── jquery.ui.droppable.min.js
│ │ │ ├── jquery.ui.mouse.min.js
│ │ │ ├── jquery.ui.position.min.js
│ │ │ ├── jquery.ui.progressbar.min.js
│ │ │ ├── jquery.ui.resizable.min.js
│ │ │ ├── jquery.ui.selectable.min.js
│ │ │ ├── jquery.ui.slider.min.js
│ │ │ ├── jquery.ui.sortable.min.js
│ │ │ ├── jquery.ui.tabs.min.js
│ │ │ └── jquery.ui.widget.min.js
│ ├── js
│ │ ├── common.js
│ │ └── round.js
│ ├── jsps
│ │ ├── body.jsp
│ │ ├── book
│ │ │ ├── desc.jsp
│ │ │ └── list.jsp
│ │ ├── cart
│ │ │ ├── list.jsp
│ │ │ └── showitem.jsp
│ │ ├── css
│ │ │ ├── book
│ │ │ │ ├── desc.css
│ │ │ │ └── list.css
│ │ │ ├── cart
│ │ │ │ ├── list.css
│ │ │ │ └── showitem.css
│ │ │ ├── left.css
│ │ │ ├── main.css
│ │ │ ├── order
│ │ │ │ ├── desc.css
│ │ │ │ ├── list.css
│ │ │ │ ├── ordersucc.css
│ │ │ │ └── pay.css
│ │ │ └── user
│ │ │ │ ├── login.css
│ │ │ │ ├── pwd.css
│ │ │ │ └── regist.css
│ │ ├── gj.jsp
│ │ ├── js
│ │ │ ├── book
│ │ │ │ ├── desc.js
│ │ │ │ └── list.js
│ │ │ └── user
│ │ │ │ ├── login.js
│ │ │ │ ├── pwd.js
│ │ │ │ └── regist.js
│ │ ├── left.jsp
│ │ ├── main.jsp
│ │ ├── msg.jsp
│ │ ├── order
│ │ │ ├── desc.jsp
│ │ │ ├── list.jsp
│ │ │ ├── ordersucc.jsp
│ │ │ └── pay.jsp
│ │ ├── pager
│ │ │ ├── pager.css
│ │ │ └── pager.jsp
│ │ ├── search.jsp
│ │ ├── top.jsp
│ │ └── user
│ │ │ ├── login.jsp
│ │ │ ├── pwd.jsp
│ │ │ └── regist.jsp
│ └── menu
│ │ ├── img
│ │ ├── jia.png
│ │ └── jian.png
│ │ ├── mymenu.css
│ │ └── mymenu.js
└── src
│ ├── c3p0-config.xml
│ ├── cn
│ └── itcast
│ │ └── goods
│ │ ├── admin
│ │ ├── admin
│ │ │ ├── dao
│ │ │ │ └── AdminDao.java
│ │ │ ├── domain
│ │ │ │ └── Admin.java
│ │ │ ├── service
│ │ │ │ └── AdminService.java
│ │ │ └── web
│ │ │ │ └── servlet
│ │ │ │ └── AdminServlet.java
│ │ ├── book
│ │ │ └── web
│ │ │ │ └── servlet
│ │ │ │ ├── AdminAddBookServlet.java
│ │ │ │ └── AdminBookServlet.java
│ │ ├── category
│ │ │ └── web
│ │ │ │ └── servlet
│ │ │ │ └── AdminCategoryServlet.java
│ │ └── web
│ │ │ ├── filter
│ │ │ └── AdminLoginFilter.java
│ │ │ └── servlet
│ │ │ └── AdminOrderServlet.java
│ │ ├── book
│ │ ├── dao
│ │ │ └── BookDao.java
│ │ ├── domain
│ │ │ └── Book.java
│ │ ├── service
│ │ │ └── BookService.java
│ │ └── web
│ │ │ └── servlet
│ │ │ └── BookServlet.java
│ │ ├── cart
│ │ ├── dao
│ │ │ └── CartItemDao.java
│ │ ├── domain
│ │ │ └── CartItem.java
│ │ ├── service
│ │ │ └── CartItemService.java
│ │ └── web
│ │ │ └── servlet
│ │ │ └── CartItemServlet.java
│ │ ├── category
│ │ ├── dao
│ │ │ └── CategoryDao.java
│ │ ├── domain
│ │ │ └── Category.java
│ │ ├── service
│ │ │ └── CategoryService.java
│ │ └── web
│ │ │ └── servlet
│ │ │ └── CategoryServlet.java
│ │ ├── order
│ │ ├── dao
│ │ │ └── OrderDao.java
│ │ ├── domain
│ │ │ ├── Order.java
│ │ │ └── OrderItem.java
│ │ ├── service
│ │ │ └── OrderService.java
│ │ └── web
│ │ │ └── servlet
│ │ │ ├── OrderServlet.java
│ │ │ └── PaymentUtil.java
│ │ ├── pager
│ │ ├── Expression.java
│ │ ├── PageBean.java
│ │ └── PageConstants.java
│ │ ├── user
│ │ ├── dao
│ │ │ └── UserDao.java
│ │ ├── domain
│ │ │ └── User.java
│ │ ├── service
│ │ │ ├── UserService.java
│ │ │ └── exception
│ │ │ │ └── UserException.java
│ │ └── web
│ │ │ └── servlet
│ │ │ └── UserServlet.java
│ │ └── web
│ │ └── filter
│ │ └── LoginFilter.java
│ ├── email_template.properties
│ ├── goods.sql
│ └── payment.properties
└── 新建工作空间.txt
/1-1.BeanHandler.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-1.BeanHandler.bmp
--------------------------------------------------------------------------------
/1-1程序引入.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-1程序引入.txt
--------------------------------------------------------------------------------
/1-3.MapHandler.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-3.MapHandler.bmp
--------------------------------------------------------------------------------
/1-4.toBean.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-4.toBean.bmp
--------------------------------------------------------------------------------
/1-5.多表查询映射.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-5.多表查询映射.bmp
--------------------------------------------------------------------------------
/1-6.Log4j.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-6.Log4j.doc
--------------------------------------------------------------------------------
/1-7.day01任务.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/1-7.day01任务.txt
--------------------------------------------------------------------------------
/2-1. 激活功能.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/2-1. 激活功能.bmp
--------------------------------------------------------------------------------
/2-1注册功能分析.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/2-1注册功能分析.bmp
--------------------------------------------------------------------------------
/2-3.登录功能流程分析.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/2-3.登录功能流程分析.jpg
--------------------------------------------------------------------------------
/2-4.修改密码.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/2-4.修改密码.bmp
--------------------------------------------------------------------------------
/2-5.退出功能.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/2-5.退出功能.jpg
--------------------------------------------------------------------------------
/2-6.显示所有分类流程分类.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/2-6.显示所有分类流程分类.png
--------------------------------------------------------------------------------
/3-1. 分页分析.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/3-1. 分页分析.jpg
--------------------------------------------------------------------------------
/3-2.图书模块.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/3-2.图书模块.bmp
--------------------------------------------------------------------------------
/4-10.修改条目数量.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-10.修改条目数量.bmp
--------------------------------------------------------------------------------
/4-11.查询被勾选条目.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-11.查询被勾选条目.bmp
--------------------------------------------------------------------------------
/4-12.订单模块功能介绍.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-12.订单模块功能介绍.bmp
--------------------------------------------------------------------------------
/4-13.订单模块之我的订单.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-13.订单模块之我的订单.bmp
--------------------------------------------------------------------------------
/4-14.订单模块之生成订单.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-14.订单模块之生成订单.bmp
--------------------------------------------------------------------------------
/4-15.查询订单详细信息.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-15.查询订单详细信息.bmp
--------------------------------------------------------------------------------
/4-16.取消订单、确认收货.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-16.取消订单、确认收货.bmp
--------------------------------------------------------------------------------
/4-17.支付准备功能.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-17.支付准备功能.bmp
--------------------------------------------------------------------------------
/4-18.在线支付介绍.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-18.在线支付介绍.bmp
--------------------------------------------------------------------------------
/4-19.易宝的支付流程.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-19.易宝的支付流程.bmp
--------------------------------------------------------------------------------
/4-1删除和批量删除.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-1删除和批量删除.bmp
--------------------------------------------------------------------------------
/4-2.修改条目数量.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-2.修改条目数量.bmp
--------------------------------------------------------------------------------
/4-20.订单支付之请求易宝.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-20.订单支付之请求易宝.bmp
--------------------------------------------------------------------------------
/4-3.查询被勾选条目.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-3.查询被勾选条目.bmp
--------------------------------------------------------------------------------
/4-4.订单模块功能介绍.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-4.订单模块功能介绍.bmp
--------------------------------------------------------------------------------
/4-5.订单模块之我的订单.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-5.订单模块之我的订单.bmp
--------------------------------------------------------------------------------
/4-6.订单模块之生成订单.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-6.订单模块之生成订单.bmp
--------------------------------------------------------------------------------
/4-7.查询订单详细信息.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-7.查询订单详细信息.bmp
--------------------------------------------------------------------------------
/4-8.取消订单、确认收货.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-8.取消订单、确认收货.bmp
--------------------------------------------------------------------------------
/4-9删除和批量删除.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/4-9删除和批量删除.bmp
--------------------------------------------------------------------------------
/5-1.登录过滤器.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-1.登录过滤器.bmp
--------------------------------------------------------------------------------
/5-10.删除一级分类.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-10.删除一级分类.bmp
--------------------------------------------------------------------------------
/5-11.删除二级分类.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-11.删除二级分类.bmp
--------------------------------------------------------------------------------
/5-12.图书管理功能介绍.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-12.图书管理功能介绍.bmp
--------------------------------------------------------------------------------
/5-13.图书管理之与前台相同查询功能.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-13.图书管理之与前台相同查询功能.bmp
--------------------------------------------------------------------------------
/5-2.后台页面和模块的介绍.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-2.后台页面和模块的介绍.bmp
--------------------------------------------------------------------------------
/5-3.管理员模块介绍及相关类创建.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-3.管理员模块介绍及相关类创建.bmp
--------------------------------------------------------------------------------
/5-4.分类管理.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-4.分类管理.bmp
--------------------------------------------------------------------------------
/5-5.分类管理之查询所有分类功能之流程分析.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-5.分类管理之查询所有分类功能之流程分析.bmp
--------------------------------------------------------------------------------
/5-6.分类管理之添加父分类.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-6.分类管理之添加父分类.bmp
--------------------------------------------------------------------------------
/5-7.分类管理之添加二级分类.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-7.分类管理之添加二级分类.bmp
--------------------------------------------------------------------------------
/5-8.编辑一级分类.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-8.编辑一级分类.bmp
--------------------------------------------------------------------------------
/5-9.编辑二级分类.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/5-9.编辑二级分类.bmp
--------------------------------------------------------------------------------
/6-1.添加图书.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-1.添加图书.bmp
--------------------------------------------------------------------------------
/6-2.添加图书第二步.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-2.添加图书第二步.bmp
--------------------------------------------------------------------------------
/6-3.编辑图书.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-3.编辑图书.bmp
--------------------------------------------------------------------------------
/6-4.编辑图书之页面添加js代码.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-4.编辑图书之页面添加js代码.bmp
--------------------------------------------------------------------------------
/6-5.编辑图书之第二步流程分析.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-5.编辑图书之第二步流程分析.bmp
--------------------------------------------------------------------------------
/6-6.删除图书.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-6.删除图书.bmp
--------------------------------------------------------------------------------
/6-7.订单管理介绍,及相关类创建.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-7.订单管理介绍,及相关类创建.bmp
--------------------------------------------------------------------------------
/6-8.订单管理之功能实现.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/6-8.订单管理之功能实现.bmp
--------------------------------------------------------------------------------
/MyEclipse无提示信息-解决方案.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/MyEclipse无提示信息-解决方案.jpg
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # bookstore
2 | 传智播客网上书城毕设源码及解析
3 | 非原创,时间太久远,所以没法标注来源了。
4 |
--------------------------------------------------------------------------------
/goods/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/goods/.mymetadata:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/goods/.settings/.jsdtscope:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/goods/.settings/com.genuitec.eclipse.core.prefs:
--------------------------------------------------------------------------------
1 | #Tue Feb 25 08:50:43 CST 2014
2 | eclipse.preferences.version=1
3 | validator.Checked=WebRoot
4 | validator.Unchecked=
5 |
--------------------------------------------------------------------------------
/goods/.settings/org.eclipse.jdt.core.prefs:
--------------------------------------------------------------------------------
1 | #Mon Feb 24 15:26:36 CST 2014
2 | eclipse.preferences.version=1
3 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
5 | org.eclipse.jdt.core.compiler.compliance=1.5
6 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
7 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
8 | org.eclipse.jdt.core.compiler.source=1.5
9 |
--------------------------------------------------------------------------------
/goods/.settings/org.eclipse.wst.common.component:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/goods/.settings/org.eclipse.wst.common.project.facet.core.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/goods/.settings/org.eclipse.wst.jsdt.ui.superType.container:
--------------------------------------------------------------------------------
1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary
--------------------------------------------------------------------------------
/goods/.settings/org.eclipse.wst.jsdt.ui.superType.name:
--------------------------------------------------------------------------------
1 | Window
--------------------------------------------------------------------------------
/goods/WebRoot/META-INF/MANIFEST.MF:
--------------------------------------------------------------------------------
1 | Manifest-Version: 1.0
2 | Class-Path:
3 |
4 |
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/c3p0-config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 | com.mysql.jdbc.Driver
10 | root
11 | 123
12 |
13 | 3
14 | 10
15 | 2
16 | 10
17 |
18 |
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/dao/AdminDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/dao/AdminDao.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/domain/Admin.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/domain/Admin.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/service/AdminService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/service/AdminService.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/web/servlet/AdminServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/admin/web/servlet/AdminServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/book/web/servlet/AdminAddBookServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/book/web/servlet/AdminAddBookServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/book/web/servlet/AdminBookServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/book/web/servlet/AdminBookServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/category/web/servlet/AdminCategoryServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/category/web/servlet/AdminCategoryServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/web/filter/AdminLoginFilter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/web/filter/AdminLoginFilter.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/web/servlet/AdminOrderServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/admin/web/servlet/AdminOrderServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/dao/BookDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/dao/BookDao.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/domain/Book.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/domain/Book.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/service/BookService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/service/BookService.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/web/servlet/BookServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/book/web/servlet/BookServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/dao/CartItemDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/dao/CartItemDao.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/domain/CartItem.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/domain/CartItem.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/service/CartItemService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/service/CartItemService.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/web/servlet/CartItemServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/cart/web/servlet/CartItemServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/dao/CategoryDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/dao/CategoryDao.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/domain/Category.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/domain/Category.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/service/CategoryService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/service/CategoryService.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/web/servlet/CategoryServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/category/web/servlet/CategoryServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/dao/OrderDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/dao/OrderDao.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/domain/Order.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/domain/Order.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/domain/OrderItem.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/domain/OrderItem.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/service/OrderService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/service/OrderService.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/web/servlet/OrderServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/web/servlet/OrderServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/web/servlet/PaymentUtil.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/order/web/servlet/PaymentUtil.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/pager/Expression.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/pager/Expression.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/pager/PageBean.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/pager/PageBean.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/pager/PageConstants.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/pager/PageConstants.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/dao/UserDao.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/dao/UserDao.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/domain/User.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/domain/User.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/service/UserService.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/service/UserService.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/service/exception/UserException.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/service/exception/UserException.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/web/servlet/UserServlet.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/user/web/servlet/UserServlet.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/web/filter/LoginFilter.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/classes/cn/itcast/goods/web/filter/LoginFilter.class
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/email_template.properties:
--------------------------------------------------------------------------------
1 | subject=\u6765\u81EA\u4F20\u667A\u64AD\u5BA2\u7F51\u4E0A\u4E66\u57CE\u7684\u6FC0\u6D3B\u90AE\u4EF6
2 | content=\u606D\u559C\uFF0C\u60A8\u5DF2\u6CE8\u518C\u6210\u529F\uFF0C\u8BF7\u70B9\u51FB\u8FD9\u91CC\u5B8C\u6210\u6FC0\u6D3B\u3002
3 | from=itcast_cxf@163.com
4 | host=smtp.163.com
5 | username=itcast_cxf
6 | password=itcastitcast
7 |
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/classes/payment.properties:
--------------------------------------------------------------------------------
1 | p1_MerId=10001126856
2 | keyValue=69cl522AV6q613Ii4W6u8K6XuW8vM1N6bFgyv769220IuYe9u37N4y7rI4Pl
3 | p8_Url=http\://localhost\:8080/goods/OrderServlet?method\=back
4 |
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/activation.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/activation.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/c3p0-0.9.2-pre1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/c3p0-0.9.2-pre1.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/c3p0-oracle-thin-extras-0.9.2-pre1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/c3p0-oracle-thin-extras-0.9.2-pre1.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-beanutils-1.8.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-beanutils-1.8.3.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-collections-3.0.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-collections-3.0.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-dbutils-1.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-dbutils-1.4.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-fileupload-1.2.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-fileupload-1.2.2.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-io-1.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-io-1.4.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-lang-2.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-lang-2.1.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/commons-logging-1.1.1.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/itcast-tools-1.4.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/itcast-tools-1.4.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/log4j-1.2.9.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/log4j-1.2.9.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/mail.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/mail.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/mchange-commons-0.2.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/mchange-commons-0.2.jar
--------------------------------------------------------------------------------
/goods/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.13-bin.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/WEB-INF/lib/mysql-connector-java-5.1.13-bin.jar
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/body.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
3 |
4 |
5 |
6 |
7 | body.jsp
8 |
9 |
10 |
11 |
12 |
13 |
14 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/book/body.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
3 |
4 |
5 |
6 |
7 |
8 | My JSP 'body.jsp' starting page
9 |
10 |
11 |
12 |
13 |
14 |
15 |
18 |
19 |
20 |
21 |
22 | 图书管理
23 |
24 | 添加图书
25 | 高级搜索
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/css/book/add.css:
--------------------------------------------------------------------------------
1 | body {
2 | font-size: 10pt;
3 | color: #404040;
4 | font-family: SimSun;
5 | }
6 |
7 | table {
8 | font-size: 10pt;
9 | margin-top: 15px;
10 | margin-left: 50px;
11 | width: 680px;
12 | }
13 |
14 | td {
15 | height: 25px;
16 | }
17 |
18 | .tp {
19 | border: 1px solid #dcdcdc;
20 | float: left;
21 | }
22 |
23 | ul {
24 | list-style: none;
25 | }
26 |
27 | li {
28 | margin: 10px;
29 | }
30 |
31 | .btn {
32 | border: 0;
33 | width: 142px;
34 | height: 33px;
35 | margin-top: 10px;
36 | font-size: 18px;
37 | font-weight: 900;
38 | text-align: left;
39 | padding-top: 1px;
40 | padding-left: 32px;
41 | color: #fff;
42 | font-family: 黑体;
43 | }
44 |
45 | .btn1 {
46 | background: url(/goods/images/hong_2_btn.jpg) left top
47 | no-repeat;
48 | }
49 |
50 | .btn2 {
51 | background: url(/goods/images/hong_1_btn.jpg) left top
52 | no-repeat;
53 | }
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/css/book/left.css:
--------------------------------------------------------------------------------
1 | * {
2 | font-size: 10pt;
3 | text-align: center;
4 | }
5 |
6 | body {
7 | margin: 1px;
8 | }
9 |
10 | a {
11 | text-decoration: none;
12 | color: gray;
13 | font-weight: 900;
14 | }
15 |
16 | a:hover {
17 | text-decoration: underline;
18 | color: gray;
19 | }
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/css/book/main.css:
--------------------------------------------------------------------------------
1 | * {
2 | font-size: 10pt;
3 | }
4 |
5 | body {
6 | text-align: center;
7 | margin: 0px;
8 | }
9 |
10 | .table {
11 | width: 100%;
12 | height: 100%;
13 | border-collapse: collapse; /*单线的列表边框*/
14 | }
15 |
16 | .table td {
17 | border: 1px solid gray; /*固定边框,1像素*/
18 | }
19 |
20 | iframe {
21 | width: 100%;
22 | height: 100%;
23 | }
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/css/category/list.css:
--------------------------------------------------------------------------------
1 | body {
2 | background: rgb(254, 238, 189);
3 | }
4 |
5 | table {
6 | font-family: 宋体;
7 | font-size: 11pt;
8 | border-color: rgb(78, 78, 78);
9 | width: 60%;
10 | }
11 |
12 | td {
13 | padding: 5px;
14 | }
15 |
16 | .trTitle {
17 | background: rgb(78, 78, 78);
18 | color: #fff;
19 | }
20 |
21 | .trOneLevel {
22 | background-color: #fff;
23 | font-weight: 900;
24 | }
25 |
26 | .captionAddOneLevel {
27 | line-height: 30px;
28 | }
29 |
30 | .trTwoLevel {
31 | text-align: right;
32 | font-size: 10pt;
33 | }
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/css/main.css:
--------------------------------------------------------------------------------
1 | * {
2 | font-size: 10pt;
3 | }
4 |
5 | body {
6 | text-align: center;
7 | margin: 0px;
8 | }
9 |
10 | .table {
11 | width: 100%;
12 | height: 100%;
13 | border: 1px solid gray; /*固定边框,1像素*/
14 | border-collapse: collapse; /*单线的列表边框*/
15 | }
16 |
17 | .table td {
18 | border: 1px solid gray; /*固定边框,1像素*/
19 | }
20 |
21 | iframe {
22 | width: 100%;
23 | height: 100%;
24 | }
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/css/order/list.css:
--------------------------------------------------------------------------------
1 | table {
2 | font-size: 10pt;
3 | }
4 |
5 | td {
6 | padding-left: 5px;
7 | }
8 |
9 | body {
10 | font-size: 10pt;
11 | color: #404040;
12 | }
13 |
14 | .divMain {
15 | width: 1000px;
16 | margin-left: 150px;
17 | }
18 |
19 | .pLink {
20 | margin-left: 150px;
21 | }
22 |
23 | .title {
24 | border: 1px solid #d0d0d0;
25 | background: url(/goods/images/bg_btns.png) repeat-x;
26 | background-position: 0 -132px;
27 | margin-left: 2px;
28 | height: 30px;
29 | width: 99.8%;
30 | }
31 |
32 | .price_t {
33 | color: #c30;
34 | font-weight: bold;
35 | padding-right: 10px;
36 | font-family: Arial;
37 | font-size: 10pt;
38 | }
39 |
40 | .tt {
41 | background-color: #efeae5;
42 | height: 25px;
43 | font-family: Arial;
44 | color: #878787;
45 | }
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/index.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2 |
3 |
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/js/book/list.js:
--------------------------------------------------------------------------------
1 | $(function() {
2 | $(".inner").hover(function() {
3 | $(this).css("border", "3px solid #FFCFB1");
4 | }, function() {
5 | $(this).css("border", "3px solid #ffffff");
6 | });
7 | });
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/admin/msg.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
3 |
4 |
5 |
6 |
7 | My JSP 'mgs.jsp' starting page
8 |
9 |
10 |
11 |
12 |
13 |
14 |
17 |
18 |
19 |
22 |
23 | ${msg }
24 |
25 |
26 | - ${link }
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/goods/WebRoot/adminjsps/msg.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
3 |
4 |
5 |
6 |
7 | My JSP 'mgs.jsp' starting page
8 |
9 |
10 |
11 |
12 |
13 |
14 |
17 |
18 |
19 |
22 |
23 | ${msg }
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/abc.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/abc.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/bc.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/bc.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/bcc.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/bcc.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/beijingnongshang.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/beijingnongshang.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/bh.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/bh.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/bj.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/bj.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/ccb.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/ccb.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/cib.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/cib.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/cmb.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/cmb.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/cmbc.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/cmbc.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/dy.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/dy.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/gf.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/gf.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/guangda.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/guangda.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/hx.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/hx.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/icbc.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/icbc.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/nanjing.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/nanjing.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/ningbo.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/ningbo.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/pingan.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/pingan.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/post.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/post.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/sfz.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/sfz.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/sh.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/sh.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/shpd.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/shpd.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/zheshang.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/zheshang.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/bank_img/zx.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/bank_img/zx.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20285763-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20285763-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20285763-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20285763-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20412979-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20412979-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20412979-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20412979-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20417467-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20417467-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20417467-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20417467-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20420983-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20420983-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20420983-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20420983-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20446562-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20446562-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20446562-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20446562-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20459091-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20459091-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20459091-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20459091-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20500255-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20500255-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20500255-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20500255-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20637368-1_b_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20637368-1_b_2.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20637368-1_w_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20637368-1_w_2.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20756351-1_b_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20756351-1_b_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20756351-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20756351-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20773347-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20773347-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20773347-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20773347-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20810282-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20810282-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20810282-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20810282-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20813806-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20813806-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20813806-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20813806-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20915948-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20915948-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20915948-1_w_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20915948-1_w_3.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20928547-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20928547-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20928547-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20928547-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20988080-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20988080-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20988080-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20988080-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20991549-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20991549-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/20991549-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/20991549-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21006995-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21006995-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21006995-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21006995-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21049601-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21049601-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21049601-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21049601-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21108671-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21108671-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21108671-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21108671-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21110929-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21110929-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21110929-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21110929-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21110930-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21110930-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21110930-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21110930-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21117631-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21117631-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21117631-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21117631-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21118835-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21118835-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21118835-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21118835-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21122188-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21122188-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/21122188-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/21122188-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22577578-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22577578-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22577578-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22577578-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22579686-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22579686-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22579686-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22579686-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22588603-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22588603-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22588603-1_l.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22588603-1_l.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22588603-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22588603-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22605701-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22605701-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22605701-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22605701-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22606835-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22606835-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22606835-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22606835-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22606836-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22606836-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22606836-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22606836-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22623020-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22623020-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22623020-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22623020-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22623766-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22623766-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22623766-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22623766-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22628333-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22628333-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22628333-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22628333-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22633574-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22633574-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22633574-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22633574-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22638286-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22638286-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22638286-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22638286-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22685703-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22685703-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22685703-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22685703-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22692811-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22692811-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22692811-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22692811-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22717349-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22717349-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22717349-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22717349-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22722790-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22722790-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22722790-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22722790-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22757564-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22757564-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22757564-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22757564-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22783904-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22783904-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22783904-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22783904-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22786088-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22786088-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22786088-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22786088-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22788412-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22788412-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22788412-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22788412-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22813026-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22813026-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22813026-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22813026-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22819430-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22819430-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22819430-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22819430-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22839309-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22839309-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22839309-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22839309-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22844118-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22844118-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22844118-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22844118-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22847009-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22847009-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22847009-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22847009-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862056-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862056-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862056-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862056-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862057-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862057-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862057-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862057-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862060-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862060-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862060-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862060-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862061-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862061-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22862061-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22862061-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22868759-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22868759-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22868759-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22868759-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22872884-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22872884-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22872884-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22872884-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22873894-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22873894-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22873894-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22873894-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22881618-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22881618-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22881618-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22881618-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22881803-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22881803-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22881803-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22881803-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22886581-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22886581-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22886581-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22886581-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22910975-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22910975-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22910975-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22910975-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22928649-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22928649-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22928649-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22928649-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22938396-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22938396-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22938396-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22938396-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22938474-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22938474-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/22938474-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/22938474-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23042420-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23042420-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23042420-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23042420-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23169892-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23169892-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23169892-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23169892-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23179003-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23179003-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23179003-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23179003-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23184673-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23184673-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23184673-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23184673-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23200995-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23200995-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23200995-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23200995-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23201813-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23201813-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23201813-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23201813-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23219358-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23219358-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23219358-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23219358-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23219731-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23219731-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23219731-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23219731-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23224089-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23224089-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23224089-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23224089-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23239786-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23239786-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23239786-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23239786-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23252196-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23252196-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23252196-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23252196-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23254532-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23254532-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23254532-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23254532-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23259731-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23259731-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23259731-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23259731-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23263012-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23263012-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23263012-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23263012-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23266270-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23266270-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23266270-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23266270-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23266633-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23266633-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23266633-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23266633-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23266635-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23266635-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23266635-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23266635-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23268958-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23268958-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23268958-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23268958-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23280478-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23280478-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23280478-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23280478-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23280479-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23280479-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23280479-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23280479-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23301847-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23301847-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23301847-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23301847-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23329703-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23329703-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23329703-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23329703-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23339643-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23339643-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23339643-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23339643-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23348683-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23348683-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23348683-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23348683-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23351049-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23351049-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23351049-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23351049-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23362142-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23362142-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23362142-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23362142-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23363997-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23363997-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23363997-1_w_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23363997-1_w_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23368351-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23368351-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/23368351-1_w_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/23368351-1_w_2.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/696673-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/696673-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/696673-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/696673-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9062293-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9062293-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9062293-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9062293-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9186890-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9186890-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9186890-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9186890-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9265169-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9265169-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9265169-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9265169-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9288920-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9288920-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9288920-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9288920-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9317290-1_b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9317290-1_b.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/9317290-1_w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/9317290-1_w.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/book_img/book1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/book_img/book1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/css/css.css:
--------------------------------------------------------------------------------
1 | a {text-decoration: none; color: #018BD3;}
2 | a:visited {color: #018BD3;}
3 | a:hover {color:#FF6600; text-decoration: underline;}
--------------------------------------------------------------------------------
/goods/WebRoot/images/20131225111747348.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/20131225111747348.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/all.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/bg_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/bg_1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/bg_btns.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/bg_btns.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/bt_02.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/bt_02.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/btn.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/btn.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/images/btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/btn.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/cart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/cart.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/confirm.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/confirm.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/csdn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/csdn.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/cuohao.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/cuohao.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/duihao.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/duihao.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/error.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/hei_1_btn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/hei_1_btn.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/hong_1_btn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/hong_1_btn.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/hong_2_btn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/hong_2_btn.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/huang_1_btn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/huang_1_btn.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/huang_2_btn.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/huang_2_btn.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/icon.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/icon2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/icon2.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/icon_empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/icon_empty.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/itcast_link.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/itcast_link.gif
--------------------------------------------------------------------------------
/goods/WebRoot/images/login1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/login1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/login2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/login2.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/login_sprites_20110808.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/login_sprites_20110808.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/logo.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/logo.gif
--------------------------------------------------------------------------------
/goods/WebRoot/images/mhzxxls.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/mhzxxls.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/paginating_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/paginating_bg.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/qd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/qd.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/regist1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/regist1.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/regist2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/regist2.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/register_btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/register_btn.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/select_key_star_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/select_key_star_bg.png
--------------------------------------------------------------------------------
/goods/WebRoot/images/sprites_orderdetails.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/sprites_orderdetails.gif
--------------------------------------------------------------------------------
/goods/WebRoot/images/star.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/star.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/welcome.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/welcome.jpg
--------------------------------------------------------------------------------
/goods/WebRoot/images/zj.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/images/zj.png
--------------------------------------------------------------------------------
/goods/WebRoot/index.jsp:
--------------------------------------------------------------------------------
1 | <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
2 |
3 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/calendar-green.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/calendar-green.gif
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/calendar.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/calendar.gif
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/calendar.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 | $('.dateClassStyle').datepick({dateFormat: 'yy-mm-dd'});
3 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/btn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/btn.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/images/新建位图图像.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/base/images/新建位图图像.bmp
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI CSS Framework 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Theming
9 | */
10 | @import "jquery.ui.base.css";
11 | @import "jquery.ui.theme.css";
12 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | @import url("jquery.ui.core.css");
2 | @import url("jquery.ui.resizable.css");
3 | @import url("jquery.ui.selectable.css");
4 | @import url("jquery.ui.accordion.css");
5 | @import url("jquery.ui.autocomplete.css");
6 | @import url("jquery.ui.button.css");
7 | @import url("jquery.ui.dialog.css");
8 | @import url("jquery.ui.slider.css");
9 | @import url("jquery.ui.tabs.css");
10 | @import url("jquery.ui.datepicker.css");
11 | @import url("jquery.ui.progressbar.css");
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Progressbar 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Progressbar#theming
9 | */
10 | .ui-progressbar { height:2em; text-align: left; }
11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/base/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Selectable 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Selectable#theming
9 | */
10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
11 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_228ef1_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/images/ui-icons_ffffff_256x240.png
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI CSS Framework 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Theming
9 | */
10 | @import "jquery.ui.base.css";
11 | @import "jquery.ui.theme.css";
12 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | @import url("jquery.ui.core.css");
2 | @import url("jquery.ui.resizable.css");
3 | @import url("jquery.ui.selectable.css");
4 | @import url("jquery.ui.accordion.css");
5 | @import url("jquery.ui.autocomplete.css");
6 | @import url("jquery.ui.button.css");
7 | @import url("jquery.ui.dialog.css");
8 | @import url("jquery.ui.slider.css");
9 | @import url("jquery.ui.tabs.css");
10 | @import url("jquery.ui.datepicker.css");
11 | @import url("jquery.ui.progressbar.css");
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Progressbar 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Progressbar#theming
9 | */
10 | .ui-progressbar { height:2em; text-align: left; }
11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/themes/ui-lightness/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Selectable 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Selectable#theming
9 | */
10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
11 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-af.js:
--------------------------------------------------------------------------------
1 | /* Afrikaans initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Renier Pretorius. */
3 | jQuery(function($){
4 | $.datepicker.regional['af'] = {
5 | closeText: 'Selekteer',
6 | prevText: 'Vorige',
7 | nextText: 'Volgende',
8 | currentText: 'Vandag',
9 | monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie',
10 | 'Julie','Augustus','September','Oktober','November','Desember'],
11 | monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun',
12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'],
13 | dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'],
14 | dayNamesShort: ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'],
15 | dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['af']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-az.js:
--------------------------------------------------------------------------------
1 | /* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Jamil Najafov (necefov33@gmail.com). */
3 | jQuery(function($) {
4 | $.datepicker.regional['az'] = {
5 | closeText: 'Bağla',
6 | prevText: '<Geri',
7 | nextText: 'İrəli>',
8 | currentText: 'Bugün',
9 | monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun',
10 | 'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'],
11 | monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun',
12 | 'İyul','Avq','Sen','Okt','Noy','Dek'],
13 | dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'],
14 | dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'],
15 | dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'],
16 | weekHeader: 'Hf',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['az']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-bs.js:
--------------------------------------------------------------------------------
1 | /* Bosnian i18n for the jQuery UI date picker plugin. */
2 | /* Written by Kenan Konjo. */
3 | jQuery(function($){
4 | $.datepicker.regional['bs'] = {
5 | closeText: 'Zatvori',
6 | prevText: '<',
7 | nextText: '>',
8 | currentText: 'Danas',
9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni',
10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
12 | 'Jul','Aug','Sep','Okt','Nov','Dec'],
13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'],
14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'],
15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['bs']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ca.js:
--------------------------------------------------------------------------------
1 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */
2 | /* Writers: (joan.leon@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ca'] = {
5 | closeText: 'Tancar',
6 | prevText: '<Ant',
7 | nextText: 'Seg>',
8 | currentText: 'Avui',
9 | monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny',
10 | 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'],
11 | monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun',
12 | 'Jul','Ago','Set','Oct','Nov','Des'],
13 | dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'],
14 | dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'],
15 | dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'],
16 | weekHeader: 'Sm',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['ca']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-cs.js:
--------------------------------------------------------------------------------
1 | /* Czech initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Tomas Muller (tomas@tomas-muller.net). */
3 | jQuery(function($){
4 | $.datepicker.regional['cs'] = {
5 | closeText: 'Zavřít',
6 | prevText: '<Dříve',
7 | nextText: 'Později>',
8 | currentText: 'Nyní',
9 | monthNames: ['leden','únor','březen','duben','květen','červen',
10 | 'červenec','srpen','září','říjen','listopad','prosinec'],
11 | monthNamesShort: ['led','úno','bře','dub','kvě','čer',
12 | 'čvc','srp','zář','říj','lis','pro'],
13 | dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'],
14 | dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],
15 | dayNamesMin: ['ne','po','út','st','čt','pá','so'],
16 | weekHeader: 'Týd',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['cs']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-da.js:
--------------------------------------------------------------------------------
1 | /* Danish initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Jan Christensen ( deletestuff@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['da'] = {
5 | closeText: 'Luk',
6 | prevText: '<Forrige',
7 | nextText: 'Næste>',
8 | currentText: 'Idag',
9 | monthNames: ['Januar','Februar','Marts','April','Maj','Juni',
10 | 'Juli','August','September','Oktober','November','December'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
12 | 'Jul','Aug','Sep','Okt','Nov','Dec'],
13 | dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
14 | dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
15 | dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
16 | weekHeader: 'Uge',
17 | dateFormat: 'dd-mm-yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['da']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-de.js:
--------------------------------------------------------------------------------
1 | /* German initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Milian Wolff (mail@milianw.de). */
3 | jQuery(function($){
4 | $.datepicker.regional['de'] = {
5 | closeText: 'schließen',
6 | prevText: '<zurück',
7 | nextText: 'Vor>',
8 | currentText: 'heute',
9 | monthNames: ['Januar','Februar','März','April','Mai','Juni',
10 | 'Juli','August','September','Oktober','November','Dezember'],
11 | monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
12 | 'Jul','Aug','Sep','Okt','Nov','Dez'],
13 | dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
14 | dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
15 | dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
16 | weekHeader: 'Wo',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['de']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-el.js:
--------------------------------------------------------------------------------
1 | /* Greek (el) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Alex Cicovic (http://www.alexcicovic.com) */
3 | jQuery(function($){
4 | $.datepicker.regional['el'] = {
5 | closeText: 'Κλείσιμο',
6 | prevText: 'Προηγούμενος',
7 | nextText: 'Επόμενος',
8 | currentText: 'Τρέχων Μήνας',
9 | monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος',
10 | 'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'],
11 | monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν',
12 | 'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'],
13 | dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'],
14 | dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'],
15 | dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'],
16 | weekHeader: 'Εβδ',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['el']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-en-AU.js:
--------------------------------------------------------------------------------
1 | /* English/Australia initialisation for the jQuery UI date picker plugin. */
2 | /* Based on the en-GB initialisation. */
3 | jQuery(function($){
4 | $.datepicker.regional['en-AU'] = {
5 | closeText: 'Done',
6 | prevText: 'Prev',
7 | nextText: 'Next',
8 | currentText: 'Today',
9 | monthNames: ['January','February','March','April','May','June',
10 | 'July','August','September','October','November','December'],
11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['en-AU']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-en-GB.js:
--------------------------------------------------------------------------------
1 | /* English/UK initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Stuart. */
3 | jQuery(function($){
4 | $.datepicker.regional['en-GB'] = {
5 | closeText: 'Done',
6 | prevText: 'Prev',
7 | nextText: 'Next',
8 | currentText: 'Today',
9 | monthNames: ['January','February','March','April','May','June',
10 | 'July','August','September','October','November','December'],
11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['en-GB']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-en-NZ.js:
--------------------------------------------------------------------------------
1 | /* English/New Zealand initialisation for the jQuery UI date picker plugin. */
2 | /* Based on the en-GB initialisation. */
3 | jQuery(function($){
4 | $.datepicker.regional['en-NZ'] = {
5 | closeText: 'Done',
6 | prevText: 'Prev',
7 | nextText: 'Next',
8 | currentText: 'Today',
9 | monthNames: ['January','February','March','April','May','June',
10 | 'July','August','September','October','November','December'],
11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['en-NZ']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-eo.js:
--------------------------------------------------------------------------------
1 | /* Esperanto initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Olivier M. (olivierweb@ifrance.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['eo'] = {
5 | closeText: 'Fermi',
6 | prevText: '<Anta',
7 | nextText: 'Sekv>',
8 | currentText: 'Nuna',
9 | monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio',
10 | 'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
12 | 'Jul','Aŭg','Sep','Okt','Nov','Dec'],
13 | dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'],
14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'],
15 | dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'],
16 | weekHeader: 'Sb',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['eo']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-es.js:
--------------------------------------------------------------------------------
1 | /* Inicialización en español para la extensión 'UI date picker' para jQuery. */
2 | /* Traducido por Vester (xvester@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['es'] = {
5 | closeText: 'Cerrar',
6 | prevText: '<Ant',
7 | nextText: 'Sig>',
8 | currentText: 'Hoy',
9 | monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
10 | 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
11 | monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
12 | 'Jul','Ago','Sep','Oct','Nov','Dic'],
13 | dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
14 | dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
15 | dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
16 | weekHeader: 'Sm',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['es']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-et.js:
--------------------------------------------------------------------------------
1 | /* Estonian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Mart Sõmermaa (mrts.pydev at gmail com). */
3 | jQuery(function($){
4 | $.datepicker.regional['et'] = {
5 | closeText: 'Sulge',
6 | prevText: 'Eelnev',
7 | nextText: 'Järgnev',
8 | currentText: 'Täna',
9 | monthNames: ['Jaanuar','Veebruar','Märts','Aprill','Mai','Juuni',
10 | 'Juuli','August','September','Oktoober','November','Detsember'],
11 | monthNamesShort: ['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni',
12 | 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'],
13 | dayNames: ['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'],
14 | dayNamesShort: ['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'],
15 | dayNamesMin: ['P','E','T','K','N','R','L'],
16 | weekHeader: 'Sm',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['et']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-eu.js:
--------------------------------------------------------------------------------
1 | /* Euskarako oinarria 'UI date picker' jquery-ko extentsioarentzat */
2 | /* Karrikas-ek itzulia (karrikas@karrikas.com) */
3 | jQuery(function($){
4 | $.datepicker.regional['eu'] = {
5 | closeText: 'Egina',
6 | prevText: '<Aur',
7 | nextText: 'Hur>',
8 | currentText: 'Gaur',
9 | monthNames: ['Urtarrila','Otsaila','Martxoa','Apirila','Maiatza','Ekaina',
10 | 'Uztaila','Abuztua','Iraila','Urria','Azaroa','Abendua'],
11 | monthNamesShort: ['Urt','Ots','Mar','Api','Mai','Eka',
12 | 'Uzt','Abu','Ira','Urr','Aza','Abe'],
13 | dayNames: ['Igandea','Astelehena','Asteartea','Asteazkena','Osteguna','Ostirala','Larunbata'],
14 | dayNamesShort: ['Iga','Ast','Ast','Ast','Ost','Ost','Lar'],
15 | dayNamesMin: ['Ig','As','As','As','Os','Os','La'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'yy/mm/dd',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['eu']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-fa.js:
--------------------------------------------------------------------------------
1 | /* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
2 | /* Javad Mowlanezhad -- jmowla@gmail.com */
3 | /* Jalali calendar should supported soon! (Its implemented but I have to test it) */
4 | jQuery(function($) {
5 | $.datepicker.regional['fa'] = {
6 | closeText: 'بستن',
7 | prevText: '<قبلي',
8 | nextText: 'بعدي>',
9 | currentText: 'امروز',
10 | monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور',
11 | 'مهر','آبان','آذر','دي','بهمن','اسفند'],
12 | monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
13 | dayNames: ['يکشنبه','دوشنبه','سهشنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'],
14 | dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'],
15 | dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'],
16 | weekHeader: 'هف',
17 | dateFormat: 'yy/mm/dd',
18 | firstDay: 6,
19 | isRTL: true,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['fa']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-fo.js:
--------------------------------------------------------------------------------
1 | /* Faroese initialisation for the jQuery UI date picker plugin */
2 | /* Written by Sverri Mohr Olsen, sverrimo@gmail.com */
3 | jQuery(function($){
4 | $.datepicker.regional['fo'] = {
5 | closeText: 'Lat aftur',
6 | prevText: '<Fyrra',
7 | nextText: 'Næsta>',
8 | currentText: 'Í dag',
9 | monthNames: ['Januar','Februar','Mars','Apríl','Mei','Juni',
10 | 'Juli','August','September','Oktober','November','Desember'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
12 | 'Jul','Aug','Sep','Okt','Nov','Des'],
13 | dayNames: ['Sunnudagur','Mánadagur','Týsdagur','Mikudagur','Hósdagur','Fríggjadagur','Leyardagur'],
14 | dayNamesShort: ['Sun','Mán','Týs','Mik','Hós','Frí','Ley'],
15 | dayNamesMin: ['Su','Má','Tý','Mi','Hó','Fr','Le'],
16 | weekHeader: 'Vk',
17 | dateFormat: 'dd-mm-yy',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['fo']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-fr-CH.js:
--------------------------------------------------------------------------------
1 | /* Swiss-French initialisation for the jQuery UI date picker plugin. */
2 | /* Written Martin Voelkle (martin.voelkle@e-tc.ch). */
3 | jQuery(function($){
4 | $.datepicker.regional['fr-CH'] = {
5 | closeText: 'Fermer',
6 | prevText: '<Préc',
7 | nextText: 'Suiv>',
8 | currentText: 'Courant',
9 | monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
10 | 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
11 | monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
12 | 'Jul','Aoû','Sep','Oct','Nov','Déc'],
13 | dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
15 | dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
16 | weekHeader: 'Sm',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['fr-CH']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-gl.js:
--------------------------------------------------------------------------------
1 | /* Galician localization for 'UI date picker' jQuery extension. */
2 | /* Translated by Jorge Barreiro . */
3 | jQuery(function($){
4 | $.datepicker.regional['gl'] = {
5 | closeText: 'Pechar',
6 | prevText: '<Ant',
7 | nextText: 'Seg>',
8 | currentText: 'Hoxe',
9 | monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño',
10 | 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'],
11 | monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ',
12 | 'Xul','Ago','Set','Out','Nov','Dec'],
13 | dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'],
14 | dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'],
15 | dayNamesMin: ['Do','Lu','Ma','Mé','Xo','Ve','Sá'],
16 | weekHeader: 'Sm',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['gl']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-he.js:
--------------------------------------------------------------------------------
1 | /* Hebrew initialisation for the UI Datepicker extension. */
2 | /* Written by Amir Hardon (ahardon at gmail dot com). */
3 | jQuery(function($){
4 | $.datepicker.regional['he'] = {
5 | closeText: 'סגור',
6 | prevText: '<הקודם',
7 | nextText: 'הבא>',
8 | currentText: 'היום',
9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
11 | monthNamesShort: ['1','2','3','4','5','6',
12 | '7','8','9','10','11','12'],
13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: true,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['he']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-hr.js:
--------------------------------------------------------------------------------
1 | /* Croatian i18n for the jQuery UI date picker plugin. */
2 | /* Written by Vjekoslav Nesek. */
3 | jQuery(function($){
4 | $.datepicker.regional['hr'] = {
5 | closeText: 'Zatvori',
6 | prevText: '<',
7 | nextText: '>',
8 | currentText: 'Danas',
9 | monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj',
10 | 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'],
11 | monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip',
12 | 'Srp','Kol','Ruj','Lis','Stu','Pro'],
13 | dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'],
14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'],
15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
16 | weekHeader: 'Tje',
17 | dateFormat: 'dd.mm.yy.',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['hr']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-hy.js:
--------------------------------------------------------------------------------
1 | /* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/
3 | jQuery(function($){
4 | $.datepicker.regional['hy'] = {
5 | closeText: 'Փակել',
6 | prevText: '<Նախ.',
7 | nextText: 'Հաջ.>',
8 | currentText: 'Այսօր',
9 | monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս',
10 | 'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'],
11 | monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս',
12 | 'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'],
13 | dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'],
14 | dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
15 | dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
16 | weekHeader: 'ՇԲՏ',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['hy']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-id.js:
--------------------------------------------------------------------------------
1 | /* Indonesian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Deden Fathurahman (dedenf@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['id'] = {
5 | closeText: 'Tutup',
6 | prevText: '<mundur',
7 | nextText: 'maju>',
8 | currentText: 'hari ini',
9 | monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
10 | 'Juli','Agustus','September','Oktober','Nopember','Desember'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
12 | 'Jul','Agus','Sep','Okt','Nop','Des'],
13 | dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
14 | dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
15 | dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
16 | weekHeader: 'Mg',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['id']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-it.js:
--------------------------------------------------------------------------------
1 | /* Italian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Antonello Pasella (antonello.pasella@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['it'] = {
5 | closeText: 'Chiudi',
6 | prevText: '<Prec',
7 | nextText: 'Succ>',
8 | currentText: 'Oggi',
9 | monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
10 | 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
11 | monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
12 | 'Lug','Ago','Set','Ott','Nov','Dic'],
13 | dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'],
14 | dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
15 | dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'],
16 | weekHeader: 'Sm',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['it']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ja.js:
--------------------------------------------------------------------------------
1 | /* Japanese initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ja'] = {
5 | closeText: '閉じる',
6 | prevText: '<前',
7 | nextText: '次>',
8 | currentText: '今日',
9 | monthNames: ['1月','2月','3月','4月','5月','6月',
10 | '7月','8月','9月','10月','11月','12月'],
11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月',
12 | '7月','8月','9月','10月','11月','12月'],
13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
14 | dayNamesShort: ['日','月','火','水','木','金','土'],
15 | dayNamesMin: ['日','月','火','水','木','金','土'],
16 | weekHeader: '週',
17 | dateFormat: 'yy/mm/dd',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: true,
21 | yearSuffix: '年'};
22 | $.datepicker.setDefaults($.datepicker.regional['ja']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ko.js:
--------------------------------------------------------------------------------
1 | /* Korean initialisation for the jQuery calendar extension. */
2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ko'] = {
5 | closeText: '닫기',
6 | prevText: '이전달',
7 | nextText: '다음달',
8 | currentText: '오늘',
9 | monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
10 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
11 | monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
12 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
13 | dayNames: ['일','월','화','수','목','금','토'],
14 | dayNamesShort: ['일','월','화','수','목','금','토'],
15 | dayNamesMin: ['일','월','화','수','목','금','토'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'yy-mm-dd',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: '년'};
22 | $.datepicker.setDefaults($.datepicker.regional['ko']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-kz.js:
--------------------------------------------------------------------------------
1 | /* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['kz'] = {
5 | closeText: 'Жабу',
6 | prevText: '<Алдыңғы',
7 | nextText: 'Келесі>',
8 | currentText: 'Бүгін',
9 | monthNames: ['Қаңтар','Ақпан','Наурыз','Сәуір','Мамыр','Маусым',
10 | 'Шілде','Тамыз','Қыркүйек','Қазан','Қараша','Желтоқсан'],
11 | monthNamesShort: ['Қаң','Ақп','Нау','Сәу','Мам','Мау',
12 | 'Шіл','Там','Қыр','Қаз','Қар','Жел'],
13 | dayNames: ['Жексенбі','Дүйсенбі','Сейсенбі','Сәрсенбі','Бейсенбі','Жұма','Сенбі'],
14 | dayNamesShort: ['жкс','дсн','ссн','срс','бсн','жма','снб'],
15 | dayNamesMin: ['Жк','Дс','Сс','Ср','Бс','Жм','Сн'],
16 | weekHeader: 'Не',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['kz']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-lt.js:
--------------------------------------------------------------------------------
1 | /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* @author Arturas Paleicikas */
3 | jQuery(function($){
4 | $.datepicker.regional['lt'] = {
5 | closeText: 'Uždaryti',
6 | prevText: '<Atgal',
7 | nextText: 'Pirmyn>',
8 | currentText: 'Šiandien',
9 | monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis',
10 | 'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'],
11 | monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir',
12 | 'Lie','Rugp','Rugs','Spa','Lap','Gru'],
13 | dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'],
14 | dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'],
15 | dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'yy-mm-dd',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['lt']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-lv.js:
--------------------------------------------------------------------------------
1 | /* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* @author Arturas Paleicikas */
3 | jQuery(function($){
4 | $.datepicker.regional['lv'] = {
5 | closeText: 'Aizvērt',
6 | prevText: 'Iepr',
7 | nextText: 'Nāka',
8 | currentText: 'Šodien',
9 | monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs',
10 | 'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn',
12 | 'Jūl','Aug','Sep','Okt','Nov','Dec'],
13 | dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'],
14 | dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'],
15 | dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'],
16 | weekHeader: 'Nav',
17 | dateFormat: 'dd-mm-yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['lv']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ml.js:
--------------------------------------------------------------------------------
1 | /* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Saji Nediyanchath (saji89@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ml'] = {
5 | closeText: 'ശരി',
6 | prevText: 'മുന്നത്തെ',
7 | nextText: 'അടുത്തത് ',
8 | currentText: 'ഇന്ന്',
9 | monthNames: ['ജനുവരി','ഫെബ്രുവരി','മാര്ച്ച്','ഏപ്രില്','മേയ്','ജൂണ്',
10 | 'ജൂലൈ','ആഗസ്റ്റ്','സെപ്റ്റംബര്','ഒക്ടോബര്','നവംബര്','ഡിസംബര്'],
11 | monthNamesShort: ['ജനു', 'ഫെബ്', 'മാര്', 'ഏപ്രി', 'മേയ്', 'ജൂണ്',
12 | 'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'],
13 | dayNames: ['ഞായര്', 'തിങ്കള്', 'ചൊവ്വ', 'ബുധന്', 'വ്യാഴം', 'വെള്ളി', 'ശനി'],
14 | dayNamesShort: ['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'],
15 | dayNamesMin: ['ഞാ','തി','ചൊ','ബു','വ്യാ','വെ','ശ'],
16 | weekHeader: 'ആ',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['ml']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ms.js:
--------------------------------------------------------------------------------
1 | /* Malaysian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
3 | jQuery(function($){
4 | $.datepicker.regional['ms'] = {
5 | closeText: 'Tutup',
6 | prevText: '<Sebelum',
7 | nextText: 'Selepas>',
8 | currentText: 'hari ini',
9 | monthNames: ['Januari','Februari','Mac','April','Mei','Jun',
10 | 'Julai','Ogos','September','Oktober','November','Disember'],
11 | monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun',
12 | 'Jul','Ogo','Sep','Okt','Nov','Dis'],
13 | dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'],
14 | dayNamesShort: ['Aha','Isn','Sel','Rab','kha','Jum','Sab'],
15 | dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'],
16 | weekHeader: 'Mg',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['ms']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-nl.js:
--------------------------------------------------------------------------------
1 | /* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Mathias Bynens */
3 | jQuery(function($){
4 | $.datepicker.regional.nl = {
5 | closeText: 'Sluiten',
6 | prevText: '←',
7 | nextText: '→',
8 | currentText: 'Vandaag',
9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
11 | monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun',
12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd-mm-yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional.nl);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-no.js:
--------------------------------------------------------------------------------
1 | /* Norwegian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Naimdjon Takhirov (naimdjon@gmail.com). */
3 |
4 | jQuery(function($){
5 | $.datepicker.regional['no'] = {
6 | closeText: 'Lukk',
7 | prevText: '«Forrige',
8 | nextText: 'Neste»',
9 | currentText: 'I dag',
10 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'],
11 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'],
12 | dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'],
13 | dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'],
14 | dayNamesMin: ['sø','ma','ti','on','to','fr','lø'],
15 | weekHeader: 'Uke',
16 | dateFormat: 'dd.mm.yy',
17 | firstDay: 1,
18 | isRTL: false,
19 | showMonthAfterYear: false,
20 | yearSuffix: ''
21 | };
22 | $.datepicker.setDefaults($.datepicker.regional['no']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-pl.js:
--------------------------------------------------------------------------------
1 | /* Polish initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['pl'] = {
5 | closeText: 'Zamknij',
6 | prevText: '<Poprzedni',
7 | nextText: 'Następny>',
8 | currentText: 'Dziś',
9 | monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec',
10 | 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'],
11 | monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze',
12 | 'Lip','Sie','Wrz','Pa','Lis','Gru'],
13 | dayNames: ['Niedziela','Poniedziałek','Wtorek','Środa','Czwartek','Piątek','Sobota'],
14 | dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'],
15 | dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'],
16 | weekHeader: 'Tydz',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['pl']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-pt.js:
--------------------------------------------------------------------------------
1 | /* Portuguese initialisation for the jQuery UI date picker plugin. */
2 | jQuery(function($){
3 | $.datepicker.regional['pt'] = {
4 | closeText: 'Fechar',
5 | prevText: '<Anterior',
6 | nextText: 'Seguinte',
7 | currentText: 'Hoje',
8 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
9 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
10 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun',
11 | 'Jul','Ago','Set','Out','Nov','Dez'],
12 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'],
13 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
14 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'],
15 | weekHeader: 'Sem',
16 | dateFormat: 'dd/mm/yy',
17 | firstDay: 0,
18 | isRTL: false,
19 | showMonthAfterYear: false,
20 | yearSuffix: ''};
21 | $.datepicker.setDefaults($.datepicker.regional['pt']);
22 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-rm.js:
--------------------------------------------------------------------------------
1 | /* Romansh initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */
3 | jQuery(function($){
4 | $.datepicker.regional['rm'] = {
5 | closeText: 'Serrar',
6 | prevText: '<Suandant',
7 | nextText: 'Precedent>',
8 | currentText: 'Actual',
9 | monthNames: ['Schaner','Favrer','Mars','Avrigl','Matg','Zercladur', 'Fanadur','Avust','Settember','October','November','December'],
10 | monthNamesShort: ['Scha','Fev','Mar','Avr','Matg','Zer', 'Fan','Avu','Sett','Oct','Nov','Dec'],
11 | dayNames: ['Dumengia','Glindesdi','Mardi','Mesemna','Gievgia','Venderdi','Sonda'],
12 | dayNamesShort: ['Dum','Gli','Mar','Mes','Gie','Ven','Som'],
13 | dayNamesMin: ['Du','Gl','Ma','Me','Gi','Ve','So'],
14 | weekHeader: 'emna',
15 | dateFormat: 'dd/mm/yy',
16 | firstDay: 1,
17 | isRTL: false,
18 | showMonthAfterYear: false,
19 | yearSuffix: ''};
20 | $.datepicker.setDefaults($.datepicker.regional['rm']);
21 | });
22 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ru.js:
--------------------------------------------------------------------------------
1 | /* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Andrew Stromnov (stromnov@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ru'] = {
5 | closeText: 'Закрыть',
6 | prevText: '<Пред',
7 | nextText: 'След>',
8 | currentText: 'Сегодня',
9 | monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь',
10 | 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн',
12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'],
13 | dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
14 | dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'],
15 | dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
16 | weekHeader: 'Нед',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['ru']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-sk.js:
--------------------------------------------------------------------------------
1 | /* Slovak initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Vojtech Rinik (vojto@hmm.sk). */
3 | jQuery(function($){
4 | $.datepicker.regional['sk'] = {
5 | closeText: 'Zavrieť',
6 | prevText: '<Predchádzajúci',
7 | nextText: 'Nasledujúci>',
8 | currentText: 'Dnes',
9 | monthNames: ['Január','Február','Marec','Apríl','Máj','Jún',
10 | 'Júl','August','September','Október','November','December'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún',
12 | 'Júl','Aug','Sep','Okt','Nov','Dec'],
13 | dayNames: ['Nedeľa','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'],
14 | dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'],
15 | dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'],
16 | weekHeader: 'Ty',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['sk']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-sq.js:
--------------------------------------------------------------------------------
1 | /* Albanian initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Flakron Bytyqi (flakron@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['sq'] = {
5 | closeText: 'mbylle',
6 | prevText: '<mbrapa',
7 | nextText: 'Përpara>',
8 | currentText: 'sot',
9 | monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor',
10 | 'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'],
11 | monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer',
12 | 'Kor','Gus','Sht','Tet','Nën','Dhj'],
13 | dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'],
14 | dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'],
15 | dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'],
16 | weekHeader: 'Ja',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['sq']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-sr-SR.js:
--------------------------------------------------------------------------------
1 | /* Serbian i18n for the jQuery UI date picker plugin. */
2 | /* Written by Dejan Dimić. */
3 | jQuery(function($){
4 | $.datepicker.regional['sr-SR'] = {
5 | closeText: 'Zatvori',
6 | prevText: '<',
7 | nextText: '>',
8 | currentText: 'Danas',
9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun',
10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
12 | 'Jul','Avg','Sep','Okt','Nov','Dec'],
13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'],
14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'],
15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
16 | weekHeader: 'Sed',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-sr.js:
--------------------------------------------------------------------------------
1 | /* Serbian i18n for the jQuery UI date picker plugin. */
2 | /* Written by Dejan Dimić. */
3 | jQuery(function($){
4 | $.datepicker.regional['sr'] = {
5 | closeText: 'Затвори',
6 | prevText: '<',
7 | nextText: '>',
8 | currentText: 'Данас',
9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун',
10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'],
11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун',
12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'],
13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'],
14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'],
15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'],
16 | weekHeader: 'Сед',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['sr']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-sv.js:
--------------------------------------------------------------------------------
1 | /* Swedish initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Anders Ekdahl ( anders@nomadiz.se). */
3 | jQuery(function($){
4 | $.datepicker.regional['sv'] = {
5 | closeText: 'Stäng',
6 | prevText: '«Förra',
7 | nextText: 'Nästa»',
8 | currentText: 'Idag',
9 | monthNames: ['Januari','Februari','Mars','April','Maj','Juni',
10 | 'Juli','Augusti','September','Oktober','November','December'],
11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
12 | 'Jul','Aug','Sep','Okt','Nov','Dec'],
13 | dayNamesShort: ['Sön','Mån','Tis','Ons','Tor','Fre','Lör'],
14 | dayNames: ['Söndag','Måndag','Tisdag','Onsdag','Torsdag','Fredag','Lördag'],
15 | dayNamesMin: ['Sö','Må','Ti','On','To','Fr','Lö'],
16 | weekHeader: 'Ve',
17 | dateFormat: 'yy-mm-dd',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['sv']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-ta.js:
--------------------------------------------------------------------------------
1 | /* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by S A Sureshkumar (saskumar@live.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['ta'] = {
5 | closeText: 'மூடு',
6 | prevText: 'முன்னையது',
7 | nextText: 'அடுத்தது',
8 | currentText: 'இன்று',
9 | monthNames: ['தை','மாசி','பங்குனி','சித்திரை','வைகாசி','ஆனி',
10 | 'ஆடி','ஆவணி','புரட்டாசி','ஐப்பசி','கார்த்திகை','மார்கழி'],
11 | monthNamesShort: ['தை','மாசி','பங்','சித்','வைகா','ஆனி',
12 | 'ஆடி','ஆவ','புர','ஐப்','கார்','மார்'],
13 | dayNames: ['ஞாயிற்றுக்கிழமை','திங்கட்கிழமை','செவ்வாய்க்கிழமை','புதன்கிழமை','வியாழக்கிழமை','வெள்ளிக்கிழமை','சனிக்கிழமை'],
14 | dayNamesShort: ['ஞாயிறு','திங்கள்','செவ்வாய்','புதன்','வியாழன்','வெள்ளி','சனி'],
15 | dayNamesMin: ['ஞா','தி','செ','பு','வி','வெ','ச'],
16 | weekHeader: 'Не',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['ta']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-th.js:
--------------------------------------------------------------------------------
1 | /* Thai initialisation for the jQuery UI date picker plugin. */
2 | /* Written by pipo (pipo@sixhead.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['th'] = {
5 | closeText: 'ปิด',
6 | prevText: '« ย้อน',
7 | nextText: 'ถัดไป »',
8 | currentText: 'วันนี้',
9 | monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน',
10 | 'กรกฎาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'],
11 | monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.',
12 | 'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'],
13 | dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'],
14 | dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
15 | dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
16 | weekHeader: 'Wk',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['th']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-tj.js:
--------------------------------------------------------------------------------
1 | /* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Abdurahmon Saidov (saidovab@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['tj'] = {
5 | closeText: 'Идома',
6 | prevText: '<Қафо',
7 | nextText: 'Пеш>',
8 | currentText: 'Имрӯз',
9 | monthNames: ['Январ','Феврал','Март','Апрел','Май','Июн',
10 | 'Июл','Август','Сентябр','Октябр','Ноябр','Декабр'],
11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн',
12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'],
13 | dayNames: ['якшанбе','душанбе','сешанбе','чоршанбе','панҷшанбе','ҷумъа','шанбе'],
14 | dayNamesShort: ['якш','душ','сеш','чор','пан','ҷум','шан'],
15 | dayNamesMin: ['Як','Дш','Сш','Чш','Пш','Ҷм','Шн'],
16 | weekHeader: 'Хф',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['tj']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-tr.js:
--------------------------------------------------------------------------------
1 | /* Turkish initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */
3 | jQuery(function($){
4 | $.datepicker.regional['tr'] = {
5 | closeText: 'kapat',
6 | prevText: '<geri',
7 | nextText: 'ileri>',
8 | currentText: 'bugün',
9 | monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran',
10 | 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'],
11 | monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz',
12 | 'Tem','Ağu','Eyl','Eki','Kas','Ara'],
13 | dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'],
14 | dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
15 | dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
16 | weekHeader: 'Hf',
17 | dateFormat: 'dd.mm.yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['tr']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-uk.js:
--------------------------------------------------------------------------------
1 | /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['uk'] = {
5 | closeText: 'Закрити',
6 | prevText: '<',
7 | nextText: '>',
8 | currentText: 'Сьогодні',
9 | monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень',
10 | 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'],
11 | monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер',
12 | 'Лип','Сер','Вер','Жов','Лис','Гру'],
13 | dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'],
14 | dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'],
15 | dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'],
16 | weekHeader: 'Не',
17 | dateFormat: 'dd/mm/yy',
18 | firstDay: 1,
19 | isRTL: false,
20 | showMonthAfterYear: false,
21 | yearSuffix: ''};
22 | $.datepicker.setDefaults($.datepicker.regional['uk']);
23 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/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 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-zh-HK.js:
--------------------------------------------------------------------------------
1 | /* Chinese initialisation for the jQuery UI date picker plugin. */
2 | /* Written by SCCY (samuelcychan@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['zh-HK'] = {
5 | closeText: '關閉',
6 | prevText: '<上月',
7 | nextText: '下月>',
8 | currentText: '今天',
9 | monthNames: ['一月','二月','三月','四月','五月','六月',
10 | '七月','八月','九月','十月','十一月','十二月'],
11 | monthNamesShort: ['一','二','三','四','五','六',
12 | '七','八','九','十','十一','十二'],
13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'],
14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'],
15 | dayNamesMin: ['日','一','二','三','四','五','六'],
16 | weekHeader: '周',
17 | dateFormat: 'dd-mm-yy',
18 | firstDay: 0,
19 | isRTL: false,
20 | showMonthAfterYear: true,
21 | yearSuffix: '年'};
22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/i18n/jquery.ui.datepicker-zh-TW.js:
--------------------------------------------------------------------------------
1 | /* Chinese initialisation for the jQuery UI date picker plugin. */
2 | /* Written by Ressol (ressol@gmail.com). */
3 | jQuery(function($){
4 | $.datepicker.regional['zh-TW'] = {
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-TW']);
23 | });
24 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/jquery.effects.fade.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Effects Fade 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Effects/Fade
9 | *
10 | * Depends:
11 | * jquery.effects.core.js
12 | */
13 | (function( $, undefined ) {
14 |
15 | $.effects.fade = function(o) {
16 | return this.queue(function() {
17 | var elem = $(this),
18 | mode = $.effects.setMode(elem, o.options.mode || 'hide');
19 |
20 | elem.animate({ opacity: mode }, {
21 | queue: false,
22 | duration: o.duration,
23 | easing: o.options.easing,
24 | complete: function() {
25 | (o.callback && o.callback.apply(this, arguments));
26 | elem.dequeue();
27 | }
28 | });
29 | });
30 | };
31 |
32 | })(jQuery);
33 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/minified/jquery.effects.blind.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Effects Blind 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Effects/Blind
9 | *
10 | * Depends:
11 | * jquery.effects.core.js
12 | */
13 | (function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a,
14 | g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);
15 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/minified/jquery.effects.fade.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Effects Fade 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Effects/Fade
9 | *
10 | * Depends:
11 | * jquery.effects.core.js
12 | */
13 | (function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
14 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/minified/jquery.effects.highlight.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Effects Highlight 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Effects/Highlight
9 | *
10 | * Depends:
11 | * jquery.effects.core.js
12 | */
13 | (function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
14 | this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
15 |
--------------------------------------------------------------------------------
/goods/WebRoot/jquery/jqueryui/ui/minified/jquery.effects.pulsate.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery UI Effects Pulsate 1.8.14
3 | *
4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
5 | * Dual licensed under the MIT or GPL Version 2 licenses.
6 | * http://jquery.org/license
7 | *
8 | * http://docs.jquery.com/UI/Effects/Pulsate
9 | *
10 | * Depends:
11 | * jquery.effects.core.js
12 | */
13 | (function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments);
14 | b.dequeue()})})}})(jQuery);
15 |
--------------------------------------------------------------------------------
/goods/WebRoot/js/common.js:
--------------------------------------------------------------------------------
1 | function _change() {
2 | $("#vCode").attr("src", "/goods/VerifyCodeServlet?" + new Date().getTime());
3 | }
--------------------------------------------------------------------------------
/goods/WebRoot/js/round.js:
--------------------------------------------------------------------------------
1 | function round(num,dec){
2 | var strNum = num + '';/*把要转换的小数转换成字符串*/
3 | var index = strNum.indexOf("."); /*获取小数点的位置*/
4 | if(index < 0) {
5 | return num;/*如果没有小数点,那么无需四舍五入,返回这个整数*/
6 | }
7 | var n = strNum.length - index -1;/*获取当前浮点数,小数点后的位数*/
8 | if(dec < n){
9 | /*把小数点向后移动要保留的位数,把需要保留的小数部分变成整数部分,只留下不需要保留的部分为小数*/
10 | var e = Math.pow(10, dec);
11 | num = num * e;
12 | /*进行四舍五入,只保留整数部分*/
13 | num = Math.round(num);
14 | /*再把原来小数部分还原为小数*/
15 | return num / e;
16 | } else {
17 | return num;/*如果当前小数点后的位数等于或小于要保留的位数,那么无需处理,直接返回*/
18 | }
19 | }
20 |
21 |
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/css/left.css:
--------------------------------------------------------------------------------
1 | * {
2 | font-size: 10pt;
3 | text-align: center;
4 | }
5 |
6 | body {
7 | margin: 1px;
8 | }
9 |
10 | a {
11 | text-decoration: none;
12 | color: gray;
13 | font-weight: 900;
14 | }
15 |
16 | a:hover {
17 | text-decoration: underline;
18 | color: gray;
19 | }
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/css/main.css:
--------------------------------------------------------------------------------
1 | *{font-size:10pt;}
2 | body{text-align:center;}
3 | .table{width:1200px;height:100%;border:1px solid #15B69A;border-collapse: collapse;}
4 | .table td{border:1px solid #15B69A;}
5 | .trTop {background: #15B69A;}
6 | .tdTop {text-align: center; height: 100px;}
7 | .tdLeft{width: 190px;padding:5px;}
8 | .tdSearch{height: 45px; border-bottom-width: 0px; padding: 0px; margin: 0px;}
9 | .tdBody{border-top-width: 0px;}
10 | iframe {width: 100%;height: 100%;}
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/css/user/pwd.css:
--------------------------------------------------------------------------------
1 | body {
2 | font-size: 10pt;
3 | color: #404040;
4 | font-family: Arial;
5 | }
6 |
7 | .div0 {
8 | margin: 20px 80px;
9 | font-size: 15px;
10 | }
11 |
12 | .div1 {
13 | width: 820px;
14 | margin-left: 80px;
15 | margin-top: 30px;
16 | margin-bottom: 0px;
17 | font-size: 12px;
18 | border: 1px solid #D2D3D5;
19 | background-color: #F4FEFF;
20 | }
21 |
22 | table {
23 | font-size: 10pt;
24 | color: #404040;
25 | font-family: Arial;
26 | margin-left: 20px;
27 | margin-top: 20px;
28 | }
29 |
30 | .input {
31 | border: 1px solid #DADADA;
32 | height: 20px;
33 | margin-left: 15px;
34 | }
35 |
36 | .bc {
37 | width: 80px;
38 | height: 20px;
39 | margin-left: 15px;
40 | }
41 |
42 | #vCode {
43 | margin-left: 15px;
44 | }
45 |
46 | #verifyCode {
47 | width: 50px;
48 | }
49 |
50 | label.error {
51 | color: #cc3300;
52 | }
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/css/user/regist.css:
--------------------------------------------------------------------------------
1 | #divMain {margin-left: 240px;}
2 | #divTitle {line-height: 30px; width: 880px; height: 30px; border: 1px solid #d0d0d0; background: url(/goods/images/bg_btns.png) repeat-x 0px -132px;}
3 | #spanTitle {margin-left: 18px; font-weight: 900;}
4 | #divBody {width: 880px; height: 400px; border-left: 1px solid #d0d0d0;border-bottom: 1px solid #d0d0d0;border-right: 1px solid #d0d0d0;}
5 | .tdText {width: 300px; text-align: right;}
6 | .tdInput{width: 250px;}
7 | .tdError {width: 300px;}
8 | #tableForm {line-height: 50px;}
9 | .inputClass {width: 240px; height: 32px; border: 1px solid #7f9db9; line-height: 32px; padding-left: 10px;}
10 | #imgVerifyCode {width: 100px;}
11 | #divVerifyCode {text-align: center; border: 1px solid #e2e2e2;}
12 | .errorClass {background: url(/goods/images/error.png) no-repeat; color: #f40000; font-size: 10pt; border:1px solid #ffb8b8; background-color: #fef2f2; padding: 8px 8px 8px 35px;}
13 |
14 |
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/js/book/desc.js:
--------------------------------------------------------------------------------
1 | $(function() {
2 | $("#cnt").blur(function() {
3 | var quantity = $("#cnt").val();
4 | if(!/^[1-9]\d*$/.test(quantity)) {
5 | alert("数量必须是合法整数!");
6 | $("#cnt").val("1");
7 | }
8 | });
9 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/js/book/list.js:
--------------------------------------------------------------------------------
1 | $(function() {
2 | $(".inner").hover(function() {
3 | $(this).css("border", "3px solid #FFCFB1");
4 | }, function() {
5 | $(this).css("border", "3px solid #ffffff");
6 | });
7 | });
--------------------------------------------------------------------------------
/goods/WebRoot/jsps/order/pay.jsp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/jsps/order/pay.jsp
--------------------------------------------------------------------------------
/goods/WebRoot/menu/img/jia.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/menu/img/jia.png
--------------------------------------------------------------------------------
/goods/WebRoot/menu/img/jian.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/goods/WebRoot/menu/img/jian.png
--------------------------------------------------------------------------------
/goods/src/c3p0-config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 | com.mysql.jdbc.Driver
10 | root
11 | 123
12 |
13 | 3
14 | 10
15 | 2
16 | 10
17 |
18 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/admin/admin/dao/AdminDao.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.admin.admin.dao;
2 |
3 | import java.sql.SQLException;
4 |
5 | import org.apache.commons.dbutils.QueryRunner;
6 | import org.apache.commons.dbutils.handlers.BeanHandler;
7 |
8 | import cn.itcast.goods.admin.admin.domain.Admin;
9 | import cn.itcast.jdbc.TxQueryRunner;
10 |
11 | public class AdminDao {
12 | private QueryRunner qr = new TxQueryRunner();
13 |
14 | /**
15 | * 通过管理员登录名和登录密码查询
16 | * @param adminname
17 | * @param adminpwd
18 | * @return
19 | * @throws SQLException
20 | */
21 | public Admin find(String adminname, String adminpwd) throws SQLException {
22 | String sql = "select * from t_admin where adminname=? and adminpwd=?";
23 | return qr.query(sql, new BeanHandler(Admin.class), adminname, adminpwd);
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/admin/admin/domain/Admin.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.admin.admin.domain;
2 |
3 | public class Admin {
4 | private String adminId;//主键
5 | private String adminname;//管理员的登录名
6 | private String adminpwd;//管理员的登录密码
7 | public String getAdminId() {
8 | return adminId;
9 | }
10 | public void setAdminId(String adminId) {
11 | this.adminId = adminId;
12 | }
13 | public String getAdminname() {
14 | return adminname;
15 | }
16 | public void setAdminname(String adminname) {
17 | this.adminname = adminname;
18 | }
19 | public String getAdminpwd() {
20 | return adminpwd;
21 | }
22 | public void setAdminpwd(String adminpwd) {
23 | this.adminpwd = adminpwd;
24 | }
25 | @Override
26 | public String toString() {
27 | return "Admin [adminId=" + adminId + ", adminname=" + adminname
28 | + ", adminpwd=" + adminpwd + "]";
29 | }
30 |
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/admin/admin/service/AdminService.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.admin.admin.service;
2 |
3 | import java.sql.SQLException;
4 |
5 | import cn.itcast.goods.admin.admin.dao.AdminDao;
6 | import cn.itcast.goods.admin.admin.domain.Admin;
7 |
8 | public class AdminService {
9 | private AdminDao adminDao = new AdminDao();
10 |
11 | /**
12 | * 登录功能
13 | * @param admin
14 | * @return
15 | */
16 | public Admin login(Admin admin) {
17 | try {
18 | return adminDao.find(admin.getAdminname(), admin.getAdminpwd());
19 | } catch (SQLException e) {
20 | throw new RuntimeException(e);
21 | }
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/category/web/servlet/CategoryServlet.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.category.web.servlet;
2 |
3 | import java.io.IOException;
4 | import java.util.List;
5 |
6 | import javax.servlet.ServletException;
7 | import javax.servlet.http.HttpServletRequest;
8 | import javax.servlet.http.HttpServletResponse;
9 |
10 | import cn.itcast.goods.category.domain.Category;
11 | import cn.itcast.goods.category.service.CategoryService;
12 | import cn.itcast.servlet.BaseServlet;
13 |
14 | /**
15 | * 分类模块WEB层
16 | * @author qdmmy6
17 | *
18 | */
19 | public class CategoryServlet extends BaseServlet {
20 | private CategoryService categoryService = new CategoryService();
21 |
22 | /**
23 | * 查询所有分类
24 | */
25 | public String findAll(HttpServletRequest req, HttpServletResponse resp)
26 | throws ServletException, IOException {
27 | /*
28 | * 1. 通过service得到所有的分类
29 | * 2. 保存到request中,转发到left.jsp
30 | */
31 | List parents = categoryService.findAll();
32 | req.setAttribute("parents", parents);
33 | return "f:/jsps/left.jsp";
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/pager/Expression.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.pager;
2 |
3 | public class Expression {
4 | private String name;
5 | private String operator;
6 | private String value;
7 | public String getName() {
8 | return name;
9 | }
10 | public void setName(String name) {
11 | this.name = name;
12 | }
13 | public String getOperator() {
14 | return operator;
15 | }
16 | public void setOperator(String operator) {
17 | this.operator = operator;
18 | }
19 | public String getValue() {
20 | return value;
21 | }
22 | public void setValue(String value) {
23 | this.value = value;
24 | }
25 | @Override
26 | public String toString() {
27 | return "Expression [name=" + name + ", operator=" + operator
28 | + ", value=" + value + "]";
29 | }
30 | public Expression() {
31 | super();
32 | // TODO Auto-generated constructor stub
33 | }
34 | public Expression(String name, String operator, String value) {
35 | super();
36 | this.name = name;
37 | this.operator = operator;
38 | this.value = value;
39 | }
40 |
41 |
42 | }
43 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/pager/PageConstants.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.pager;
2 |
3 | public class PageConstants {
4 | public static final int BOOK_PAGE_SIZE = 12;//图书每页记录数
5 | public static final int ORDER_PAGE_SIZE = 8;//订单每页记录数
6 | }
7 |
--------------------------------------------------------------------------------
/goods/src/cn/itcast/goods/user/service/exception/UserException.java:
--------------------------------------------------------------------------------
1 | package cn.itcast.goods.user.service.exception;
2 |
3 | /**
4 | * 用户业务异常
5 | * @author qdmmy6
6 | *
7 | */
8 | public class UserException extends Exception {
9 |
10 | public UserException() {
11 | super();
12 | // TODO Auto-generated constructor stub
13 | }
14 |
15 | public UserException(String message, Throwable cause) {
16 | super(message, cause);
17 | // TODO Auto-generated constructor stub
18 | }
19 |
20 | public UserException(String message) {
21 | super(message);
22 | // TODO Auto-generated constructor stub
23 | }
24 |
25 | public UserException(Throwable cause) {
26 | super(cause);
27 | // TODO Auto-generated constructor stub
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/goods/src/email_template.properties:
--------------------------------------------------------------------------------
1 | subject=\u6765\u81EA\u4F20\u667A\u64AD\u5BA2\u7F51\u4E0A\u4E66\u57CE\u7684\u6FC0\u6D3B\u90AE\u4EF6
2 | content=\u606D\u559C\uFF0C\u60A8\u5DF2\u6CE8\u518C\u6210\u529F\uFF0C\u8BF7\u70B9\u51FB\u8FD9\u91CC\u5B8C\u6210\u6FC0\u6D3B\u3002
3 | from=itcast_cxf@163.com
4 | host=smtp.163.com
5 | username=itcast_cxf
6 | password=itcastitcast
7 |
--------------------------------------------------------------------------------
/goods/src/payment.properties:
--------------------------------------------------------------------------------
1 | p1_MerId=10001126856
2 | keyValue=69cl522AV6q613Ii4W6u8K6XuW8vM1N6bFgyv769220IuYe9u37N4y7rI4Pl
3 | p8_Url=http\://localhost\:8080/goods/OrderServlet?method\=back
4 |
--------------------------------------------------------------------------------
/新建工作空间.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lukeaust/bookstore/db3eaa1c10b45c328f5b6994c70ab20c646cd660/新建工作空间.txt
--------------------------------------------------------------------------------