rule.xml
101 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
<?xml version="1.0" encoding="UTF-8"?>
<rules id="rule" version="1.0.0">
<tabtype id="checkjsp">
<rule id="propertychange-bind">
<name>不支持propertychange事件bind绑定方式</name>
<desc>propertychange事件bind绑定方式不支持;需改成bindPropertyChange</desc>
<content>(?i)bind\(.*?propertychange.*?,.*?function.*?\(\)</content>
<replacecontent>bindPropertyChange(function()</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="propertychange">
<name>不支持propertychange方法</name>
<desc>propertychange方法绑定事件的方式不支持;需改成bindPropertyChange</desc>
<content>(?i)(?&lt;=\.)propertychange.*?function.*?\(\)</content>
<replacecontent>bindPropertyChange(function()</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="button-type">
<name>button缺少type</name>
<desc>在button缺少type的情况下点击按钮会把form提交掉</desc>
<content>(&lt;button(?![^&lt;]*?type[^&lt;]*?))(?=[^&lt;]*?&gt;)</content>
<replacecontent>&lt;button&nbsp;type=&quot;button&quot;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="hr-center">
<name>hr中不能存在text-align:center</name>
<desc>hr中存在text-align:center,在E8中会导致hr无法居中;请删除</desc>
<content>(?i)(?&lt;=&lt;hr[^&lt;]{1,300})(text-align[\s]*:[\s]*center[\s]*[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ViewForm">
<name>ViewForm-E8中class区别大小写</name>
<desc>E8中class区别大小写,ViewForm需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[&nbsp;]?&quot;)(Viewform|viewform|VIEWFORM)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ViewForm</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-Calendar">
<name>Calendar-E8中class区别大小写</name>
<desc>E8中class区别大小写,Calendar需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[ ]?&quot;)(calendar|CALENDAR)(?=[^&lt;]*?&gt;)</content>
<replacecontent>Calendar</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ListShort">
<name>ListShort-E8中class区分大小写</name>
<desc>E8中class区别大小写,ListShort需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[ ]?&quot;)(listshort|LISTSHORT)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ListShort</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ViewForm2">
<name>ViewForm-E8中class区别大小写</name>
<desc>E8中class区别大小写,ViewForm需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(Viewform|viewform|VIEWFORM)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ViewForm</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-Calendar2">
<name>Calendar-E8中class区别大小写</name>
<desc>E8中class区别大小写,Calendar需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(calendar|CALENDAR)(?=[^&lt;]*?&gt;)</content>
<replacecontent>Calendar</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ListShort2">
<name>ListShort-在E8中class区分大小写</name>
<desc>E8中class区别大小写,ListShort需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(listshort|LISTSHORT)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ListShort</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="vbscript-type">
<name>查询是否存在vbscript</name>
<desc>查询是否存在vbscript,vbscript在非IE下不支持;请用js重写</desc>
<content>(?i)(type.*?(vbscript|vbs).*?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="vbscript-language">
<name>查询是否存在vbscript</name>
<desc>查询是否存在vbscript,非IE不支持vbscript;请用js重写</desc>
<content>(?i)(language.*?(vbscript|vbs).*?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="BrowserStyle-width">
<name>在E8中class=BrowserStyle必须设置width</name>
<desc>在E8中class=BrowserStyle必须设置width,否则浏览框列表内容很小</desc>
<content>(?i)(?&lt;=class.{0,10}?=.{0,100})([ &apos;&quot;]?BrowserStyle[ &apos;&quot;]?)(?!.*?width.*?)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="js-prev">
<name>js-prev方法检测</name>
<desc>E8中部分元素层级结构发生改变会导致之前的二次开发功能失效,请检查js中的prev方法指向的元素是否正确</desc>
<content>(?i)(prev\(\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="js-child">
<name>js-child方法检测</name>
<desc>E8中部分元素层级结构发生改变会导致之前的二次开发功能失效,请检查js中的prev方法指向的元素是否正确</desc>
<content>(?i)(child\(\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="BUTTON-type">
<name>BUTTON缺少type</name>
<desc>BUTTON缺少type的情况下点击按钮会提交表单</desc>
<content>(&lt;BUTTON(?![^&lt;]*?type[^&lt;]*?))(?=[^&lt;]*?&gt;)</content>
<replacecontent>&lt;BUTTON&nbsp;type=&quot;button&quot;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="bindPropertyChange-this">
<name>bindPropertyChange不能直接使用this获得对象</name>
<desc>bindPropertyChange的function内部不能直接通过jQuery(this)取对象,需使用function(vthis)传参数方式</desc>
<content>(?i)(.*?bindPropertyChange[\s\S]*?this[\s\S]*?}[\s\S]*?\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="tr-displayblock">
<name>tr不能设置display为block</name>
<desc>在chrome下tr作为块级元素只占了一列的宽度</desc>
<content>(?i)(?&lt;=&lt;tr[^&gt;]{0,300})(display.*?block.*?[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="table-DXImageTransform">
<name>table元素不能设置filter为DXImageTransform</name>
<desc>在E8中如果table元素设置了filter为DXImageTransform,将导致多行文本字段,如果内容过多时显示不全</desc>
<content>(?i)(filter.*?DXImageTransform.Microsoft.Shadow[\s\S]*\(.*?\)[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="attr-checked">
<name>attr(&quot;checked&quot;,&quot;&quot;)失效</name>
<desc>在E8中attr(&quot;checked&quot;,&quot;&quot;)失效,需要改成removeAttr(&quot;checked&quot;)</desc>
<content>(?i)(attr\(.*?checked.*?&quot;&quot;\))</content>
<replacecontent>removeAttr(&quot;checked&quot;)</replacecontent>
<version />
<xpath />
<requisite />
</rule>
</tabtype>
<tabtype id="checkhtml">
<rule id="propertychange-bind">
<name>propertychange事件bind绑定方式不支持</name>
<desc>propertychange事件bind绑定方式不支持,请改成bindPropertyChange</desc>
<content>(?i)bind\(.*?propertychange.*?,.*?function.*?\(\)</content>
<replacecontent>bindPropertyChange(function()</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="propertychange">
<name>propertychange方法</name>
<desc>propertychange方法绑定事件的方式不支持,请改成bindPropertyChange</desc>
<content>(?i)(?&lt;=\.)propertychange.*?function.*?\(\)</content>
<replacecontent>bindPropertyChange(function()</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="button-type">
<name>button缺少type</name>
<desc>在button缺少type的情况下点击按钮会把form提交掉</desc>
<content>(&lt;button(?![^&lt;]*?type[^&lt;]*?))(?=[^&lt;]*?&gt;)</content>
<replacecontent>&lt;button&nbsp;type=&quot;button&quot;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="hr-center">
<name>hr中存在text-align:center</name>
<desc>hr中存在text-align:center,在E8中会导致hr无法居中,请删除</desc>
<content>(?i)(?&lt;=&lt;hr[^&lt;]{1,300})(text-align[ ]*:[ ]*center[ ]*[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent>&nbsp;&nbsp;&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ViewForm">
<name>ViewForm-E8中class区别大小写</name>
<desc>E8中class区别大小写,ViewForm需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[&nbsp;]?&quot;)(Viewform|viewform|VIEWFORM)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ViewForm</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-Calendar">
<name>Calendar-E8中class区别大小写</name>
<desc>E8中class区别大小写,Calendar需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[ ]?&quot;)(calendar|CALENDAR)(?=[^&lt;]*?&gt;)</content>
<replacecontent>Calendar</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ListShort">
<name>ListShort-E8中class区分大小写</name>
<desc>E8中class区别大小写,ListShort需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[ ]?&quot;)(listshort|LISTSHORT)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ListShort</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ViewForm2">
<name>ViewForm-E8中class区别大小写</name>
<desc>E8中class区别大小写,ViewForm需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(Viewform|viewform|VIEWFORM)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ViewForm</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-Calendar2">
<name>Calendar-E8中class区别大小写</name>
<desc>E8中class区别大小写,Calendar需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(calendar|CALENDAR)(?=[^&lt;]*?&gt;)</content>
<replacecontent>Calendar</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ListShort2">
<name>ListShort-在E8中class区分大小写</name>
<desc>E8中class区别大小写,ListShort需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(listshort|LISTSHORT)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ListShort</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="vbscript-type">
<name>查询是否存在vbscript</name>
<desc>查询是否存在vbscript,vbscript在非IE下不支持;请用js重写</desc>
<content>(?i)(type.*?(vbscript|vbs).?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="vbscript-language">
<name>查询是否存在vbscript</name>
<desc>查询是否存在vbscript,非IE不支持vbscript;请用js重写</desc>
<content>(?i)(language.*?(vbscript|vbs).?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="weaver.js">
<name>不能引用weaver.js</name>
<desc>不能引用weaver.js,可直接删除</desc>
<content>(?i)(&lt;script.*?weaver\.js.*&lt;/script&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="init.jsp">
<name>不能引用init.jsp</name>
<desc>不能引用init.jsp</desc>
<content>(?i)(&lt;include.*?init\.jsp.*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="weaver.css">
<name>不能引用weaver.css</name>
<desc>不能引用weaver.css,可直接删除</desc>
<content>(?i)(&lt;link.*?weaver\.css.*?\/&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="jquery.js">
<name>不能引用jquery.js</name>
<desc>不能引用jquery.js,可直接删除</desc>
<content>(?i)(&lt;script.*?jquery\.js.*&lt;/script&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="commom.css">
<name>不能引入commom.css</name>
<desc>不能引入commom.css,可直接删除</desc>
<content>(?i)(&lt;link.*?commom\.css.*?\/&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="table0button">
<name>在E8中明细表的id不是table0button</name>
<desc>在E8中明细表的id不是table0button,而是oTable0</desc>
<content>#table0button</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="trim">
<name>js的trim()方法在E8中不能用</name>
<desc>js的trim()方法在E8中不能用</desc>
<content>\.trim\(\)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="import-css">
<name>引入了css文件</name>
<desc>引入了其他的css文件,可能会导致模板样式错乱的情况,请排查一下</desc>
<content>(?i)(&lt;link.*\/&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="p-center">
<name>E7的老模板在chrome下的&lt;p&gt;标签内容不能居中</name>
<desc>&lt;p&gt;为段落标签,在标准模式下&lt;p&gt;里包含非段落元素会直接头尾结束掉;需改为&lt;div align=&quot;center&quot;&gt;</desc>
<content>(?i)(&lt;p.*?align[ ]*?=([\s\S](?!&lt;\/p&gt;))*?table)(?=[\s\S]*?&lt;/p&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="addrow-return1">
<name>addrow方法没有需要返回false;</name>
<desc>明细表添加行的方法,需要return false;否则添加明细行可能失败</desc>
<content>(?i)(function.*?addrow[\s\S]*?return[ ]*?;[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="addrow-return2">
<name>addrow方法没有返回值</name>
<desc>明细表添加行的方法,需要return&nbsp;false;否则添加明细行可能失败</desc>
<content>(?i)(function.*?addrow)(?![\s\S]*?return[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="deleterow-return1">
<name>deleterow方法没有需要返回false</name>
<desc>明细表删除行的方法,需要return false;否则删除明细行可能失败</desc>
<content>(?i)(function.*?deleterow[\s\S]*?return[ ]*?;[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="deleterow-return2">
<name>deleterow方法没有需要返回false</name>
<desc>明细表删除行的方法,需要return false;否则删除明细行可能失败</desc>
<content>(?i)(function.*?deleterow)(?![\s\S]*?return[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="window.print">
<name>window.print方法调用的是浏览器的打印方法</name>
<desc>window.print方法调用的是浏览器的打印方法,非ecology的打印方法</desc>
<content>(?i)(window.print)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="bindPropertyChange-this">
<name>bindPropertyChange不能直接使用this获得对象</name>
<desc>bindPropertyChange的function内部不能直接通过jQuery(this)取对象,需使用function(vthis)传参数方式</desc>
<content>(?i)(.*?bindPropertyChange\(([\s\S](?!function))*?this[\s\S]*?}[\s\S]*?\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="class-table-STYLE7">
<name>class包含table STYLE7使得样式重复</name>
<desc>在E8中,class包含table STYLE7使得样式重复,会导致浏览器解析有问题</desc>
<content>(?i)(?&lt;=class[&nbsp;]?=[&nbsp;]?&quot;)(table.*?STYLE7)(?=[^&lt;]*?&gt;)</content>
<replacecontent>STYLE7</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-table-STYLE7-2">
<name>class包含table STYLE7使得样式重复</name>
<desc>在E8中,class包含table STYLE7使得样式重复,会导致浏览器解析有问题</desc>
<content>(?i)(?&lt;=class[ ]?=)(table.*?STYLE7)(?=[^&lt;]*?&gt;)</content>
<replacecontent>STYLE7</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="BUTTON-type">
<name>BUTTON缺少type</name>
<desc>在BUTTON缺少type的情况下点击按钮会把form提交掉</desc>
<content>(&lt;BUTTON(?![^&lt;]*?type[^&lt;]*?))(?=[^&lt;]*?&gt;)</content>
<replacecontent>&lt;BUTTON&nbsp;type=&quot;button&quot;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="js-prev">
<name>检查prev方法</name>
<desc>E8中部分元素层级结构发生改变会导致之前的二次开发功能失效,请检查js中的prev方法指向的元素是否正确</desc>
<content>(?i)(prev\(\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="js-child">
<name>检查child方法</name>
<desc>E8中部分元素层级结构发生改变会导致之前的二次开发功能失效,请检查js中的prev方法指向的元素是否正确</desc>
<content>(?i)(child\(\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="tr-displayblock">
<name>tr不能设置display为block</name>
<desc>在chrome下tr作为块级元素只占了一列的宽度,请检查是否有样式问题</desc>
<content>(?i)(?&lt;=&lt;tr[^&lt;]{0,300})(display.*?block.*?[;]?)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="table-DXImageTransform">
<name>table元素不能设置filter为DXImageTransform</name>
<desc>在E8中如果table元素设置了filter为DXImageTransform,将导致多行文本字段,如果内容过多时显示不全</desc>
<content>(?i)(filter.*?DXImageTransform.Microsoft.Shadow[\s\S]*\(.*?\)[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="check-background">
<name>检查模板中是否设置了background属性</name>
<desc>检查模板中是否设置了background属性,升级后可能样式会有问题,请检查</desc>
<content>(?i)(.*?background.*)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="input-class">
<name>检查模板中的input元素的class是否是标准的</name>
<desc>检查模板中的input元素的class是否是标准的,非标准的class升级之后可能会有样式问题,请检查</desc>
<content>(?i)(&lt;input(?!.*?(class=&quot;InputStyle|Label&quot;)).*)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="attr-checked">
<name>attr(&quot;checked&quot;,&quot;&quot;)失效</name>
<desc>在E8中attr(&quot;checked&quot;,&quot;&quot;)失效,需要改成removeAttr(&quot;checked&quot;)</desc>
<content>(?i)(attr\(.*?checked.*?&quot;&quot;\))</content>
<replacecontent>removeAttr(&quot;checked&quot;)</replacecontent>
<version />
<xpath />
<requisite />
</rule>
</tabtype>
<tabtype id="checkmodehtml">
<rule id="propertychange-bind">
<name>propertychange事件bind绑定方式不支持</name>
<desc>propertychange事件bind绑定方式不支持;修改成bindPropertyChange方法绑定</desc>
<content>(?i)bind\(.*?propertychange.*?,.*?function.*?\(\)</content>
<replacecontent>bindPropertyChange(function()</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="propertychange">
<name>propertychange方法</name>
<desc>propertychange方法绑定事件的方式不支持;修改成bindPropertyChange方法绑定</desc>
<content>(?i)(?&lt;=\.)propertychange.*?function.*?\(\)</content>
<replacecontent>bindPropertyChange(function()</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="button-type">
<name>button缺少type</name>
<desc>在button缺少type的情况下点击按钮会把form提交掉</desc>
<content>(&lt;button(?![^&lt;]*?type[^&lt;]*?))(?=[^&lt;]*?&gt;)</content>
<replacecontent>&lt;button&nbsp;type=&quot;button&quot;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="hr-center">
<name>hr中存在text-align:center</name>
<desc>hr中存在text-align:center,在E8中会导致hr无法居中;请删除</desc>
<content>(?i)(?&lt;=&lt;hr[^&lt;]{1,300})(text-align[ ]*:[ ]*center[ ]*[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent>&nbsp;&nbsp;&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ViewForm">
<name>ViewForm-E8中class区别大小写</name>
<desc>E8中class区别大小写,ViewForm需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[&nbsp;]?&quot;)(Viewform|viewform|VIEWFORM)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ViewForm</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-Calendar">
<name>Calendar-E8中class区别大小写</name>
<desc>E8中class区别大小写,Calendar需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[ ]?&quot;)(calendar|CALENDAR)(?=[^&lt;]*?&gt;)</content>
<replacecontent>Calendar</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ListShort">
<name>ListShort-E8中class区分大小写</name>
<desc>E8中class区别大小写,ListShort需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=[ ]?&quot;)(listshort|LISTSHORT)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ListShort</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ViewForm2">
<name>ViewForm-E8中class区别大小写</name>
<desc>E8中class区别大小写,ViewForm需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(Viewform|viewform|VIEWFORM)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ViewForm</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-Calendar2">
<name>Calendar-E8中class区别大小写</name>
<desc>E8中class区别大小写,Calendar需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(calendar|CALENDAR)(?=[^&lt;]*?&gt;)</content>
<replacecontent>Calendar</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-ListShort2">
<name>ListShort-在E8中class区分大小写</name>
<desc>E8中class区别大小写,ListShort需要改成E8的class</desc>
<content>(?&lt;=class[ ]?=)(listshort|LISTSHORT)(?=[^&lt;]*?&gt;)</content>
<replacecontent>ListShort</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="vbscript-type">
<name>查询是否存在vbscript</name>
<desc>查询是否存在vbscript,vbscript在非IE下不支持;请用js重写</desc>
<content>(?i)(type.*?(vbscript|vbs).?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="vbscript-language">
<name>查询是否存在vbscript</name>
<desc>查询是否存在vbscript,非IE不支持vbscript;请用js重写</desc>
<content>(?i)(language.*?(vbscript|vbs).?)(?=[^&lt;]*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="weaver.js">
<name>不能引用weaver.js</name>
<desc>不能引用weaver.js,可直接删除</desc>
<content>(?i)(&lt;script.*?weaver\.js.*&lt;/script&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="init.jsp">
<name>不能引用init.jsp</name>
<desc>不能引用init.jsp</desc>
<content>(?i)(&lt;include.*?init\.jsp.*?&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="weaver.css">
<name>不能引用weaver.css</name>
<desc>不能引用weaver.css,可直接删除</desc>
<content>(?i)(&lt;link.*?weaver\.css.*?\/&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="jquery.js">
<name>不能引用jquery.js</name>
<desc>不能引用jquery.js,可直接删除</desc>
<content>(?i)(&lt;script.*?jquery\.js.*&lt;/script&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="commom.css">
<name>不能引入commom.css</name>
<desc>不能引入commom.css,可直接删除</desc>
<content>(?i)(&lt;link.*?commom\.css.*?\/&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="table0button">
<name>在E8中明细表的id不是table0button</name>
<desc>在E8中明细表的id不是table0button,而是oTable0</desc>
<content>#table0button</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="trim">
<name>js的trim()方法在E8中不能用</name>
<desc>js的trim()方法在E8中不能用</desc>
<content>\.trim()</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="import-css">
<name>引入了css文件</name>
<desc>引入了其他的css文件,可能会导致模板样式错乱的情况,请排查一下</desc>
<content>(?i)(&lt;link.*\/&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="p-center">
<name>E7的老模板在chrome下的&lt;p&gt;标签内容不能居中</name>
<desc>&lt;p&gt;为段落标签,在标准模式下&lt;p&gt;里包含非段落元素会直接头尾结束掉;需改为&lt;div align=&quot;center&quot;&gt;</desc>
<content>(?i)(&lt;p.*?align[ ]*?=([\s\S](?!&lt;\/p&gt;))*?table)(?=[\s\S]*?&lt;/p&gt;)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="addrow-return1">
<name>addrow方法没有需要返回false;</name>
<desc>明细表添加行的方法,需要return false;否则添加明细行可能失败</desc>
<content>(?i)(function.*?addrow[\s\S]*?return[ ]*?;[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="addrow-return2">
<name>addrow方法没有返回值</name>
<desc>明细表添加行的方法,需要return&nbsp;false;否则添加明细行可能失败</desc>
<content>(?i)(function.*?addrow)(?![\s\S]*?return[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="deleterow-return1">
<name>deleterow方法没有需要返回false</name>
<desc>明细表删除行的方法,需要return false;否则删除明细行可能失败</desc>
<content>(?i)(function.*?deleterow[\s\S]*?return[ ]*?;[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="deleterow-return2">
<name>deleterow方法没有需要返回false</name>
<desc>明细表删除行的方法,需要return false;否则删除明细行可能失败</desc>
<content>(?i)(function.*?deleterow)(?![\s\S]*?return[\s\S]*?})</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="window.print">
<name>window.print方法调用的是浏览器的打印方法</name>
<desc>window.print方法调用的是浏览器的打印方法,非ecology的打印方法</desc>
<content>(?i)(window.print)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="bindPropertyChange-this">
<name>bindPropertyChange不能直接使用this获得对象</name>
<desc>bindPropertyChange的function内部不能直接通过jQuery(this)取对象,需使用function(vthis)传参数方式</desc>
<content>(?i)(.*?bindPropertyChange\(([\s\S](?!function))*?this[\s\S]*?}[\s\S]*?\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="class-table-STYLE7">
<name>class包含table STYLE7使得样式重复</name>
<desc>在E8中,class包含table STYLE7使得样式重复,会导致浏览器解析有问题</desc>
<content>(?i)(?&lt;=class[&nbsp;]?=[&nbsp;]?&quot;)(table.*?STYLE7)(?=[^&lt;]*?&gt;)</content>
<replacecontent>STYLE7</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="class-table-STYLE7-2">
<name>class包含table STYLE7使得样式重复</name>
<desc>在E8中,class包含table STYLE7使得样式重复,会导致浏览器解析有问题</desc>
<content>(?i)(?&lt;=class[ ]?=)(table.*?STYLE7)(?=[^&lt;]*?&gt;)</content>
<replacecontent>STYLE7</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="BUTTON-type">
<name>BUTTON缺少type</name>
<desc>在BUTTON缺少type的情况下点击按钮会把form提交掉</desc>
<content>(&lt;BUTTON(?![^&lt;]*?type[^&lt;]*?))(?=[^&lt;]*?&gt;)</content>
<replacecontent>&lt;BUTTON&nbsp;type=&quot;button&quot;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="js-prev">
<name>检查prev方法</name>
<desc>E8中部分元素层级结构发生改变会导致之前的二次开发功能失效,请检查js中的prev方法指向的元素是否正确</desc>
<content>(?i)(prev\(\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="js-child">
<name>检查child方法</name>
<desc>E8中部分元素层级结构发生改变会导致之前的二次开发功能失效,请检查js中的prev方法指向的元素是否正确</desc>
<content>(?i)(child\(\))</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="tr-displayblock">
<name>tr不能设置display为block</name>
<desc>在chrome下tr作为块级元素只占了一列的宽度;请检查是否有样式问题</desc>
<content>(?i)(?&lt;=&lt;tr[^&lt;]{0,300})(display.*?block.*?[;]?)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="table-DXImageTransform">
<name>table元素不能设置filter为DXImageTransform</name>
<desc>在E8中如果table元素设置了filter为DXImageTransform,将导致多行文本字段,如果内容过多时显示不全</desc>
<content>(?i)(filter.*?DXImageTransform.Microsoft.Shadow[\s\S]*\(.*?\)[;]?)(?=[^&lt;]*?&gt;)</content>
<replacecontent>&nbsp;</replacecontent>
<version />
<xpath />
<requisite />
</rule>
<rule id="input-class">
<name>检查模板中input元素</name>
<desc>检查模板中input元素的class是否是标准的class,非标准class升级后可能有问题;请检查</desc>
<content>(?i)(&lt;input(?!.*?(class=&quot;InputStyle|Label&quot;)).*)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="check-background">
<name>检查模板中是否设置了background属性</name>
<desc>检查模板中是否设置了background属性,升级后可能会有样式问题;请检查</desc>
<content>(?i)(.*?background.*)</content>
<replacecontent />
<version />
<xpath />
<requisite />
</rule>
<rule id="attr-checked">
<name>attr(&quot;checked&quot;,&quot;&quot;)失效</name>
<desc>在E8中attr(&quot;checked&quot;,&quot;&quot;)失效,需要改成removeAttr(&quot;checked&quot;)</desc>
<content>(?i)(attr\(.*?checked.*?&quot;&quot;\))</content>
<replacecontent>removeAttr(&quot;checked&quot;)</replacecontent>
<version />
<xpath />
<requisite />
</rule>
</tabtype>
<tabtype id="checkwebxml">
<rule id="XssFilter">
<name>配置XssFilter</name>
<desc>需要在web.xml配置XssFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;XssFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.XssFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;XssFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;XssFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.do&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;XssFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/weaver/*&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;XssFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/log/*&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;XssFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/admin&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/filter[filter-name[text()=&apos;XssFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="crossDomainSessionSecurity">
<name>配置crossDomainSessionSecurity</name>
<desc>需要在web.xml配置crossDomainSessionSecurity</desc>
<content />
<replacecontent>&lt;servlet&gt;\n &lt;servlet-name&gt;dwr-invoker&lt;/servlet-name&gt;\n &lt;servlet-class&gt;uk.ltd.getahead.dwr.DWRServlet&lt;/servlet-class&gt;\n &lt;init-param&gt;\n &nbsp;&nbsp;&nbsp;&nbsp;&lt;param-name&gt;crossDomainSessionSecurity&lt;/param-name&gt;\n &nbsp;&nbsp;&nbsp;&nbsp;&lt;param-value&gt;false&lt;/param-value&gt;\n &lt;/init-param&gt;\n &lt;init-param&gt;\n &nbsp;&nbsp;&nbsp;&nbsp;&lt;param-name&gt;allowScriptTagRemoting&lt;/param-name&gt;\n &nbsp;&nbsp;&nbsp;&nbsp;&lt;param-value&gt;true&lt;/param-value&gt;\n &lt;/init-param&gt;\n &lt;load-on-startup&gt;1&lt;/load-on-startup&gt;\n&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n &lt;servlet-name&gt;dwr-invoker&lt;/servlet-name&gt;\n &lt;url-pattern&gt;/dwr/*&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>KB81001509</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;dwr-invoker&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CreateQRCodeServlet">
<name>配置CreateQRCodeServlet</name>
<desc>需要在web.xml配置CreateQRCodeServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;CreateQRCodeServlet&lt;/servlet-name&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-class&gt;weaver.workflow.exceldesign.CreateQRCodeServlet&lt;/servlet-class&gt;&nbsp;&nbsp;&nbsp;\n&lt;/servlet&gt;&nbsp;&nbsp;&nbsp;\n&lt;servlet-mapping&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;CreateQRCodeServlet&lt;/servlet-name&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/createQRCode&lt;/url-pattern&gt;&nbsp;&nbsp;&nbsp;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>KB81001510</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;CreateQRCodeServlet&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CloudOaFilter">
<name>配置CloudOaFilter</name>
<desc>需要在web.xml配置CloudOaFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;CloudOaFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.CloudOaFilter&lt;/filter-class&gt;\n&lt;init-param&gt;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;param-name&gt;excludedPages&lt;/param-name&gt;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;param-value&gt;/login/login.jsp&lt;/param-value&gt;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;/init-param&gt;&nbsp;\n&lt;/filter&gt;</replacecontent>
<version>KB81001511</version>
<xpath>/web-app/filter[filter-name[text()=&apos;CloudOaFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="ReplyFileDownload">
<name>配置ReplyFileDownload</name>
<desc>需要在web.xml配置ReplyFileDownload</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&lt;servlet-name&gt;ReplyFileDownload&lt;/servlet-name&gt;\n&lt;servlet-class&gt;weaver.docs.docs.reply.FileDownload&lt;/servlet-class&gt;\n&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&lt;servlet-name&gt;ReplyFileDownload&lt;/servlet-name&gt;\n&lt;url-pattern&gt;/weaver/weaver.docs.docs.reply.FileDownload&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>KB81001512</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;ReplyFileDownload&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CreateWfBarCodeServlet">
<name>配置CreateWfBarCodeServlet</name>
<desc>需要在web.xml配置CreateWfBarCodeServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;CreateWfBarCodeServlet&lt;/servlet-name&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-class&gt;weaver.workflow.exceldesign.CreateBarCodeServlet&lt;/servlet-class&gt;&nbsp;&nbsp;&nbsp;\n&lt;/servlet&gt;&nbsp;&nbsp;&nbsp;\n&lt;servlet-mapping&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;CreateWfBarCodeServlet&lt;/servlet-name&gt;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/createWfBarCode&lt;/url-pattern&gt;&nbsp;&nbsp;&nbsp;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>KB81001603</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;CreateWfBarCodeServlet&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="SecurityFilter">
<name>配置SecurityFilter</name>
<desc>需要在web.xml配置SecurityFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;SecurityFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.SecurityFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;SecurityFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/*&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>KB81001603</version>
<xpath>/web-app/filter[filter-name[text()=&apos;SecurityFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="encodingFilter">
<name>配置encodingFilter</name>
<desc>需要在web.xml配置encodingFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;encodingFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;org.springframework.web.filter.CharacterEncodingFilter&lt;/filter-class&gt;\n&lt;init-param&gt;\n&lt;param-name&gt;encoding&lt;/param-name&gt;\n&lt;param-value&gt;UTF-8&lt;/param-value&gt;\n&lt;/init-param&gt;\n&lt;/filter&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/filter[filter-name[text()=&apos;encodingFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="browserTag">
<name>配置browserTag</name>
<desc>需要在web.xml中配置browserTag</desc>
<content />
<replacecontent>&lt;jsp-config&gt;\n&lt;taglib&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;taglib-uri&gt;/browserTag&lt;/taglib-uri&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;taglib-location&gt;/WEB-INF/tld/browser.tld&lt;/taglib-location&gt;\n&lt;/taglib&gt;\n&lt;taglib&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;taglib-uri&gt;/browser&lt;/taglib-uri&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;taglib-location&gt;/WEB-INF/tld/browser.tld&lt;/taglib-location&gt;\n&lt;/taglib&gt;\n&lt;/jsp-config&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/jsp-config/taglib[taglib-uri[text()=&apos;/browserTag&apos;]]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="IECompatibleFilter">
<name>配置IECompatibleFilter</name>
<desc>需要在web.xml中配置IECompatibleFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;IECompatibleFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.IECompatibleFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;IECompatibleFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;IECompatibleFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.js&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;IECompatibleFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.htm&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;IECompatibleFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.html&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/filter[filter-name[text()=&apos;IECompatibleFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="ConnFastFilter">
<name>配置ConnFastFilter</name>
<desc>需要在web.xml中配置ConnFastFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;ConnFastFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-class&gt;weaver.filter.ConnFastFilter&lt;/filter-class&gt;\n&nbsp;&lt;/filter&gt;\n&nbsp;&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;ConnFastFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&nbsp;&lt;/filter-mapping&gt;\n&nbsp;&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;ConnFastFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.common.util.taglib.SplitPageXmlServlet&lt;/url-pattern&gt;\n&nbsp;&lt;/filter-mapping&gt;\n&nbsp;&nbsp;&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;ConnFastFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.common.util.taglib.SplitPageXmlServletNew&lt;/url-pattern&nbsp;&gt;\n&nbsp;&lt;/filter-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/filter[filter-name[text()=&apos;ConnFastFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="DialogHandleFilter">
<name>配置DialogHandleFilter</name>
<desc>需要在web.xml中配置DialogHandleFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&nbsp;&nbsp;&lt;filter-name&gt;DialogHandleFilter&lt;/filter-name&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&lt;filter-class&gt;weaver.filter.DialogHandleFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;DialogHandleFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/filter[filter-name[text()=&apos;DialogHandleFilter&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="ShowDocsImageServlet">
<name>配置ShowDocsImageServlet</name>
<desc>需要在web.xml中配置ShowDocsImageServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;ShowDocsImageServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-class&gt;weaver.docs.docs.ShowDocsImageServlet&lt;/servlet-class&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;ShowDocsImageServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.docs.docs.ShowDocsImageServlet&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;ShowDocsImageServlet&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="InterfaceServlet">
<name>配置InterfaceServlet</name>
<desc>需要在web.xml中配置InterfaceServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;InterfaceServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-class&gt;weaver.admincenter.servlet.InterfaceServlet&lt;/servlet-class&gt;\n&nbsp;&nbsp;&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;InterfaceServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.admincenter.servlet.InterfaceServlet&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;InterfaceServlet&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="ShowColServlet">
<name>配置ShowColServlet</name>
<desc>需要在web.xml中配置ShowColServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;ShowColServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-class&gt;weaver.common.util.taglib.ShowColServlet&lt;/servlet-class&gt;\n&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;ShowColServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.common.util.taglib.ShowColServlet&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;\n</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;ShowColServlet&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="VerifyLoginServlet">
<name>配置VerifyLoginServlet</name>
<desc>需要在web.xml中配置VerifyLoginServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;VerifyLoginServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-class&gt;weaver.login.VerifyLoginServlet&lt;/servlet-class&gt;\n&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;servlet-name&gt;VerifyLoginServlet&lt;/servlet-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.login.VerifyLoginServlet&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;\n</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/servlet[servlet-name[text()=&apos;VerifyLoginServlet&apos;]]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CreateBarCodeServlet">
<name>配置CreateBarCodeServlet</name>
<desc>需要在web.xml中配置CreateBarCodeServlet</desc>
<content />
<replacecontent>&lt;servlet&gt;&nbsp;&nbsp;&nbsp;\n&lt;servlet-name&gt;CreateBarCodeServlet&lt;/servlet-name&gt;&nbsp;&nbsp;&nbsp;\n&lt;servlet-class&gt;weaver.workflow.exceldesign.CreateBarCodeServlet&lt;/servlet-class&gt;&nbsp;&nbsp;&nbsp;\n&lt;/servlet&gt;&nbsp;&nbsp;&nbsp;\n&lt;servlet-mapping&gt;&nbsp;&nbsp;&nbsp;\n&lt;servlet-name&gt;CreateBarCodeServlet&lt;/servlet-name&gt;&nbsp;&nbsp;&nbsp;\n&lt;url-pattern&gt;/createBarCode&lt;/url-pattern&gt;&nbsp;&nbsp;&nbsp;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>KB81001510</version>
<xpath>/web-app/servlet/servlet-name[text()=&apos;CreateBarCodeServlet&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="FixIPFilter">
<name>配置FixIPFilter</name>
<desc>需要在web.xml配置FixIPFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;FixIPFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.FixIPFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;FixIPFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>KB8100161000</version>
<xpath>/web-app/filter/filter-name[text()=&apos;FixIPFilter&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="WorkflowPicShowFilter">
<name>配置WorkflowPicShowFilter</name>
<desc>需要在web.xml中配置WorkflowPicShowFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;WorkflowPicShowFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.WorkflowPicShowFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;WorkflowPicShowFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/workflow/request/WorkflowRequestPictureInner.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;WorkflowPicShowFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/workflow/request/WorkflowDirection.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>KB8100170200</version>
<xpath>/web-app/filter/filter-name[text()=&apos;WorkflowPicShowFilter&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="Compress">
<name>配置Compress</name>
<desc>需要在web.xml中配置Compress</desc>
<content />
<replacecontent>&lt;filter&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-class&gt;weaver.filter.WGzipFilter&lt;/filter-class&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;init-param&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;param-name&gt;exclude&lt;/param-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;param-value&gt;/wui/theme/ecology8/page/login.jsp;/login/login.jsp;/keygenerator/KeyGenerator.jsp;/keygenerator/getNoCheckFiles.jsp;/keygenerator/packNoCheckFiles.jsp;/workflow/request/WorkflowPDFStream.jsp;/mobile/plugin/Download.jsp&lt;/param-value&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;/init-param&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;*.js&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;*.css&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.common.util.taglib.SplitPageXmlServlet&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/weaver/weaver.common.util.taglib.SplitPageXmlServletNew&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;Compress&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/Messager/MessagerServlet&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/web-app/filter/filter-name[text()=&apos;Compress&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="RsaInfo">
<name>配置RsaInfo</name>
<desc>需要在web.xml配置RsaInfo</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&lt;servlet-name&gt;RsaInfo&lt;/servlet-name&gt;\n&lt;servlet-class&gt;weaver.rsa.GetRsaInfo&lt;/servlet-class&gt;\n&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&lt;servlet-name&gt;RsaInfo&lt;/servlet-name&gt;\n&lt;url-pattern&gt;/rsa/weaver.rsa.GetRsaInfo&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>KB8100171100</version>
<xpath>/web-app/servlet/servlet-name[text()=&apos;RsaInfo&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="MultiLangFilter">
<name>配置MultiLangFilter</name>
<desc>需要在web.xml中添加MultiLangFilter(多语言配置)</desc>
<content />
<replacecontent>&lt;filter&gt;\n&lt;filter-name&gt;MultiLangFilter&lt;/filter-name&gt;\n&lt;filter-class&gt;weaver.filter.MultiLangFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;MultiLangFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;MultiLangFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/weaver/*&nbsp;&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;MultiLangFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/api/*&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&lt;filter-name&gt;MultiLangFilter&lt;/filter-name&gt;\n&lt;url-pattern&gt;/ReportServer&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>9.00.1807.11</version>
<xpath>/web-app/filter/filter-name[text()=&apos;MultiLangFilter&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="InitFilter">
<name>配置InitFilter</name>
<desc>需要在web.xml中添加InitFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;InitFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-class&gt;weaver.filter.InitFilter&lt;/filter-class&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;InitFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/wui/index.html&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>9.00.1807.11</version>
<xpath>/web-app/filter/filter-name[text()=&apos;InitFilter&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="SessionCloudFilter">
<name>配置SessionCloudFilter</name>
<desc>需要在web.xml中添加SessionCloudFilter</desc>
<content />
<replacecontent>&lt;filter&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;SessionCloudFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-class&gt;com.cloudstore.dev.api.service.SessionFilter&lt;/filter-class&gt;\n&lt;init-param&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;param-name&gt;checkurl&lt;/param-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;param-value&gt;/api/hrm/emmanager;&lt;/param-value&gt;\n&lt;/init-param&gt;\n&lt;init-param&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;param-name&gt;uncheckurl&lt;/param-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;param-value&gt;/api/ec/dev/app/getCheckSystemInfo;/api/ec/dev/app/emjoin;&lt;/param-value&gt;\n&lt;/init-param&gt;\n&lt;/filter&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;SessionCloudFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/api/*&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;SessionCloudFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/page/interfaces/*.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;\n&lt;filter-mapping&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;filter-name&gt;SessionCloudFilter&lt;/filter-name&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;url-pattern&gt;/workflow/core/ControlServlet.jsp&lt;/url-pattern&gt;\n&lt;/filter-mapping&gt;</replacecontent>
<version>9.00.1807.11</version>
<xpath>/web-app/filter/filter-name[text()=&apos;SessionCloudFilter&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
<rule id="CreateCptBarCode">
<name>配置CreateCptBarCode</name>
<desc>需要在web.xml中添加CreateCptBarCode</desc>
<content />
<replacecontent>&lt;servlet&gt;\n&lt;servlet-name&gt;CreateCptBarCode&lt;/servlet-name&gt;\n&lt;servlet-class&gt;weaver.cpt.barcode.BarCodeServlet&lt;/servlet-class&gt;\n&lt;/servlet&gt;\n&lt;servlet-mapping&gt;\n&lt;servlet-name&gt;CreateCptBarCode&lt;/servlet-name&gt;\n&lt;url-pattern&gt;/CreateCptBarCode&lt;/url-pattern&gt;\n&lt;/servlet-mapping&gt;</replacecontent>
<version>9.00.1808.01</version>
<xpath>/web-app/servlet/servlet-name[text()=&apos;CreateCptBarCode&apos;]/parent::*</xpath>
<requisite>1</requisite>
</rule>
</tabtype>
<tabtype id="checkaction">
<rule id="HrmDeductionVacationAction">
<name>配置HrmDeductionVacationAction</name>
<desc>需要在action.xml配置HrmDeductionVacationAction</desc>
<content />
<replacecontent>&nbsp;&lt;service-point&nbsp;id=&quot;deduction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.attendance.action.HrmDeductionVacationAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001507</version>
<xpath>/module/service-point[@id=&apos;deduction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmFreezeVacationAction">
<name>配置HrmFreezeVacationAction</name>
<desc>需要在action.xml配置HrmFreezeVacationAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;freeze&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.attendance.action.HrmFreezeVacationAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001507</version>
<xpath>/module/service-point[@id=&apos;freeze&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmReleaseVacationAction">
<name>配置HrmReleaseVacationAction</name>
<desc>需要在action.xml配置HrmReleaseVacationAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;release&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.attendance.action.HrmReleaseVacationAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001507</version>
<xpath>/module/service-point[@id=&apos;release&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceTryAction">
<name>配置HrmResourceTry</name>
<desc>需要在action.xml配置HrmResourceTry</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceTry&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceTryAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceTry&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceHireAction">
<name>配置HrmResourceHireAction</name>
<desc>需要在action.xml配置HrmResourceHireAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceHire&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceHireAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceHire&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceExtendAction">
<name>配置HrmResourceExtendAction</name>
<desc>需要在action.xml配置HrmResourceExtendAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceExtend&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceExtendAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceExtend&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceRedeployAction">
<name>配置HrmResourceRedeployAction</name>
<desc>需要在action.xml配置HrmResourceRedeployAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceRedeploy&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceRedeployAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceRedeploy&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceDismissAction">
<name>配置HrmResourceDismissAction</name>
<desc>需要在action.xml配置HrmResourceDismissAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceDismiss&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceDismissAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceDismiss&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceRetireAction">
<name>配置HrmResourceRetireAction</name>
<desc>需要在action.xml配置HrmResourceRetireAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceRetire&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceRetireAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceRetire&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceFireAction">
<name>配置HrmResourceFireAction</name>
<desc>需要在action.xml配置HrmResourceFireAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceFire&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceFireAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceFire&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmResourceReHireAction">
<name>配置HrmResourceReHireAction</name>
<desc>需要在action.xml配置HrmResourceReHireAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmResourceReHire&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.pm.action.HrmResourceReHireAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001508</version>
<xpath>/module/service-point[@id=&apos;HrmResourceReHire&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmScheduleShift">
<name>配置HrmScheduleShift</name>
<desc>需要在action.xml配置HrmScheduleShift</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmScheduleShift&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.schedule.action.HrmScheduleShiftAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001603</version>
<xpath>/module/service-point[@id=&apos;HrmScheduleShift&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="WorkflowFnaInWorkflowNew">
<name>配置WorkflowFnaInWorkflowNew</name>
<desc>需要在action.xml配置WorkflowFnaInWorkflowNew</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;WorkflowFnaInWorkflowNew&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.interfaces.workflow.action.WorkflowFnaInWorkflowNew&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;&nbsp;\n</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;WorkflowFnaInWorkflowNew&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="WorkflowFnaEffectNew">
<name>配置WorkflowFnaEffectNew</name>
<desc>需要在action.xml配置WorkflowFnaEffectNew</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;WorkflowFnaEffectNew&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.interfaces.workflow.action.WorkflowFnaEffectNew&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&nbsp;&nbsp;&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;WorkflowFnaEffectNew&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="WorkflowFnaRejectNew">
<name>配置WorkflowFnaRejectNew</name>
<desc>需要在action.xml配置WorkflowFnaRejectNew</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;WorkflowFnaRejectNew&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.interfaces.workflow.action.WorkflowFnaRejectNew&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;WorkflowFnaRejectNew&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="PrjGenerateAction">
<name>配置PrjGenerateAction</name>
<desc>需要在action.xml配置PrjGenerateAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;PrjGenerateAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.proj.wfactions.PrjGenerateAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;PrjGenerateAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="PrjApproveAction">
<name>配置PrjApproveAction</name>
<desc>需要在action.xml配置PrjApproveAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;PrjApproveAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.proj.wfactions.PrjApproveAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;PrjApproveAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="PrjTemplateApproveAction">
<name>配置PrjTemplateApproveAction</name>
<desc>需要在action.xml配置PrjTemplateApproveAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;PrjTemplateApproveAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.proj.wfactions.PrjTemplateApproveAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;PrjTemplateApproveAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptApplyAction">
<name>配置CptApplyAction</name>
<desc>需要在action.xml配置CptApplyAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptApplyAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptApplyAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptApplyAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptFetchAction">
<name>配置CptFetchAction</name>
<desc>需要在action.xml配置CptFetchAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptFetchAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptFetchAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptFetchAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptMoveAction">
<name>配置CptMoveAction</name>
<desc>需要在action.xml配置CptMoveAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptMoveAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptMoveAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptMoveAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptLossAction">
<name>配置CptLossAction</name>
<desc>需要在action.xml配置CptLossAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptLossAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptLossAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptLossAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptDiscardAction">
<name>配置CptDiscardAction</name>
<desc>需要在action.xml配置CptDiscardAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptDiscardAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptDiscardAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptDiscardAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptLendAction">
<name>配置CptLendAction</name>
<desc>需要在action.xml配置CptLendAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptLendAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptLendAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptLendAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptBackAction">
<name>配置CptBackAction</name>
<desc>需要在action.xml配置CptBackAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptBackAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&lt;invoke-factory&gt;\n&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptBackAction&quot;/&gt;\n&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptBackAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptMendAction">
<name>配置CptMendAction</name>
<desc>需要在action.xml配置CptMendAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptMendAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptMendAction&quot;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>8.100.0531</version>
<xpath>/module/service-point[@id=&apos;CptMendAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="HrmPaidLeaveAction">
<name>配置HrmPaidLeaveAction</name>
<desc>需要在action.xml添加HrmPaidLeaveAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;HrmPaidLeaveAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;invoke-factory&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;construct&nbsp;class=&quot;weaver.hrm.attendance.action.HrmPaidLeaveAction&quot;&nbsp;/&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB81001603</version>
<xpath>/module/service-point[@id=&apos;HrmPaidLeaveAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CptChangeAction">
<name>配置CptChangeAction</name>
<desc>需要在action.xml配置CptChangeAction</desc>
<content />
<replacecontent>&lt;service-point&nbsp;id=&quot;CptChangeAction&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;\n&lt;invoke-factory&gt;\n&lt;construct&nbsp;class=&quot;weaver.cpt.wfactions.CptChangeAction&quot;&nbsp;/&gt;\n&lt;/invoke-factory&gt;\n&lt;/service-point&gt;</replacecontent>
<version>KB8100170300</version>
<xpath>/module/service-point[@id=&apos;CptChangeAction&apos;]</xpath>
<requisite>1</requisite>
</rule>
<rule id="CreateTraceDocument">
<name>配置CreateTraceDocument</name>
<desc>需要在action.xml配置CreateTraceDocument</desc>
<content />
<replacecontent>&lt;service-point&nbsp;&nbsp;id=&quot;CreateTraceDocument&quot;&nbsp;interface=&quot;weaver.interfaces.workflow.action.Action&quot;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;invoke-factory&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;construct&nbsp;class=&quot;weaver.interfaces.workflow.action.CreateTraceDocument&quot;/&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;/invoke-factory&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n&lt;/service-point&gt;</replacecontent>
<version>KB8100161000</version>
<xpath>/module/service-point[@id=&apos;CreateTraceDocument&apos;]</xpath>
<requisite>1</requisite>
</rule>
</tabtype>
<tabtype id="checkservice" />
<tabtype id="checkmobilemodehtml" />
</rules>