' print '%s ' % channelDescription print '(about)
' if channelItems: print 'Blogworthy Updates
' print "The following items are from eph's RSS Feed:
' print '- '
for (title, desc, link, date) in channelItems:
li = '
- %s %s %s
%s
'
# shortlink = link.rsplit('/', 1).pop()
date, t = formatDate(date)
print li % (date, t, link, formatTitle(title), desc)
print '
All Recent Changes
' print 'The %s most recent changes in this site are:
' % len(keys) print ''
for n in keys:
pdate, ptime = tuple(n.split(' '))
ptime = ptime.rstrip('_')
print '
'
print '%s: ' % pdate,
title = result[n]
htitle = getTitle(result[n] + '.html')
if htitle and (htitle != title):
title = htitle
title = formatTitle(title)
print '%s %s' % (result[n], title, ptime),
length = len(open(result[n] + '.html').read())
print ' (size: %s bytes)
' % length
print 'Up to %s updates will be shown.
' % i print 'About Eph
' print 'For more information about the site in general, try about. Also: this ' print "page's source.
" print '