--> --> -->
 
 
TypeError
Python 2.4.4: /usr/bin/python
Sat Jul 31 09:09:06 2010

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /home/pfreixes/public_html/cgi-bin/pyblosxom.cgi
   93         p = PyBlosxom(cfg, env)
   94 
   95         p.run()
   96         response = p.getResponse()
   97         response.sendHeaders(sys.stdout)
p = <Pyblosxom.pyblosxom.PyBlosxom instance>, p.run = <bound method PyBlosxom.run of <Pyblosxom.pyblosxom.PyBlosxom instance>>
 /home/pfreixes/pyblosxom-1.4.3/Pyblosxom/pyblosxom.py in run(self=<Pyblosxom.pyblosxom.PyBlosxom instance>, static=False)
 /home/pfreixes/pyblosxom-1.4.3/Pyblosxom/pyblosxom.py in blosxom_handler(request=Request)
 /home/pfreixes/blog/pyblosxom/Pyblosxom/renderers/blosxom.py in render(self=<Pyblosxom.renderers.blosxom.Renderer instance>, header=1)
  335                 self._outputFlavour(parsevars,'head')
  336             if self.flavour.has_key('story'):
  337                 self._processContent()
  338             if self.flavour.has_key('date_foot'): 
  339                 self._outputFlavour(parsevars,'date_foot')                
self = <Pyblosxom.renderers.blosxom.Renderer instance>, self._processContent = <bound method Renderer._processContent of <Pyblosxom.renderers.blosxom.Renderer instance>>
 /home/pfreixes/blog/pyblosxom/Pyblosxom/renderers/blosxom.py in _processContent(self=<Pyblosxom.renderers.blosxom.Renderer instance>)
  286 
  287             for entry in self._content:
  288                 output, current_date = self._processEntry(entry, current_date)
  289                 outputbuffer.append(output)
  290 
output undefined, current_date = '', self = <Pyblosxom.renderers.blosxom.Renderer instance>, self._processEntry = <bound method Renderer._processEntry of <Pyblosxom.renderers.blosxom.Renderer instance>>, entry = <fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>
 /home/pfreixes/blog/pyblosxom/Pyblosxom/renderers/blosxom.py in _processEntry(self=<Pyblosxom.renderers.blosxom.Renderer instance>, entry=<fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, current_date='Sun, 19 Jul 2009')
  254         template = u""
  255         args = self._run_callback("story_end", 
  256                                   { "entry": entry, "template": template }) 
  257             
  258         return "".join(output) + args['template'], current_date    
entry = <fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, template = u''
 /home/pfreixes/blog/pyblosxom/Pyblosxom/renderers/blosxom.py in _run_callback(self=<Pyblosxom.renderers.blosxom.Renderer instance>, chain='story_end', input={'entry': <fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, 'renderer': <Pyblosxom.renderers.blosxom.Renderer instance>, 'request': Request, 'template': u''})
  406         return tools.run_callback(chain, input, 
  407                             mappingfunc=lambda x,y: x,
  408                             defaultfunc=lambda x:x)
  409         
  410     def getContent(self):
defaultfunc undefined, x undefined
 /home/pfreixes/pyblosxom-1.4.3/Pyblosxom/tools.py in run_callback(chain=[<function cb_story_end>], input={'entry': <fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, 'renderer': <Pyblosxom.renderers.blosxom.Renderer instance>, 'request': Request, 'template': u''}, mappingfunc=<function <lambda>>, donefunc=<function <lambda>>, defaultfunc=<function <lambda>>)
 /home/pfreixes/blog/plugins/comments.py in cb_story_end(args={'entry': <fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, 'renderer': <Pyblosxom.renderers.blosxom.Renderer instance>, 'request': Request, 'template': u''})
  981             and data['display_comment_default'] == 1:
  982         output = []
  983         entry['comments'] = readComments(entry, config)
  984         if entry.has_key('comments'):        
  985             comment_entry = dict(entry)
entry = <fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, global readComments = <function readComments>, config = {'base_url': 'http://www.milnou.net/~pfreixes/blog', 'blog_author': 'pfreixes', 'blog_description': 'Pau Freixes blog, talking about open source development and his world', 'blog_email': 'pfreixes@milnou.net', 'blog_encoding': 'utf-8', 'blog_icbm': '37.448089,-122.159259', 'blog_language': 'en', 'blog_rights': 'Copyright 2005 Pau Freixes', 'blog_title': 'elMeublog', 'codebase': '/home/pfreixes/blog/pyblosxom/', ...}
 /home/pfreixes/blog/plugins/comments.py in readComments(entry=<fileentry f'/home/pfreixes/blog/entries/misc/lo...g/entries/misc/looking_hope_new_experiences.txt'>, config={'base_url': 'http://www.milnou.net/~pfreixes/blog', 'blog_author': 'pfreixes', 'blog_description': 'Pau Freixes blog, talking about open source development and his world', 'blog_email': 'pfreixes@milnou.net', 'blog_encoding': 'utf-8', 'blog_icbm': '37.448089,-122.159259', 'blog_language': 'en', 'blog_rights': 'Copyright 2005 Pau Freixes', 'blog_title': 'elMeublog', 'codebase': '/home/pfreixes/blog/pyblosxom/', ...})
  298         entry['num_comments'] = len(filelist)
  299     comments = [readComment(f, encoding, config) for f in filelist]
  300     comments = [(cmt['cmt_time'], cmt) for cmt in comments]
  301     comments.sort()
  302     return [c[1] for c in comments]
comments = [{u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://grou.ps/teriannbaref">amoxicillin</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'societies president <a href="http://grou.ps/teriannbaref">amoxicillin</a>\n', u'cmt_link': u'http://grou.ps/teriannbaref', 'cmt_optionally_linked_author': u'<a href="http://grou.ps/teriannbaref">diamontina</a>', u'cmt_pubDate': 'Sun May 16 23:58:11 2010', u'cmt_source': '', 'cmt_time': 1274047091.6700001, ...}, {u'cmt_author': u'wilburthau', u'cmt_description': u'<a href="http://bugs.cinelerra.org/ticket/681">p...ugs.cinelerra.org/ticket/670">order zithromax</a>', u'cmt_email': u'wilburthauck@ucla.edu', u'cmt_ipaddress': u'91.207.5.139', u'cmt_item': u'<a href="http://bugs.cinelerra.org/ticket/681">p...gs.cinelerra.org/ticket/670">order zithromax</a>\n', u'cmt_link': u'http://bugs.cinelerra.org/ticket/681', 'cmt_optionally_linked_author': u'<a href="http://bugs.cinelerra.org/ticket/681">wilburthau</a>', u'cmt_pubDate': 'Mon May 3 20:36:22 2010', u'cmt_source': '', 'cmt_time': 1272911782.52, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://mediacloiste...sar.edu/index.php/member/14655/">buy diazepam</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'195.190.13.123', u'cmt_item': u'societies president <a href="http://mediacloiste...ar.edu/index.php/member/14655/">buy diazepam</a>\n', u'cmt_link': u'http://mediacloisters.vassar.edu/index.php/member/14655/', 'cmt_optionally_linked_author': u'<a href="http://mediacloisters.vassar.edu/index.php/member/14655/">diamontina</a>', u'cmt_pubDate': 'Tue May 18 23:08:06 2010', u'cmt_source': '', 'cmt_time': 1274216886.9200001, ...}, {u'cmt_author': u'danylynnpr', u'cmt_description': u'<a href="http://reedmcnee.socialgo.com/">celexa<...eordebisso.socialgo.com/">tramadol medication</a>', u'cmt_email': u'danylynnprick@berkley.com', u'cmt_ipaddress': u'85.234.141.97', u'cmt_item': u'<a href="http://reedmcnee.socialgo.com/">celexa<...ordebisso.socialgo.com/">tramadol medication</a>\n', u'cmt_link': u'http://reedmcnee.socialgo.com/', 'cmt_optionally_linked_author': u'<a href="http://reedmcnee.socialgo.com/">danylynnpr</a>', u'cmt_pubDate': 'Thu Apr 29 09:02:09 2010', u'cmt_source': '', 'cmt_time': 1272524529.8, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://corkd.com/pe...ttp://corkd.com/people/lorettecusic">adderall</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'societies president <a href="http://corkd.com/pe...tp://corkd.com/people/lorettecusic">adderall</a>\n', u'cmt_link': u'http://corkd.com/people/ronellbying', 'cmt_optionally_linked_author': u'<a href="http://corkd.com/people/ronellbying">diamontina</a>', u'cmt_pubDate': 'Mon May 17 01:24:42 2010', u'cmt_source': '', 'cmt_time': 1274052282.5999999, ...}, {u'cmt_author': u'debt negotiate', u'cmt_description': u'Buffalo, also <a href="http://sickanimation.com/...er hair in punk roker</a>, also&nbsp; 01951, also', u'cmt_email': u'ampryjsc@roobqxqd.com', u'cmt_ipaddress': u'91.214.44.11', u'cmt_item': u'Buffalo, also <a href="http://sickanimation.com/...r hair in punk roker</a>, also&nbsp; 01951, also\n', u'cmt_link': u'http://community.energy-speakers.com/members/debtsettlement36s.aspx', 'cmt_optionally_linked_author': u'<a href="http://community.energy-speakers.com/members/debtsettlement36s.aspx">debt negotiate</a>', u'cmt_pubDate': 'Tue Apr 6 06:02:29 2010', u'cmt_source': '', 'cmt_time': 1270526549.0699999, ...}, {u'cmt_author': u'thurmondhu', u'cmt_description': u'<a href="http://www.wearediabetic.org/xanax23/bio">buy cheap xanax</a>', u'cmt_email': u'thurmondhurta@ucla.edu', u'cmt_ipaddress': u'195.190.13.179', u'cmt_item': u'<a href="http://www.wearediabetic.org/xanax23/bio">buy cheap xanax</a>\n', u'cmt_link': u'http://www.wearediabetic.org/xanax23/bio', 'cmt_optionally_linked_author': u'<a href="http://www.wearediabetic.org/xanax23/bio">thurmondhu</a>', u'cmt_pubDate': 'Wed May 5 00:05:24 2010', u'cmt_source': '', 'cmt_time': 1273010724.4400001, ...}, {u'cmt_author': u'ellepolla', u'cmt_description': u'<a href="http://watsonvanho.socialgo.com/">diazepam 5mg</a>', u'cmt_email': u'ellepolla@berkley.com', u'cmt_ipaddress': u'195.190.13.123', u'cmt_item': u'<a href="http://watsonvanho.socialgo.com/">diazepam 5mg</a>\n', u'cmt_link': u'http://watsonvanho.socialgo.com/', 'cmt_optionally_linked_author': u'<a href="http://watsonvanho.socialgo.com/">ellepolla</a>', u'cmt_pubDate': 'Thu May 13 15:50:47 2010', u'cmt_source': '', 'cmt_time': 1273758647.47, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://wiki.oracle.com/account/pfesssleyklink">clonazepam</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'91.207.5.139', u'cmt_item': u'societies president <a href="http://wiki.oracle.com/account/pfesssleyklink">clonazepam</a>\n', u'cmt_link': u'http://wiki.oracle.com/account/pfesssleyklink', 'cmt_optionally_linked_author': u'<a href="http://wiki.oracle.com/account/pfesssleyklink">diamontina</a>', u'cmt_pubDate': 'Thu May 20 02:00:18 2010', u'cmt_source': '', 'cmt_time': 1274313618.1600001, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://community.op...om/members/Klonopin.aspx">buy klonopin online</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'societies president <a href="http://community.op...m/members/Klonopin.aspx">buy klonopin online</a>\n', u'cmt_link': u'http://community.opennetcf.com/members/Klonopin.aspx', 'cmt_optionally_linked_author': u'<a href="http://community.opennetcf.com/members/Klonopin.aspx">diamontina</a>', u'cmt_pubDate': 'Fri May 14 10:22:06 2010', u'cmt_source': '', 'cmt_time': 1273825326.8, ...}, {u'cmt_author': u'John797', u'cmt_description': u'Aloha!<br />\n<a href="http://pauloakenfold.com/u...akenfold.com/users/ladysonia</a> free lady sonia,', u'cmt_email': u'vimpao@aol.com', u'cmt_ipaddress': u'69.46.16.14', u'cmt_item': u'Aloha!<br />\n<a href="http://pauloakenfold.com/u...kenfold.com/users/ladysonia</a> free lady sonia,\n', u'cmt_link': u'http://pauloakenfold.com/users/vimax', 'cmt_optionally_linked_author': u'<a href="http://pauloakenfold.com/users/vimax">John797</a>', u'cmt_pubDate': 'Thu May 6 07:58:33 2010', u'cmt_source': '', 'cmt_time': 1273125513.0799999, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://dh.tamu.edu/drw/forums/topic.php?id=2206">viagra pills</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'societies president <a href="http://dh.tamu.edu/drw/forums/topic.php?id=2206">viagra pills</a>\n', u'cmt_link': u'http://dh.tamu.edu/drw/forums/topic.php?id=2206', 'cmt_optionally_linked_author': u'<a href="http://dh.tamu.edu/drw/forums/topic.php?id=2206">diamontina</a>', u'cmt_pubDate': 'Tue May 18 15:41:02 2010', u'cmt_source': '', 'cmt_time': 1274190062.4400001, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://www.oswd.org/user/profile/id/57781">tramadol</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'85.234.141.97', u'cmt_item': u'societies president <a href="http://www.oswd.org/user/profile/id/57781">tramadol</a>\n', u'cmt_link': u'http://www.oswd.org/user/profile/id/57781', 'cmt_optionally_linked_author': u'<a href="http://www.oswd.org/user/profile/id/57781">diamontina</a>', u'cmt_pubDate': 'Sat May 22 02:29:21 2010', u'cmt_source': '', 'cmt_time': 1274488161.0699999, ...}, {u'cmt_author': u'akkershoop', u'cmt_description': u'change <a href="http://croftonrowle.socialgo.com/">hydrocodone</a>', u'cmt_email': u'akkershoop@ucla.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'change <a href="http://croftonrowle.socialgo.com/">hydrocodone</a>\n', u'cmt_link': u'http://croftonrowle.socialgo.com/', 'cmt_optionally_linked_author': u'<a href="http://croftonrowle.socialgo.com/">akkershoop</a>', u'cmt_pubDate': 'Thu May 13 15:36:33 2010', u'cmt_source': '', 'cmt_time': 1273757793.8199999, ...}, {u'cmt_author': u'ayersbarne', u'cmt_description': u'influence <a href="http://caraudionationals.com/...D00</em>-best-value-for-money.aspx">acyclovir</a>', u'cmt_email': u'ayersbarne@spu.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'influence <a href="http://caraudionationals.com/...00</em>-best-value-for-money.aspx">acyclovir</a>\n', u'cmt_link': u'http://caraudionationals.com/members/Buy-Cheap-Ultram-_2D00_-best-value-for-money.aspx', 'cmt_optionally_linked_author': u'<a href="http://caraudionationals.com/members/Bu...-_2D00_-best-value-for-money.aspx">ayersbarne</a>', u'cmt_pubDate': 'Fri May 7 01:41:43 2010', u'cmt_source': '', 'cmt_time': 1273189303.48, ...}, {u'cmt_author': u'jonitamech', u'cmt_description': u'sres events <a href="http://www.geologue.setif.o...gue.setif.org/vb/member.php?u=3583">reductile</a>', u'cmt_email': u'jonitamecha@berkley.com', u'cmt_ipaddress': u'195.190.13.123', u'cmt_item': u'sres events <a href="http://www.geologue.setif.o...ue.setif.org/vb/member.php?u=3583">reductile</a>\n', u'cmt_link': u'http://www.geologue.setif.org/vb/member.php?u=3588', 'cmt_optionally_linked_author': u'<a href="http://www.geologue.setif.org/vb/member.php?u=3588">jonitamech</a>', u'cmt_pubDate': 'Fri May 7 14:35:02 2010', u'cmt_source': '', 'cmt_time': 1273235702.1500001, ...}, {u'cmt_author': u'diamontina', u'cmt_description': u'societies president <a href="http://grou.ps/gyldamedlo">buy tramadol</a>', u'cmt_email': u'diamontinabecke@ucla.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'societies president <a href="http://grou.ps/gyldamedlo">buy tramadol</a>\n', u'cmt_link': u'http://grou.ps/gyldamedlo', 'cmt_optionally_linked_author': u'<a href="http://grou.ps/gyldamedlo">diamontina</a>', u'cmt_pubDate': 'Wed May 19 23:03:00 2010', u'cmt_source': '', 'cmt_time': 1274302980.1500001, ...}, {u'cmt_author': u'waleispurs', u'cmt_description': u'report twentieth <a href="http://jerald.net/memb...</em>-Order-Now/default.aspx">generic levitra</a>', u'cmt_email': u'waleispurse@transy.edu', u'cmt_ipaddress': u'67.215.233.50', u'cmt_item': u'report twentieth <a href="http://jerald.net/memb.../em>-Order-Now/default.aspx">generic levitra</a>\n', u'cmt_link': u'http://jerald.net/members/Buy-Ultram-_2D00_-Order-Now/default.aspx', 'cmt_optionally_linked_author': u'<a href="http://jerald.net/members/Buy-Ultram-_2D00_-Order-Now/default.aspx">waleispurs</a>', u'cmt_pubDate': 'Thu Apr 29 07:00:13 2010', u'cmt_source': '', 'cmt_time': 1272517213.04, ...}, {u'cmt_author': u'kassiahath', u'cmt_description': u'1998 order <a href="http://github.com/weifordcro...="http://github.com/rydernolas">buy acyclovir</a>', u'cmt_email': u'kassiahathc@ucla.edu', u'cmt_ipaddress': u'91.207.5.139', u'cmt_item': u'1998 order <a href="http://github.com/weifordcro..."http://github.com/rydernolas">buy acyclovir</a>\n', u'cmt_link': u'http://github.com/weifordcroch', 'cmt_optionally_linked_author': u'<a href="http://github.com/weifordcroch">kassiahath</a>', u'cmt_pubDate': 'Fri May 14 19:38:50 2010', u'cmt_source': '', 'cmt_time': 1273858730.1800001, ...}, {u'cmt_author': u'John1544', u'cmt_description': u'Aloha!<br />\n<a href="http://jibawards.com/">htt...thevintageunderground.com/adipex.html</a> adipex,', u'cmt_email': u'acomplad@aol.com', u'cmt_ipaddress': u'66.232.120.2', u'cmt_item': u'Aloha!<br />\n<a href="http://jibawards.com/">htt...hevintageunderground.com/adipex.html</a> adipex,\n', u'cmt_link': u'http://www.3ashtar1.com/', 'cmt_optionally_linked_author': u'<a href="http://www.3ashtar1.com/">John1544</a>', u'cmt_pubDate': 'Thu Apr 29 08:47:02 2010', u'cmt_source': '', 'cmt_time': 1272523622.48, ...}, ...], cmt = None

TypeError: unsubscriptable object
      args = ('unsubscriptable object',)