├── .classpath ├── .gitignore ├── .mymetadata ├── .project ├── .settings ├── .jsdtscope ├── com.genuitec.eclipse.j2eedt.core.prefs ├── org.eclipse.core.resources.prefs ├── org.eclipse.jdt.core.prefs ├── org.eclipse.ltk.core.refactoring.prefs ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── 13.png ├── README.md ├── WebRoot ├── META-INF │ └── MANIFEST.MF ├── WEB-INF │ ├── classes │ │ ├── applicationContext.xml │ │ ├── com │ │ │ └── njit │ │ │ │ └── lib │ │ │ │ ├── HibernateTest.class │ │ │ │ ├── ServiceTest.class │ │ │ │ ├── SpringTest.class │ │ │ │ ├── Test.class │ │ │ │ ├── base │ │ │ │ ├── BaseAction.class │ │ │ │ ├── BaseActionNoModel.class │ │ │ │ ├── DaoSupport.class │ │ │ │ └── DaoSupportImpl.class │ │ │ │ ├── domain │ │ │ │ ├── Address.class │ │ │ │ ├── Advertisement.class │ │ │ │ ├── Area.class │ │ │ │ ├── Article.class │ │ │ │ ├── Bed.class │ │ │ │ ├── Book.class │ │ │ │ ├── Channel.class │ │ │ │ ├── District.class │ │ │ │ ├── DonateOrder.class │ │ │ │ ├── Dormitory.class │ │ │ │ ├── ElecBook.class │ │ │ │ ├── Floor.class │ │ │ │ ├── Message.class │ │ │ │ ├── News.class │ │ │ │ ├── Paper.class │ │ │ │ ├── Privilege.class │ │ │ │ ├── Remark.class │ │ │ │ ├── Role.class │ │ │ │ ├── Room.class │ │ │ │ ├── SplitBean.class │ │ │ │ ├── SwapTrade.class │ │ │ │ └── User.class │ │ │ │ ├── service │ │ │ │ ├── AdvertisementService.class │ │ │ │ ├── ArticleService.class │ │ │ │ ├── ChannelService.class │ │ │ │ ├── MessageService.class │ │ │ │ ├── NewsService.class │ │ │ │ ├── PrivilegeService.class │ │ │ │ ├── RemarkService.class │ │ │ │ ├── RoleService.class │ │ │ │ ├── UserService.class │ │ │ │ └── impl │ │ │ │ │ ├── AdvertisementServiceImpl.class │ │ │ │ │ ├── ArticleServiceImpl.class │ │ │ │ │ ├── ChannelServiceImpl.class │ │ │ │ │ ├── MessageServiceImpl.class │ │ │ │ │ ├── NewsServiceImpl.class │ │ │ │ │ ├── PrivilegeServiceImpl.class │ │ │ │ │ ├── RemarkServiceImpl.class │ │ │ │ │ ├── RoleServiceImpl.class │ │ │ │ │ └── UserServiceImpl.class │ │ │ │ ├── utils │ │ │ │ ├── CheckPrivilegeInterceptor.class │ │ │ │ ├── CloseUtils.class │ │ │ │ ├── InitlListener.class │ │ │ │ └── Installer.class │ │ │ │ └── view │ │ │ │ └── action │ │ │ │ ├── AdvertisementAction.class │ │ │ │ ├── ArticleAction.class │ │ │ │ ├── ChannelAction.class │ │ │ │ ├── HomeAction.class │ │ │ │ ├── InitAction.class │ │ │ │ ├── LibraryAction.class │ │ │ │ ├── MessageAction.class │ │ │ │ ├── NewsAction.class │ │ │ │ ├── RegisterAction.class │ │ │ │ ├── RemarkAction.class │ │ │ │ ├── RoleAction.class │ │ │ │ ├── TestAction.class │ │ │ │ └── UserAction.class │ │ ├── hibernate.cfg.xml │ │ ├── jdbc.properties │ │ ├── log4j.properties │ │ └── struts.xml │ ├── jsp │ │ ├── admin │ │ │ ├── bottom.jsp │ │ │ ├── index.jsp │ │ │ ├── left.jsp │ │ │ ├── right.jsp │ │ │ └── top.jsp │ │ ├── advertisementAction │ │ │ ├── list.jsp │ │ │ └── saveUI.jsp │ │ ├── articleAction │ │ │ ├── list.jsp │ │ │ └── saveUI.jsp │ │ ├── channelAction │ │ │ ├── list.jsp │ │ │ └── saveUI.jsp │ │ ├── messageAction │ │ │ ├── list.jsp │ │ │ └── saveUI.jsp │ │ ├── newsAction │ │ │ ├── list.jsp │ │ │ └── saveUI.jsp │ │ ├── public │ │ │ └── split.jspf │ │ ├── remarkAction │ │ │ ├── list.jsp │ │ │ └── saveUI.jsp │ │ ├── roleAction │ │ │ ├── list.jsp │ │ │ ├── saveUI.jsp │ │ │ └── setPrivilegeUI.jsp │ │ └── userAction │ │ │ ├── addUI.jsp │ │ │ ├── list.jsp │ │ │ ├── myLibrary │ │ │ ├── bottom.jsp │ │ │ ├── left.jsp │ │ │ ├── right.jsp │ │ │ └── top.jsp │ │ │ ├── mylibrary.jsp │ │ │ ├── show.jsp │ │ │ └── updateUI.jsp │ ├── lib │ │ ├── antlr-2.7.6.jar │ │ ├── aspectjrt.jar │ │ ├── aspectjweaver.jar │ │ ├── c3p0-0.9.1.jar │ │ ├── cglib-nodep-2.1_3.jar │ │ ├── commons-codec.jar │ │ ├── commons-collections-3.1.jar │ │ ├── commons-fileupload-1.2.1.jar │ │ ├── commons-io-1.3.2.jar │ │ ├── commons-logging.jar │ │ ├── dom4j-1.6.1.jar │ │ ├── freemarker-2.3.15.jar │ │ ├── hibernate-jpa-2.0-api-1.0.0.Final.jar │ │ ├── hibernate3.jar │ │ ├── javassist-3.12.0.GA.jar │ │ ├── jta-1.1.jar │ │ ├── log4j-1.2.15.jar │ │ ├── mysql-connector-java.jar │ │ ├── ognl-2.7.3.jar │ │ ├── slf4j-api-1.6.1.jar │ │ ├── slf4j-log4j12-1.6.1.jar │ │ ├── spring.jar │ │ ├── struts2-core-2.1.8.1.jar │ │ ├── struts2-spring-plugin-2.1.8.1.jar │ │ └── xwork-core-2.1.6.jar │ └── web.xml ├── forward.jsp ├── index.jsp ├── jsp │ ├── indexAction │ │ ├── bottom.jsp │ │ ├── center.jsp │ │ ├── index.jsp │ │ └── top.jsp │ ├── messageAction │ │ └── list.jsp │ ├── newsAction │ │ ├── list.jsp │ │ └── show.jsp │ ├── registerAction │ │ ├── register.jsp │ │ └── registerUI.jsp │ └── userAction │ │ ├── loginUI.jsp │ │ ├── logout.jsp │ │ └── noPrivilege.jsp ├── style │ ├── blue │ │ ├── file.css │ │ ├── forum.css │ │ ├── images │ │ │ ├── 1menu_btn_bg.gif │ │ │ ├── 1menu_btn_bg_selected.gif │ │ │ ├── 2311_1.gif │ │ │ ├── 2311_2.gif │ │ │ ├── 2311_3.gif │ │ │ ├── 2311_4.gif │ │ │ ├── 2311_5.gif │ │ │ ├── 2311_6.gif │ │ │ ├── adage_bottom_left.gif │ │ │ ├── adage_bottom_right.gif │ │ │ ├── adage_top_left.gif │ │ │ ├── adage_top_right.gif │ │ │ ├── ar.gif │ │ │ ├── arrow_d.gif │ │ │ ├── awokeBtnBorder_bg.gif │ │ │ ├── awokeBtn_bg.gif │ │ │ ├── bg_input_text.png │ │ │ ├── bg_input_text_hover.png │ │ │ ├── browser_title_bar_bg.gif │ │ │ ├── btnBg.gif │ │ │ ├── btnLeft.gif │ │ │ ├── btnRight.gif │ │ │ ├── btn_all_left.gif │ │ │ ├── btn_all_right.gif │ │ │ ├── btn_bg.gif │ │ │ ├── btn_left.gif │ │ │ ├── btn_right.gif │ │ │ ├── btn_to_left.gif │ │ │ ├── btn_to_right.gif │ │ │ ├── button │ │ │ │ ├── ReturnToPrevLevel.png │ │ │ │ ├── addNew.PNG │ │ │ │ ├── agree.png │ │ │ │ ├── agreeAndSave.PNG │ │ │ │ ├── close.png │ │ │ │ ├── deployProcessDef.PNG │ │ │ │ ├── disagree.png │ │ │ │ ├── disagreeAndSave.PNG │ │ │ │ ├── goBack.png │ │ │ │ ├── publishNewTopic.png │ │ │ │ ├── query.PNG │ │ │ │ ├── saveToDraftBox.png │ │ │ │ ├── select.PNG │ │ │ │ ├── send.png │ │ │ │ ├── sendBack.png │ │ │ │ └── submit.PNG │ │ │ ├── buttonUpload.gif │ │ │ ├── calendar_bg.gif │ │ │ ├── calendar_now.gif │ │ │ ├── chat_func_line1.gif │ │ │ ├── chat_func_line2.gif │ │ │ ├── dashed.gif │ │ │ ├── date_bg.gif │ │ │ ├── default.gif │ │ │ ├── desktop │ │ │ │ ├── FUNC00001.gif │ │ │ │ ├── FUNC00002.gif │ │ │ │ ├── FUNC00003.gif │ │ │ │ ├── FUNC00004.gif │ │ │ │ ├── FUNC00005.gif │ │ │ │ ├── FUNC00006.gif │ │ │ │ ├── FUNC00007.gif │ │ │ │ ├── FUNC00008.gif │ │ │ │ ├── FUNC00009.gif │ │ │ │ ├── FUNC00010.gif │ │ │ │ ├── FUNC00012.gif │ │ │ │ ├── FUNC00013.gif │ │ │ │ ├── FUNC00014.gif │ │ │ │ ├── FUNC00015.gif │ │ │ │ ├── FUNC00016.gif │ │ │ │ ├── FUNC00017.gif │ │ │ │ ├── FUNC00018.gif │ │ │ │ ├── FUNC00019.gif │ │ │ │ ├── FUNC00020.gif │ │ │ │ ├── FUNC00021.gif │ │ │ │ ├── FUNC00023.gif │ │ │ │ ├── FUNC00024.gif │ │ │ │ ├── FUNC00025.gif │ │ │ │ ├── FUNC00026.gif │ │ │ │ ├── close.gif │ │ │ │ ├── define.gif │ │ │ │ ├── leftMenu.gif │ │ │ │ ├── line.gif │ │ │ │ ├── list.gif │ │ │ │ ├── min.gif │ │ │ │ ├── more.gif │ │ │ │ ├── refresh.gif │ │ │ │ └── revert.gif │ │ │ ├── desktop_bar_bg.gif │ │ │ ├── desktop_bar_left.gif │ │ │ ├── desktop_bar_right.gif │ │ │ ├── desktop_bar_underline.gif │ │ │ ├── desktop_right_bg.gif │ │ │ ├── desktop_right_left.gif │ │ │ ├── desktop_right_right.gif │ │ │ ├── desktop_right_votting_line.gif │ │ │ ├── desktop_votting_button.gif │ │ │ ├── folder.gif │ │ │ ├── folder2.gif │ │ │ ├── func_btn_bg.gif │ │ │ ├── func_btn_bg_nobottom.gif │ │ │ ├── func_btn_head_bg.gif │ │ │ ├── func_btn_head_bg_nobottom.gif │ │ │ ├── func_btn_tail_bg.gif │ │ │ ├── func_btn_tail_bg_nobottom.gif │ │ │ ├── go.png │ │ │ ├── head2_bg.gif │ │ │ ├── index_bar_bg.gif │ │ │ ├── index_bar_left.gif │ │ │ ├── index_bar_right.gif │ │ │ ├── index_bar_underline.gif │ │ │ ├── inputPageHeadBg.gif │ │ │ ├── item_point.gif │ │ │ ├── item_title_bg.gif │ │ │ ├── item_title_bg.jpg │ │ │ ├── login.gif │ │ │ ├── login │ │ │ │ ├── imgCode.gif │ │ │ │ ├── language.gif │ │ │ │ ├── password.gif │ │ │ │ ├── selectSystem.gif │ │ │ │ ├── style.gif │ │ │ │ ├── userId.gif │ │ │ │ └── userLogin_button.gif │ │ │ ├── login_bg.gif │ │ │ ├── logo.png │ │ │ ├── logo_bg.gif │ │ │ ├── logout │ │ │ │ ├── logout.gif │ │ │ │ ├── logout1.gif │ │ │ │ ├── logout2.gif │ │ │ │ └── logout3.gif │ │ │ ├── menu_arrow_close.gif │ │ │ ├── menu_arrow_open.gif │ │ │ ├── menu_arrow_point.gif │ │ │ ├── menu_arrow_single.gif │ │ │ ├── menu_bg.png │ │ │ ├── menu_bg_2.gif │ │ │ ├── menu_bg_3.gif │ │ │ ├── menu_bg_head.gif │ │ │ ├── menu_btn_bg.gif │ │ │ ├── menu_btn_bg_selected.gif │ │ │ ├── menu_head_title.gif │ │ │ ├── menu_line_2.gif │ │ │ ├── menu_line_3.gif │ │ │ ├── msg_bg.gif │ │ │ ├── navigationBg.gif │ │ │ ├── navigation_01.gif │ │ │ ├── navigation_02.gif │ │ │ ├── navigation_03.gif │ │ │ ├── navigation_04.gif │ │ │ ├── navigation_05.gif │ │ │ ├── navigation_06.gif │ │ │ ├── navigation_07.gif │ │ │ ├── navigation_08.gif │ │ │ ├── navigation_09.gif │ │ │ ├── navigation_10.gif │ │ │ ├── newMsgLine.gif │ │ │ ├── pageSelector │ │ │ │ ├── firstPage.png │ │ │ │ ├── firstPage2.png │ │ │ │ ├── forward10page.png │ │ │ │ ├── lastPage.png │ │ │ │ ├── lastPage2.png │ │ │ │ └── prev10page.png │ │ │ ├── pageSelector_bg.gif │ │ │ ├── pannel_day.gif │ │ │ ├── pannel_month.gif │ │ │ ├── pannel_point.gif │ │ │ ├── pannel_week.gif │ │ │ ├── photBackColor.gif │ │ │ ├── point.gif │ │ │ ├── search.gif │ │ │ ├── tab_page_head.gif │ │ │ ├── tag_bg.gif │ │ │ ├── tag_head.gif │ │ │ ├── tag_line.gif │ │ │ ├── tag_tail.gif │ │ │ ├── title_bar_bg.gif │ │ │ ├── title_bg.gif │ │ │ ├── title_bg_end.gif │ │ │ ├── title_bg_head.gif │ │ │ ├── top │ │ │ │ ├── desktop.gif │ │ │ │ ├── help.gif │ │ │ │ ├── logout.gif │ │ │ │ ├── search.gif │ │ │ │ └── version.gif │ │ │ ├── top_bg.gif │ │ │ ├── top_left_bg.gif │ │ │ ├── upload.gif │ │ │ ├── uploadFile.gif │ │ │ ├── version_bg.gif │ │ │ └── 复件 logo.gif │ │ ├── login.css │ │ ├── logout.css │ │ ├── menu.css │ │ ├── pageCommon.css │ │ ├── select.css │ │ ├── selectPerson.css │ │ ├── statusbar.css │ │ └── top.css │ └── images │ │ ├── 107.gif │ │ ├── FileType │ │ ├── EIE.gif │ │ ├── bmp.gif │ │ ├── chm.gif │ │ ├── csv.gif │ │ ├── default.gif │ │ ├── dll.gif │ │ ├── doc.gif │ │ ├── eml.gif │ │ ├── excel.gif │ │ ├── exe.gif │ │ ├── folder.gif │ │ ├── folder2.gif │ │ ├── font.gif │ │ ├── gif-0700.gif │ │ ├── gif-0705.gif │ │ ├── gif-0707.gif │ │ ├── gif.gif │ │ ├── hlp.gif │ │ ├── icq.gif │ │ ├── ie.gif │ │ ├── ini.gif │ │ ├── java.gif │ │ ├── jpeg.gif │ │ ├── link.gif │ │ ├── mdb.gif │ │ ├── media.gif │ │ ├── pdf.gif │ │ ├── pps.gif │ │ ├── ppt.gif │ │ ├── project.gif │ │ ├── psd.gif │ │ ├── raq.gif │ │ ├── rar.gif │ │ ├── rtf.gif │ │ ├── shareFolder.gif │ │ ├── sql.gif │ │ ├── swf.gif │ │ ├── sys.gif │ │ ├── txt.gif │ │ ├── vsd.gif │ │ ├── wab.gif │ │ ├── wie.gif │ │ ├── xml.gif │ │ └── zip.gif │ │ ├── MenuIcon │ │ ├── FUNC20001.gif │ │ ├── FUNC20007.gif │ │ ├── FUNC20022.gif │ │ ├── FUNC20024.gif │ │ ├── FUNC20029.gif │ │ ├── FUNC20030.gif │ │ ├── FUNC20054.gif │ │ ├── FUNC20056.gif │ │ ├── FUNC20057.gif │ │ ├── FUNC20064.gif │ │ ├── FUNC20065.gif │ │ ├── FUNC20069.gif │ │ ├── FUNC20070.gif │ │ ├── FUNC20071.gif │ │ ├── FUNC20076.gif │ │ ├── FUNC20077.gif │ │ ├── FUNC20082.gif │ │ ├── FUNC20088.gif │ │ ├── FUNC20101.gif │ │ ├── FUNC220000.gif │ │ ├── FUNC235000.gif │ │ ├── FUNC23700.gif │ │ ├── FUNC241000.gif │ │ ├── FUNC249000.gif │ │ ├── FUNC251000.gif │ │ ├── FUNC261000.gif │ │ ├── FUNC55000.gif │ │ ├── address.gif │ │ ├── clock.gif │ │ ├── ie.gif │ │ ├── mail.gif │ │ ├── menu_arrow_close.gif │ │ ├── menu_arrow_open.gif │ │ ├── menu_arrow_single.gif │ │ ├── menu_line_2.gif │ │ ├── menu_line_3.gif │ │ ├── msg.gif │ │ ├── radio_blue.gif │ │ ├── radio_green.gif │ │ ├── radio_red.gif │ │ ├── shoutCut.gif │ │ ├── trace.gif │ │ ├── userMenuDefault.gif │ │ └── waitThing.gif │ │ ├── active.gif │ │ ├── arrow.gif │ │ ├── arrow_close.gif │ │ ├── arrow_open.gif │ │ ├── attachmenttitle.gif │ │ ├── blank.gif │ │ ├── buttonUpload.gif │ │ ├── comm │ │ ├── html │ │ │ ├── bold.gif │ │ │ ├── bullist.gif │ │ │ ├── cal.gif │ │ │ ├── flash.gif │ │ │ ├── formbutton.gif │ │ │ ├── formcheckbox.gif │ │ │ ├── formdropdown.gif │ │ │ ├── formmacro.gif │ │ │ ├── formtext.gif │ │ │ ├── formtextarea.gif │ │ │ ├── head.gif │ │ │ ├── hr.gif │ │ │ ├── image.gif │ │ │ ├── italic.gif │ │ │ ├── jcenter.gif │ │ │ ├── jleft.gif │ │ │ ├── jright.gif │ │ │ ├── link.gif │ │ │ ├── numlist.gif │ │ │ ├── ol.gif │ │ │ ├── separator.gif │ │ │ ├── sql.gif │ │ │ ├── style.css │ │ │ ├── tableinsert.gif │ │ │ ├── ul.gif │ │ │ └── underline.gif │ │ ├── line │ │ │ ├── 11line7.gif │ │ │ ├── line0.gif │ │ │ ├── line1.gif │ │ │ ├── line2.gif │ │ │ ├── line3.gif │ │ │ ├── line4.gif │ │ │ ├── line5.gif │ │ │ ├── line6.gif │ │ │ ├── line7.gif │ │ │ ├── line8.gif │ │ │ └── line9.gif │ │ ├── navigation │ │ │ ├── 0916.gif │ │ │ ├── 0920.gif │ │ │ ├── 1101.gif │ │ │ ├── 1110.gif │ │ │ ├── 1610.gif │ │ │ ├── 1710.gif │ │ │ ├── 1810.gif │ │ │ ├── 2203.gif │ │ │ ├── 2319.gif │ │ │ ├── 3405.gif │ │ │ ├── 3611.gif │ │ │ ├── 3905.gif │ │ │ ├── 4003.gif │ │ │ ├── 4105.gif │ │ │ ├── 4115.gif │ │ │ ├── 4120.gif │ │ │ └── 5511.gif │ │ └── usermenu_ico │ │ │ └── userMenuDefault.gif │ │ ├── createNew.png │ │ ├── defaultAvatar.gif │ │ ├── delete.gif │ │ ├── down.gif │ │ ├── edit.gif │ │ ├── face │ │ ├── face1.gif │ │ ├── face10.gif │ │ ├── face11.gif │ │ ├── face12.gif │ │ ├── face13.gif │ │ ├── face14.gif │ │ ├── face2.gif │ │ ├── face3.gif │ │ ├── face4.gif │ │ ├── face5.gif │ │ ├── face6.gif │ │ ├── face7.gif │ │ ├── face8.gif │ │ └── face9.gif │ │ ├── find.gif │ │ ├── folder_up.gif │ │ ├── forum_comm.gif │ │ ├── forum_hot.gif │ │ ├── forum_lock.gif │ │ ├── forum_top.gif │ │ ├── forumpage1.gif │ │ ├── forumpage2.gif │ │ ├── forumpage3.gif │ │ ├── forumpage4.gif │ │ ├── gif_57_051.gif │ │ ├── goBack.png │ │ ├── help.gif │ │ ├── icq.gif │ │ ├── insert.gif │ │ ├── item_title_bg1.gif │ │ ├── left.gif │ │ ├── loading.gif │ │ ├── new.gif │ │ ├── no_active.gif │ │ ├── nosub.gif │ │ ├── ok1.PNG │ │ ├── point_blue.gif │ │ ├── priority.gif │ │ ├── quote.gif │ │ ├── reply.gif │ │ ├── save.png │ │ ├── search.gif │ │ ├── selected.gif │ │ ├── tableInsert.gif │ │ ├── time_cancel.gif │ │ ├── time_date.gif │ │ ├── time_down.gif │ │ ├── time_icon.gif │ │ ├── time_last.gif │ │ ├── time_next.gif │ │ ├── time_save.gif │ │ ├── time_up.gif │ │ ├── title_arrow.gif │ │ ├── title_bg1.png │ │ ├── top.gif │ │ ├── top │ │ ├── client.gif │ │ ├── help.gif │ │ ├── mail.gif │ │ ├── msg.gif │ │ ├── record.gif │ │ ├── sendDoc.gif │ │ ├── task.gif │ │ ├── text.gif │ │ ├── trace.gif │ │ ├── user.gif │ │ ├── user_setup.gif │ │ └── wait.gif │ │ ├── topicType_0.gif │ │ ├── topicType_1.gif │ │ ├── topicType_2.gif │ │ ├── txt.gif │ │ ├── uploadSelectedFiles.PNG │ │ ├── user.gif │ │ ├── vote.gif │ │ ├── votelock.gif │ │ └── weather │ │ ├── 0.gif │ │ ├── 1.gif │ │ ├── 10.gif │ │ ├── 11.gif │ │ ├── 12.gif │ │ ├── 13.gif │ │ ├── 14.gif │ │ ├── 15.gif │ │ ├── 16.gif │ │ ├── 17.gif │ │ ├── 18.gif │ │ ├── 19.gif │ │ ├── 2.gif │ │ ├── 20.gif │ │ ├── 21.gif │ │ ├── 22.gif │ │ ├── 23.gif │ │ ├── 24.gif │ │ ├── 25.gif │ │ ├── 26.gif │ │ ├── 27.gif │ │ ├── 28.gif │ │ ├── 29.gif │ │ ├── 3.gif │ │ ├── 30.gif │ │ ├── 31.gif │ │ ├── 4.gif │ │ ├── 5.gif │ │ ├── 6.gif │ │ ├── 7.gif │ │ ├── 8.gif │ │ ├── 9.gif │ │ ├── Read me.txt │ │ ├── a_0.gif │ │ ├── a_1.gif │ │ ├── a_10.gif │ │ ├── a_11.gif │ │ ├── a_12.gif │ │ ├── a_13.gif │ │ ├── a_14.gif │ │ ├── a_15.gif │ │ ├── a_16.gif │ │ ├── a_17.gif │ │ ├── a_18.gif │ │ ├── a_19.gif │ │ ├── a_2.gif │ │ ├── a_20.gif │ │ ├── a_21.gif │ │ ├── a_22.gif │ │ ├── a_23.gif │ │ ├── a_24.gif │ │ ├── a_25.gif │ │ ├── a_26.gif │ │ ├── a_27.gif │ │ ├── a_28.gif │ │ ├── a_29.gif │ │ ├── a_3.gif │ │ ├── a_30.gif │ │ ├── a_31.gif │ │ ├── a_4.gif │ │ ├── a_5.gif │ │ ├── a_6.gif │ │ ├── a_7.gif │ │ ├── a_8.gif │ │ ├── a_9.gif │ │ ├── a_nothing.gif │ │ ├── b_0.gif │ │ ├── b_1.gif │ │ ├── b_10.gif │ │ ├── b_11.gif │ │ ├── b_12.gif │ │ ├── b_13.gif │ │ ├── b_14.gif │ │ ├── b_15.gif │ │ ├── b_16.gif │ │ ├── b_17.gif │ │ ├── b_18.gif │ │ ├── b_19.gif │ │ ├── b_2.gif │ │ ├── b_20.gif │ │ ├── b_21.gif │ │ ├── b_22.gif │ │ ├── b_23.gif │ │ ├── b_24.gif │ │ ├── b_25.gif │ │ ├── b_26.gif │ │ ├── b_27.gif │ │ ├── b_28.gif │ │ ├── b_29.gif │ │ ├── b_3.gif │ │ ├── b_30.gif │ │ ├── b_31.gif │ │ ├── b_4.gif │ │ ├── b_5.gif │ │ ├── b_6.gif │ │ ├── b_7.gif │ │ ├── b_8.gif │ │ ├── b_9.gif │ │ ├── b_nothing.gif │ │ ├── nothing.gif │ │ ├── r_b.gif │ │ ├── r_t1.gif │ │ ├── tem1.gif │ │ ├── tem2.gif │ │ ├── tem3.gif │ │ ├── tem4.gif │ │ └── tem5.gif └── test.jsp ├── config ├── applicationContext.xml ├── hibernate.cfg.xml ├── jdbc.properties ├── log4j.properties └── struts.xml ├── src └── com │ └── njit │ └── lib │ ├── base │ ├── BaseAction.java │ ├── BaseActionNoModel.java │ ├── DaoSupport.java │ └── DaoSupportImpl.java │ ├── domain │ ├── Address.java │ ├── Advertisement.java │ ├── Area.java │ ├── Article.java │ ├── Bed.java │ ├── Book.java │ ├── Channel.java │ ├── District.java │ ├── DonateOrder.java │ ├── Dormitory.java │ ├── ElecBook.java │ ├── Floor.java │ ├── Message.java │ ├── News.java │ ├── Paper.java │ ├── Privilege.java │ ├── Remark.java │ ├── Role.java │ ├── Room.java │ ├── SplitBean.java │ ├── SwapTrade.java │ └── User.java │ ├── service │ ├── AdvertisementService.java │ ├── ArticleService.java │ ├── ChannelService.java │ ├── MessageService.java │ ├── NewsService.java │ ├── PrivilegeService.java │ ├── RemarkService.java │ ├── RoleService.java │ ├── UserService.java │ └── impl │ │ ├── AdvertisementServiceImpl.java │ │ ├── ArticleServiceImpl.java │ │ ├── ChannelServiceImpl.java │ │ ├── MessageServiceImpl.java │ │ ├── NewsServiceImpl.java │ │ ├── PrivilegeServiceImpl.java │ │ ├── RemarkServiceImpl.java │ │ ├── RoleServiceImpl.java │ │ └── UserServiceImpl.java │ ├── utils │ ├── CheckPrivilegeInterceptor.java │ ├── CloseUtils.java │ ├── InitlListener.java │ └── Installer.java │ └── view │ └── action │ ├── AdvertisementAction.java │ ├── ArticleAction.java │ ├── ChannelAction.java │ ├── HomeAction.java │ ├── InitAction.java │ ├── LibraryAction.java │ ├── MessageAction.java │ ├── NewsAction.java │ ├── RegisterAction.java │ ├── RemarkAction.java │ ├── RoleAction.java │ ├── TestAction.java │ └── UserAction.java ├── test └── com │ └── njit │ └── lib │ ├── HibernateTest.java │ ├── ServiceTest.java │ ├── SpringTest.java │ └── Test.java ├── testGit └── testGit2.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .svn/ 2 | -------------------------------------------------------------------------------- /.mymetadata: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Nov 17 18:09:43 CST 2014 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | #Wed Nov 19 20:23:50 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.codegen.unusedLocal=preserve 6 | org.eclipse.jdt.core.compiler.compliance=1.5 7 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 8 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 9 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 10 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 11 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 12 | org.eclipse.jdt.core.compiler.source=1.5 13 | -------------------------------------------------------------------------------- /.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- 1 | #Wed Nov 19 20:23:50 CST 2014 2 | eclipse.preferences.version=1 3 | org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/13.png -------------------------------------------------------------------------------- /WebRoot/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/HibernateTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/HibernateTest.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/ServiceTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/ServiceTest.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/SpringTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/SpringTest.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/Test.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/Test.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/base/BaseAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/base/BaseAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/base/BaseActionNoModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/base/BaseActionNoModel.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/base/DaoSupport.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/base/DaoSupport.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/base/DaoSupportImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/base/DaoSupportImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Address.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Address.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Advertisement.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Advertisement.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Area.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Area.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Article.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Article.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Bed.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Bed.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Book.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Book.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Channel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Channel.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/District.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/District.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/DonateOrder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/DonateOrder.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Dormitory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Dormitory.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/ElecBook.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/ElecBook.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Floor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Floor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Message.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Message.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/News.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/News.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Paper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Paper.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Privilege.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Privilege.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Remark.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Remark.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Role.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Role.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/Room.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/Room.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/SplitBean.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/SplitBean.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/SwapTrade.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/SwapTrade.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/domain/User.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/domain/User.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/AdvertisementService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/AdvertisementService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/ArticleService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/ArticleService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/ChannelService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/ChannelService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/MessageService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/MessageService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/NewsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/NewsService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/PrivilegeService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/PrivilegeService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/RemarkService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/RemarkService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/RoleService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/RoleService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/UserService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/UserService.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/AdvertisementServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/AdvertisementServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/ArticleServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/ArticleServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/ChannelServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/ChannelServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/MessageServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/MessageServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/NewsServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/NewsServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/PrivilegeServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/PrivilegeServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/RemarkServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/RemarkServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/RoleServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/RoleServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/service/impl/UserServiceImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/service/impl/UserServiceImpl.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/utils/CheckPrivilegeInterceptor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/utils/CheckPrivilegeInterceptor.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/utils/CloseUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/utils/CloseUtils.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/utils/InitlListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/utils/InitlListener.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/utils/Installer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/utils/Installer.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/AdvertisementAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/AdvertisementAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/ArticleAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/ArticleAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/ChannelAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/ChannelAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/HomeAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/HomeAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/InitAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/InitAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/LibraryAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/LibraryAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/MessageAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/MessageAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/NewsAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/NewsAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/RegisterAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/RegisterAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/RemarkAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/RemarkAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/RoleAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/RoleAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/TestAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/TestAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/com/njit/lib/view/action/UserAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/classes/com/njit/lib/view/action/UserAction.class -------------------------------------------------------------------------------- /WebRoot/WEB-INF/classes/jdbc.properties: -------------------------------------------------------------------------------- 1 | jdbcUrl=jdbc\:mysql\://localhost\:3306/bookcms1116 2 | driverClass=com.mysql.jdbc.Driver 3 | user=root 4 | password=root 5 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/admin/bottom.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | My JSP 'bottom.jsp' starting page 6 | 7 | 8 | 9 | bottom 10 | 11 | 12 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/admin/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*,com.njit.lib.domain.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | My JSP 'index.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/admin/right.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | My JSP 'right.jsp' starting page 6 | 7 | 8 | 9 | 10 | right 11 | 12 | 13 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/admin/top.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*,com.njit.lib.domain.User" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | 6 | My JSP 'top.jsp' starting page 7 | 8 | 9 | 10 | 后台管理系统
11 |
当前用户:[] 注销
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/articleAction/list.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags"%> 3 | 4 | 5 | My JSP 'list.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/articleAction/saveUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | My JSP 'saveUI.jsp' starting page 6 | 7 | 8 | 9 | saveUI 10 | 11 | 12 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/messageAction/saveUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags"%> 3 | 4 | 5 | My JSP 'saveUI.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/newsAction/list.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags"%> 3 | 4 | 5 | My JSP 'list.jsp' starting page 6 | 7 | 8 | 9 | 10 | 13 | 16 | 17 | 18 | 19 | 22 | 26 | 27 | 28 |
11 | 新闻标题 12 | 14 | 操作 15 |
20 | 21 | 23 | 删除 24 | 修改 25 |
29 | 添加 30 | 31 | 32 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/remarkAction/list.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags"%> 3 | 4 | 5 | My JSP 'list.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
回留言:
赞同 [1]楼 发表时间:[]
19 | 添加 20 | 21 | 22 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/remarkAction/saveUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | My JSP 'saveUI.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/roleAction/saveUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | My JSP 'saveUI.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 |
角色名称:
16 | 角色描述: 17 |
22 | 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/roleAction/setPrivilegeUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags"%> 3 | 4 | 5 | My JSP 'list.jsp' starting page 6 | 7 | 8 | 9 |

10 | 11 | /> 12 |

13 | 14 | 15 | /> 16 | 17 |
18 |
19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/userAction/myLibrary/bottom.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | 3 | 4 | 5 | My JSP 'bottom.jsp' starting page 6 | 7 | 8 |
@copyRight 9 |
10 | 11 | 12 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/userAction/myLibrary/right.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | My JSP 'right.jsp' starting page 6 | 7 | 8 | right 9 | 10 | 11 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/userAction/mylibrary.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/jsp/userAction/show.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | 3 | 4 | 5 | My JSP 'show.jsp' starting page 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aspectjrt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/aspectjrt.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/aspectjweaver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/aspectjweaver.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/c3p0-0.9.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/c3p0-0.9.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/cglib-nodep-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/cglib-nodep-2.1_3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-codec.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/commons-codec.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/commons-fileupload-1.2.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-io-1.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/commons-io-1.3.2.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/commons-logging.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/commons-logging.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/freemarker-2.3.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/freemarker-2.3.15.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.0.Final.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/hibernate3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/hibernate3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/javassist-3.12.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/javassist-3.12.0.GA.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/log4j-1.2.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/log4j-1.2.15.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/mysql-connector-java.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/mysql-connector-java.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/ognl-2.7.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/ognl-2.7.3.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-api-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/slf4j-api-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/slf4j-log4j12-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/slf4j-log4j12-1.6.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/spring.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/spring.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-core-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/struts2-core-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.8.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/struts2-spring-plugin-2.1.8.1.jar -------------------------------------------------------------------------------- /WebRoot/WEB-INF/lib/xwork-core-2.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/WEB-INF/lib/xwork-core-2.1.6.jar -------------------------------------------------------------------------------- /WebRoot/forward.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | 3 | 4 | 5 | My JSP 'forward.jsp' starting page 6 | 12 | 13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /WebRoot/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%> 2 | <% 3 | response.sendRedirect(request.getContextPath() + "/user_index.action"); 4 | %> 5 | -------------------------------------------------------------------------------- /WebRoot/jsp/indexAction/bottom.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | My JSP 'bottom.jsp' starting page 6 | 7 | 8 | 9 | 10 | 11 | 16 | 17 |
12 |
13 | @copyRight2014 14 |
15 |
18 |

19 |   20 |

21 | 22 |

23 |   24 |

25 |

26 |   27 |

28 | 29 | 30 | -------------------------------------------------------------------------------- /WebRoot/jsp/registerAction/register.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | 6 | My JSP 'test.jsp' starting page 7 | 8 | 9 | 10 | 注册成功! 11 | 返回首页 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /WebRoot/jsp/userAction/loginUI.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*,com.njit.lib.domain.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | 6 | 登陆页面 7 | 8 | 9 | <%--<% 10 | User user = (User)session.getAttribute("user"); 11 | out.print("username"+user.getName()); 12 | 13 | %> 14 | --%> 15 | 登录名:,
16 | 密码: 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /WebRoot/jsp/userAction/logout.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | 6 | My JSP 'logout.jsp' starting page 7 | 8 | 9 | 10 | 当前用户已经注销登录 11 | 12 | 13 | -------------------------------------------------------------------------------- /WebRoot/jsp/userAction/noPrivilege.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | <%@taglib prefix="s" uri="/struts-tags" %> 3 | 4 | 5 | 6 | 登陆页面 7 | 8 | 9 | 没有权限 10 | 11 | 12 | -------------------------------------------------------------------------------- /WebRoot/style/blue/file.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/file.css -------------------------------------------------------------------------------- /WebRoot/style/blue/images/1menu_btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/1menu_btn_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/1menu_btn_bg_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/1menu_btn_bg_selected.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/2311_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/2311_1.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/2311_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/2311_2.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/2311_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/2311_3.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/2311_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/2311_4.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/2311_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/2311_5.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/2311_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/2311_6.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/adage_bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/adage_bottom_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/adage_bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/adage_bottom_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/adage_top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/adage_top_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/adage_top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/adage_top_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/ar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/ar.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/arrow_d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/arrow_d.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/awokeBtnBorder_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/awokeBtnBorder_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/awokeBtn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/awokeBtn_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/bg_input_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/bg_input_text.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/bg_input_text_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/bg_input_text_hover.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/browser_title_bar_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/browser_title_bar_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btnBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btnBg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btnLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btnLeft.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btnRight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btnRight.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_all_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_all_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_all_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_all_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_to_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_to_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/btn_to_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/btn_to_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/ReturnToPrevLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/ReturnToPrevLevel.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/addNew.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/addNew.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/agree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/agree.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/agreeAndSave.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/agreeAndSave.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/close.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/deployProcessDef.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/deployProcessDef.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/disagree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/disagree.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/disagreeAndSave.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/disagreeAndSave.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/goBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/goBack.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/publishNewTopic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/publishNewTopic.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/query.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/query.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/saveToDraftBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/saveToDraftBox.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/select.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/select.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/send.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/sendBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/sendBack.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/button/submit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/button/submit.PNG -------------------------------------------------------------------------------- /WebRoot/style/blue/images/buttonUpload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/buttonUpload.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/calendar_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/calendar_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/calendar_now.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/calendar_now.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/chat_func_line1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/chat_func_line1.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/chat_func_line2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/chat_func_line2.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/dashed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/dashed.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/date_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/date_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/default.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00001.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00002.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00003.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00004.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00005.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00006.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00007.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00007.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00008.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00008.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00009.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00009.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00010.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00010.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00012.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00012.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00013.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00013.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00014.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00014.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00015.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00015.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00016.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00016.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00017.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00017.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00018.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00018.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00019.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00019.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00020.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00020.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00021.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00021.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00023.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00023.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00024.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00024.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00025.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00025.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/FUNC00026.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/FUNC00026.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/close.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/define.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/define.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/leftMenu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/leftMenu.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/line.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/list.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/min.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/min.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/more.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/refresh.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop/revert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop/revert.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_bar_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_bar_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_bar_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_bar_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_bar_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_bar_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_bar_underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_bar_underline.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_right_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_right_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_right_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_right_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_right_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_right_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_right_votting_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_right_votting_line.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/desktop_votting_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/desktop_votting_button.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/folder.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/folder2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/folder2.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/func_btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/func_btn_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/func_btn_bg_nobottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/func_btn_bg_nobottom.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/func_btn_head_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/func_btn_head_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/func_btn_head_bg_nobottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/func_btn_head_bg_nobottom.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/func_btn_tail_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/func_btn_tail_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/func_btn_tail_bg_nobottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/func_btn_tail_bg_nobottom.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/go.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/head2_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/head2_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/index_bar_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/index_bar_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/index_bar_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/index_bar_left.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/index_bar_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/index_bar_right.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/index_bar_underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/index_bar_underline.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/inputPageHeadBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/inputPageHeadBg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/item_point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/item_point.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/item_title_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/item_title_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/item_title_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/item_title_bg.jpg -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/imgCode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/imgCode.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/language.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/language.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/password.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/password.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/selectSystem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/selectSystem.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/style.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/style.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/userId.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/userId.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login/userLogin_button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login/userLogin_button.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/login_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/login_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/logo.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/logo_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/logo_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/logout/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/logout/logout.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/logout/logout1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/logout/logout1.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/logout/logout2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/logout/logout2.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/logout/logout3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/logout/logout3.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_arrow_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_arrow_close.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_arrow_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_arrow_open.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_arrow_point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_arrow_point.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_arrow_single.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_arrow_single.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_bg.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_bg_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_bg_2.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_bg_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_bg_3.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_bg_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_bg_head.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_btn_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_btn_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_btn_bg_selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_btn_bg_selected.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_head_title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_head_title.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_line_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_line_2.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/menu_line_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/menu_line_3.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/msg_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/msg_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigationBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigationBg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_01.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_02.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_03.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_04.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_05.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_06.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_07.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_07.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_08.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_09.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_09.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/navigation_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/navigation_10.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/newMsgLine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/newMsgLine.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector/firstPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector/firstPage.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector/firstPage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector/firstPage2.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector/forward10page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector/forward10page.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector/lastPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector/lastPage.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector/lastPage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector/lastPage2.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector/prev10page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector/prev10page.png -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pageSelector_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pageSelector_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pannel_day.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pannel_day.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pannel_month.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pannel_month.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pannel_point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pannel_point.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/pannel_week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/pannel_week.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/photBackColor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/photBackColor.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/point.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/point.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/search.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/tab_page_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/tab_page_head.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/tag_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/tag_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/tag_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/tag_head.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/tag_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/tag_line.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/tag_tail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/tag_tail.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/title_bar_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/title_bar_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/title_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/title_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/title_bg_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/title_bg_end.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/title_bg_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/title_bg_head.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top/desktop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top/desktop.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top/help.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top/logout.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top/search.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top/version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top/version.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/top_left_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/top_left_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/upload.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/uploadFile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/uploadFile.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/version_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/version_bg.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/images/复件 logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/images/复件 logo.gif -------------------------------------------------------------------------------- /WebRoot/style/blue/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/menu.css -------------------------------------------------------------------------------- /WebRoot/style/blue/selectPerson.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/selectPerson.css -------------------------------------------------------------------------------- /WebRoot/style/blue/statusbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/statusbar.css -------------------------------------------------------------------------------- /WebRoot/style/blue/top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/blue/top.css -------------------------------------------------------------------------------- /WebRoot/style/images/107.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/107.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/EIE.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/EIE.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/bmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/bmp.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/chm.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/csv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/csv.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/default.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/dll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/dll.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/doc.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/eml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/eml.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/excel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/excel.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/exe.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/folder.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/folder2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/folder2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/font.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/gif-0700.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/gif-0700.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/gif-0705.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/gif-0705.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/gif-0707.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/gif-0707.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/gif.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/hlp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/hlp.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/icq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/icq.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/ie.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/ini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/ini.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/java.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/java.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/jpeg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/jpeg.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/link.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/mdb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/mdb.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/media.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/media.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/pdf.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/pps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/pps.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/ppt.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/project.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/psd.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/raq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/raq.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/rar.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/rtf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/rtf.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/shareFolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/shareFolder.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/sql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/sql.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/swf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/swf.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/sys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/sys.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/txt.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/vsd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/vsd.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/wab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/wab.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/wie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/wie.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/xml.gif -------------------------------------------------------------------------------- /WebRoot/style/images/FileType/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/FileType/zip.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20001.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20001.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20007.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20007.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20022.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20022.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20024.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20024.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20029.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20029.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20030.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20030.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20054.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20054.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20056.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20056.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20057.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20057.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20064.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20064.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20065.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20065.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20069.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20069.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20070.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20070.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20071.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20071.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20076.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20076.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20077.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20077.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20082.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20082.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20088.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20088.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC20101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC20101.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC220000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC220000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC235000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC235000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC23700.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC23700.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC241000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC241000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC249000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC249000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC251000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC251000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC261000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC261000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/FUNC55000.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/FUNC55000.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/address.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/address.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/clock.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/ie.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/mail.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/menu_arrow_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/menu_arrow_close.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/menu_arrow_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/menu_arrow_open.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/menu_arrow_single.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/menu_arrow_single.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/menu_line_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/menu_line_2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/menu_line_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/menu_line_3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/msg.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/radio_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/radio_blue.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/radio_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/radio_green.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/radio_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/radio_red.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/shoutCut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/shoutCut.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/trace.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/userMenuDefault.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/userMenuDefault.gif -------------------------------------------------------------------------------- /WebRoot/style/images/MenuIcon/waitThing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/MenuIcon/waitThing.gif -------------------------------------------------------------------------------- /WebRoot/style/images/active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/active.gif -------------------------------------------------------------------------------- /WebRoot/style/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/arrow.gif -------------------------------------------------------------------------------- /WebRoot/style/images/arrow_close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/arrow_close.gif -------------------------------------------------------------------------------- /WebRoot/style/images/arrow_open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/arrow_open.gif -------------------------------------------------------------------------------- /WebRoot/style/images/attachmenttitle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/attachmenttitle.gif -------------------------------------------------------------------------------- /WebRoot/style/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/blank.gif -------------------------------------------------------------------------------- /WebRoot/style/images/buttonUpload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/buttonUpload.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/bold.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/bullist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/bullist.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/cal.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/flash.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/formbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/formbutton.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/formcheckbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/formcheckbox.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/formdropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/formdropdown.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/formmacro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/formmacro.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/formtext.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/formtext.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/formtextarea.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/formtextarea.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/head.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/hr.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/image.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/italic.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/jcenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/jcenter.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/jleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/jleft.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/jright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/jright.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/link.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/numlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/numlist.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/ol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/ol.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/separator.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/sql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/sql.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/tableinsert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/tableinsert.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/ul.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/ul.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/html/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/html/underline.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/11line7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/11line7.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line0.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line5.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line6.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line7.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line8.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/line/line9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/line/line9.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/0916.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/0916.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/0920.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/0920.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/1101.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/1101.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/1110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/1110.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/1610.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/1610.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/1710.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/1710.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/1810.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/1810.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/2203.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/2203.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/2319.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/2319.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/3405.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/3405.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/3611.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/3611.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/3905.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/3905.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/4003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/4003.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/4105.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/4105.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/4115.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/4115.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/4120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/4120.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/navigation/5511.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/navigation/5511.gif -------------------------------------------------------------------------------- /WebRoot/style/images/comm/usermenu_ico/userMenuDefault.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/comm/usermenu_ico/userMenuDefault.gif -------------------------------------------------------------------------------- /WebRoot/style/images/createNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/createNew.png -------------------------------------------------------------------------------- /WebRoot/style/images/defaultAvatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/defaultAvatar.gif -------------------------------------------------------------------------------- /WebRoot/style/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/delete.gif -------------------------------------------------------------------------------- /WebRoot/style/images/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/down.gif -------------------------------------------------------------------------------- /WebRoot/style/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/edit.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face10.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face11.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face12.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face13.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face14.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face5.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face6.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face7.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face8.gif -------------------------------------------------------------------------------- /WebRoot/style/images/face/face9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/face/face9.gif -------------------------------------------------------------------------------- /WebRoot/style/images/find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/find.gif -------------------------------------------------------------------------------- /WebRoot/style/images/folder_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/folder_up.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forum_comm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forum_comm.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forum_hot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forum_hot.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forum_lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forum_lock.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forum_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forum_top.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forumpage1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forumpage1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forumpage2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forumpage2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forumpage3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forumpage3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/forumpage4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/forumpage4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/gif_57_051.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/gif_57_051.gif -------------------------------------------------------------------------------- /WebRoot/style/images/goBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/goBack.png -------------------------------------------------------------------------------- /WebRoot/style/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/help.gif -------------------------------------------------------------------------------- /WebRoot/style/images/icq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/icq.gif -------------------------------------------------------------------------------- /WebRoot/style/images/insert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/insert.gif -------------------------------------------------------------------------------- /WebRoot/style/images/item_title_bg1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/item_title_bg1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/left.gif -------------------------------------------------------------------------------- /WebRoot/style/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/loading.gif -------------------------------------------------------------------------------- /WebRoot/style/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/new.gif -------------------------------------------------------------------------------- /WebRoot/style/images/no_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/no_active.gif -------------------------------------------------------------------------------- /WebRoot/style/images/nosub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/nosub.gif -------------------------------------------------------------------------------- /WebRoot/style/images/ok1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/ok1.PNG -------------------------------------------------------------------------------- /WebRoot/style/images/point_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/point_blue.gif -------------------------------------------------------------------------------- /WebRoot/style/images/priority.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/priority.gif -------------------------------------------------------------------------------- /WebRoot/style/images/quote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/quote.gif -------------------------------------------------------------------------------- /WebRoot/style/images/reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/reply.gif -------------------------------------------------------------------------------- /WebRoot/style/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/save.png -------------------------------------------------------------------------------- /WebRoot/style/images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/search.gif -------------------------------------------------------------------------------- /WebRoot/style/images/selected.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/selected.gif -------------------------------------------------------------------------------- /WebRoot/style/images/tableInsert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/tableInsert.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_cancel.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_date.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_date.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_down.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_icon.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_last.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_next.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_save.gif -------------------------------------------------------------------------------- /WebRoot/style/images/time_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/time_up.gif -------------------------------------------------------------------------------- /WebRoot/style/images/title_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/title_arrow.gif -------------------------------------------------------------------------------- /WebRoot/style/images/title_bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/title_bg1.png -------------------------------------------------------------------------------- /WebRoot/style/images/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/client.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/client.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/help.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/mail.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/msg.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/record.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/sendDoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/sendDoc.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/task.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/task.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/text.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/trace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/trace.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/user.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/user_setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/user_setup.gif -------------------------------------------------------------------------------- /WebRoot/style/images/top/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/top/wait.gif -------------------------------------------------------------------------------- /WebRoot/style/images/topicType_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/topicType_0.gif -------------------------------------------------------------------------------- /WebRoot/style/images/topicType_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/topicType_1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/topicType_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/topicType_2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/txt.gif -------------------------------------------------------------------------------- /WebRoot/style/images/uploadSelectedFiles.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/uploadSelectedFiles.PNG -------------------------------------------------------------------------------- /WebRoot/style/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/user.gif -------------------------------------------------------------------------------- /WebRoot/style/images/vote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/vote.gif -------------------------------------------------------------------------------- /WebRoot/style/images/votelock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/votelock.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/0.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/10.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/11.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/12.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/13.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/14.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/15.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/16.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/17.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/18.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/19.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/20.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/21.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/22.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/23.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/24.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/25.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/26.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/27.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/28.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/29.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/30.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/31.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/5.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/6.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/7.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/8.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/9.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/Read me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/Read me.txt -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_0.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_10.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_11.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_12.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_13.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_14.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_15.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_16.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_17.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_18.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_19.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_20.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_21.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_22.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_23.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_24.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_25.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_26.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_27.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_28.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_29.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_30.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_31.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_5.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_6.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_7.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_8.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_9.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/a_nothing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/a_nothing.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_0.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_10.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_11.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_12.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_13.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_14.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_15.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_16.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_17.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_18.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_19.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_20.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_21.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_22.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_23.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_24.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_25.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_26.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_27.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_28.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_29.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_30.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_31.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_5.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_6.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_7.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_8.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_9.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/b_nothing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/b_nothing.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/nothing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/nothing.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/r_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/r_b.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/r_t1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/r_t1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/tem1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/tem1.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/tem2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/tem2.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/tem3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/tem3.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/tem4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/tem4.gif -------------------------------------------------------------------------------- /WebRoot/style/images/weather/tem5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/WebRoot/style/images/weather/tem5.gif -------------------------------------------------------------------------------- /WebRoot/test.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 2 | 3 | 4 | 5 | 6 | 14 | My JSP 'test.jsp' starting page 15 | 16 | 17 | 18 | 19 | test! 20 | 21 | 22 | -------------------------------------------------------------------------------- /config/jdbc.properties: -------------------------------------------------------------------------------- 1 | jdbcUrl=jdbc\:mysql\://localhost\:3306/bookcms1116 2 | driverClass=com.mysql.jdbc.Driver 3 | user=root 4 | password=root 5 | -------------------------------------------------------------------------------- /src/com/njit/lib/base/DaoSupport.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.base; 2 | 3 | import java.util.List; 4 | 5 | import com.njit.lib.domain.SplitBean; 6 | 7 | 8 | public interface DaoSupport { 9 | public void add(T entity);//增加 10 | public void update(T entity);//改 11 | public T getById(Long id);//查 12 | public void delete(Long id); 13 | public List findAll(); 14 | //查询分页列表 15 | public List findSinglePage(SplitBean splitBean); 16 | 17 | } 18 | -------------------------------------------------------------------------------- /src/com/njit/lib/domain/Bed.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.domain; 2 | 3 | import javax.persistence.Entity; 4 | import javax.persistence.GeneratedValue; 5 | import javax.persistence.Id; 6 | 7 | @Entity 8 | public class Bed { 9 | private Long id; 10 | private String name; 11 | @Id 12 | @GeneratedValue 13 | public Long getId() { 14 | return id; 15 | } 16 | public void setId(Long id) { 17 | this.id = id; 18 | } 19 | public String getName() { 20 | return name; 21 | } 22 | public void setName(String name) { 23 | this.name = name; 24 | } 25 | 26 | 27 | } 28 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/AdvertisementService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import java.util.List; 4 | 5 | import com.njit.lib.base.DaoSupport; 6 | import com.njit.lib.domain.Advertisement; 7 | import com.njit.lib.domain.SplitBean; 8 | 9 | public interface AdvertisementService extends DaoSupport{ 10 | 11 | List findTopFive(); 12 | //获取上一条记录 13 | Advertisement getUp(Long id); 14 | //获取下一条记录 15 | Advertisement getDown(Long id); 16 | 17 | 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/ArticleService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import com.njit.lib.base.DaoSupport; 4 | import com.njit.lib.domain.Article; 5 | 6 | public interface ArticleService extends DaoSupport
{ 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/ChannelService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import java.util.List; 4 | 5 | import com.njit.lib.base.DaoSupport; 6 | import com.njit.lib.domain.Channel; 7 | 8 | public interface ChannelService extends DaoSupport{ 9 | 10 | List findAll(int type); 11 | 12 | } 13 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/MessageService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import java.util.List; 4 | 5 | import com.njit.lib.base.DaoSupport; 6 | import com.njit.lib.domain.Message; 7 | 8 | public interface MessageService extends DaoSupport{ 9 | 10 | List findLastFive(); 11 | 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/NewsService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import java.util.List; 4 | 5 | import com.njit.lib.base.DaoSupport; 6 | import com.njit.lib.domain.News; 7 | import com.njit.lib.domain.SplitBean; 8 | public interface NewsService extends DaoSupport{ 9 | //根据type类型,来查询相应的列表 10 | List findAll(int type); 11 | List findSinglePage(int type,SplitBean splitBean); 12 | //查询最新的五条记录 13 | List findLastFive(int i); 14 | //查询上一条记录 15 | News getPrevious(Long id, int type); 16 | //查询下一条记录 17 | News getNext(Long id, int type); 18 | 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/PrivilegeService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import java.util.Collection; 4 | import java.util.List; 5 | 6 | import com.njit.lib.base.DaoSupport; 7 | import com.njit.lib.domain.Privilege; 8 | 9 | public interface PrivilegeService extends DaoSupport { 10 | 11 | Collection getAllPrivilegeUrls(); 12 | } 13 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/RemarkService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import com.njit.lib.base.DaoSupport; 4 | import com.njit.lib.domain.Remark; 5 | 6 | public interface RemarkService extends DaoSupport{ 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/RoleService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | import com.njit.lib.base.DaoSupport; 4 | import com.njit.lib.domain.Role; 5 | 6 | public interface RoleService extends DaoSupport{ 7 | 8 | } 9 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/UserService.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service; 2 | 3 | 4 | import com.njit.lib.base.DaoSupport; 5 | import com.njit.lib.domain.User; 6 | 7 | public interface UserService extends DaoSupport{ 8 | /** 9 | * 初始化密码 10 | */ 11 | void initPass(User user); 12 | /** 13 | * 登陆验证 14 | * @param loginName 15 | * @param password 16 | * @return 17 | */ 18 | User findUserByLoginNameAndPassword(String loginName, String password); 19 | 20 | } 21 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/impl/ChannelServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service.impl; 2 | 3 | import java.util.List; 4 | 5 | import org.springframework.stereotype.Service; 6 | import org.springframework.transaction.annotation.Transactional; 7 | 8 | import com.njit.lib.base.DaoSupportImpl; 9 | import com.njit.lib.domain.Channel; 10 | import com.njit.lib.service.ChannelService; 11 | @Service 12 | @Transactional 13 | @SuppressWarnings("unchecked") 14 | public class ChannelServiceImpl extends DaoSupportImpl implements ChannelService { 15 | 16 | public List findAll(int type) { 17 | return getSession().createQuery( 18 | "FROM Channel c WHERE c.type =?") 19 | .setParameter(0, type) 20 | .list(); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/impl/RemarkServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service.impl; 2 | 3 | 4 | import org.springframework.stereotype.Service; 5 | import org.springframework.transaction.annotation.Transactional; 6 | 7 | import com.njit.lib.base.DaoSupportImpl; 8 | import com.njit.lib.domain.Remark; 9 | import com.njit.lib.service.RemarkService; 10 | @Service 11 | @Transactional 12 | public class RemarkServiceImpl extends DaoSupportImpl implements RemarkService{ 13 | 14 | } 15 | -------------------------------------------------------------------------------- /src/com/njit/lib/service/impl/RoleServiceImpl.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.service.impl; 2 | 3 | import org.springframework.stereotype.Service; 4 | import org.springframework.transaction.annotation.Transactional; 5 | 6 | import com.njit.lib.base.DaoSupportImpl; 7 | import com.njit.lib.domain.Role; 8 | import com.njit.lib.service.RoleService; 9 | @Service 10 | @Transactional 11 | public class RoleServiceImpl extends DaoSupportImpl implements RoleService { 12 | 13 | } 14 | -------------------------------------------------------------------------------- /src/com/njit/lib/utils/CloseUtils.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.utils; 2 | 3 | import java.io.Closeable; 4 | import java.io.IOException; 5 | 6 | public class CloseUtils { 7 | public static void closeAll(Closeable... ios){ 8 | for(Closeable io:ios){ 9 | if(io!=null){ 10 | try { 11 | io.close(); 12 | } catch (IOException e) { 13 | e.printStackTrace(); 14 | } 15 | } 16 | } 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /src/com/njit/lib/view/action/LibraryAction.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib.view.action; 2 | 3 | import org.springframework.context.annotation.Scope; 4 | import org.springframework.stereotype.Controller; 5 | 6 | import com.opensymphony.xwork2.ActionSupport; 7 | 8 | @Controller 9 | @Scope("prototype") 10 | public class LibraryAction extends ActionSupport{ 11 | public String top() throws Exception { 12 | return "top"; 13 | 14 | } 15 | 16 | public String right() throws Exception { 17 | return "right"; 18 | 19 | } 20 | 21 | public String left() throws Exception { 22 | return "left"; 23 | 24 | } 25 | 26 | public String bottom() throws Exception { 27 | return "bottom"; 28 | 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /test/com/njit/lib/HibernateTest.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib; 2 | 3 | import org.hibernate.Session; 4 | import org.hibernate.SessionFactory; 5 | import org.hibernate.cfg.AnnotationConfiguration; 6 | import org.junit.Test; 7 | 8 | import com.njit.lib.domain.User; 9 | 10 | public class HibernateTest { 11 | private SessionFactory sessionFactory = new AnnotationConfiguration().configure().buildSessionFactory(); 12 | @Test 13 | public void testSave() throws Exception { 14 | Session session = sessionFactory.getCurrentSession(); 15 | session.beginTransaction(); 16 | session.save(new User()); 17 | session.getTransaction().commit(); 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /test/com/njit/lib/ServiceTest.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib; 2 | 3 | import javax.annotation.Resource; 4 | 5 | import org.hibernate.Session; 6 | import org.hibernate.SessionFactory; 7 | import org.junit.Test; 8 | import org.springframework.stereotype.Service; 9 | import org.springframework.transaction.annotation.Transactional; 10 | 11 | import com.njit.lib.domain.User; 12 | @Service 13 | @Transactional 14 | public class ServiceTest { 15 | @Resource 16 | private SessionFactory sessionFactory; 17 | @Test 18 | public void saveTwoUsers(){ 19 | Session session =sessionFactory.getCurrentSession(); 20 | session.save(new User()); 21 | // int a =1/0; 22 | session.save(new User()); 23 | 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /test/com/njit/lib/Test.java: -------------------------------------------------------------------------------- 1 | package com.njit.lib; 2 | 3 | import java.util.UUID; 4 | 5 | public class Test { 6 | public static void main(String[] args) { 7 | System.out.println(UUID.randomUUID()); 8 | } 9 | 10 | 11 | 12 | } 13 | -------------------------------------------------------------------------------- /testGit: -------------------------------------------------------------------------------- 1 | test for git 2 | -------------------------------------------------------------------------------- /testGit2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WiseWolfs/BookCMS/fa480a650dbc30a935e58f6a533264aed5ec7712/testGit2.txt --------------------------------------------------------------------------------