/usr/share/pyshared/Pyblosxom/plugins/yeararchives.py is in pyblosxom 1.5.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 | #######################################################################
# This file is part of Pyblosxom.
#
# Copyright (C) 2004-2011 by the Pyblosxom team. See AUTHORS.
#
# Pyblosxom is distributed under the MIT license. See the file
# LICENSE for distribution details.
#######################################################################
"""
Summary
=======
Walks through your blog root figuring out all the available years for
the archives list. It stores the years with links to year summaries
in the variable ``$(archivelinks)``. You should put this variable in
either your head or foot template.
Install
=======
This plugin comes with Pyblosxom. To install, do the following:
1. Add ``Pyblosxom.plugins.yeararchives`` to the ``load_plugins`` list
in your ``config.py`` file.
2. Add ``$(archivelinks)`` to your head and/or foot templates.
3. Configure as documented below.
Usage
=====
When the user clicks on one of the year links
(e.g. ``http://base_url/2004/``), then yeararchives will display a
summary page for that year. The summary is generated using the
``yearsummarystory`` template for each month in the year.
My ``yearsummarystory`` template looks like this::
<div class="blosxomEntry">
<span class="blosxomTitle">$title</span>
<div class="blosxomBody">
<table>
$body
</table>
</div>
</div>
The ``$(archivelinks)`` link can be configured with the
``archive_template`` config variable. It uses the Python string
formatting syntax.
Example::
py['archive_template'] = (
'<a href="%(base_url)s/%(Y)s/index.%(f)s">'
'%(Y)s</a><br />')
The vars available with typical example values are::
Y 4-digit year ex: '1978'
y 2-digit year ex: '78'
f the flavour ex: 'html'
.. Note::
The ``archive_template`` variable value is formatted using Python
string formatting rules--not Pyblosxom template rules!
"""
__author__ = "Will Kahn-Greene"
__email__ = "willg at bluesock dot org"
__version__ = "2010-05-08"
__url__ = "http://pyblosxom.github.com/"
__description__ = "Builds year-based archives listing."
__category__ = "archives"
__license__ = "MIT"
__registrytags__ = "1.4, 1.5, core"
from Pyblosxom import tools, entries
from Pyblosxom.memcache import memcache_decorator
from Pyblosxom.tools import pwrap
import time
def verify_installation(request):
config = request.get_configuration()
if not 'archive_template' in config:
pwrap(
"missing optional config property 'archive_template' which "
"allows you to specify how the archive links are created. "
"refer to yeararchives plugin documentation for more details.")
return True
class YearArchives:
def __init__(self, request):
self._request = request
self._archives = None
self._items = None
@memcache_decorator('yeararchives', True)
def __str__(self):
if self._archives == None:
self.gen_linear_archive()
return self._archives
def gen_linear_archive(self):
config = self._request.get_configuration()
data = self._request.get_data()
root = config["datadir"]
baseurl = config.get("base_url", "")
archives = {}
archive_list = tools.walk(self._request, root)
items = []
fulldict = {}
fulldict.update(config)
fulldict.update(data)
flavour = data.get(
"flavour", config.get("default_flavour", "html"))
template = config.get(
'archive_template',
'<a href="%(base_url)s/%(Y)s/index.%(f)s">%(Y)s</a><br />')
for mem in archive_list:
timetuple = tools.filestat(self._request, mem)
timedict = {}
for x in ["m", "Y", "y", "d"]:
timedict[x] = time.strftime("%" + x, timetuple)
fulldict.update(timedict)
fulldict["f"] = flavour
year = fulldict["Y"]
if not year in archives:
archives[year] = template % fulldict
items.append(
["%(Y)s-%(m)s" % fulldict,
"%(Y)s-%(m)s-%(d)s" % fulldict,
time.mktime(timetuple),
mem])
arc_keys = archives.keys()
arc_keys.sort()
arc_keys.reverse()
result = []
for key in arc_keys:
result.append(archives[key])
self._archives = '\n'.join(result)
self._items = items
def new_entry(request, yearmonth, body):
"""
Takes a bunch of variables and generates an entry out of it. It
creates a timestamp so that conditionalhttp can handle it without
getting all fussy.
"""
entry = entries.base.EntryBase(request)
entry['title'] = yearmonth
entry['filename'] = yearmonth + "/summary"
entry['file_path'] = yearmonth
entry._id = yearmonth + "::summary"
entry["template_name"] = "yearsummarystory"
entry["nocomments"] = "yes"
entry["absolute_path"] = ""
entry["fn"] = ""
entry.set_time(time.strptime(yearmonth, "%Y-%m"))
entry.set_data(body)
return entry
INIT_KEY = "yeararchives_initiated"
def cb_prepare(args):
request = args["request"]
data = request.get_data()
data["archivelinks"] = YearArchives(request)
def cb_date_head(args):
request = args["request"]
data = request.get_data()
if INIT_KEY in data:
args["template"] = ""
return args
def parse_path_info(path):
"""Returns None or (year, flav) tuple.
Handles urls of this type:
- /2003
- /2003/
- /2003/index
- /2003/index.flav
"""
path = path.split("/")
path = [m for m in path if m]
if not path:
return
year = path[0]
if not year.isdigit() or not len(year) == 4:
return
if len(path) == 1:
return (year, None)
if len(path) == 2 and path[1].startswith("index"):
flav = None
if "." in path[1]:
flav = path[1].split(".", 1)[1]
return (year, flav)
return
def cb_filelist(args):
request = args["request"]
pyhttp = request.get_http()
data = request.get_data()
config = request.get_configuration()
baseurl = config.get("base_url", "")
path = pyhttp["PATH_INFO"]
ret = parse_path_info(path)
if ret == None:
return
# note: returned flavour is None if there is no .flav appendix
year, flavour = ret
data[INIT_KEY] = 1
# get all the entries
wa = YearArchives(request)
wa.gen_linear_archive()
items = wa._items
# peel off the items for this year
items = [m for m in items if m[0].startswith(year)]
items.sort()
items.reverse()
# Set and use current (or default) flavour for permalinks
if not flavour:
flavour = data.get(
"flavour", config.get("default_flavour", "html"))
data["flavour"] = flavour
l = ("(%(path)s) <a href=\"" + baseurl +
"/%(file_path)s." + flavour + "\">%(title)s</a><br>")
e = "<tr>\n<td valign=\"top\" align=\"left\">%s</td>\n<td>%s</td></tr>\n"
d = ""
m = ""
day = []
month = []
entrylist = []
for mem in items:
if not m:
m = mem[0]
if not d:
d = mem[1]
if m != mem[0]:
month.append(e % (d, "\n".join(day)))
entrylist.append(new_entry(request, m, "\n".join(month)))
m = mem[0]
d = mem[1]
day = []
month = []
elif d != mem[1]:
month.append(e % (d, "\n".join(day)))
d = mem[1]
day = []
entry = entries.fileentry.FileEntry(
request, mem[3], config['datadir'])
day.append(l % entry)
if day:
month.append(e % (d, "\n".join(day)))
if month:
entrylist.append(new_entry(request, m, "\n".join(month)))
return entrylist
|