author | Katia Saurfelt <katia.saurfelt@logilab.fr> |
Mon, 27 Apr 2009 10:02:58 +0200 | |
changeset 1495 | 4d6e9fe80378 |
parent 1494 | d68aac1cda0d |
child 1496 | 00f7ccd9a08b |
permissions | -rw-r--r-- |
0 | 1 |
"""Set of HTML startup views. A startup view is global, e.g. doesn't |
2 |
apply to a result set. |
|
3 |
||
4 |
:organization: Logilab |
|
513
907c18c01c60
while EntityView has been used here?? (changeset 501 by laure)
sylvain.thenault@logilab.fr
parents:
505
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
0 | 6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
7 |
""" |
|
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
10 |
from logilab.mtconverter import html_escape |
|
11 |
||
12 |
from cubicweb.common.uilib import ureport_as_html, unormalize, ajax_replace_url |
|
513
907c18c01c60
while EntityView has been used here?? (changeset 501 by laure)
sylvain.thenault@logilab.fr
parents:
505
diff
changeset
|
13 |
from cubicweb.common.view import StartupView |
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
14 |
from cubicweb.common.selectors import match_user_group |
0 | 15 |
from cubicweb.web.httpcache import EtagHTTPCacheManager |
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
16 |
from cubicweb.web.views.management import SecurityViewMixIn |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
17 |
from copy import deepcopy |
0 | 18 |
_ = unicode |
19 |
||
20 |
||
21 |
class ManageView(StartupView): |
|
22 |
id = 'manage' |
|
23 |
title = _('manage') |
|
24 |
http_cache_manager = EtagHTTPCacheManager |
|
25 |
||
26 |
def display_folders(self): |
|
27 |
return False |
|
28 |
||
29 |
def call(self, **kwargs): |
|
30 |
"""The default view representing the application's management""" |
|
853
4f6cd02bd71f
Use specific css files directly in views code
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
513
diff
changeset
|
31 |
self.req.add_css('cubicweb.manageview.css') |
0 | 32 |
self.w(u'<div>\n') |
33 |
if not self.display_folders(): |
|
34 |
self._main_index() |
|
35 |
else: |
|
36 |
self.w(u'<table><tr>\n') |
|
37 |
self.w(u'<td style="width:40%">') |
|
38 |
self._main_index() |
|
39 |
self.w(u'</td><td style="width:60%">') |
|
40 |
self.folders() |
|
41 |
self.w(u'</td>') |
|
42 |
self.w(u'</tr></table>\n') |
|
43 |
self.w(u'</div>\n') |
|
44 |
||
45 |
def _main_index(self): |
|
46 |
req = self.req |
|
47 |
manager = req.user.matching_groups('managers') |
|
48 |
if not manager and 'Card' in self.schema: |
|
49 |
rset = self.req.execute('Card X WHERE X wikiid "index"') |
|
50 |
else: |
|
51 |
rset = None |
|
52 |
if rset: |
|
53 |
self.wview('inlined', rset, row=0) |
|
54 |
else: |
|
55 |
self.entities() |
|
56 |
self.w(u'<div class="hr"> </div>') |
|
57 |
self.startup_views() |
|
58 |
if manager and 'Card' in self.schema: |
|
59 |
self.w(u'<div class="hr"> </div>') |
|
60 |
if rset: |
|
61 |
href = rset.get_entity(0, 0).absolute_url(vid='edition') |
|
62 |
label = self.req._('edit the index page') |
|
63 |
else: |
|
64 |
href = req.build_url('view', vid='creation', etype='Card', wikiid='index') |
|
65 |
label = self.req._('create an index page') |
|
66 |
self.w(u'<br/><a href="%s">%s</a>\n' % (html_escape(href), label)) |
|
67 |
||
68 |
def folders(self): |
|
69 |
self.w(u'<h4>%s</h4>\n' % self.req._('Browse by category')) |
|
70 |
self.vreg.select_view('tree', self.req, None).dispatch(w=self.w) |
|
71 |
||
72 |
def startup_views(self): |
|
73 |
self.w(u'<h4>%s</h4>\n' % self.req._('Startup views')) |
|
74 |
self.startupviews_table() |
|
75 |
||
76 |
def startupviews_table(self): |
|
77 |
for v in self.vreg.possible_views(self.req, None): |
|
78 |
if v.category != 'startupview' or v.id in ('index', 'tree', 'manage'): |
|
79 |
continue |
|
80 |
self.w('<p><a href="%s">%s</a></p>' % ( |
|
81 |
html_escape(v.url()), html_escape(self.req._(v.title).capitalize()))) |
|
82 |
||
83 |
def entities(self): |
|
84 |
schema = self.schema |
|
85 |
self.w(u'<h4>%s</h4>\n' % self.req._('The repository holds the following entities')) |
|
86 |
manager = self.req.user.matching_groups('managers') |
|
87 |
self.w(u'<table class="startup">') |
|
88 |
if manager: |
|
89 |
self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('application entities')) |
|
90 |
self.entity_types_table(eschema for eschema in schema.entities() |
|
178
b5478a96da3d
only hide strict suboject in default view
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
0
diff
changeset
|
91 |
if not eschema.meta and not eschema.is_subobject(strict=True)) |
0 | 92 |
if manager: |
93 |
self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('system entities')) |
|
94 |
self.entity_types_table(eschema for eschema in schema.entities() |
|
95 |
if eschema.meta and not eschema.schema_entity()) |
|
96 |
if 'EFRDef' in schema: # check schema support |
|
97 |
self.w(u'<tr><th colspan="4">%s</th></tr>\n' % self.req._('schema entities')) |
|
98 |
self.entity_types_table(schema.eschema(etype) |
|
99 |
for etype in schema.schema_entity_types()) |
|
100 |
self.w(u'</table>') |
|
101 |
||
102 |
def entity_types_table(self, eschemas): |
|
103 |
newline = 0 |
|
104 |
infos = sorted(self.entity_types(eschemas), |
|
105 |
key=lambda (l,a,e):unormalize(l)) |
|
106 |
q, r = divmod(len(infos), 2) |
|
107 |
if r: |
|
108 |
infos.append( (None, ' ', ' ') ) |
|
109 |
infos = zip(infos[:q+r], infos[q+r:]) |
|
110 |
for (_, etypelink, addlink), (_, etypelink2, addlink2) in infos: |
|
111 |
self.w(u'<tr>\n') |
|
112 |
self.w(u'<td class="addcol">%s</td><td>%s</td>\n' % (addlink, etypelink)) |
|
113 |
self.w(u'<td class="addcol">%s</td><td>%s</td>\n' % (addlink2, etypelink2)) |
|
114 |
self.w(u'</tr>\n') |
|
115 |
||
116 |
||
117 |
def entity_types(self, eschemas): |
|
118 |
"""return a list of formatted links to get a list of entities of |
|
119 |
a each entity's types |
|
120 |
""" |
|
121 |
req = self.req |
|
122 |
for eschema in eschemas: |
|
123 |
if eschema.is_final() or (not eschema.has_perm(req, 'read') and |
|
124 |
not eschema.has_local_role('read')): |
|
125 |
continue |
|
126 |
etype = eschema.type |
|
127 |
label = display_name(req, etype, 'plural') |
|
128 |
nb = req.execute('Any COUNT(X) WHERE X is %s' % etype)[0][0] |
|
129 |
if nb > 1: |
|
130 |
view = self.vreg.select_view('list', req, req.etype_rset(etype)) |
|
131 |
url = view.url() |
|
132 |
else: |
|
133 |
url = self.build_url('view', rql='%s X' % etype) |
|
134 |
etypelink = u' <a href="%s">%s</a> (%d)' % ( |
|
135 |
html_escape(url), label, nb) |
|
136 |
yield (label, etypelink, self.add_entity_link(eschema, req)) |
|
137 |
||
138 |
def add_entity_link(self, eschema, req): |
|
139 |
"""creates a [+] link for adding an entity if user has permission to do so""" |
|
140 |
if not eschema.has_perm(req, 'add'): |
|
141 |
return u'' |
|
142 |
return u'[<a href="%s" title="%s">+</a>]' % ( |
|
143 |
html_escape(self.create_url(eschema.type)), |
|
144 |
self.req.__('add a %s' % eschema)) |
|
145 |
||
146 |
||
147 |
class IndexView(ManageView): |
|
148 |
id = 'index' |
|
149 |
title = _('index') |
|
150 |
||
151 |
def display_folders(self): |
|
329
903eb8c4ebd6
don't show folder section on index page when there is now folder yet
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
178
diff
changeset
|
152 |
return 'Folder' in self.schema and self.req.execute('Any COUNT(X) WHERE X is Folder')[0][0] |
0 | 153 |
|
154 |
||
155 |
||
156 |
class SchemaView(StartupView): |
|
157 |
id = 'schema' |
|
158 |
title = _('application schema') |
|
159 |
||
160 |
def call(self): |
|
161 |
"""display schema information""" |
|
162 |
self.req.add_js('cubicweb.ajax.js') |
|
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
163 |
self.req.add_css(('cubicweb.schema.css','cubicweb.acl.css')) |
0 | 164 |
withmeta = int(self.req.form.get('withmeta', 0)) |
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
165 |
section = self.req.form.get('sec', '') |
0 | 166 |
self.w(u'<img src="%s" alt="%s"/>\n' % ( |
167 |
html_escape(self.req.build_url('view', vid='schemagraph', withmeta=withmeta)), |
|
168 |
self.req._("graphical representation of the application'schema"))) |
|
169 |
if withmeta: |
|
170 |
self.w(u'<div><a href="%s">%s</a></div>' % ( |
|
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
171 |
html_escape(self.build_url('schema', withmeta=0, sec=section)), |
0 | 172 |
self.req._('hide meta-data'))) |
173 |
else: |
|
174 |
self.w(u'<div><a href="%s">%s</a></div>' % ( |
|
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
175 |
html_escape(self.build_url('schema', withmeta=1, sec=section)), |
0 | 176 |
self.req._('show meta-data'))) |
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
177 |
self.w(u'<a href="%s">%s</a><br/>' % |
0 | 178 |
(html_escape(ajax_replace_url('detailed_schema', '', 'schematext', |
179 |
skipmeta=int(not withmeta))), |
|
180 |
self.req._('detailed schema view'))) |
|
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
181 |
if self.req.user.matching_groups('managers'): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
182 |
self.w(u'<a href="%s">%s</a>' % |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
183 |
(html_escape(ajax_replace_url('detailed_schema', '', 'schema_security', |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
184 |
skipmeta=int(not withmeta))), |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
185 |
self.req._('security'))) |
1495
4d6e9fe80378
avoid displaying a section twice
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
1494
diff
changeset
|
186 |
self.w(u'<div id="detailed_schema">') |
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
187 |
if section: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
188 |
self.wview(section, None) |
1495
4d6e9fe80378
avoid displaying a section twice
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
1494
diff
changeset
|
189 |
self.w(u'</div>') |
4d6e9fe80378
avoid displaying a section twice
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
1494
diff
changeset
|
190 |
|
4d6e9fe80378
avoid displaying a section twice
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
1494
diff
changeset
|
191 |
class SchemaPermissionsView(SchemaPermissionsView, SecurityViewMixIn): |
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
192 |
id = 'schema_security' |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
193 |
require_groups = ('managers',) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
194 |
__selectors__ = StartupView.__selectors__ + (match_user_group,) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
195 |
|
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
196 |
def call(self, display_relations=True, |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
197 |
skiprels=('is', 'is_instance_of', 'identity', 'owned_by', 'created_by')): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
198 |
_ = self.req._ |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
199 |
formparams = {} |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
200 |
formparams['sec'] = self.id |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
201 |
formparams['withmeta'] = int(self.req.form.get('withmeta', True)) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
202 |
schema = self.schema |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
203 |
# compute entities |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
204 |
entities = [eschema for eschema in schema.entities() |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
205 |
if not eschema.is_final()] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
206 |
if not formparams['withmeta']: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
207 |
entities = [eschema for eschema in entities |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
208 |
if not eschema.meta] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
209 |
# compute relations |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
210 |
relations = [] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
211 |
if display_relations: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
212 |
relations = [rschema for rschema in schema.relations() |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
213 |
if not (rschema.is_final() or rschema.type in skiprels)] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
214 |
if not formparams['withmeta']: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
215 |
relations = [rschema for rschema in relations |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
216 |
if not rschema.meta] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
217 |
# index |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
218 |
self.w(u'<div id="schema_security"><a id="index" href="index"/>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
219 |
self.w(u'<h2 class="schema">%s</h2>' % _('index').capitalize()) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
220 |
self.w(u'<h4>%s</h4>' % _('Entities').capitalize()) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
221 |
ents = [] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
222 |
for eschema in sorted(entities): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
223 |
url = html_escape(self.build_url('schema', **formparams) + '#' + eschema.type) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
224 |
ents.append(u'<a class="grey" href="%s">%s</a> (%s)' % (url, eschema.type, _(eschema.type))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
225 |
self.w('%s' % ', '.join(ents)) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
226 |
self.w(u'<h4>%s</h4>' % (_('relations').capitalize())) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
227 |
rels = [] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
228 |
for eschema in sorted(relations): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
229 |
url = html_escape(self.build_url('schema', **formparams) + '#' + eschema.type) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
230 |
rels.append(u'<a class="grey" href="%s">%s</a> (%s), ' % (url , eschema.type, _(eschema.type))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
231 |
self.w('%s' % ', '.join(ents)) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
232 |
# entities |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
233 |
self.display_entities(entities, formparams) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
234 |
# relations |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
235 |
if relations: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
236 |
self.display_relations(relations, formparams) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
237 |
self.w(u'</div>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
238 |
|
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
239 |
def display_entities(self, entities, formparams): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
240 |
_ = self.req._ |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
241 |
self.w(u'<a id="entities" href="entities"/>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
242 |
self.w(u'<h2 class="schema">%s</h2>' % _('permissions for entities').capitalize()) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
243 |
for eschema in sorted(entities): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
244 |
self.w(u'<a id="%s" href="%s"/>' % (eschema.type, eschema.type)) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
245 |
self.w(u'<h3 class="schema">%s (%s) ' % (eschema.type, _(eschema.type))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
246 |
url = html_escape(self.build_url('schema', **formparams) + '#index') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
247 |
self.w(u'<a href="%s"><img src="%s" alt="%s"/></a>' % (url, self.req.external_resource('UP_ICON'), _('up'))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
248 |
self.w(u'</h3>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
249 |
self.w(u'<div style="margin: 0px 1.5em">') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
250 |
self.schema_definition(eschema, link=False) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
251 |
|
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
252 |
# display entity attributes only if they have some permissions modified |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
253 |
modified_attrs = [] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
254 |
for attr, etype in eschema.attribute_definitions(): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
255 |
if self.has_schema_modified_permissions(attr, attr.ACTIONS): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
256 |
modified_attrs.append(attr) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
257 |
if modified_attrs: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
258 |
self.w(u'<h4>%s</h4>' % _('attributes with modified permissions:').capitalize()) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
259 |
self.w(u'</div>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
260 |
self.w(u'<div style="margin: 0px 6em">') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
261 |
for attr in modified_attrs: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
262 |
self.w(u'<h4 class="schema">%s (%s)</h4> ' % (attr.type, _(attr.type))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
263 |
self.schema_definition(attr, link=False) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
264 |
self.w(u'</div>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
265 |
else: |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
266 |
self.w(u'</div>') |
0 | 267 |
|
268 |
||
1494
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
269 |
def display_relations(self, relations, formparams): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
270 |
_ = self.req._ |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
271 |
self.w(u'<a id="relations" href="relations"/>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
272 |
self.w(u'<h2 class="schema">%s </h2>' % _('permissions for relations').capitalize()) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
273 |
for rschema in sorted(relations): |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
274 |
self.w(u'<a id="%s" href="%s"/>' % (rschema.type, rschema.type)) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
275 |
self.w(u'<h3 class="schema">%s (%s) ' % (rschema.type, _(rschema.type))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
276 |
url = html_escape(self.build_url('schema', **formparams) + '#index') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
277 |
self.w(u'<a href="%s"><img src="%s" alt="%s"/></a>' % (url, self.req.external_resource('UP_ICON'), _('up'))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
278 |
self.w(u'</h3>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
279 |
self.w(u'<div style="margin: 0px 1.5em">') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
280 |
subjects = [str(subj) for subj in rschema.subjects()] |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
281 |
self.w(u'<div><strong>%s</strong> %s (%s)</div>' % (_('subject_plural:'), |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
282 |
', '.join( [str(subj) for subj in rschema.subjects()]), |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
283 |
', '.join( [_(str(subj)) for subj in rschema.subjects()]))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
284 |
self.w(u'<div><strong>%s</strong> %s (%s)</div>' % (_('object_plural:'), |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
285 |
', '.join( [str(obj) for obj in rschema.objects()]), |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
286 |
', '.join( [_(str(obj)) for obj in rschema.objects()]))) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
287 |
self.schema_definition(rschema, link=False) |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
288 |
self.w(u'</div>') |
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
289 |
|
d68aac1cda0d
#342695: add new security section to the schema view
Katia Saurfelt <katia.saurfelt@logilab.fr>
parents:
853
diff
changeset
|
290 |
|
513
907c18c01c60
while EntityView has been used here?? (changeset 501 by laure)
sylvain.thenault@logilab.fr
parents:
505
diff
changeset
|
291 |
class SchemaUreportsView(StartupView): |
0 | 292 |
id = 'schematext' |
293 |
||
294 |
def call(self): |
|
295 |
from cubicweb.schemaviewer import SchemaViewer |
|
296 |
skipmeta = int(self.req.form.get('skipmeta', True)) |
|
297 |
schema = self.schema |
|
298 |
viewer = SchemaViewer(self.req) |
|
299 |
layout = viewer.visit_schema(schema, display_relations=True, |
|
300 |
skiprels=('is', 'is_instance_of', 'identity', |
|
301 |
'owned_by', 'created_by'), |
|
302 |
skipmeta=skipmeta) |
|
303 |
self.w(ureport_as_html(layout)) |
|
304 |