Attachment 'wiki-bug-traceback.html'

Download

--> -->

ValueError

too many values to unpack

If you want to report a bug, please save this page and attach it to your bug report.

Traceback

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

  1. /usr/lib/python2.4/site-packages/MoinMoin/request.py in run (self=<MoinMoin.request.RequestCGI object>)

    1. 1205 self.page.send_page(self, msg=msg)
    2. 1206 else:
    3. 1207 handler(self.page.page_name, self)
    4. 1208
    5. 1209 # generate page footer (actions that do not want this footer use
    • handler = <function execute>
    • self = <MoinMoin.request.RequestCGI object>
    • self.page = <MoinMoin.Page.Page instance>
    • self.page.page_name = u'UserPreferences'
  2. /usr/lib/python2.4/site-packages/MoinMoin/action/login.py in execute (pagename=u'UserPreferences', request=<MoinMoin.request.RequestCGI object>)

    1. 15
    2. 16 def execute(pagename, request):
    3. 17 return LoginHandler(pagename, request).handle()
    4. 18
    5. 19 class LoginHandler:
    • global LoginHandler = <class MoinMoin.action.login.LoginHandler>
    • pagename = u'UserPreferences'
    • request = <MoinMoin.request.RequestCGI object>
    • ).handle undefined
  3. /usr/lib/python2.4/site-packages/MoinMoin/action/login.py in handle (self=<MoinMoin.action.login.LoginHandler instance>)

    1. 58 error = _("Sorry, wrong password.")
    2. 59
    3. 60 return self.page.send_page(request, msg=error)
    4. 61
    5. 62 else: # show login form
    • self = <MoinMoin.action.login.LoginHandler instance>
    • self.page = <MoinMoin.Page.Page instance>
    • self.page.send_page = <bound method Page.send_page of <MoinMoin.Page.Page instance>>
    • request = <MoinMoin.request.RequestCGI object>
    • msg undefined
    • error = None
  4. /usr/lib/python2.4/site-packages/MoinMoin/Page.py in send_page (self=<MoinMoin.Page.Page instance>, request=<MoinMoin.request.RequestCGI object>, msg='', **keywords={})

    1. 1205 pagename=self.page_name, print_mode=print_mode,
    2. 1206 media=media, pi_refresh=pi_refresh,
    3. 1207 allow_doubleclick=1, trail=trail,
    4. 1208 )
    5. 1209
    • allow_doubleclick undefined
    • trail = [u'LiangMa', u'GsaWeeklyActivities', u'LiangMaLog', u'FrontPage', u'UserPreferences']
  5. /usr/lib/python2.4/site-packages/MoinMoin/wikiutil.py in send_title (request=<MoinMoin.request.RequestCGI object>, text=u'UserPreferences', **keywords={'allow_doubleclick': 1, 'link': '/scisat/UserPreferences?action=fullsearch&amp;value=linkto%3A%22UserPreferences%22&amp;context=180', 'media': 'screen', 'msg': '', 'page': <MoinMoin.Page.Page instance>, 'pagename': u'UserPreferences', 'pi_refresh': None, 'print_mode': False, 'trail': [u'LiangMa', u'GsaWeeklyActivities', u'LiangMaLog', u'FrontPage', u'UserPreferences']})

    1. 1311 output = []
    2. 1312 # later: <html xmlns=\"http://www.w3.org/1999/xhtml\">
    3. 1313 output.append("""<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    4. 1314 <html>
    5. 1315 <head>
    • output = []
    • output.append = <built-in method append of list object>
    • ''.join undefined
    • user_head = ['', '<meta http-equiv="Content-Type" content="text/html;charset=utf-8">\n', '<meta name="robots" content="noindex,nofollow">\n']
    • request = <MoinMoin.request.RequestCGI object>
    • request.theme = <MoinMoin.theme.starshine.Theme instance>
    • request.theme.html_head = <bound method Theme.html_head of <MoinMoin.theme.starshine.Theme instance>>
    • page = <MoinMoin.Page.Page instance>
    • global escape = <function escape>
    • text = u'UserPreferences'
    • request.cfg = <wikiconfig.Config instance>
    • request.cfg.html_pagetitle = None
    • request.cfg.sitename = u'Satops Wiki'
    • keywords = {'allow_doubleclick': 1, 'link': '/scisat/UserPreferences?action=fullsearch&amp;value=linkto%3A%22UserPreferences%22&amp;context=180', 'media': 'screen', 'msg': '', 'page': <MoinMoin.Page.Page instance>, 'pagename': u'UserPreferences', 'pi_refresh': None, 'print_mode': False, 'trail': [u'LiangMa', u'GsaWeeklyActivities', u'LiangMaLog', u'FrontPage', u'UserPreferences']}
    • keywords.get = <built-in method get of dict object>
    • builtin False = False
  6. /usr/lib/python2.4/site-packages/MoinMoin/theme/__init__.py in html_head (self=<MoinMoin.theme.starshine.Theme instance>, d={'media': 'screen', 'page': <MoinMoin.Page.Page instance>, 'print_mode': False, 'sitename': u'Satops Wiki', 'title': u'UserPreferences'})

    1. 844 @return: html head
    2. 845 """
    3. 846 html = [
    4. 847 u'<title>%(title)s - %(sitename)s</title>' % d,
    5. 848 self.externalScript('common'),
    • html undefined
    • d = {'media': 'screen', 'page': <MoinMoin.Page.Page instance>, 'print_mode': False, 'sitename': u'Satops Wiki', 'title': u'UserPreferences'}
    • self = <MoinMoin.theme.starshine.Theme instance>
    • self.externalScript = <bound method Theme.externalScript of <MoinMoin.theme.starshine.Theme instance>>
    • self.headscript = <bound method Theme.headscript of <MoinMoin.theme.starshine.Theme instance>>
    • self.guiEditorScript = <bound method Theme.guiEditorScript of <MoinMoin.theme.starshine.Theme instance>>
    • self.html_stylesheets = <bound method Theme.html_stylesheets of <MoinMoin.theme.starshine.Theme instance>>
    • self.rsslink = <bound method Theme.rsslink of <MoinMoin.theme.starshine.Theme instance>>
  7. /usr/lib/python2.4/site-packages/MoinMoin/theme/__init__.py in html_stylesheets (self=<MoinMoin.theme.starshine.Theme instance>, d={'media': 'screen', 'page': <MoinMoin.Page.Page instance>, 'print_mode': False, 'sitename': u'Satops Wiki', 'title': u'UserPreferences'})

    1. 563 prefix = self.cfg.url_prefix
    2. 564 csshref = '%s/%s/css' % (prefix, self.name)
    3. 565 for media, basename in stylesheets:
    4. 566 href = '%s/%s.css' % (csshref, basename)
    5. 567 html.append(link % (self.stylesheetsCharset, media, href))
    • media = 'projection'
    • basename = 'projection'
    • stylesheets = (('all', 'common'), ('screen', 'screen'), ('print', 'print'), ('projection', 'projection'), ('starshine', 'iso-8859-1', 'screen', 'screen'))

ValueError

too many values to unpack

  • args = ('too many values to unpack',)

System Details

  • Date: Wed, 31 Oct 2007 14:31:44 +0000
  • Platform: Linux mcfmail 2.6.3-1-686 #2 Tue Feb 24 20:24:38 EST 2004 i686
  • Python: Python 2.4.4 (/usr/bin/python)
  • MoinMoin: Release 1.5.8 (release)

Attached Files

To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.
  • [get | view] (2007-10-31 14:55:15, 13.2 KB) [[attachment:wiki-bug-traceback.html]]
 All files | Selected Files: delete move to page copy to page

You are not allowed to attach a file to this page.