xueli.xue il y a 9 ans
Parent
révision
47011ffdf3

+ 4 - 1
README.md Voir le fichier

@@ -23,6 +23,7 @@ git.osc地址:http://git.oschina.net/xuxueli0323/xxl-job
23 23
 	9、支持任务失败次数超阈值邮件报警;
24 24
 	10、支持在线查看,执行器详细日志;
25 25
 	11、支持远程任务执行终止;
26
+	12、支持登录验证;
26 27
 
27 28
 # 新版本 V1.2.x,新特性
28 29
 	1、支持任务分组;
@@ -41,4 +42,6 @@ git.osc地址:http://git.oschina.net/xuxueli0323/xxl-job
41 42
 	
42 43
 # 其他说明
43 44
 	清楚僵尸任务:qrtz_cron_triggers、qrtz_triggers、qrtz_job_details顺序删除
44
-	V1.2新增任务日志,记得执行“tables_xxl_log.sql”生成表结构
45
+
46
+# 规划中
47
+	1、任务执行器支持远程加载Groovy;

+ 4 - 0
xxl-job-admin/src/main/webapp/WEB-INF/template/common/common.macro.ftl Voir le fichier

@@ -26,6 +26,8 @@
26 26
   
27 27
 	<!-- scrollup -->
28 28
 	<link rel="stylesheet" href="${request.contextPath}/static/plugins/scrollup/image.css">
29
+	<!-- pace -->
30
+	<link rel="stylesheet" href="${request.contextPath}/static/plugins/pace/pace-theme-minimal.css">
29 31
 </#macro>
30 32
 
31 33
 <#macro commonScript>
@@ -40,6 +42,8 @@
40 42
 
41 43
     <!-- scrollup -->
42 44
     <script src="${request.contextPath}/static/plugins/scrollup/jquery.scrollUp.min.js"></script>
45
+    <!-- pace -->
46
+    <script src="${request.contextPath}/static/plugins/pace/pace.min.js"></script>
43 47
     <script src="${request.contextPath}/static/plugins/jquery/jquery.cookie.js"></script>
44 48
     <script src="${request.contextPath}/static/js/common.1.js"></script>
45 49
 </#macro>

+ 18 - 0
xxl-job-admin/src/main/webapp/static/plugins/pace/pace-theme-minimal.css Voir le fichier

@@ -0,0 +1,18 @@
1
+/* This is a compiled file, you should be editing the file in the templates directory */
2
+.pace .pace-progress {
3
+  background: #22df80;
4
+  position: fixed;
5
+  z-index: 2000;
6
+  top: 0;
7
+  left: 0;
8
+  height: 2px;
9
+
10
+  -webkit-transition: width 1s;
11
+  -moz-transition: width 1s;
12
+  -o-transition: width 1s;
13
+  transition: width 1s;
14
+}
15
+
16
+.pace-inactive {
17
+  display: none;
18
+}

Fichier diff supprimé car celui-ci est trop grand
+ 2 - 0
xxl-job-admin/src/main/webapp/static/plugins/pace/pace.min.js