├── README.md ├── pom.xml ├── sql └── edf.sql └── src └── main ├── java └── com │ └── bupt │ ├── controller │ ├── DefaultController.java │ ├── UserController.java │ └── upload │ │ └── ResourceOperationController.java │ ├── dao │ ├── HibernateGenericDaoImpl.java │ ├── IHibernateGenericDao.java │ ├── resource │ │ ├── IResourceDao.java │ │ └── ResourceDaoImpl.java │ └── user │ │ ├── IUserDao.java │ │ └── UserDaoImpl.java │ ├── domain │ ├── DefaultDao.java │ ├── EmployInfoModel.java │ ├── Resource.java │ └── User.java │ ├── filter │ ├── ContextFilter.java │ ├── ProxyFilter.java │ └── ThreadLocalFilter.java │ ├── service │ ├── converter │ │ ├── AbstractConverter.java │ │ ├── ConverterContext.java │ │ ├── OfficeConverter.java │ │ └── PdfConverter.java │ ├── resource │ │ ├── IResourceOperationService.java │ │ └── ResourceOperationServiceImpl.java │ └── usesr │ │ ├── IUserService.java │ │ └── UserServiceImpl.java │ ├── util │ ├── Constants.java │ ├── FileUtil.java │ ├── LoggerUtil.java │ ├── Office2PDF.java │ ├── ResourceSizeUtil.java │ └── ResourceUtil.java │ └── webContext │ ├── BRWebApplicationContext.java │ └── WebContextThreadLocal.java ├── resources ├── config.properties ├── log4j.properties ├── pdfconverter │ ├── jod-juh-3.2.1.jar │ ├── jod-jurt-3.2.1.jar │ ├── jod-ridl-3.2.1.jar │ ├── jod-unoil-3.2.1.jar │ └── jodconverter-core-3.0.jar └── spring │ ├── applicationContext-db.xml │ ├── applicationContext.xml │ └── springmvc-servlet.xml └── webapp ├── FlexPaper_1.4.5_flash ├── Changelog.txt ├── FlexPaperViewer.swf ├── LICENSE-COMMERCIAL.txt ├── LICENSE-UNLIMITED.txt ├── LICENSE.txt ├── Paper.swf ├── examples │ ├── interactive_API.html │ ├── searchmatchall.html │ └── two_page.html ├── highlight.xml ├── index.html ├── js │ ├── flexpaper_flash.js │ ├── flexpaper_flash_debug.js │ └── jquery.js ├── php │ ├── FlexPaperViewer.swf │ ├── js │ │ ├── flexpaper_flash.js │ │ ├── flexpaper_flash_debug.js │ │ └── jquery.js │ ├── lib │ │ ├── common.php │ │ ├── config.ini.nix.php │ │ ├── config.ini.win.php │ │ ├── config.php │ │ ├── pdf2swf_php5.php │ │ └── swfextract_php5.php │ ├── pdf │ │ ├── Paper.pdf │ │ └── Report.pdf │ ├── playerProductInstall.swf │ ├── services │ │ ├── containstext.php │ │ ├── numpages.php │ │ └── view.php │ ├── simple_document.php │ └── split_document.php ├── playerProductInstall.swf └── report.xml ├── WEB-INF ├── views │ ├── index.jsp │ └── snippet │ │ ├── doc.jsp │ │ └── meta.jsp └── web.xml ├── css └── base.css ├── img ├── CHM.png ├── bmp.png ├── btn_sovideo.gif ├── btn_upload.jpg ├── cover.jpg ├── doc.png ├── docx.png ├── e-book.gif ├── epub.png ├── file.png ├── gif.png ├── gold.png ├── head.png ├── jpeg.png ├── jpg.png ├── logo_sovideo.gif ├── logo_sovideo.png ├── magnifier.gif ├── pdf.png ├── png.png ├── ppt.png ├── pptx.png ├── rar.png ├── sql.png ├── txt.png ├── word.png ├── xls.png ├── xlsx.png └── zip.png └── js ├── base.js ├── commonUpload.js ├── flexpaper_flash.js ├── flexpaper_flash_debug.js ├── jquery.js └── uploadify ├── jquery.uploadify-3.1.js ├── jquery.uploadify-3.1.min.js ├── license.txt ├── uploadify-cancel.png ├── uploadify.css └── uploadify.swf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/pom.xml -------------------------------------------------------------------------------- /sql/edf.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/sql/edf.sql -------------------------------------------------------------------------------- /src/main/java/com/bupt/controller/DefaultController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/controller/DefaultController.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/controller/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/controller/UserController.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/controller/upload/ResourceOperationController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/controller/upload/ResourceOperationController.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/dao/HibernateGenericDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/dao/HibernateGenericDaoImpl.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/dao/IHibernateGenericDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/dao/IHibernateGenericDao.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/dao/resource/IResourceDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/dao/resource/IResourceDao.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/dao/resource/ResourceDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/dao/resource/ResourceDaoImpl.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/dao/user/IUserDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/dao/user/IUserDao.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/dao/user/UserDaoImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/dao/user/UserDaoImpl.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/domain/DefaultDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/domain/DefaultDao.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/domain/EmployInfoModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/domain/EmployInfoModel.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/domain/Resource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/domain/Resource.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/domain/User.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/filter/ContextFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/filter/ContextFilter.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/filter/ProxyFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/filter/ProxyFilter.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/filter/ThreadLocalFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/filter/ThreadLocalFilter.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/converter/AbstractConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/converter/AbstractConverter.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/converter/ConverterContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/converter/ConverterContext.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/converter/OfficeConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/converter/OfficeConverter.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/converter/PdfConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/converter/PdfConverter.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/resource/IResourceOperationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/resource/IResourceOperationService.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/resource/ResourceOperationServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/resource/ResourceOperationServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/usesr/IUserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/usesr/IUserService.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/service/usesr/UserServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/service/usesr/UserServiceImpl.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/util/Constants.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/util/FileUtil.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/util/LoggerUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/util/LoggerUtil.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/util/Office2PDF.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/util/Office2PDF.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/util/ResourceSizeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/util/ResourceSizeUtil.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/util/ResourceUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/util/ResourceUtil.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/webContext/BRWebApplicationContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/webContext/BRWebApplicationContext.java -------------------------------------------------------------------------------- /src/main/java/com/bupt/webContext/WebContextThreadLocal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/java/com/bupt/webContext/WebContextThreadLocal.java -------------------------------------------------------------------------------- /src/main/resources/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/config.properties -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /src/main/resources/pdfconverter/jod-juh-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/pdfconverter/jod-juh-3.2.1.jar -------------------------------------------------------------------------------- /src/main/resources/pdfconverter/jod-jurt-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/pdfconverter/jod-jurt-3.2.1.jar -------------------------------------------------------------------------------- /src/main/resources/pdfconverter/jod-ridl-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/pdfconverter/jod-ridl-3.2.1.jar -------------------------------------------------------------------------------- /src/main/resources/pdfconverter/jod-unoil-3.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/pdfconverter/jod-unoil-3.2.1.jar -------------------------------------------------------------------------------- /src/main/resources/pdfconverter/jodconverter-core-3.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/pdfconverter/jodconverter-core-3.0.jar -------------------------------------------------------------------------------- /src/main/resources/spring/applicationContext-db.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/spring/applicationContext-db.xml -------------------------------------------------------------------------------- /src/main/resources/spring/applicationContext.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/spring/applicationContext.xml -------------------------------------------------------------------------------- /src/main/resources/spring/springmvc-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/resources/spring/springmvc-servlet.xml -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/Changelog.txt -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/FlexPaperViewer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/FlexPaperViewer.swf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/LICENSE-COMMERCIAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/LICENSE-COMMERCIAL.txt -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/LICENSE-UNLIMITED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/LICENSE-UNLIMITED.txt -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/LICENSE.txt -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/Paper.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/Paper.swf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/examples/interactive_API.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/examples/interactive_API.html -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/examples/searchmatchall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/examples/searchmatchall.html -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/examples/two_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/examples/two_page.html -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/highlight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/highlight.xml -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/index.html -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/js/flexpaper_flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/js/flexpaper_flash.js -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/js/flexpaper_flash_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/js/flexpaper_flash_debug.js -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/js/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/FlexPaperViewer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/FlexPaperViewer.swf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/js/flexpaper_flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/js/flexpaper_flash.js -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/js/flexpaper_flash_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/js/flexpaper_flash_debug.js -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/js/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/lib/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/lib/common.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/lib/config.ini.nix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/lib/config.ini.nix.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/lib/config.ini.win.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/lib/config.ini.win.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/lib/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/lib/config.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/lib/pdf2swf_php5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/lib/pdf2swf_php5.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/lib/swfextract_php5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/lib/swfextract_php5.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/pdf/Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/pdf/Paper.pdf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/pdf/Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/pdf/Report.pdf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/playerProductInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/playerProductInstall.swf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/services/containstext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/services/containstext.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/services/numpages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/services/numpages.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/services/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/services/view.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/simple_document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/simple_document.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/php/split_document.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/php/split_document.php -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/playerProductInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/playerProductInstall.swf -------------------------------------------------------------------------------- /src/main/webapp/FlexPaper_1.4.5_flash/report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/FlexPaper_1.4.5_flash/report.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/WEB-INF/views/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippet/doc.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/WEB-INF/views/snippet/doc.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/views/snippet/meta.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/WEB-INF/views/snippet/meta.jsp -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/css/base.css -------------------------------------------------------------------------------- /src/main/webapp/img/CHM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/CHM.png -------------------------------------------------------------------------------- /src/main/webapp/img/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/bmp.png -------------------------------------------------------------------------------- /src/main/webapp/img/btn_sovideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/btn_sovideo.gif -------------------------------------------------------------------------------- /src/main/webapp/img/btn_upload.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/btn_upload.jpg -------------------------------------------------------------------------------- /src/main/webapp/img/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/cover.jpg -------------------------------------------------------------------------------- /src/main/webapp/img/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/doc.png -------------------------------------------------------------------------------- /src/main/webapp/img/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/docx.png -------------------------------------------------------------------------------- /src/main/webapp/img/e-book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/e-book.gif -------------------------------------------------------------------------------- /src/main/webapp/img/epub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/epub.png -------------------------------------------------------------------------------- /src/main/webapp/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/file.png -------------------------------------------------------------------------------- /src/main/webapp/img/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/gif.png -------------------------------------------------------------------------------- /src/main/webapp/img/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/gold.png -------------------------------------------------------------------------------- /src/main/webapp/img/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/head.png -------------------------------------------------------------------------------- /src/main/webapp/img/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/jpeg.png -------------------------------------------------------------------------------- /src/main/webapp/img/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/jpg.png -------------------------------------------------------------------------------- /src/main/webapp/img/logo_sovideo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/logo_sovideo.gif -------------------------------------------------------------------------------- /src/main/webapp/img/logo_sovideo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/logo_sovideo.png -------------------------------------------------------------------------------- /src/main/webapp/img/magnifier.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/magnifier.gif -------------------------------------------------------------------------------- /src/main/webapp/img/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/pdf.png -------------------------------------------------------------------------------- /src/main/webapp/img/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/png.png -------------------------------------------------------------------------------- /src/main/webapp/img/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/ppt.png -------------------------------------------------------------------------------- /src/main/webapp/img/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/pptx.png -------------------------------------------------------------------------------- /src/main/webapp/img/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/rar.png -------------------------------------------------------------------------------- /src/main/webapp/img/sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/sql.png -------------------------------------------------------------------------------- /src/main/webapp/img/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/txt.png -------------------------------------------------------------------------------- /src/main/webapp/img/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/word.png -------------------------------------------------------------------------------- /src/main/webapp/img/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/xls.png -------------------------------------------------------------------------------- /src/main/webapp/img/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/xlsx.png -------------------------------------------------------------------------------- /src/main/webapp/img/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/img/zip.png -------------------------------------------------------------------------------- /src/main/webapp/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/base.js -------------------------------------------------------------------------------- /src/main/webapp/js/commonUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/commonUpload.js -------------------------------------------------------------------------------- /src/main/webapp/js/flexpaper_flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/flexpaper_flash.js -------------------------------------------------------------------------------- /src/main/webapp/js/flexpaper_flash_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/flexpaper_flash_debug.js -------------------------------------------------------------------------------- /src/main/webapp/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/jquery.js -------------------------------------------------------------------------------- /src/main/webapp/js/uploadify/jquery.uploadify-3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/uploadify/jquery.uploadify-3.1.js -------------------------------------------------------------------------------- /src/main/webapp/js/uploadify/jquery.uploadify-3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/uploadify/jquery.uploadify-3.1.min.js -------------------------------------------------------------------------------- /src/main/webapp/js/uploadify/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/uploadify/license.txt -------------------------------------------------------------------------------- /src/main/webapp/js/uploadify/uploadify-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/uploadify/uploadify-cancel.png -------------------------------------------------------------------------------- /src/main/webapp/js/uploadify/uploadify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/uploadify/uploadify.css -------------------------------------------------------------------------------- /src/main/webapp/js/uploadify/uploadify.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/narutolby/Wenku/HEAD/src/main/webapp/js/uploadify/uploadify.swf --------------------------------------------------------------------------------