1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
|
"""
Generates a calendar along the lines of this one::
< January 2003 >
Mo Tu We Th Fr Sa Su
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
It walks through all your entries and marks the dates that have entries
so you can click on the date and see entries for that date.
It uses the following CSS classes:
- blosxomCalendar
- for the calendar table
- blosxomCalendarHead
- for the month year header (January 2003)
- blosxomCalendarWeekHeader
- for the week header (Su, Mo, Tu, ...)
- blosxomCalendarEmpty
- for filler days
- blosxomCalendarCell
- for calendar days that aren't today
- blosxomCalendarBlogged
- for calendar days that aren't today that
have entries
- blosxomCalendarSpecificDay
- for the specific day we're looking at
(if we're looking at a specific day)
- blosxomCalendarToday
- for today's calendar day
To use, place $calendar in your head/foot template.
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify,
merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Copyright 2004, 2005 Will Guaraldi
"""
__author__ = "Will Guaraldi - willg at bluesock dot org"
__version__ = "$Id: pycalendar.py 650 2005-04-04 14:43:49Z willhelm $"
__url__ = "http://pyblosxom.sourceforge.net/"
__description__ = "Builds a calendar."
from Pyblosxom import tools
import time, calendar, string, os, types
def verify_installation(request):
# there's no configuration needed for this plugin.
return 1
class PyblCalendar:
def __init__(self, request):
self._request = request
self._cal = None
self._today = None
self._view = None
self._specificday = None
self._entries = {}
def __str__(self):
"""
Returns the on-demand generated string.
"""
if self._cal == None:
self.generateCalendar()
return self._cal
def generateCalendar(self):
"""
Generates the calendar. We'd like to walk the archives
for things that happen in this month and mark the dates
accordingly. After doing that we pass it to a formatting
method which turns the thing into HTML.
"""
config = self._request.getConfiguration()
data = self._request.getData()
entry_list = data["entry_list"]
root = config["datadir"]
baseurl = config.get("base_url", "")
self._today = time.localtime()
if len(entry_list) == 0:
# if there are no entries, we shouldn't even try to
# do something fancy.
self._cal = ""
return
view = list(entry_list[0].get("timetuple", (time.strftime("%Y", self._today),
time.strftime("%m", self._today),
time.strftime("%d", self._today))))
# this comes in as 2001, 2002, 2003, ... so we can convert it
# without an issue
temp = data.get("pi_yr", time.strftime("%Y", self._today))
if temp:
view[0] = int(temp)
# the month is a bit harder since it can come in as "08", "", or
# "Aug" (in the example of August).
temp = data.get("pi_mo", time.strftime("%m", self._today))
if temp.isdigit():
temp = int(temp)
else:
if tools.month2num.has_key(temp):
temp = int(tools.month2num[temp])
else:
temp = view[1]
view[1] = temp
view = tuple(view)
self._view = view
# if we're looking at a specific day, we figure out what it is
try:
if data["pi_yr"] and data["pi_mo"] and data["pi_da"]:
if data["pi_mo"].isdigit():
mon = data["pi_mo"]
else:
mon = tools.month2num[data["pi_mo"]]
self._specificday = [data["pi_yr"], mon, data["pi_da"]]
self._specificday = tuple([int(mem) for mem in self._specificday])
except:
pass
archiveList = tools.Walk(self._request, root)
yearmonth = {}
for mem in archiveList:
timetuple = tools.filestat(self._request, mem)
# if we already have an entry for this date, we skip to the
# next one because we've already done this processing
day = str(timetuple[2]).rjust(2)
if self._entries.has_key(day):
continue
# add an entry for yyyymm so we can figure out next/previous
year = str(timetuple[0])
dayzfill = string.zfill(timetuple[1], 2)
yearmonth[year + dayzfill] = time.strftime("%b", timetuple)
# if the entry isn't in the year/month we're looking at with
# the calendar, then we skip to the next one
if timetuple[0:2] != view[0:2]:
continue
# mark the entry because it's one we want to show
datepiece = time.strftime("%Y/%b/%d", timetuple)
self._entries[day] = (baseurl + "/" + datepiece, day)
# create the calendar
calendar.setfirstweekday(calendar.SUNDAY)
cal = calendar.monthcalendar(view[0], view[1])
# insert the days of the week
cal.insert(0, ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"])
# figure out next and previous links by taking the dict of yyyymm
# strings we created, turning it into a list, sorting them,
# and then finding "today"'s entry. then the one before it
# (index-1) is prev, and the one after (index+1) is next.
keys = yearmonth.keys()
keys.sort()
thismonth = time.strftime("%Y%m", view)
# do some quick adjustment to make sure we didn't pick
# a yearmonth that's outside the yearmonths of the entries we
# know about.
if thismonth in keys:
index = keys.index(thismonth)
elif len(keys) == 0 or keys[0] > thismonth:
index = 0
else:
index = len(keys) - 1
# build the prev link
if index == 0:
prev = None
else:
prev = ("%s/%s/%s" % (baseurl, keys[index-1][:4], yearmonth[keys[index-1]]), "<")
# build the next link
if index == len(yearmonth)-1:
next = None
else:
next = ("%s/%s/%s" % (baseurl, keys[index+1][:4], yearmonth[keys[index+1]]), ">")
# insert the month name and next/previous links
cal.insert(0, [prev, time.strftime("%B %Y", view), next])
self._cal = self.formatWithCSS(cal)
def _fixlink(self, link):
if link:
return "<a href=\"%s\">%s</a>" % (link[0], link[1])
else:
return " "
def _fixday(self, day):
if day == 0:
return "<td class=\"blosxomCalendarEmpty\"> </td>"
strday = str(day).rjust(2)
if self._entries.has_key(strday):
entry = self._entries[strday]
link = "<a href=\"%s\">%s</a>" % (entry[0], entry[1])
else:
link = strday
# if it's today
if (self._view[0], self._view[1], day) == self._today[0:3]:
return "<td class=\"blosxomCalendarToday\">%s</td>" % link
if self._specificday:
# if it's the day we're viewing
if (self._view[0], self._view[1], day) == self._specificday:
return "<td class=\"blosxomCalendarSpecificDay\">%s</td>" % link
# if it's a day that's been blogged
if self._entries.has_key(strday):
return "<td class=\"blosxomCalendarBlogged\">%s</td>" % link
return "<td class=\"blosxomCalendarCell\">%s</td>" % strday
def _fixweek(self, item):
return "<td class=\"blosxomCalendarWeekHeader\">%s</td>" % item
def formatWithCSS(self, cal):
"""
This formats the calendar using HTML table and CSS. The output
can be made to look prettier.
"""
cal2 = ["<table class=\"blosxomCalendar\">"]
cal2.append("<tr>")
cal2.append("<td align=\"left\">" + self._fixlink(cal[0][0]) + "</td>")
cal2.append("<td colspan=\"5\" align=\"center\" class=\"blosxomCalendarHead\">" + cal[0][1] + "</td>")
cal2.append("<td align=\"right\">" + self._fixlink(cal[0][2]) + "</td>")
cal2.append("</tr>")
cal2.append("<tr>%s</tr>" % "".join([self._fixweek(m) for m in cal[1]]))
for mem in cal[2:]:
mem = [self._fixday(m) for m in mem]
cal2.append("<tr>" + "".join(mem) + "</tr>")
cal2.append("</table>")
return "\n".join(cal2)
def cb_prepare(args):
request = args["request"]
data = request.getData()
if data.has_key("entry_list") and data["entry_list"]:
data["calendar"] = PyblCalendar(request)
# vim: tabstop=4 shiftwidth=4
|