author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 05 Nov 2010 10:41:56 +0100 | |
branch | stable |
changeset 6677 | 5f105a374ffe |
parent 5569 | cb14af012a96 |
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/>. |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""html timetable views""" |
0 | 19 |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
20 |
__docformat__ = "restructuredtext en" |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
21 |
_ = unicode |
0 | 22 |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
23 |
from logilab.mtconverter import xml_escape |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
24 |
from logilab.common.date import ONEDAY, date_range, todatetime |
0 | 25 |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
26 |
from cubicweb.selectors import adaptable |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
27 |
from cubicweb.view import EntityView |
0 | 28 |
|
29 |
||
30 |
class _TaskEntry(object): |
|
31 |
def __init__(self, task, color, column): |
|
32 |
self.task = task |
|
33 |
self.color = color |
|
34 |
self.column = column |
|
35 |
self.lines = 1 |
|
36 |
||
37 |
MIN_COLS = 3 # minimum number of task columns for a single user |
|
3914
36be7a5e53ad
fix name error in timetable view, always write unicode
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3829
diff
changeset
|
38 |
ALL_USERS = object() |
0 | 39 |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
40 |
class TimeTableView(EntityView): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
41 |
__regid__ = 'timetable' |
0 | 42 |
title = _('timetable') |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
43 |
__select__ = adaptable('ICalendarable') |
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
44 |
paginable = False |
0 | 45 |
|
46 |
def call(self, title=None): |
|
47 |
"""Dumps a timetable from a resultset composed of a note (anything |
|
48 |
with start/stop) and a user (anything)""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
49 |
self._cw.add_css('cubicweb.timetable.css') |
0 | 50 |
dates = {} |
51 |
users = [] |
|
52 |
users_max = {} |
|
53 |
# XXX: try refactoring with calendar.py:OneMonthCal |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
54 |
for row in xrange(self.cw_rset.rowcount): |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
55 |
task = self.cw_rset.get_entity(row, 0) |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
56 |
icalendarable = task.cw_adapt_to('ICalendarable') |
6677
5f105a374ffe
[timetable view] ensure we actually have a user in the rset cell
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5569
diff
changeset
|
57 |
if len(self.cw_rset[row]) > 1 and self.cw_rset.description[row][1] == 'CWUser': |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
58 |
user = self.cw_rset.get_entity(row, 1) |
0 | 59 |
else: |
3829
9674d62a54f9
close #474415 by using 'is' instead of comparison which explicitly fails on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
60 |
user = ALL_USERS |
0 | 61 |
the_dates = [] |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
62 |
if icalendarable.start and icalendarable.stop: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
63 |
if icalendarable.start.toordinal() == icalendarable.stop.toordinal(): |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
64 |
the_dates.append(icalendarable.start) |
0 | 65 |
else: |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
66 |
the_dates += date_range(icalendarable.start, |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
67 |
icalendarable.stop + ONEDAY) |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
68 |
elif icalendarable.start: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
69 |
the_dates.append(icalendarable.start) |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
70 |
elif icalendarable.stop: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
71 |
the_dates.append(icalendarable.stop) |
0 | 72 |
for d in the_dates: |
3917
0f912c1cde28
[views] ticket #34808, make sure timetable view uses datetime and not date
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3914
diff
changeset
|
73 |
d = todatetime(d) |
0 | 74 |
d_users = dates.setdefault(d, {}) |
1132 | 75 |
u_tasks = d_users.setdefault(user, set()) |
0 | 76 |
u_tasks.add( task ) |
1132 | 77 |
task_max = users_max.setdefault(user, 0) |
0 | 78 |
if len(u_tasks)>task_max: |
79 |
users_max[user] = len(u_tasks) |
|
80 |
if user not in users: |
|
81 |
# keep original ordering |
|
82 |
users.append(user) |
|
83 |
if not dates: |
|
84 |
return |
|
85 |
date_min = min(dates) |
|
86 |
date_max = max(dates) |
|
87 |
#users = list(sorted(users, key=lambda u:u.login)) |
|
88 |
||
89 |
rows = [] |
|
90 |
# colors here are class names defined in cubicweb.css |
|
1132 | 91 |
colors = ["col%x" % i for i in xrange(12)] |
0 | 92 |
next_color_index = 0 |
93 |
||
94 |
visited_tasks = {} # holds a description of a task for a user |
|
95 |
task_colors = {} # remember a color assigned to a task |
|
5569
cb14af012a96
[adapters] refactoring fixes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
96 |
for date in date_range(date_min, date_max + ONEDAY): |
0 | 97 |
columns = [date] |
98 |
d_users = dates.get(date, {}) |
|
99 |
for user in users: |
|
100 |
# every user has its column "splitted" in at least MIN_COLS |
|
101 |
# sub-columns (for overlapping tasks) |
|
102 |
user_columns = [None] * max(MIN_COLS, users_max[user]) |
|
103 |
# every task that is "visited" for the first time |
|
104 |
# require a special treatment, so we put them in |
|
105 |
# 'postpone' |
|
106 |
postpone = [] |
|
107 |
for task in d_users.get(user, []): |
|
108 |
key = (task, user) |
|
109 |
if key in visited_tasks: |
|
110 |
task_descr = visited_tasks[ key ] |
|
111 |
user_columns[task_descr.column] = task_descr, False |
|
1133 | 112 |
task_descr.lines += 1 |
0 | 113 |
else: |
114 |
postpone.append(key) |
|
115 |
for key in postpone: |
|
116 |
# to every 'new' task we must affect a color |
|
117 |
# (which must be the same for every user concerned |
|
118 |
# by the task) |
|
119 |
task, user = key |
|
1132 | 120 |
for i, t in enumerate(user_columns): |
0 | 121 |
if t is None: |
122 |
if task in task_colors: |
|
123 |
color = task_colors[task] |
|
124 |
else: |
|
125 |
color = colors[next_color_index] |
|
126 |
next_color_index = (next_color_index+1)%len(colors) |
|
127 |
task_colors[task] = color |
|
128 |
task_descr = _TaskEntry(task, color, i) |
|
129 |
user_columns[i] = task_descr, True |
|
130 |
visited_tasks[key] = task_descr |
|
131 |
break |
|
132 |
else: |
|
133 |
raise RuntimeError("is it possible we got it wrong?") |
|
134 |
||
135 |
columns.append( user_columns ) |
|
136 |
rows.append( columns ) |
|
137 |
||
138 |
widths = [ len(col) for col in rows[0][1:] ] |
|
139 |
self.w(u'<div class="section">') |
|
140 |
if title: |
|
141 |
self.w(u'<h4>%s</h4>\n' % title) |
|
142 |
self.w(u'<table class="listing timetable">') |
|
143 |
self.render_col_headers(users, widths) |
|
144 |
self.render_rows(rows) |
|
145 |
self.w(u'</table>') |
|
146 |
self.w(u'</div>\n') |
|
147 |
||
1132 | 148 |
def render_col_headers(self, users, widths): |
0 | 149 |
""" render column headers """ |
150 |
self.w(u'<tr class="header">\n') |
|
151 |
||
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2471
diff
changeset
|
152 |
self.w(u'<th class="ttdate"> </th>\n') |
0 | 153 |
columns = [] |
1132 | 154 |
for user, width in zip(users, widths): |
155 |
self.w(u'<th colspan="%s">' % max(MIN_COLS, width)) |
|
3829
9674d62a54f9
close #474415 by using 'is' instead of comparison which explicitly fails on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
156 |
if user is ALL_USERS: |
3914
36be7a5e53ad
fix name error in timetable view, always write unicode
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3829
diff
changeset
|
157 |
self.w(u'*') |
3829
9674d62a54f9
close #474415 by using 'is' instead of comparison which explicitly fails on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
158 |
else: |
2471
3e2b50ece726
begin to drop ref to secondary view
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2312
diff
changeset
|
159 |
user.view('oneline', w=self.w) |
0 | 160 |
self.w(u'</th>') |
161 |
self.w(u'</tr>\n') |
|
162 |
return columns |
|
163 |
||
164 |
def render_rows(self, rows): |
|
165 |
""" render table content (row headers and central content) """ |
|
166 |
odd = False |
|
167 |
previous_is_empty = False |
|
168 |
for row in rows: |
|
169 |
date = row[0] |
|
170 |
empty_line = True |
|
171 |
for group in row[1:]: |
|
172 |
for value in group: |
|
173 |
if value: |
|
174 |
empty_line = False |
|
175 |
break |
|
176 |
else: |
|
177 |
continue |
|
178 |
break |
|
179 |
if empty_line and previous_is_empty: |
|
180 |
continue |
|
181 |
previous_is_empty = False |
|
182 |
||
183 |
klass = "even" |
|
1575
5eb02a4a4bcf
datetime fixes use weekday() instead of day_of_week
sylvain.thenault@logilab.fr
parents:
1555
diff
changeset
|
184 |
if date.weekday() in (5, 6) and not empty_line: |
0 | 185 |
klass = "odd" |
186 |
self.w(u'<tr class="%s">' % klass) |
|
187 |
odd = not odd |
|
188 |
||
189 |
if not empty_line: |
|
3460
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
190 |
self.w(u'<th class="ttdate">%s</th>' % self._cw.format_date(date) ) |
0 | 191 |
else: |
192 |
self.w(u'<th>...</th>' ) |
|
193 |
previous_is_empty = True |
|
194 |
||
195 |
empty_klasses = [ "ttle", "ttme", "ttre" ] |
|
196 |
filled_klasses = [ "ttlf", "ttmf", "ttrf" ] |
|
197 |
kj = 0 # 0: left, 1: mid, 2: right |
|
198 |
for uid, group in enumerate(row[1:]): |
|
199 |
for i, value in enumerate(group): |
|
200 |
if i == 0: |
|
201 |
kj = 0 |
|
202 |
elif i == len(group): |
|
203 |
kj = 2 |
|
204 |
else: |
|
205 |
kj = 1 |
|
206 |
if value: |
|
207 |
task_descr, first_row = value |
|
208 |
if first_row: |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
209 |
url = xml_escape(task_descr.task.absolute_url(vid="edition")) |
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2471
diff
changeset
|
210 |
self.w(u'<td rowspan="%d" class="%s %s" onclick="document.location=\'%s\'"> <div>' % ( |
0 | 211 |
task_descr.lines, task_descr.color, filled_klasses[kj], url)) |
212 |
task_descr.task.view('tooltip', w=self.w) |
|
213 |
self.w(u'</div></td>') |
|
214 |
else: |
|
215 |
if empty_line: |
|
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2471
diff
changeset
|
216 |
self.w(u'<td class="ttempty"> </td>') |
0 | 217 |
else: |
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2471
diff
changeset
|
218 |
self.w(u'<td class="%s"> </td>' % empty_klasses[kj] ) |
0 | 219 |
self.w(u'</tr>\n') |