author | Nicolas Chauvat <nicolas.chauvat@logilab.fr> |
Thu, 13 Aug 2009 11:01:32 +0200 | |
changeset 2814 | 112742b3bbe1 |
parent 2813 | 0cf6c8005bf6 |
child 2818 | 326375561412 |
permissions | -rw-r--r-- |
0 | 1 |
# -*- coding: utf-8 -*- |
2 |
"""default templates for CubicWeb web client |
|
3 |
||
4 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1851
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1851
diff
changeset
|
7 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 8 |
""" |
9 |
__docformat__ = "restructuredtext en" |
|
10 |
||
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
11 |
from logilab.mtconverter import xml_escape |
0 | 12 |
|
2657
de974465d381
[appobject] kill VObject class, move base selector classes to appobject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
13 |
from cubicweb.appobject import objectify_selector |
822 | 14 |
from cubicweb.selectors import match_kwargs |
2061
6a5044f15cb9
[basetemplates] do not use STRICT_DOCTYPE directly, use self.doctype to deal with non xhtml browser
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1977
diff
changeset
|
15 |
from cubicweb.view import View, MainTemplate, NOINDEX, NOFOLLOW |
811 | 16 |
from cubicweb.utils import make_uid, UStringIO |
0 | 17 |
|
2555
ca7b122f34fa
fix html headers for forced html content type : main template and json controller
Fabrice <fabrice@secondweb.fr>
parents:
2381
diff
changeset
|
18 |
|
0 | 19 |
# main templates ############################################################## |
20 |
||
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
21 |
class LogInOutTemplate(MainTemplate): |
0 | 22 |
|
23 |
def call(self): |
|
24 |
self.set_request_content_type() |
|
25 |
w = self.w |
|
26 |
self.write_doctype() |
|
27 |
self.template_header('text/html', self.req._('login_action')) |
|
28 |
w(u'<body>\n') |
|
29 |
self.content(w) |
|
30 |
w(u'</body>') |
|
31 |
||
32 |
def template_header(self, content_type, view=None, page_title='', additional_headers=()): |
|
33 |
w = self.whead |
|
34 |
# explictly close the <base> tag to avoid IE 6 bugs while browsing DOM |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
35 |
w(u'<base href="%s"></base>' % xml_escape(self.req.base_url())) |
0 | 36 |
w(u'<meta http-equiv="content-type" content="%s; charset=%s"/>\n' |
37 |
% (content_type, self.req.encoding)) |
|
38 |
w(NOINDEX) |
|
39 |
w(NOFOLLOW) |
|
40 |
w(u'\n'.join(additional_headers) + u'\n') |
|
819 | 41 |
self.wview('htmlheader', rset=self.rset) |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
42 |
w(u'<title>%s</title>\n' % xml_escape(page_title)) |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
43 |
|
0 | 44 |
|
45 |
class LogInTemplate(LogInOutTemplate): |
|
46 |
id = 'login' |
|
47 |
title = 'log in' |
|
48 |
||
49 |
def content(self, w): |
|
819 | 50 |
self.wview('logform', rset=self.rset, id='loginBox', klass='') |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
51 |
|
0 | 52 |
|
53 |
class LoggedOutTemplate(LogInOutTemplate): |
|
54 |
id = 'loggedout' |
|
55 |
title = 'logged out' |
|
56 |
||
57 |
def content(self, w): |
|
852
105893288777
simplify css style
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
432
diff
changeset
|
58 |
# FIXME Deprecated code ? |
0 | 59 |
msg = self.req._('you have been logged out') |
852
105893288777
simplify css style
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
432
diff
changeset
|
60 |
w(u'<h2>%s</h2>\n' % msg) |
0 | 61 |
if self.config['anonymous-user']: |
62 |
indexurl = self.build_url('view', vid='index', __message=msg) |
|
63 |
w(u'<p><a href="%s">%s</a><p>' % ( |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
64 |
xml_escape(indexurl), |
0 | 65 |
self.req._('go back to the index page'))) |
66 |
||
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
67 |
@objectify_selector |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
68 |
def templatable_view(cls, req, rset, *args, **kwargs): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
69 |
view = kwargs.pop('view', None) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
70 |
if view is None: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
71 |
return 1 |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
72 |
if view.binary: |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
73 |
return 0 |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
74 |
if req.form.has_key('__notemplate'): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
75 |
return 0 |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
76 |
return view.templatable |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
77 |
|
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
78 |
|
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
79 |
class NonTemplatableViewTemplate(MainTemplate): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
80 |
"""main template for any non templatable views (xml, binaries, etc.)""" |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
81 |
id = 'main-template' |
1421
77ee26df178f
doc type handling refactoring: do the ext substitution at the module level
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
82 |
__select__ = ~templatable_view() |
77ee26df178f
doc type handling refactoring: do the ext substitution at the module level
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
83 |
|
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
84 |
def call(self, view): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
85 |
view.set_request_content_type() |
1421
77ee26df178f
doc type handling refactoring: do the ext substitution at the module level
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
86 |
view.set_stream() |
2559
46859078c866
[R xhtml] remove xhtml_wrap* function, use instead a single req.document_surrounding_div method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2555
diff
changeset
|
87 |
if (self.req.form.has_key('__notemplate') and view.templatable |
46859078c866
[R xhtml] remove xhtml_wrap* function, use instead a single req.document_surrounding_div method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2555
diff
changeset
|
88 |
and view.content_type == self.req.html_content_type()): |
46859078c866
[R xhtml] remove xhtml_wrap* function, use instead a single req.document_surrounding_div method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2555
diff
changeset
|
89 |
view.w(self.req.document_surrounding_div()) |
2555
ca7b122f34fa
fix html headers for forced html content type : main template and json controller
Fabrice <fabrice@secondweb.fr>
parents:
2381
diff
changeset
|
90 |
view.render() |
2559
46859078c866
[R xhtml] remove xhtml_wrap* function, use instead a single req.document_surrounding_div method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2555
diff
changeset
|
91 |
view.w(u'</div>') |
2555
ca7b122f34fa
fix html headers for forced html content type : main template and json controller
Fabrice <fabrice@secondweb.fr>
parents:
2381
diff
changeset
|
92 |
else: |
ca7b122f34fa
fix html headers for forced html content type : main template and json controller
Fabrice <fabrice@secondweb.fr>
parents:
2381
diff
changeset
|
93 |
view.render() |
2559
46859078c866
[R xhtml] remove xhtml_wrap* function, use instead a single req.document_surrounding_div method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2555
diff
changeset
|
94 |
# have to replace our stream by view's stream (which may be a binary |
46859078c866
[R xhtml] remove xhtml_wrap* function, use instead a single req.document_surrounding_div method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2555
diff
changeset
|
95 |
# stream) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
96 |
self._stream = view._stream |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
97 |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
98 |
|
0 | 99 |
class TheMainTemplate(MainTemplate): |
100 |
"""default main template : |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
101 |
|
0 | 102 |
- call header / footer templates |
103 |
""" |
|
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
104 |
id = 'main-template' |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
105 |
__select__ = templatable_view() |
1421
77ee26df178f
doc type handling refactoring: do the ext substitution at the module level
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
106 |
|
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
107 |
def call(self, view): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
108 |
self.set_request_content_type() |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
109 |
self.template_header(self.content_type, view) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
110 |
w = self.w |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
111 |
w(u'<div id="pageContent">\n') |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
112 |
vtitle = self.req.form.get('vtitle') |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
113 |
if vtitle: |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
114 |
w(u'<h1 class="vtitle">%s</h1>\n' % xml_escape(vtitle)) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
115 |
# display entity type restriction component |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
116 |
etypefilter = self.vreg['components'].select_or_none( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
117 |
'etypenavigation', self.req, rset=self.rset) |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
118 |
if etypefilter and etypefilter.propval('visible'): |
1723 | 119 |
etypefilter.render(w=w) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
120 |
self.nav_html = UStringIO() |
872 | 121 |
if view and view.need_navigation: |
122 |
view.paginate(w=self.nav_html.write) |
|
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
123 |
w(_(self.nav_html.getvalue())) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
124 |
w(u'<div id="contentmain">\n') |
1723 | 125 |
view.render(w=w) |
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
126 |
w(u'</div>\n') # close id=contentmain |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
127 |
w(_(self.nav_html.getvalue())) |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
128 |
w(u'</div>\n') # closes id=pageContent |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
129 |
self.template_footer(view) |
0 | 130 |
|
131 |
def template_header(self, content_type, view=None, page_title='', additional_headers=()): |
|
132 |
page_title = page_title or view.page_title() |
|
133 |
additional_headers = additional_headers or view.html_headers() |
|
134 |
self.template_html_header(content_type, page_title, additional_headers) |
|
135 |
self.template_body_header(view) |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
136 |
|
0 | 137 |
def template_html_header(self, content_type, page_title, additional_headers=()): |
138 |
w = self.whead |
|
139 |
lang = self.req.lang |
|
140 |
self.write_doctype() |
|
2580
6e9453fd11ef
always explicitly close <base> tags because of an old IE6 bug
Florent <florent@secondweb.fr>
parents:
2559
diff
changeset
|
141 |
# explictly close the <base> tag to avoid IE 6 bugs while browsing DOM |
6e9453fd11ef
always explicitly close <base> tags because of an old IE6 bug
Florent <florent@secondweb.fr>
parents:
2559
diff
changeset
|
142 |
w(u'<base href="%s"></base>' % xml_escape(self.req.base_url())) |
0 | 143 |
w(u'<meta http-equiv="content-type" content="%s; charset=%s"/>\n' |
144 |
% (content_type, self.req.encoding)) |
|
145 |
w(u'\n'.join(additional_headers) + u'\n') |
|
819 | 146 |
self.wview('htmlheader', rset=self.rset) |
0 | 147 |
if page_title: |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
148 |
w(u'<title>%s</title>\n' % xml_escape(page_title)) |
0 | 149 |
|
150 |
def template_body_header(self, view): |
|
151 |
w = self.w |
|
152 |
w(u'<body>\n') |
|
819 | 153 |
self.wview('header', rset=self.rset, view=view) |
0 | 154 |
w(u'<div id="page"><table width="100%" border="0" id="mainLayout"><tr>\n') |
155 |
self.nav_column(view, 'left') |
|
156 |
w(u'<td id="contentcol">\n') |
|
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2657
diff
changeset
|
157 |
components = self.vreg['components'] |
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2657
diff
changeset
|
158 |
rqlcomp = components.select_or_none('rqlinput', self.req, rset=self.rset) |
0 | 159 |
if rqlcomp: |
1723 | 160 |
rqlcomp.render(w=self.w, view=view) |
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2657
diff
changeset
|
161 |
msgcomp = components.select_or_none('applmessages', self.req, rset=self.rset) |
0 | 162 |
if msgcomp: |
1723 | 163 |
msgcomp.render(w=self.w) |
0 | 164 |
self.content_header(view) |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
165 |
|
0 | 166 |
def template_footer(self, view=None): |
167 |
self.content_footer(view) |
|
168 |
self.w(u'</td>\n') |
|
169 |
self.nav_column(view, 'right') |
|
170 |
self.w(u'</tr></table></div>\n') |
|
819 | 171 |
self.wview('footer', rset=self.rset) |
0 | 172 |
self.w(u'</body>') |
173 |
||
174 |
def nav_column(self, view, context): |
|
2813
0cf6c8005bf6
R propagate deprecation of CWRegistry.possible_vobjects
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2800
diff
changeset
|
175 |
boxes = list(self.vreg['boxes'].poss_visible_objects( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
176 |
self.req, rset=self.rset, view=view, context=context)) |
0 | 177 |
if boxes: |
178 |
self.w(u'<td class="navcol"><div class="navboxes">\n') |
|
179 |
for box in boxes: |
|
1723 | 180 |
box.render(w=self.w, view=view) |
0 | 181 |
self.w(u'</div></td>\n') |
182 |
||
183 |
def content_header(self, view=None): |
|
184 |
"""by default, display informal messages in content header""" |
|
819 | 185 |
self.wview('contentheader', rset=self.rset, view=view) |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
186 |
|
0 | 187 |
def content_footer(self, view=None): |
819 | 188 |
self.wview('contentfooter', rset=self.rset, view=view) |
0 | 189 |
|
190 |
||
191 |
class ErrorTemplate(TheMainTemplate): |
|
192 |
"""fallback template if an internal error occured during displaying the |
|
193 |
main template. This template may be called for authentication error, |
|
194 |
which means that req.cnx and req.user may not be set. |
|
195 |
""" |
|
832
8e06873d80d3
rename error template to avoid conflicts with the error view
sylvain.thenault@logilab.fr
parents:
828
diff
changeset
|
196 |
id = 'error-template' |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
197 |
|
0 | 198 |
def call(self): |
199 |
"""display an unexpected error""" |
|
200 |
self.set_request_content_type() |
|
201 |
self.req.reset_headers() |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
202 |
view = self.vreg['views'].select('error', self.req, rset=self.rset) |
0 | 203 |
self.template_header(self.content_type, view, self.req._('an error occured'), |
204 |
[NOINDEX, NOFOLLOW]) |
|
1723 | 205 |
view.render(w=self.w) |
0 | 206 |
self.template_footer(view) |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
207 |
|
0 | 208 |
def template_header(self, content_type, view=None, page_title='', additional_headers=()): |
209 |
w = self.whead |
|
210 |
lang = self.req.lang |
|
211 |
self.write_doctype() |
|
212 |
w(u'<meta http-equiv="content-type" content="%s; charset=%s"/>\n' |
|
213 |
% (content_type, self.req.encoding)) |
|
214 |
w(u'\n'.join(additional_headers)) |
|
819 | 215 |
self.wview('htmlheader', rset=self.rset) |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
216 |
w(u'<title>%s</title>\n' % xml_escape(page_title)) |
0 | 217 |
self.w(u'<body>\n') |
218 |
||
219 |
def template_footer(self, view=None): |
|
220 |
self.w(u'</body>') |
|
221 |
||
222 |
||
223 |
class SimpleMainTemplate(TheMainTemplate): |
|
224 |
||
225 |
id = 'main-no-top' |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
226 |
|
163
451a3e35dbcb
repairing error from preceding commit
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
158
diff
changeset
|
227 |
def template_header(self, content_type, view=None, page_title='', additional_headers=()): |
451a3e35dbcb
repairing error from preceding commit
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
158
diff
changeset
|
228 |
page_title = page_title or view.page_title() |
0 | 229 |
additional_headers = additional_headers or view.html_headers() |
230 |
whead = self.whead |
|
231 |
lang = self.req.lang |
|
232 |
self.write_doctype() |
|
233 |
whead(u'<meta http-equiv="content-type" content="%s; charset=%s"/>\n' |
|
234 |
% (content_type, self.req.encoding)) |
|
235 |
whead(u'\n'.join(additional_headers) + u'\n') |
|
819 | 236 |
self.wview('htmlheader', rset=self.rset) |
0 | 237 |
w = self.w |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
238 |
w(u'<title>%s</title>\n' % xml_escape(page_title)) |
0 | 239 |
w(u'<body>\n') |
240 |
w(u'<div id="page">') |
|
241 |
w(u'<table width="100%" height="100%" border="0"><tr>\n') |
|
242 |
w(u'<td class="navcol">\n') |
|
243 |
self.topleft_header() |
|
2813
0cf6c8005bf6
R propagate deprecation of CWRegistry.possible_vobjects
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2800
diff
changeset
|
244 |
boxes = list(self.vreg['boxes'].poss_visible_objects( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
245 |
self.req, rset=self.rset, view=view, context='left')) |
0 | 246 |
if boxes: |
247 |
w(u'<div class="navboxes">\n') |
|
248 |
for box in boxes: |
|
1723 | 249 |
box.render(w=w) |
0 | 250 |
self.w(u'</div>\n') |
251 |
w(u'</td>') |
|
252 |
w(u'<td id="contentcol" rowspan="2">') |
|
253 |
w(u'<div id="pageContent">\n') |
|
254 |
vtitle = self.req.form.get('vtitle') |
|
255 |
if vtitle: |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
256 |
w(u'<h1 class="vtitle">%s</h1>' % xml_escape(vtitle)) |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
257 |
|
0 | 258 |
def topleft_header(self): |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
259 |
logo = self.vreg['components'].select_or_none('logo', self.req, |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
260 |
rset=self.rset) |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
261 |
if logo and logo.propval('visible'): |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
262 |
self.w(u'<table id="header"><tr>\n') |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
263 |
self.w(u'<td>') |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
264 |
logo.render(w=self.w) |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
265 |
self.w(u'</td>\n') |
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
266 |
self.w(u'</tr></table>\n') |
0 | 267 |
|
268 |
# page parts templates ######################################################## |
|
269 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
270 |
class HTMLHeader(View): |
0 | 271 |
"""default html headers""" |
272 |
id = 'htmlheader' |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
273 |
|
0 | 274 |
def call(self, **kwargs): |
275 |
self.favicon() |
|
276 |
self.stylesheets() |
|
277 |
self.javascripts() |
|
278 |
self.alternates() |
|
279 |
self.pageid() |
|
280 |
||
281 |
def favicon(self): |
|
282 |
favicon = self.req.external_resource('FAVICON', None) |
|
283 |
if favicon: |
|
284 |
self.whead(u'<link rel="shortcut icon" href="%s"/>\n' % favicon) |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
285 |
|
0 | 286 |
def stylesheets(self): |
287 |
req = self.req |
|
288 |
add_css = req.add_css |
|
289 |
for css in req.external_resource('STYLESHEETS'): |
|
290 |
add_css(css, localfile=False) |
|
291 |
for css in req.external_resource('STYLESHEETS_PRINT'): |
|
292 |
add_css(css, u'print', localfile=False) |
|
293 |
for css in req.external_resource('IE_STYLESHEETS'): |
|
294 |
add_css(css, localfile=False, ieonly=True) |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
295 |
|
0 | 296 |
def javascripts(self): |
297 |
for jscript in self.req.external_resource('JAVASCRIPTS'): |
|
298 |
self.req.add_js(jscript, localfile=False) |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
299 |
|
0 | 300 |
def alternates(self): |
2770
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2657
diff
changeset
|
301 |
urlgetter = self.vreg['components'].select_or_none('rss_feed_url', |
356e9d7c356d
R propagate registry API changes
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2657
diff
changeset
|
302 |
self.req, rset=self.rset) |
142
0425ee84cfa6
add selector to test if result set is an object (for rss feed component)
Laure Bourgois <Laure.Bourgois@logilab.fr>
parents:
29
diff
changeset
|
303 |
if urlgetter is not None: |
0 | 304 |
self.whead(u'<link rel="alternate" type="application/rss+xml" title="RSS feed" href="%s"/>\n' |
2381 | 305 |
% xml_escape(urlgetter.feed_url())) |
0 | 306 |
|
307 |
def pageid(self): |
|
308 |
req = self.req |
|
309 |
pid = make_uid(id(req)) |
|
310 |
req.pageid = pid |
|
1138
22f634977c95
make pylint happy, fix some bugs on the way
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
311 |
req.html_headers.define_var('pageid', pid) |
0 | 312 |
|
313 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
314 |
class HTMLPageHeader(View): |
0 | 315 |
"""default html page header""" |
316 |
id = 'header' |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
317 |
|
0 | 318 |
def call(self, view, **kwargs): |
319 |
self.main_header(view) |
|
320 |
self.w(u''' |
|
321 |
<div id="stateheader">''') |
|
322 |
self.state_header() |
|
323 |
self.w(u''' |
|
324 |
</div> |
|
325 |
''') |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
326 |
|
0 | 327 |
def main_header(self, view): |
328 |
"""build the top menu with authentification info and the rql box""" |
|
329 |
self.w(u'<table id="header"><tr>\n') |
|
330 |
self.w(u'<td id="firstcolumn">') |
|
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
331 |
logo = self.vreg['components'].select_or_none( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
332 |
'logo', self.req, rset=self.rset) |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
333 |
if logo and logo.propval('visible'): |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
334 |
logo.render(w=self.w) |
0 | 335 |
self.w(u'</td>\n') |
336 |
# appliname and breadcrumbs |
|
337 |
self.w(u'<td id="headtext">') |
|
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
338 |
for cid in ('appliname', 'breadcrumbs'): |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
339 |
comp = self.vreg['components'].select_or_none( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
340 |
cid, self.req, rset=self.rset) |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
341 |
if comp and comp.propval('visible'): |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
342 |
comp.render(w=self.w) |
0 | 343 |
self.w(u'</td>') |
344 |
# logged user and help |
|
345 |
self.w(u'<td>\n') |
|
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
346 |
comp = self.vreg['components'].select_or_none( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
347 |
'loggeduserlink', self.req, rset=self.rset) |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
348 |
if comp and comp.propval('visible'): |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
349 |
comp.render(w=self.w) |
0 | 350 |
self.w(u'</td><td>') |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
351 |
helpcomp = self.vreg['components'].select_or_none( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
352 |
'help', self.req, rset=self.rset) |
2800
31c3a045e04d
R deprecate CWRegistry.select_vobject
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2770
diff
changeset
|
353 |
if helpcomp and helpcomp.propval('visible'): |
1723 | 354 |
helpcomp.render(w=self.w) |
0 | 355 |
self.w(u'</td>') |
356 |
# lastcolumn |
|
357 |
self.w(u'<td id="lastcolumn">') |
|
358 |
self.w(u'</td>\n') |
|
359 |
self.w(u'</tr></table>\n') |
|
819 | 360 |
self.wview('logform', rset=self.rset, id='popupLoginBox', klass='hidden', |
361 |
title=False, message=False) |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
362 |
|
0 | 363 |
def state_header(self): |
364 |
state = self.req.search_state |
|
365 |
if state[0] == 'normal': |
|
366 |
return |
|
367 |
_ = self.req._ |
|
368 |
value = self.view('oneline', self.req.eid_rset(state[1][1])) |
|
369 |
msg = ' '.join((_("searching for"), |
|
370 |
display_name(self.req, state[1][3]), |
|
371 |
_("to associate with"), value, |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
372 |
_("by relation"), '"', |
0 | 373 |
display_name(self.req, state[1][2], state[1][0]), |
374 |
'"')) |
|
375 |
return self.w(u'<div class="stateMessage">%s</div>' % msg) |
|
376 |
||
377 |
||
378 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
379 |
class HTMLPageFooter(View): |
0 | 380 |
"""default html page footer: include logo if any, and close the HTML body |
381 |
""" |
|
382 |
id = 'footer' |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
383 |
|
0 | 384 |
def call(self, **kwargs): |
385 |
req = self.req |
|
386 |
self.w(u'<div class="footer">') |
|
387 |
# XXX Take object from the registry if in there? would be |
|
388 |
# better anyway |
|
389 |
from cubicweb.web.views.wdoc import ChangeLogView |
|
390 |
self.w(u'<a href="%s">%s</a> | ' % (req.build_url('changelog'), |
|
391 |
req._(ChangeLogView.title).lower())) |
|
392 |
self.w(u'<a href="%s">%s</a> | ' % (req.build_url('doc/about'), |
|
393 |
req._('about this site'))) |
|
580 | 394 |
self.w(u'© 2001-2009 <a href="http://www.logilab.fr">Logilab S.A.</a>') |
0 | 395 |
self.w(u'</div>') |
396 |
||
397 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
398 |
class HTMLContentHeader(View): |
0 | 399 |
"""default html page content header: |
400 |
* include message component if selectable for this request |
|
401 |
* include selectable content navigation components |
|
402 |
""" |
|
403 |
id = 'contentheader' |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
404 |
|
0 | 405 |
def call(self, view, **kwargs): |
406 |
"""by default, display informal messages in content header""" |
|
2813
0cf6c8005bf6
R propagate deprecation of CWRegistry.possible_vobjects
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2800
diff
changeset
|
407 |
components = self.vreg['contentnavigation'].poss_visible_objects( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
408 |
self.req, rset=self.rset, view=view, context='navtop') |
0 | 409 |
if components: |
410 |
self.w(u'<div id="contentheader">') |
|
411 |
for comp in components: |
|
1723 | 412 |
comp.render(w=self.w, view=view) |
0 | 413 |
self.w(u'</div><div class="clear"></div>') |
414 |
||
415 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
416 |
class HTMLContentFooter(View): |
0 | 417 |
"""default html page content footer: include selectable content navigation |
418 |
components |
|
419 |
""" |
|
420 |
id = 'contentfooter' |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
421 |
|
0 | 422 |
def call(self, view, **kwargs): |
2813
0cf6c8005bf6
R propagate deprecation of CWRegistry.possible_vobjects
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2800
diff
changeset
|
423 |
components = self.vreg['contentnavigation'].poss_visible_objects( |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2580
diff
changeset
|
424 |
self.req, rset=self.rset, view=view, context='navbottom') |
0 | 425 |
if components: |
426 |
self.w(u'<div id="contentfooter">') |
|
427 |
for comp in components: |
|
1723 | 428 |
comp.render(w=self.w, view=view) |
0 | 429 |
self.w(u'</div>') |
430 |
||
431 |
||
816
9cd49a910fce
kill Template class and 'templates' registry
sylvain.thenault@logilab.fr
parents:
811
diff
changeset
|
432 |
class LogFormTemplate(View): |
0 | 433 |
id = 'logform' |
826
51cb3d85c059
fix LogFormTemplate selector
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
823
diff
changeset
|
434 |
__select__ = match_kwargs('id', 'klass') |
1421
77ee26df178f
doc type handling refactoring: do the ext substitution at the module level
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
435 |
|
0 | 436 |
title = 'log in' |
1421
77ee26df178f
doc type handling refactoring: do the ext substitution at the module level
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
437 |
|
0 | 438 |
def call(self, id, klass, title=True, message=True): |
439 |
self.req.add_css('cubicweb.login.css') |
|
440 |
self.w(u'<div id="%s" class="%s">' % (id, klass)) |
|
441 |
if title: |
|
442 |
self.w(u'<div id="loginTitle">%s</div>' |
|
2119
dc1eedd06766
deal with empty site-title
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2061
diff
changeset
|
443 |
% (self.req.property_value('ui.site-title') or u' ')) |
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
444 |
self.w(u'<div id="loginContent">\n') |
0 | 445 |
|
446 |
if message: |
|
447 |
self.display_message() |
|
448 |
if self.config['auth-mode'] == 'http': |
|
449 |
# HTTP authentication |
|
450 |
pass |
|
451 |
else: |
|
452 |
# Cookie authentication |
|
453 |
self.login_form(id) |
|
454 |
self.w(u'</div></div>\n') |
|
455 |
||
456 |
def display_message(self): |
|
457 |
message = self.req.message |
|
458 |
if message: |
|
459 |
self.w(u'<div class="simpleMessage">%s</div>\n' % message) |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
460 |
|
0 | 461 |
def login_form(self, id): |
462 |
_ = self.req._ |
|
463 |
self.w(u'<form method="post" action="%s" id="login_form">\n' |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2119
diff
changeset
|
464 |
% xml_escape(login_form_url(self.config, self.req))) |
0 | 465 |
self.w(u'<table>\n') |
466 |
self.w(u'<tr>\n') |
|
1776
4be367276874
adapt login box message to allow-email-login configuration
Florent <florent@secondweb.fr>
parents:
1723
diff
changeset
|
467 |
msg = (self.config['allow-email-login'] and _('login or email')) or _('login') |
4be367276874
adapt login box message to allow-email-login configuration
Florent <florent@secondweb.fr>
parents:
1723
diff
changeset
|
468 |
self.w(u'<td><label for="__login">%s</label></td>' % msg) |
0 | 469 |
self.w(u'<td><input name="__login" id="__login" class="data" type="text" /></td>') |
470 |
self.w(u'</tr><tr>\n') |
|
471 |
self.w(u'<td><label for="__password" >%s</label></td>' % _('password')) |
|
472 |
self.w(u'<td><input name="__password" id="__password" class="data" type="password" /></td>\n') |
|
473 |
self.w(u'</tr><tr>\n') |
|
474 |
self.w(u'<td> </td><td><input type="submit" class="loginButton right" value="%s" />\n</td>' % _('log in')) |
|
475 |
self.w(u'</tr>\n') |
|
476 |
self.w(u'</table>\n') |
|
477 |
self.w(u'</form>\n') |
|
29
7d14f1eadded
fix focus problems on login inputs
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
16
diff
changeset
|
478 |
self.req.html_headers.add_onload('jQuery("#__login:visible").focus()') |
0 | 479 |
|
641
ed668804af37
split main template into main template + page-content template
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
609
diff
changeset
|
480 |
|
0 | 481 |
def login_form_url(config, req): |
482 |
if req.https: |
|
483 |
return req.url() |
|
484 |
if config.get('https-url'): |
|
485 |
return req.url().replace(req.base_url(), config['https-url']) |
|
486 |
return req.url() |
|
487 |
||
823
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
488 |
|
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
489 |
## vregistry registration callback ############################################ |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
490 |
def registration_callback(vreg): |
cb8ccbef8fa5
main template refactoring
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
822
diff
changeset
|
491 |
vreg.register_all(globals().values(), modname=__name__) |