/usr/share/pyshared/MoinMoin/macro/RecentChanges.py is in python-moinmoin 1.9.3-1ubuntu2.3.
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 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | # -*- coding: iso-8859-1 -*-
"""
MoinMoin - RecentChanges Macro
Parameter "ddiffs" by Ralf Zosel <ralf@zosel.com>, 04.12.2003.
@copyright: 2000-2004 Juergen Hermann <jh@web.de>
@license: GNU GPL, see COPYING for details.
"""
import time
from MoinMoin import util, wikiutil
from MoinMoin.Page import Page
from MoinMoin.logfile import editlog
_DAYS_SELECTION = [1, 2, 3, 7, 14, 30, 60, 90]
_MAX_DAYS = 7
_MAX_PAGENAME_LENGTH = 15 # 35
_MAX_COMMENT_LENGTH = 20
#############################################################################
### RecentChanges Macro
#############################################################################
Dependencies = ["time"] # ["user", "pages", "pageparams", "bookmark"]
def format_comment(request, line):
comment = line.comment
action = line.action
_ = request.getText
if action.startswith('ATT'):
filename = wikiutil.url_unquote(line.extra)
if action == 'ATTNEW':
comment = _("Upload of attachment '%(filename)s'.") % {
'filename': filename}
elif action == 'ATTDEL':
comment = _("Attachment '%(filename)s' deleted.") % {
'filename': filename}
elif action == 'ATTDRW':
comment = _("Drawing '%(filename)s' saved.") % {
'filename': filename}
elif '/REVERT' in action:
rev = int(line.extra)
comment = (_("Revert to revision %(rev)d.") % {'rev': rev}) + " " + comment
elif '/RENAME' in action:
comment = (_("Renamed from '%(oldpagename)s'.") % {'oldpagename': line.extra}) + " " + comment
return wikiutil.make_breakable(comment, _MAX_COMMENT_LENGTH)
def format_page_edits(macro, lines, bookmark_usecs):
request = macro.request
_ = request.getText
d = {} # dict for passing stuff to theme
line = lines[0]
pagename = line.pagename
rev = int(line.rev)
tnow = time.time()
is_new = lines[-1].action == 'SAVENEW'
is_renamed = lines[-1].action == 'SAVE/RENAME'
# check whether this page is newer than the user's bookmark
hilite = line.ed_time_usecs > (bookmark_usecs or line.ed_time_usecs)
page = Page(request, pagename)
html_link = ''
if not page.exists():
img = request.theme.make_icon('deleted')
revbefore = rev - 1
if revbefore and page.exists(rev=revbefore, domain='standard'):
# indicate page was deleted and show diff to last existing revision of it
html_link = page.link_to_raw(request, img, querystr={'action': 'diff'}, rel='nofollow')
else:
# just indicate page was deleted
html_link = img
elif page.isConflict():
img = request.theme.make_icon('conflict')
html_link = page.link_to_raw(request, img, querystr={'action': 'edit'}, rel='nofollow')
elif hilite:
# show special icons if change was after the user's bookmark
if is_new:
img = 'new'
elif is_renamed:
img = 'renamed'
else:
img = 'updated'
img = request.theme.make_icon(img)
html_link = page.link_to_raw(request, img, querystr={'action': 'diff', 'date': '%d' % bookmark_usecs}, rel='nofollow')
else:
# show "DIFF" icon else
img = request.theme.make_icon('diffrc')
html_link = page.link_to_raw(request, img, querystr={'action': 'diff'}, rel='nofollow')
# print name of page, with a link to it
force_split = len(page.page_name) > _MAX_PAGENAME_LENGTH
d['icon_html'] = html_link
d['pagelink_html'] = page.link_to(request, text=page.split_title(force=force_split))
# print time of change
d['time_html'] = None
if request.cfg.changed_time_fmt:
tdiff = long(tnow - wikiutil.version2timestamp(long(line.ed_time_usecs))) / 60 # has to be long for py 2.2.x
if tdiff < 100:
d['time_html'] = _("%(mins)dm ago") % {
'mins': tdiff}
else:
d['time_html'] = time.strftime(request.cfg.changed_time_fmt, line.time_tuple)
# print editor name or IP
d['editors'] = None
if request.cfg.show_names:
if len(lines) > 1:
counters = {}
for idx in range(len(lines)):
name = lines[idx].getEditor(request)
if not name in counters:
counters[name] = []
counters[name].append(idx+1)
poslist = [(v, k) for k, v in counters.items()]
poslist.sort()
d['editors'] = []
for positions, name in poslist:
d['editors'].append("%s [%s]" % (
name, util.rangelist(positions)))
else:
d['editors'] = [line.getEditor(request)]
comments = []
for idx in range(len(lines)):
comment = format_comment(request, lines[idx])
if comment:
comments.append((idx+1, wikiutil.escape(comment)))
d['changecount'] = len(lines)
d['comments'] = comments
img = request.theme.make_icon('info')
d['info_html'] = page.link_to_raw(request, img, querystr={'action': 'info'}, rel='nofollow')
return request.theme.recentchanges_entry(d)
def cmp_lines(first, second):
return cmp(first[0], second[0])
def print_abandoned(macro):
request = macro.request
_ = request.getText
output = []
d = {}
page = macro.formatter.page
pagename = page.page_name
d['page'] = page
d['q_page_name'] = wikiutil.quoteWikinameURL(pagename)
msg = None
pages = request.rootpage.getPageList()
last_edits = []
for name in pages:
log = Page(request, name).editlog_entry()
if log:
last_edits.append(log)
# we don't want all Systempages at the beginning of the abandoned list
# line = editlog.EditLogLine({})
# line.pagename = page
# line.ed_time = 0
# line.comment = 'not edited'
# line.action = ''
# line.userid = ''
# line.hostname = ''
# line.addr = ''
# last_edits.append(line)
del pages
last_edits.sort()
# set max size in days
max_days = min(int(request.values.get('max_days', 0)), _DAYS_SELECTION[-1])
# default to _MAX_DAYS for users without bookmark
if not max_days:
max_days = _MAX_DAYS
d['rc_max_days'] = max_days
# give known user the option to extend the normal display
if request.user.valid:
d['rc_days'] = _DAYS_SELECTION
else:
d['rc_days'] = None
d['rc_update_bookmark'] = None
output.append(request.theme.recentchanges_header(d))
length = len(last_edits)
index = 0
last_index = 0
day_count = 0
if length > 0:
line = last_edits[index]
line.time_tuple = request.user.getTime(wikiutil.version2timestamp(line.ed_time_usecs))
this_day = line.time_tuple[0:3]
day = this_day
while 1:
index += 1
if index > length:
break
if index < length:
line = last_edits[index]
line.time_tuple = request.user.getTime(wikiutil.version2timestamp(line.ed_time_usecs))
day = line.time_tuple[0:3]
if (day != this_day) or (index == length):
d['bookmark_link_html'] = None
d['date'] = request.user.getFormattedDate(wikiutil.version2timestamp(last_edits[last_index].ed_time_usecs))
output.append(request.theme.recentchanges_daybreak(d))
this_day = day
for page in last_edits[last_index:index]:
output.append(format_page_edits(macro, [page], None))
last_index = index
day_count += 1
if (day_count >= max_days):
break
d['rc_msg'] = msg
output.append(request.theme.recentchanges_footer(d))
return ''.join(output)
def macro_RecentChanges(macro, abandoned=False):
# handle abandoned keyword
if abandoned:
return print_abandoned(macro)
request = macro.request
_ = request.getText
output = []
user = request.user
page = macro.formatter.page
pagename = page.page_name
d = {}
d['page'] = page
d['q_page_name'] = wikiutil.quoteWikinameURL(pagename)
log = editlog.EditLog(request)
tnow = time.time()
msg = ""
# get bookmark from valid user
bookmark_usecs = request.user.getBookmark() or 0
# add bookmark link if valid user
d['rc_curr_bookmark'] = None
d['rc_update_bookmark'] = None
if request.user.valid:
d['rc_curr_bookmark'] = _('(no bookmark set)')
if bookmark_usecs:
currentBookmark = wikiutil.version2timestamp(bookmark_usecs)
currentBookmark = user.getFormattedDateTime(currentBookmark)
currentBookmark = _('(currently set to %s)') % currentBookmark
deleteBookmark = page.link_to(request, _("Delete bookmark"), querystr={'action': 'bookmark', 'time': 'del'}, rel='nofollow')
d['rc_curr_bookmark'] = currentBookmark + ' ' + deleteBookmark
version = wikiutil.timestamp2version(tnow)
d['rc_update_bookmark'] = page.link_to(request, _("Set bookmark"), querystr={'action': 'bookmark', 'time': '%d' % version}, rel='nofollow')
# set max size in days
max_days = min(int(request.values.get('max_days', 0)), _DAYS_SELECTION[-1])
# default to _MAX_DAYS for useres without bookmark
if not max_days and not bookmark_usecs:
max_days = _MAX_DAYS
d['rc_max_days'] = max_days
# give known user the option to extend the normal display
if request.user.valid:
d['rc_days'] = _DAYS_SELECTION
else:
d['rc_days'] = []
output.append(request.theme.recentchanges_header(d))
pages = {}
ignore_pages = {}
today = request.user.getTime(tnow)[0:3]
this_day = today
day_count = 0
for line in log.reverse():
if not request.user.may.read(line.pagename):
continue
line.time_tuple = request.user.getTime(wikiutil.version2timestamp(line.ed_time_usecs))
day = line.time_tuple[0:3]
hilite = line.ed_time_usecs > (bookmark_usecs or line.ed_time_usecs)
if ((this_day != day or (not hilite and not max_days))) and len(pages) > 0:
# new day or bookmark reached: print out stuff
this_day = day
for p in pages:
ignore_pages[p] = None
pages = pages.values()
pages.sort(cmp_lines)
pages.reverse()
if request.user.valid:
bmtime = pages[0][0].ed_time_usecs
d['bookmark_link_html'] = page.link_to(request, _("Set bookmark"), querystr={'action': 'bookmark', 'time': '%d' % bmtime}, rel='nofollow')
else:
d['bookmark_link_html'] = None
d['date'] = request.user.getFormattedDate(wikiutil.version2timestamp(pages[0][0].ed_time_usecs))
output.append(request.theme.recentchanges_daybreak(d))
for p in pages:
output.append(format_page_edits(macro, p, bookmark_usecs))
pages = {}
day_count += 1
if max_days and (day_count >= max_days):
break
elif this_day != day:
# new day but no changes
this_day = day
if line.pagename in ignore_pages:
continue
# end listing by default if user has a bookmark and we reached it
if not max_days and not hilite:
msg = _('[Bookmark reached]')
break
if line.pagename in pages:
pages[line.pagename].append(line)
else:
pages[line.pagename] = [line]
else:
if len(pages) > 0:
# end of loop reached: print out stuff
# XXX duplicated code from above
# but above does not trigger if we have the first day in wiki history
for p in pages:
ignore_pages[p] = None
pages = pages.values()
pages.sort(cmp_lines)
pages.reverse()
if request.user.valid:
bmtime = pages[0][0].ed_time_usecs
d['bookmark_link_html'] = page.link_to(request, _("Set bookmark"), querystr={'action': 'bookmark', 'time': '%d' % bmtime}, rel='nofollow')
else:
d['bookmark_link_html'] = None
d['date'] = request.user.getFormattedDate(wikiutil.version2timestamp(pages[0][0].ed_time_usecs))
output.append(request.theme.recentchanges_daybreak(d))
for p in pages:
output.append(format_page_edits(macro, p, bookmark_usecs))
d['rc_msg'] = msg
output.append(request.theme.recentchanges_footer(d))
return ''.join(output)
|