author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Thu, 21 Oct 2010 09:33:12 +0200 | |
branch | stable |
changeset 6571 | 71b446d1cf93 |
parent 5895 | 6a3f776292a5 |
child 6736 | 36ed2bf7ad3d |
child 6864 | ea95004494a2 |
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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:
4582
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 calendar views""" |
0 | 19 |
|
1881
75540944ae18
fix dc_description format arg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1802
diff
changeset
|
20 |
__docformat__ = "restructuredtext en" |
75540944ae18
fix dc_description format arg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1802
diff
changeset
|
21 |
_ = unicode |
0 | 22 |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
23 |
from datetime import datetime, date, timedelta |
0 | 24 |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
25 |
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
|
26 |
from logilab.common.date import ONEDAY, strptime, date_range, todate, todatetime |
0 | 27 |
|
28 |
from cubicweb.interfaces import ICalendarable |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
29 |
from cubicweb.selectors import implements, adaptable |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
30 |
from cubicweb.view import EntityView, EntityAdapter, implements_adapter_compat |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
31 |
|
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
32 |
|
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
33 |
class ICalendarableAdapter(EntityAdapter): |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
34 |
__regid__ = 'ICalendarable' |
5895
6a3f776292a5
[selectors] avoid spurious warning when using implements by design
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5726
diff
changeset
|
35 |
__select__ = implements(ICalendarable, warn=False) # XXX for bw compat, should be abstract |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
36 |
|
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
37 |
@property |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
38 |
@implements_adapter_compat('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
39 |
def start(self): |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
40 |
"""return start date""" |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
41 |
raise NotImplementedError |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
42 |
|
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
43 |
@property |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
44 |
@implements_adapter_compat('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
45 |
def stop(self): |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
46 |
"""return stop state""" |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
47 |
raise NotImplementedError |
0 | 48 |
|
49 |
||
1025 | 50 |
# useful constants & functions ################################################ |
0 | 51 |
|
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
52 |
ONEDAY = timedelta(1) |
1025 | 53 |
|
0 | 54 |
WEEKDAYS = (_("monday"), _("tuesday"), _("wednesday"), _("thursday"), |
55 |
_("friday"), _("saturday"), _("sunday")) |
|
56 |
MONTHNAMES = ( _('january'), _('february'), _('march'), _('april'), _('may'), |
|
57 |
_('june'), _('july'), _('august'), _('september'), _('october'), |
|
58 |
_('november'), _('december') |
|
59 |
) |
|
1604 | 60 |
|
1025 | 61 |
# Calendar views ############################################################## |
0 | 62 |
|
1644 | 63 |
try: |
64 |
from vobject import iCalendar |
|
0 | 65 |
|
1644 | 66 |
class iCalView(EntityView): |
67 |
"""A calendar view that generates a iCalendar file (RFC 2445) |
|
0 | 68 |
|
1644 | 69 |
Does apply to ICalendarable compatible entities |
70 |
""" |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
71 |
__select__ = adaptable('ICalendarable') |
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
72 |
paginable = False |
1644 | 73 |
content_type = 'text/calendar' |
74 |
title = _('iCalendar') |
|
75 |
templatable = False |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
76 |
__regid__ = 'ical' |
0 | 77 |
|
1644 | 78 |
def call(self): |
79 |
ical = iCalendar() |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
80 |
for i in range(len(self.cw_rset.rows)): |
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
81 |
task = self.cw_rset.complete_entity(i, 0) |
1644 | 82 |
event = ical.add('vevent') |
83 |
event.add('summary').value = task.dc_title() |
|
84 |
event.add('description').value = task.dc_description() |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
85 |
icalendarable = task.cw_adapt_to('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
86 |
if icalendarable.start: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
87 |
event.add('dtstart').value = icalendarable.start |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
88 |
if icalendarable.stop: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
89 |
event.add('dtend').value = icalendarable.stop |
0 | 90 |
|
1644 | 91 |
buff = ical.serialize() |
92 |
if not isinstance(buff, unicode): |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
93 |
buff = unicode(buff, self._cw.encoding) |
1644 | 94 |
self.w(buff) |
95 |
||
96 |
except ImportError: |
|
97 |
pass |
|
0 | 98 |
|
99 |
class hCalView(EntityView): |
|
100 |
"""A calendar view that generates a hCalendar file |
|
101 |
||
102 |
Does apply to ICalendarable compatible entities |
|
103 |
""" |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
104 |
__regid__ = 'hcal' |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
105 |
__select__ = adaptable('ICalendarable') |
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
106 |
paginable = False |
0 | 107 |
title = _('hCalendar') |
524
eee3983e29e9
hcal is a microformat and can be inserted in html
sylvain.thenault@logilab.fr
parents:
431
diff
changeset
|
108 |
#templatable = False |
0 | 109 |
|
110 |
def call(self): |
|
111 |
self.w(u'<div class="hcalendar">') |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
112 |
for i in range(len(self.cw_rset.rows)): |
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
113 |
task = self.cw_rset.complete_entity(i, 0) |
0 | 114 |
self.w(u'<div class="vevent">') |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
115 |
self.w(u'<h3 class="summary">%s</h3>' % xml_escape(task.dc_title())) |
1881
75540944ae18
fix dc_description format arg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1802
diff
changeset
|
116 |
self.w(u'<div class="description">%s</div>' |
75540944ae18
fix dc_description format arg
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1802
diff
changeset
|
117 |
% task.dc_description(format='text/html')) |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
118 |
icalendarable = task.cw_adapt_to('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
119 |
if icalendarable.start: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
120 |
self.w(u'<abbr class="dtstart" title="%s">%s</abbr>' |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
121 |
% (icalendarable.start.isoformat(), |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
122 |
self._cw.format_date(icalendarable.start))) |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
123 |
if icalendarable.stop: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
124 |
self.w(u'<abbr class="dtstop" title="%s">%s</abbr>' |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
125 |
% (icalendarable.stop.isoformat(), |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
126 |
self._cw.format_date(icalendarable.stop))) |
0 | 127 |
self.w(u'</div>') |
128 |
self.w(u'</div>') |
|
129 |
||
1025 | 130 |
|
131 |
class CalendarItemView(EntityView): |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
132 |
__regid__ = 'calendaritem' |
1025 | 133 |
|
134 |
def cell_call(self, row, col, dates=False): |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
135 |
task = self.cw_rset.complete_entity(row, 0) |
1025 | 136 |
task.view('oneline', w=self.w) |
137 |
if dates: |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
138 |
icalendarable = task.cw_adapt_to('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
139 |
if icalendarable.start and icalendarable.stop: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
140 |
self.w('<br/> %s' % self._cw._('from %(date)s') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
141 |
% {'date': self._cw.format_date(icalendarable.start)}) |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
142 |
self.w('<br/> %s' % self._cw._('to %(date)s') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
143 |
% {'date': self._cw.format_date(icalendarable.stop)}) |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
144 |
else: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
145 |
self.w('<br/>%s'%self._cw.format_date(icalendarable.start |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
146 |
or icalendarable.stop)) |
1604 | 147 |
|
1025 | 148 |
class CalendarLargeItemView(CalendarItemView): |
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
149 |
__regid__ = 'calendarlargeitem' |
1025 | 150 |
|
1604 | 151 |
|
0 | 152 |
class _TaskEntry(object): |
153 |
def __init__(self, task, color, index=0): |
|
154 |
self.task = task |
|
155 |
self.color = color |
|
156 |
self.index = index |
|
157 |
self.length = 1 |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
158 |
icalendarable = task.cw_adapt_to('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
159 |
self.start = icalendarable.start |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
160 |
self.stop = icalendarable.stop |
0 | 161 |
|
1025 | 162 |
def in_working_hours(self): |
163 |
"""predicate returning True is the task is in working hours""" |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
164 |
if todatetime(self.start).hour > 7 and todatetime(self.stop).hour < 20: |
1025 | 165 |
return True |
166 |
return False |
|
1604 | 167 |
|
1025 | 168 |
def is_one_day_task(self): |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
169 |
return self.start and self.stop and self.start.isocalendar() == self.stop.isocalendar() |
1604 | 170 |
|
171 |
||
0 | 172 |
class OneMonthCal(EntityView): |
173 |
"""At some point, this view will probably replace ampm calendars""" |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
174 |
__regid__ = 'onemonthcal' |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
175 |
__select__ = adaptable('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
176 |
|
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
177 |
paginable = False |
0 | 178 |
title = _('one month') |
179 |
||
180 |
def call(self): |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
181 |
self._cw.add_js('cubicweb.ajax.js') |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
182 |
self._cw.add_css('cubicweb.calendar.css') |
0 | 183 |
# XXX: restrict courses directy with RQL |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
184 |
_today = datetime.today() |
0 | 185 |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
186 |
if 'year' in self._cw.form: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
187 |
year = int(self._cw.form['year']) |
0 | 188 |
else: |
189 |
year = _today.year |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
190 |
if 'month' in self._cw.form: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
191 |
month = int(self._cw.form['month']) |
0 | 192 |
else: |
193 |
month = _today.month |
|
194 |
||
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
195 |
first_day_of_month = date(year, month, 1) |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
196 |
firstday = first_day_of_month - timedelta(first_day_of_month.weekday()) |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
197 |
if month >= 12: |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
198 |
last_day_of_month = date(year + 1, 1, 1) - timedelta(1) |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
199 |
else: |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
200 |
last_day_of_month = date(year, month + 1, 1) - timedelta(1) |
4582
d12b81facd1d
[calendar view] fix related to the date_range mess (max value exclusion). Calendar views authors should check if more similar fixes needed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
201 |
# date range exclude last day so we should at least add one day, hence |
d12b81facd1d
[calendar view] fix related to the date_range mess (max value exclusion). Calendar views authors should check if more similar fixes needed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
202 |
# the 7 |
d12b81facd1d
[calendar view] fix related to the date_range mess (max value exclusion). Calendar views authors should check if more similar fixes needed
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4466
diff
changeset
|
203 |
lastday = last_day_of_month + timedelta(7 - last_day_of_month.weekday()) |
0 | 204 |
month_dates = list(date_range(firstday, lastday)) |
205 |
dates = {} |
|
206 |
task_max = 0 |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
207 |
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
|
208 |
task = self.cw_rset.get_entity(row, 0) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
209 |
if len(self.cw_rset[row]) > 1 and self.cw_rset.description[row][1] == 'CWUser': |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
210 |
user = self.cw_rset.get_entity(row, 1) |
0 | 211 |
else: |
212 |
user = None |
|
213 |
the_dates = [] |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
214 |
icalendarable = task.cw_adapt_to('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
215 |
tstart = icalendarable.start |
1025 | 216 |
if tstart: |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
217 |
tstart = todate(icalendarable.start) |
1025 | 218 |
if tstart > lastday: |
0 | 219 |
continue |
1025 | 220 |
the_dates = [tstart] |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
221 |
tstop = icalendarable.stop |
1025 | 222 |
if tstop: |
1800
05c36cf3c813
[calendar] ensure task.start / task.stop are available before calling todate()
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1799
diff
changeset
|
223 |
tstop = todate(tstop) |
1025 | 224 |
if tstop < firstday: |
0 | 225 |
continue |
1025 | 226 |
the_dates = [tstop] |
227 |
if tstart and tstop: |
|
228 |
if tstart.isocalendar() == tstop.isocalendar(): |
|
229 |
if firstday <= tstart <= lastday: |
|
230 |
the_dates = [tstart] |
|
0 | 231 |
else: |
1025 | 232 |
the_dates = date_range(max(tstart, firstday), |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
233 |
min(tstop + ONEDAY, lastday)) |
0 | 234 |
if not the_dates: |
235 |
continue |
|
1604 | 236 |
|
0 | 237 |
for d in the_dates: |
238 |
d_tasks = dates.setdefault((d.year, d.month, d.day), {}) |
|
1132 | 239 |
t_users = d_tasks.setdefault(task, set()) |
0 | 240 |
t_users.add( user ) |
1132 | 241 |
if len(d_tasks) > task_max: |
0 | 242 |
task_max = len(d_tasks) |
243 |
||
244 |
days = [] |
|
1132 | 245 |
nrows = max(3, task_max) |
0 | 246 |
# colors here are class names defined in cubicweb.css |
1132 | 247 |
colors = [ "col%x" % i for i in range(12) ] |
0 | 248 |
next_color_index = 0 |
249 |
||
250 |
visited_tasks = {} # holds a description of a task |
|
251 |
task_colors = {} # remember a color assigned to a task |
|
1025 | 252 |
for mdate in month_dates: |
253 |
d_tasks = dates.get((mdate.year, mdate.month, mdate.day), {}) |
|
0 | 254 |
rows = [None] * nrows |
255 |
# every task that is "visited" for the first time |
|
256 |
# require a special treatment, so we put them in |
|
257 |
# 'postpone' |
|
258 |
postpone = [] |
|
259 |
for task in d_tasks: |
|
260 |
if task in visited_tasks: |
|
261 |
task_descr = visited_tasks[ task ] |
|
262 |
rows[task_descr.index] = task_descr |
|
263 |
else: |
|
264 |
postpone.append(task) |
|
265 |
for task in postpone: |
|
266 |
# to every 'new' task we must affect a color |
|
267 |
# (which must be the same for every user concerned |
|
268 |
# by the task) |
|
1132 | 269 |
for i, t in enumerate(rows): |
0 | 270 |
if t is None: |
271 |
if task in task_colors: |
|
272 |
color = task_colors[task] |
|
273 |
else: |
|
274 |
color = colors[next_color_index] |
|
275 |
next_color_index = (next_color_index+1)%len(colors) |
|
276 |
task_colors[task] = color |
|
277 |
task_descr = _TaskEntry(task, color, i) |
|
278 |
rows[i] = task_descr |
|
279 |
visited_tasks[task] = task_descr |
|
280 |
break |
|
281 |
else: |
|
282 |
raise RuntimeError("is it possible we got it wrong?") |
|
283 |
||
284 |
days.append( rows ) |
|
285 |
||
286 |
curdate = first_day_of_month |
|
287 |
self.w(u'<div id="onemonthcalid">') |
|
288 |
# build schedule |
|
289 |
self.w(u'<table class="omcalendar">') |
|
290 |
prevlink, nextlink = self._prevnext_links(curdate) # XXX |
|
291 |
self.w(u'<tr><th><a href="%s"><<</a></th><th colspan="5">%s %s</th>' |
|
292 |
u'<th><a href="%s">>></a></th></tr>' % |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
293 |
(xml_escape(prevlink), self._cw._(curdate.strftime('%B').lower()), |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
294 |
curdate.year, xml_escape(nextlink))) |
0 | 295 |
|
296 |
# output header |
|
297 |
self.w(u'<tr><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th><th>%s</th></tr>' % |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
298 |
tuple(self._cw._(day) for day in WEEKDAYS)) |
0 | 299 |
# build calendar |
1025 | 300 |
for mdate, task_rows in zip(month_dates, days): |
301 |
if mdate.weekday() == 0: |
|
0 | 302 |
self.w(u'<tr>') |
1025 | 303 |
self._build_calendar_cell(mdate, task_rows, curdate) |
304 |
if mdate.weekday() == 6: |
|
0 | 305 |
self.w(u'</tr>') |
306 |
self.w(u'</table></div>') |
|
307 |
||
308 |
def _prevnext_links(self, curdate): |
|
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
309 |
prevdate = curdate - timedelta(31) |
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
310 |
nextdate = curdate + timedelta(31) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
311 |
rql = self.cw_rset.printable_rql() |
5713
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
312 |
prevlink = self._cw.ajax_replace_url('onemonthcalid', rql=rql, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
313 |
vid='onemonthcal', |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
314 |
year=prevdate.year, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
315 |
month=prevdate.month) |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
316 |
nextlink = self._cw.ajax_replace_url('onemonthcalid', rql=rql, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
317 |
vid='onemonthcal', |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
318 |
year=nextdate.year, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
319 |
month=nextdate.month) |
0 | 320 |
return prevlink, nextlink |
321 |
||
1149 | 322 |
def _build_calendar_cell(self, celldate, rows, curdate): |
0 | 323 |
curmonth = curdate.month |
324 |
classes = "" |
|
1149 | 325 |
if celldate.month != curmonth: |
0 | 326 |
classes += " outOfRange" |
1149 | 327 |
if celldate == date.today(): |
0 | 328 |
classes += " today" |
329 |
self.w(u'<td class="cell%s">' % classes) |
|
330 |
self.w(u'<div class="calCellTitle%s">' % classes) |
|
1149 | 331 |
self.w(u'<div class="day">%s</div>' % celldate.day) |
1604 | 332 |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
333 |
if len(self.cw_rset.column_types(0)) == 1: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
334 |
etype = list(self.cw_rset.column_types(0))[0] |
3460
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
335 |
url = self._cw.build_url(vid='creation', etype=etype, |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
336 |
schedule=True, |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
337 |
start=self._cw.format_date(celldate), stop=self._cw.format_date(celldate), |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
338 |
__redirectrql=self.cw_rset.printable_rql(), |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
339 |
__redirectparams=self._cw.build_url_params(year=curdate.year, month=curmonth), |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
340 |
__redirectvid=self.__regid__ |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
341 |
) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
342 |
self.w(u'<div class="cmd"><a href="%s">%s</a></div>' % (xml_escape(url), self._cw._(u'add'))) |
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2312
diff
changeset
|
343 |
self.w(u' ') |
0 | 344 |
self.w(u'</div>') |
345 |
self.w(u'<div class="cellContent">') |
|
346 |
for task_descr in rows: |
|
347 |
if task_descr: |
|
348 |
task = task_descr.task |
|
349 |
self.w(u'<div class="task %s">' % task_descr.color) |
|
350 |
task.view('calendaritem', w=self.w ) |
|
351 |
url = task.absolute_url(vid='edition', |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
352 |
__redirectrql=self.cw_rset.printable_rql(), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
353 |
__redirectparams=self._cw.build_url_params(year=curdate.year, month=curmonth), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
354 |
__redirectvid=self.__regid__ |
0 | 355 |
) |
356 |
||
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
357 |
self.w(u'<div class="tooltip" ondblclick="stopPropagation(event); window.location.assign(\'%s\'); return false;">' % xml_escape(url)) |
0 | 358 |
task.view('tooltip', w=self.w ) |
359 |
self.w(u'</div>') |
|
360 |
else: |
|
361 |
self.w(u'<div class="task">') |
|
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2312
diff
changeset
|
362 |
self.w(u" ") |
0 | 363 |
self.w(u'</div>') |
364 |
self.w(u'</div>') |
|
365 |
self.w(u'</td>') |
|
366 |
||
367 |
||
368 |
class OneWeekCal(EntityView): |
|
369 |
"""At some point, this view will probably replace ampm calendars""" |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2996
diff
changeset
|
370 |
__regid__ = 'oneweekcal' |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
371 |
__select__ = adaptable('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
372 |
|
4244
2c3de1953d00
rename need_navigation into paginable
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
373 |
paginable = False |
0 | 374 |
title = _('one week') |
1604 | 375 |
|
0 | 376 |
def call(self): |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
377 |
self._cw.add_js( ('cubicweb.ajax.js', 'cubicweb.calendar.js') ) |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
378 |
self._cw.add_css('cubicweb.calendar.css') |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
379 |
# XXX: restrict directly with RQL |
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
380 |
_today = datetime.today() |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
381 |
if 'year' in self._cw.form: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
382 |
year = int(self._cw.form['year']) |
0 | 383 |
else: |
384 |
year = _today.year |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
385 |
if 'week' in self._cw.form: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
386 |
week = int(self._cw.form['week']) |
0 | 387 |
else: |
1604 | 388 |
week = _today.isocalendar()[1] |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
389 |
# week - 1 since we get week number > 0 while we want it to start from 0 |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
390 |
first_day_of_week = todate(strptime('%s-%s-1' % (year, week - 1), '%Y-%U-%w')) |
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
391 |
lastday = first_day_of_week + timedelta(6) |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
392 |
firstday = first_day_of_week |
0 | 393 |
dates = [[] for i in range(7)] |
394 |
task_colors = {} # remember a color assigned to a task |
|
395 |
# colors here are class names defined in cubicweb.css |
|
1132 | 396 |
colors = [ "col%x" % i for i in range(12) ] |
0 | 397 |
next_color_index = 0 |
5726
c3b99606644d
[json] fix json serialization for recent simplejson implementation, and test encoding of entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5713
diff
changeset
|
398 |
done_tasks = set() |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
399 |
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
|
400 |
task = self.cw_rset.get_entity(row, 0) |
5726
c3b99606644d
[json] fix json serialization for recent simplejson implementation, and test encoding of entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5713
diff
changeset
|
401 |
if task.eid in done_tasks: |
0 | 402 |
continue |
5726
c3b99606644d
[json] fix json serialization for recent simplejson implementation, and test encoding of entities
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5713
diff
changeset
|
403 |
done_tasks.add(task.eid) |
0 | 404 |
the_dates = [] |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
405 |
icalendarable = task.cw_adapt_to('ICalendarable') |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
406 |
tstart = icalendarable.start |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
407 |
tstop = icalendarable.stop |
1025 | 408 |
if tstart: |
1800
05c36cf3c813
[calendar] ensure task.start / task.stop are available before calling todate()
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1799
diff
changeset
|
409 |
tstart = todate(tstart) |
1025 | 410 |
if tstart > lastday: |
0 | 411 |
continue |
1025 | 412 |
the_dates = [tstart] |
413 |
if tstop: |
|
1800
05c36cf3c813
[calendar] ensure task.start / task.stop are available before calling todate()
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1799
diff
changeset
|
414 |
tstop = todate(tstop) |
1025 | 415 |
if tstop < firstday: |
0 | 416 |
continue |
1025 | 417 |
the_dates = [tstop] |
418 |
if tstart and tstop: |
|
419 |
the_dates = date_range(max(tstart, firstday), |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
420 |
min(tstop + ONEDAY, lastday)) |
0 | 421 |
if not the_dates: |
422 |
continue |
|
1604 | 423 |
|
0 | 424 |
if task not in task_colors: |
425 |
task_colors[task] = colors[next_color_index] |
|
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
426 |
next_color_index = (next_color_index+1) % len(colors) |
1604 | 427 |
|
0 | 428 |
for d in the_dates: |
1016
26387b836099
use datetime instead of mx.DateTime
sylvain.thenault@logilab.fr
parents:
767
diff
changeset
|
429 |
day = d.weekday() |
1604 | 430 |
task_descr = _TaskEntry(task, task_colors[task]) |
0 | 431 |
dates[day].append(task_descr) |
1604 | 432 |
|
0 | 433 |
self.w(u'<div id="oneweekcalid">') |
434 |
# build schedule |
|
435 |
self.w(u'<table class="omcalendar" id="week">') |
|
436 |
prevlink, nextlink = self._prevnext_links(first_day_of_week) # XXX |
|
437 |
self.w(u'<tr><th class="transparent"></th>') |
|
438 |
self.w(u'<th><a href="%s"><<</a></th><th colspan="5">%s %s %s</th>' |
|
439 |
u'<th><a href="%s">>></a></th></tr>' % |
|
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
440 |
(xml_escape(prevlink), first_day_of_week.year, |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
441 |
self._cw._(u'week'), first_day_of_week.isocalendar()[1], |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
442 |
xml_escape(nextlink))) |
0 | 443 |
|
444 |
# output header |
|
445 |
self.w(u'<tr>') |
|
446 |
self.w(u'<th class="transparent"></th>') # column for hours |
|
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
447 |
_today = date.today() |
0 | 448 |
for i, day in enumerate(WEEKDAYS): |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
449 |
wdate = first_day_of_week + timedelta(i) |
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
450 |
if wdate.isocalendar() == _today.isocalendar(): |
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
451 |
self.w(u'<th class="today">%s<br/>%s</th>' % (self._cw._(day), self._cw.format_date(wdate))) |
0 | 452 |
else: |
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
453 |
self.w(u'<th>%s<br/>%s</th>' % (self._cw._(day), self._cw.format_date(wdate))) |
0 | 454 |
self.w(u'</tr>') |
1604 | 455 |
|
0 | 456 |
# build week calendar |
457 |
self.w(u'<tr>') |
|
458 |
self.w(u'<td style="width:5em;">') # column for hours |
|
459 |
extra = "" |
|
460 |
for h in range(8, 20): |
|
461 |
self.w(u'<div class="hour" %s>'%extra) |
|
462 |
self.w(u'%02d:00'%h) |
|
1604 | 463 |
self.w(u'</div>') |
0 | 464 |
self.w(u'</td>') |
1604 | 465 |
|
0 | 466 |
for i, day in enumerate(WEEKDAYS): |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
467 |
wdate = first_day_of_week + timedelta(i) |
0 | 468 |
classes = "" |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
469 |
if wdate.isocalendar() == _today.isocalendar(): |
0 | 470 |
classes = " today" |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
471 |
self.w(u'<td class="column %s" id="%s">' % (classes, day)) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
472 |
if len(self.cw_rset.column_types(0)) == 1: |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
473 |
etype = list(self.cw_rset.column_types(0))[0] |
3460
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
474 |
url = self._cw.build_url(vid='creation', etype=etype, |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
475 |
schedule=True, |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
476 |
__redirectrql=self.cw_rset.printable_rql(), |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
477 |
__redirectparams=self._cw.build_url_params(year=year, week=week), |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
478 |
__redirectvid=self.__regid__ |
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
479 |
) |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
480 |
extra = ' ondblclick="addCalendarItem(event, hmin=8, hmax=20, year=%s, month=%s, day=%s, duration=2, baseurl=\'%s\')"' % ( |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
481 |
wdate.year, wdate.month, wdate.day, xml_escape(url)) |
0 | 482 |
else: |
483 |
extra = "" |
|
484 |
self.w(u'<div class="columndiv"%s>'% extra) |
|
485 |
for h in range(8, 20): |
|
486 |
self.w(u'<div class="hourline" style="top:%sex;">'%((h-7)*8)) |
|
1604 | 487 |
self.w(u'</div>') |
0 | 488 |
if dates[i]: |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
489 |
self._build_calendar_cell(wdate, dates[i]) |
0 | 490 |
self.w(u'</div>') |
491 |
self.w(u'</td>') |
|
492 |
self.w(u'</tr>') |
|
493 |
self.w(u'</table></div>') |
|
494 |
self.w(u'<div id="coord"></div>') |
|
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2312
diff
changeset
|
495 |
self.w(u'<div id="debug"> </div>') |
1604 | 496 |
|
0 | 497 |
def _build_calendar_cell(self, date, task_descrs): |
1025 | 498 |
inday_tasks = [t for t in task_descrs if t.is_one_day_task() and t.in_working_hours()] |
499 |
wholeday_tasks = [t for t in task_descrs if not t.is_one_day_task()] |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
500 |
inday_tasks.sort(key=lambda t:t.start) |
0 | 501 |
sorted_tasks = [] |
502 |
for i, t in enumerate(wholeday_tasks): |
|
503 |
t.index = i |
|
504 |
ncols = len(wholeday_tasks) |
|
505 |
while inday_tasks: |
|
506 |
t = inday_tasks.pop(0) |
|
507 |
for i, c in enumerate(sorted_tasks): |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
508 |
if not c or c[-1].stop <= t.start: |
0 | 509 |
c.append(t) |
510 |
t.index = i+ncols |
|
511 |
break |
|
512 |
else: |
|
513 |
t.index = len(sorted_tasks) + ncols |
|
514 |
sorted_tasks.append([t]) |
|
515 |
ncols += len(sorted_tasks) |
|
516 |
if ncols == 0: |
|
517 |
return |
|
518 |
||
519 |
inday_tasks = [] |
|
520 |
for tasklist in sorted_tasks: |
|
521 |
inday_tasks += tasklist |
|
522 |
width = 100.0/ncols |
|
523 |
for task_desc in wholeday_tasks + inday_tasks: |
|
524 |
task = task_desc.task |
|
525 |
start_hour = 8 |
|
526 |
start_min = 0 |
|
527 |
stop_hour = 20 |
|
528 |
stop_min = 0 |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
529 |
if task_desc.start: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
530 |
if date < todate(task_desc.start) < date + ONEDAY: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
531 |
start_hour = max(8, task_desc.start.hour) |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
532 |
start_min = task_desc.start.minute |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
533 |
if task_desc.stop: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
534 |
if date < todate(task_desc.stop) < date + ONEDAY: |
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
535 |
stop_hour = min(20, task_desc.stop.hour) |
0 | 536 |
if stop_hour < 20: |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
537 |
stop_min = task_desc.stop.minute |
1604 | 538 |
|
0 | 539 |
height = 100.0*(stop_hour+stop_min/60.0-start_hour-start_min/60.0)/(20-8) |
540 |
top = 100.0*(start_hour+start_min/60.0-8)/(20-8) |
|
541 |
left = width*task_desc.index |
|
542 |
style = "height: %s%%; width: %s%%; top: %s%%; left: %s%%; " % \ |
|
543 |
(height, width, top, left) |
|
544 |
self.w(u'<div class="task %s" style="%s">' % \ |
|
545 |
(task_desc.color, style)) |
|
546 |
task.view('calendaritem', dates=False, w=self.w) |
|
547 |
url = task.absolute_url(vid='edition', |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
548 |
__redirectrql=self.cw_rset.printable_rql(), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
549 |
__redirectparams=self._cw.build_url_params(year=date.year, week=date.isocalendar()[1]), |
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
550 |
__redirectvid=self.__regid__ |
0 | 551 |
) |
552 |
||
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
553 |
self.w(u'<div class="tooltip" ondblclick="stopPropagation(event); window.location.assign(\'%s\'); return false;">' % xml_escape(url)) |
0 | 554 |
task.view('tooltip', w=self.w) |
555 |
self.w(u'</div>') |
|
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
556 |
if task_desc.start is None: |
0 | 557 |
self.w(u'<div class="bottommarker">') |
558 |
self.w(u'<div class="bottommarkerline" style="margin: 0px 3px 0px 3px; height: 1px;">') |
|
559 |
self.w(u'</div>') |
|
560 |
self.w(u'<div class="bottommarkerline" style="margin: 0px 2px 0px 2px; height: 1px;">') |
|
561 |
self.w(u'</div>') |
|
562 |
self.w(u'<div class="bottommarkerline" style="margin: 0px 1px 0px 1px; height: 3ex; color: white; font-size: x-small; vertical-align: center; text-align: center;">') |
|
563 |
self.w(u'end') |
|
564 |
self.w(u'</div>') |
|
565 |
self.w(u'</div>') |
|
566 |
self.w(u'</div>') |
|
567 |
||
1604 | 568 |
|
0 | 569 |
def _prevnext_links(self, curdate): |
1033
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
570 |
prevdate = curdate - timedelta(7) |
f5be65616a31
more datetime fixes and cleanup
sylvain.thenault@logilab.fr
parents:
1025
diff
changeset
|
571 |
nextdate = curdate + timedelta(7) |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
572 |
rql = self.cw_rset.printable_rql() |
5713
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
573 |
prevlink = self._cw.ajax_replace_url('oneweekcalid', rql=rql, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
574 |
vid='oneweekcal', |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
575 |
year=prevdate.year, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
576 |
week=prevdate.isocalendar()[1]) |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
577 |
nextlink = self._cw.ajax_replace_url('oneweekcalid', rql=rql, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
578 |
vid='oneweekcal', |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
579 |
year=nextdate.year, |
605f571198eb
[web] ajax_replace_url superseed build_ajax_replace_url, more generic and relying on the json controller (closes #750090)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
580 |
week=nextdate.isocalendar()[1]) |
0 | 581 |
return prevlink, nextlink |