author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Thu, 21 Apr 2011 12:35:41 +0200 | |
branch | stable |
changeset 7342 | d1c8b5b3531c |
parent 6996 | 86214f0da14f |
child 8190 | 2a3c1b787688 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 18 |
"""inline help system, using ReST file in products `wdoc` directory |
19 |
||
20 |
""" |
|
21 |
__docformat__ = "restructuredtext en" |
|
22 |
||
23 |
from itertools import chain |
|
24 |
from os.path import join |
|
25 |
from bisect import bisect_right |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
984
diff
changeset
|
26 |
from datetime import date |
0 | 27 |
|
28 |
from logilab.common.changelog import ChangeLog |
|
4466
8b0ca7904820
moved generic datetime manipulation function to lgc
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
29 |
from logilab.common.date import strptime, todate |
0 | 30 |
from logilab.mtconverter import CHARSET_DECL_RGX |
31 |
||
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
32 |
from cubicweb.selectors import match_form_params, yes |
984 | 33 |
from cubicweb.view import StartupView |
4023
eae23c40627a
drop common subpackage
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4004
diff
changeset
|
34 |
from cubicweb.uilib import rest_publish |
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
35 |
from cubicweb.web import NotFound, action |
0 | 36 |
_ = unicode |
37 |
||
38 |
# table of content management ################################################# |
|
39 |
||
40 |
try: |
|
41 |
from xml.etree.ElementTree import parse |
|
42 |
except ImportError: |
|
43 |
from elementtree.ElementTree import parse |
|
44 |
||
45 |
def build_toc_index(node, index): |
|
46 |
try: |
|
47 |
nodeidx = node.attrib['resource'] |
|
48 |
assert not nodeidx in index, nodeidx |
|
49 |
index[nodeidx] = node |
|
50 |
except KeyError: |
|
51 |
pass |
|
52 |
for child in node: |
|
53 |
build_toc_index(child, index) |
|
54 |
child.parent = node |
|
55 |
||
56 |
def get_insertion_point(section, index): |
|
57 |
if section.attrib.get('insertafter'): |
|
58 |
snode = index[section.attrib['insertafter']] |
|
59 |
node = snode.parent |
|
60 |
idx = node.getchildren().index(snode) + 1 |
|
61 |
elif section.attrib.get('insertbefore'): |
|
62 |
snode = index[section.attrib['insertbefore']] |
|
63 |
node = snode.parent |
|
64 |
idx = node.getchildren().index(snode) |
|
6420
4c14be06e557
[views/wdoc] do not crash on malconstructed stuff
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
65 |
elif 'appendto' in section.attrib: |
0 | 66 |
node = index[section.attrib['appendto']] |
67 |
idx = None |
|
6420
4c14be06e557
[views/wdoc] do not crash on malconstructed stuff
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
68 |
else: |
4c14be06e557
[views/wdoc] do not crash on malconstructed stuff
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
69 |
node, idx = None, None |
0 | 70 |
return node, idx |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
71 |
|
0 | 72 |
def build_toc(config): |
73 |
alltocfiles = reversed(tuple(config.locate_all_files('toc.xml'))) |
|
74 |
maintoc = parse(alltocfiles.next()).getroot() |
|
75 |
maintoc.parent = None |
|
76 |
index = {} |
|
77 |
build_toc_index(maintoc, index) |
|
78 |
# insert component documentation into the tree according to their toc.xml |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
79 |
# file |
0 | 80 |
for fpath in alltocfiles: |
81 |
toc = parse(fpath).getroot() |
|
82 |
for section in toc: |
|
83 |
node, idx = get_insertion_point(section, index) |
|
6420
4c14be06e557
[views/wdoc] do not crash on malconstructed stuff
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
84 |
if node is None: |
4c14be06e557
[views/wdoc] do not crash on malconstructed stuff
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
5424
diff
changeset
|
85 |
continue |
0 | 86 |
if idx is None: |
87 |
node.append(section) |
|
88 |
else: |
|
89 |
node.insert(idx, section) |
|
90 |
section.parent = node |
|
91 |
build_toc_index(section, index) |
|
92 |
return index |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
93 |
|
1149 | 94 |
def title_for_lang(node, lang): |
6996
86214f0da14f
[wdoc] fallback to english title when no translation found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6459
diff
changeset
|
95 |
fallback_title = None |
0 | 96 |
for title in node.findall('title'): |
6996
86214f0da14f
[wdoc] fallback to english title when no translation found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6459
diff
changeset
|
97 |
title_lang = title.attrib['{http://www.w3.org/XML/1998/namespace}lang'] |
86214f0da14f
[wdoc] fallback to english title when no translation found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6459
diff
changeset
|
98 |
if title_lang == lang: |
0 | 99 |
return unicode(title.text) |
6996
86214f0da14f
[wdoc] fallback to english title when no translation found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6459
diff
changeset
|
100 |
if title_lang == 'en': |
86214f0da14f
[wdoc] fallback to english title when no translation found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6459
diff
changeset
|
101 |
fallback_title = unicode(title.text) |
86214f0da14f
[wdoc] fallback to english title when no translation found
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6459
diff
changeset
|
102 |
return fallback_title |
0 | 103 |
|
104 |
def subsections(node): |
|
105 |
return [child for child in node if child.tag == 'section'] |
|
106 |
||
107 |
# help views ################################################################## |
|
108 |
||
109 |
class InlineHelpView(StartupView): |
|
731
ac4a94e50b60
some more s/__selectors__/__select__ but still more to come
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
110 |
__select__ = match_form_params('fid') |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
111 |
__regid__ = 'wdoc' |
0 | 112 |
title = _('site documentation') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
113 |
|
0 | 114 |
def call(self): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
115 |
fid = self._cw.form['fid'] |
3733
c3feb6a33f58
remove some warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3655
diff
changeset
|
116 |
vreg = self._cw.vreg |
c3feb6a33f58
remove some warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3655
diff
changeset
|
117 |
for lang in chain((self._cw.lang, vreg.property_value('ui.language')), |
c3feb6a33f58
remove some warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3655
diff
changeset
|
118 |
vreg.config.available_languages()): |
0 | 119 |
rid = '%s_%s.rst' % (fid, lang) |
3733
c3feb6a33f58
remove some warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3655
diff
changeset
|
120 |
resourcedir = vreg.config.locate_doc_file(rid) |
0 | 121 |
if resourcedir: |
122 |
break |
|
123 |
else: |
|
124 |
raise NotFound |
|
3733
c3feb6a33f58
remove some warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3655
diff
changeset
|
125 |
self.tocindex = build_toc(vreg.config) |
0 | 126 |
try: |
127 |
node = self.tocindex[fid] |
|
128 |
except KeyError: |
|
129 |
node = None |
|
130 |
else: |
|
131 |
self.navigation_links(node) |
|
132 |
self.w(u'<div class="hr"></div>') |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
133 |
self.w(u'<h1>%s</h1>' % (title_for_lang(node, self._cw.lang))) |
0 | 134 |
data = open(join(resourcedir, rid)).read() |
135 |
self.w(rest_publish(self, data)) |
|
136 |
if node is not None: |
|
137 |
self.subsections_links(node) |
|
138 |
self.w(u'<div class="hr"></div>') |
|
139 |
self.navigation_links(node) |
|
140 |
||
141 |
def navigation_links(self, node): |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
142 |
req = self._cw |
0 | 143 |
parent = node.parent |
144 |
if parent is None: |
|
145 |
return |
|
146 |
brothers = subsections(parent) |
|
147 |
self.w(u'<div class="docnav">\n') |
|
148 |
previousidx = brothers.index(node) - 1 |
|
149 |
if previousidx >= 0: |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
150 |
self.navsection(brothers[previousidx], 'prev') |
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
151 |
self.navsection(parent, 'up') |
0 | 152 |
nextidx = brothers.index(node) + 1 |
153 |
if nextidx < len(brothers): |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
154 |
self.navsection(brothers[nextidx], 'next') |
0 | 155 |
self.w(u'</div>\n') |
156 |
||
157 |
navinfo = {'prev': ('', 'data/previous.png', _('i18nprevnext_previous')), |
|
158 |
'next': ('', 'data/next.png', _('i18nprevnext_next')), |
|
159 |
'up': ('', 'data/up.png', _('i18nprevnext_up'))} |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
160 |
|
0 | 161 |
def navsection(self, node, navtype): |
162 |
htmlclass, imgpath, msgid = self.navinfo[navtype] |
|
163 |
self.w(u'<span class="%s">' % htmlclass) |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
164 |
self.w(u'%s : ' % self._cw._(msgid)) |
0 | 165 |
self.w(u'<a href="%s">%s</a>' % ( |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
166 |
self._cw.build_url('doc/'+node.attrib['resource']), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
167 |
title_for_lang(node, self._cw.lang))) |
0 | 168 |
self.w(u'</span>\n') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
169 |
|
0 | 170 |
def subsections_links(self, node, first=True): |
171 |
sub = subsections(node) |
|
172 |
if not sub: |
|
173 |
return |
|
174 |
if first: |
|
175 |
self.w(u'<div class="hr"></div>') |
|
176 |
self.w(u'<ul class="docsum">') |
|
177 |
for child in sub: |
|
178 |
self.w(u'<li><a href="%s">%s</a>' % ( |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
179 |
self._cw.build_url('doc/'+child.attrib['resource']), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
180 |
title_for_lang(child, self._cw.lang))) |
0 | 181 |
self.subsections_links(child, False) |
182 |
self.w(u'</li>') |
|
183 |
self.w(u'</ul>\n') |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
184 |
|
0 | 185 |
|
186 |
||
187 |
class InlineHelpImageView(StartupView): |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
188 |
__regid__ = 'wdocimages' |
731
ac4a94e50b60
some more s/__selectors__/__select__ but still more to come
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
189 |
__select__ = match_form_params('fid') |
0 | 190 |
binary = True |
191 |
templatable = False |
|
192 |
content_type = 'image/png' |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
193 |
|
0 | 194 |
def call(self): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
195 |
fid = self._cw.form['fid'] |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
196 |
for lang in chain((self._cw.lang, self._cw.vreg.property_value('ui.language')), |
4087 | 197 |
self._cw.vreg.config.available_languages()): |
0 | 198 |
rid = join('images', '%s_%s.png' % (fid, lang)) |
4087 | 199 |
resourcedir = self._cw.vreg.config.locate_doc_file(rid) |
0 | 200 |
if resourcedir: |
201 |
break |
|
202 |
else: |
|
203 |
raise NotFound |
|
204 |
self.w(open(join(resourcedir, rid)).read()) |
|
205 |
||
206 |
||
207 |
class ChangeLogView(StartupView): |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
208 |
__regid__ = 'changelog' |
0 | 209 |
title = _('What\'s new?') |
210 |
maxentries = 25 |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1364
diff
changeset
|
211 |
|
0 | 212 |
def call(self): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
213 |
rid = 'ChangeLog_%s' % (self._cw.lang) |
0 | 214 |
allentries = [] |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
215 |
title = self._cw._(self.title) |
0 | 216 |
restdata = ['.. -*- coding: utf-8 -*-', '', title, '='*len(title), ''] |
217 |
w = restdata.append |
|
1364
3acc823121b6
can't compare date and datetime
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
218 |
today = date.today() |
4089
ff92c7d692bf
typos, api update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4087
diff
changeset
|
219 |
for fpath in self._cw.vreg.config.locate_all_files(rid): |
0 | 220 |
cl = ChangeLog(fpath) |
221 |
encoding = 'utf-8' |
|
222 |
# additional content may be found in title |
|
223 |
for line in (cl.title + cl.additional_content).splitlines(): |
|
224 |
m = CHARSET_DECL_RGX.search(line) |
|
225 |
if m is not None: |
|
226 |
encoding = m.group(1) |
|
227 |
continue |
|
228 |
elif line.startswith('.. '): |
|
229 |
w(unicode(line, encoding)) |
|
230 |
for entry in cl.entries: |
|
231 |
if entry.date: |
|
1364
3acc823121b6
can't compare date and datetime
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
232 |
edate = todate(strptime(entry.date, '%Y-%m-%d')) |
0 | 233 |
else: |
1364
3acc823121b6
can't compare date and datetime
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
234 |
edate = today |
0 | 235 |
messages = [] |
236 |
for msglines, submsgs in entry.messages: |
|
237 |
msgstr = unicode(' '.join(l.strip() for l in msglines), encoding) |
|
238 |
msgstr += u'\n\n' |
|
239 |
for submsglines in submsgs: |
|
240 |
msgstr += ' - ' + unicode(' '.join(l.strip() for l in submsglines), encoding) |
|
241 |
msgstr += u'\n' |
|
242 |
messages.append(msgstr) |
|
1132 | 243 |
entry = (edate, messages) |
0 | 244 |
allentries.insert(bisect_right(allentries, entry), entry) |
245 |
latestdate = None |
|
246 |
i = 0 |
|
1132 | 247 |
for edate, messages in reversed(allentries): |
248 |
if latestdate != edate: |
|
3460
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
249 |
fdate = self._cw.format_date(edate) |
0 | 250 |
w(u'\n%s' % fdate) |
1132 | 251 |
w('~' * len(fdate)) |
1364
3acc823121b6
can't compare date and datetime
sylvain.thenault@logilab.fr
parents:
1149
diff
changeset
|
252 |
latestdate = edate |
0 | 253 |
for msg in messages: |
254 |
w(u'* %s' % msg) |
|
255 |
i += 1 |
|
256 |
if i > self.maxentries: |
|
257 |
break |
|
258 |
w('') # blank line |
|
259 |
self.w(rest_publish(self, '\n'.join(restdata))) |
|
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
260 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
261 |
|
3818
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
262 |
class HelpAction(action.Action): |
4004
c52619c738a5
api renaming update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3890
diff
changeset
|
263 |
__regid__ = 'help' |
3818
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
264 |
__select__ = yes() |
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
265 |
|
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
266 |
category = 'footer' |
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
267 |
order = 0 |
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
268 |
title = _('Help') |
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
269 |
|
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
270 |
def url(self): |
4045
f4a52abb6f4f
cw 3.6 api update
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
4023
diff
changeset
|
271 |
return self._cw.build_url('doc/main') |
3818
9522e51d8644
[web ui] move help from header to footer
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3495
diff
changeset
|
272 |
|
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
273 |
class ChangeLogAction(action.Action): |
3655
af86ab65a282
3.6 updates
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3503
diff
changeset
|
274 |
__regid__ = 'changelog' |
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
275 |
__select__ = yes() |
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
276 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
277 |
category = 'footer' |
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
278 |
order = 1 |
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
279 |
title = ChangeLogView.title |
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
280 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
281 |
def url(self): |
3655
af86ab65a282
3.6 updates
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3503
diff
changeset
|
282 |
return self._cw.build_url('changelog') |
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
283 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
284 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
285 |
class AboutAction(action.Action): |
3655
af86ab65a282
3.6 updates
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3503
diff
changeset
|
286 |
__regid__ = 'about' |
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
287 |
__select__ = yes() |
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
288 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
289 |
category = 'footer' |
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
290 |
order = 2 |
6459
7f46ec158c48
[i18n] uniformize footer capitalization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6420
diff
changeset
|
291 |
title = _('About this site') |
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
292 |
|
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
293 |
def url(self): |
3655
af86ab65a282
3.6 updates
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3503
diff
changeset
|
294 |
return self._cw.build_url('doc/about') |
3495
438576c5b1d1
[ui] turn footer items into actions
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
295 |