-
Notifications
You must be signed in to change notification settings - Fork 2
/
databook_pep.re
55 lines (42 loc) · 1.64 KB
/
databook_pep.re
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
acPostProcForPut {
postProcForPut;
}
acPostProcForCopy {
postProcForCopy;
}
acPostProcForDelete {
postProcForDelete;
}
acPostProcForObjRename(*sourceObject,*destObject) {
postProcForObjRename(*sourceObject, *destObject);
}
acPostProcForOpen{
postProcForOpen;
}
acPostProcForCollCreate{
postProcForCollCreate;
}
acPreprocForRmColl{
preprocForRmColl;
}
acPreProcForModifyAVUMetadata(*Option, *ItemType, *SrcItemName, *TgtItemName) {
preProcForModifyAVUMetadata(*Option, *ItemType, *SrcItemName, *TgtItemName, "", "", "", "", "");
}
acPreProcForModifyAVUMetadata(*Option, *ItemType, *ItemName, *AName, *AValue, *AUnit) {
preProcForModifyAVUMetadata(*Option, *ItemType, *ItemName, *AName, *AValue, *AUnit, "", "", "");
}
acPreProcForModifyAVUMetadata(*Option,*ItemType,*ItemName,*AName,*AValue,*AUnit, *NAName, *NAValue, *NAUnit) {
preProcForModifyAVUMetadata(*Option, *ItemType, *ItemName, *AName, *AValue, *AUnit, *NAName, *NAValue, *NAUnit);
}
acPostProcForModifyAVUMetadata(*Option, *ItemType, *SrcItemName, *TgtItemName) {
postProcForModifyAVUMetadata(*Option, *ItemType, *SrcItemName, *TgtItemName, "", "", "", "", "");
}
acPostProcForModifyAVUMetadata(*Option, *ItemType, *ItemName, *AName, *AValue, *AUnit) {
postProcForModifyAVUMetadata(*Option, *ItemType, *ItemName, *AName, *AValue, *AUnit, "", "", "");
}
acPostProcForModifyAVUMetadata(*Option,*ItemType,*ItemName,*AName,*AValue,*AUnit, *NAName, *NAValue, *NAUnit) {
writeLine("serverLog", *NAValue);
postProcForModifyAVUMetadata(*Option, *ItemType, *ItemName, *AName, *AValue, *AUnit, *NAName, *NAValue, *NAUnit);
}
acPostProcForModifyCollMeta { }
acPostProcForModifyDataObjMeta { }