]> err.no Git - scalable-opengroupware.org/blob - dbd/product.plist
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@46 d1b88da0-ebda-0310-925b-ed51d8...
[scalable-opengroupware.org] / dbd / product.plist
1 {
2   publicResources = (
3     "dbd.css"
4   );
5
6   classes = {
7     DBDaemon = {
8       superclass    = "SoApplication";
9       protectedBy   = "View";
10       defaultAccess = "allow";
11       defaultRoles = {
12         "View"          = "Anonymous";
13         "WebDAV Access" = "Authenticated";
14       };
15       methods = {
16         "index" = { 
17           protectedBy = "View";
18           pageName    = "MainPage"; 
19         };
20         "GET" = { // more or less a hack, see README
21           protectedBy = "View";
22           pageName    = "MainPage"; 
23         };
24         "connect" = { 
25           protectedBy = "View";
26           pageName    = "MainPage"; 
27           actionName  = "connect";
28         };
29       };
30     };
31
32     DSoObject = {
33       protectedBy   = "View";
34       defaultAccess = "allow";
35       defaultRoles = {
36         "View"          = "Authenticated";
37         "WebDAV Access" = "Authenticated";
38       };
39       methods = {
40       };
41     };
42     
43     DSoHost = {
44       superclass    = "DSoObject";
45       methods = {
46         "index" = { 
47           protectedBy = "View";
48           pageName    = "DHostView";
49         };
50       };
51     };
52     DSoTable = {
53       superclass    = "DSoObject";
54       methods = {
55       };
56     };
57     DSoDatabase = {
58       superclass    = "DSoObject";
59       methods = {
60         "index" = { 
61           protectedBy = "View";
62           pageName    = "DDatabase"; 
63         };
64       };
65     };
66     DSoDatabaseManager = {
67       superclass    = "DSoObject";
68       methods = {
69         "index" = { 
70           protectedBy = "View";
71           pageName    = "DDatabaseManager"; 
72         };
73       };
74     };
75     DSoUser = {
76       superclass    = "DSoObject";
77       methods = {
78       };
79     };
80     DSoUserManager = {
81       superclass    = "DSoObject";
82       methods = {
83       };
84     };
85     DSoField = {
86       superclass    = "DSoObject";
87       methods = {
88       };
89     };
90   };
91 }