commit
4d1e2eb9c6
|
@ -0,0 +1,24 @@
|
|||
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
|
||||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
|
||||
|
||||
name: Java CI with Maven
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up JDK 8
|
||||
uses: actions/setup-java@v2
|
||||
with:
|
||||
java-version: '8'
|
||||
distribution: 'adopt'
|
||||
cache: maven
|
||||
- name: Build with Maven
|
||||
run: mvn -B package --file pom.xml
|
|
@ -1,4 +1,4 @@
|
|||
# file-online-preview
|
||||
# kkFileView
|
||||
|
||||
[![GitHub license](https://img.shields.io/github/license/kekingcn/kkFileView.svg?style=flat-square)](https://github.com/kekingcn/kkFileView/blob/master/LICENSE)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# file-online-preview
|
||||
# kkFileView
|
||||
此项目为文件文档在线预览项目解决方案,对标业内付费产品有【[永中office](http://dcs.yozosoft.com/)】【[office365](http://www.officeweb365.com/)】【[idocv](https://www.idocv.com/)】等,在取得公司高层同意后以Apache协议开源出来反哺社区,在此特别感谢@唐老大的支持以及@端木详笑的贡献。该项目使用流行的spring boot搭建,易上手和部署,基本支持主流办公文档的在线预览,如doc,docx,Excel,pdf,txt,zip,rar,图片等等
|
||||
### 项目特性
|
||||
|
||||
|
|
|
@ -43,11 +43,11 @@
|
|||
<!-- Le styles -->
|
||||
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<link href="/pptx/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="pptx/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<link href="/pptx/idocv/idocv_common.min.css" rel="stylesheet">
|
||||
<link href="pptx/idocv/idocv_common.min.css" rel="stylesheet">
|
||||
|
||||
<link href="/pptx/jquery.contextMenu.css" rel="stylesheet">
|
||||
<link href="pptx/jquery.contextMenu.css" rel="stylesheet">
|
||||
|
||||
<!-- BOOTSTRAP STYLE end -->
|
||||
|
||||
|
@ -79,7 +79,7 @@
|
|||
|
||||
<div class="loading-mask" style="display: block;">
|
||||
<div class="loading-zone">
|
||||
<div class="text"><img src="/pptx/img/loader_indicator_lite.gif">加载中...</div>
|
||||
<div class="text"><img src="pptx/img/loader_indicator_lite.gif">加载中...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
@ -139,9 +139,9 @@
|
|||
<!-- JavaSript
|
||||
================================================== -->
|
||||
|
||||
<script src="/pptx/jquery-3.5.1.min.js"></script>
|
||||
<script src="/pptx/jquery.contextMenu.js?v=11.2.5_20210128"></script>
|
||||
<script src="/pptx/idocv/idocv_common.min.js"></script>
|
||||
<script src="pptx/jquery-3.5.1.min.js"></script>
|
||||
<script src="pptx/jquery.contextMenu.js?v=11.2.5_20210128"></script>
|
||||
<script src="pptx/idocv/idocv_common.min.js"></script>
|
||||
|
||||
<script>
|
||||
var contextPath = '';
|
||||
|
@ -166,8 +166,8 @@
|
|||
}
|
||||
</script>
|
||||
<!-- 客户自定义JS -->
|
||||
<script src="/pptx/jquery.mobile-events.min.js"></script>
|
||||
<script src="/pptx/ppt.js"></script>
|
||||
<script src="pptx/jquery.mobile-events.min.js"></script>
|
||||
<script src="pptx/ppt.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue