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/user/workspace/moin-1.7/MoinMoin/request/__init__.py
in run
(self=<MoinMoin.request.request_standalone.Request object at 0x1016190>)
- 1305 self.page.send_page()
- 1306 else:
- 1307 handler(self.page.page_name, self)
- 1308
- 1309 # every action that didn't use to raise MoinMoinFinish must call this now:
- handler
= <function execute at 0xee9b90>
- self
= <MoinMoin.request.request_standalone.Request object at 0x1016190>
- self.page
= <MoinMoin.Page.Page object at 0x10161d0>
- self.page.page_name
= u'SyncJob'
/home/user/workspace/moin-1.7/MoinMoin/action/SyncPages.py
in execute
(pagename=u'SyncJob', request=<MoinMoin.request.request_standalone.Request object at 0x1016190>)
- 492
- 493
- 494 def execute(pagename, request):
- 495 ActionClass(pagename, request).render()
- 496
- global
ActionClass
= <class 'MoinMoin.action.SyncPages.ActionClass'>
- pagename
= u'SyncJob'
- request
= <MoinMoin.request.request_standalone.Request object at 0x1016190>
- ).render undefined
/home/user/workspace/moin-1.7/MoinMoin/action/SyncPages.py
in render
(self=<MoinMoin.action.SyncPages.ActionClass object at 0x1016210>)
- 188 local = MoinLocalWiki(self.request, params["localPrefix"], params["pageList"])
- 189 try:
- 190 remote = MoinRemoteWiki(self.request,
params["remoteWiki"], params["remotePrefix"], params["pageList"],
params["user"], params["password"], verbose=debug)
- 191 except (UnsupportedWikiException, NotAllowedException), (msg, ):
- 192 raise ActionStatus(msg, "error")
- remote undefined
- global
MoinRemoteWiki
= <class 'MoinMoin.wikisync.MoinRemoteWiki'>
- self
= <MoinMoin.action.SyncPages.ActionClass object at 0x1016210>
- self.request
= <MoinMoin.request.request_standalone.Request object at 0x1016190>
- params = {'direction': 1, 'groupList': None,
'localPrefix': u'TestWiki/', 'pageList': None, 'pageMatch':
<_sre.SRE_Pattern object at 0xdedbb0>, 'password': None,
'remotePrefix': '', 'remoteWiki': u'LinuxWikiIcg', 'user': u'TestUser1'}
- verbose undefined
- global
debug
= False
/home/user/workspace/moin-1.7/MoinMoin/wikisync.py
in __init__
(self=<MoinRemoteWiki
wiki_url=u'http://lwikiserver/linuxwiki'
valid=True>, request=<MoinMoin.request.request_standalone.Request
object at 0x1016190>, interwikiname=u'LinuxWikiIcg', prefix='',
pagelist=None, user=u'TestUser1', password=None, verbose=False)
- 178
- 179 try:
- 180 iw_list = self.connection.interwikiName()
- 181 except socket.error:
- 182 raise UnsupportedWikiException(_("The wiki is currently not reachable."))
- iw_list undefined
- self
= <MoinRemoteWiki wiki_url=u'http://lwikiserver/linuxwiki' valid=True>
- self.connection
= <ServerProxy for lwikiserver/linuxwiki?action=xmlrpc2>
- self.connection.interwikiName
= <_Method instance>
/usr/lib64/python2.5/xmlrpclib.py
in __call__
(self=<_Method instance>, *args=())
- 1145 return _Method(self.__send, "%s.%s" % (self.__name, name))
- 1146 def __call__(self, *args):
- 1147 return self.__send(self.__name, args)
- 1148
- 1149 ##
- self
= <_Method instance>
- self.__send
= <_Method instance>
- self.__name
= <_Method instance>
- args
= ()
/usr/lib64/python2.5/xmlrpclib.py
in __request
(self=<ServerProxy for lwikiserver/linuxwiki?action=xmlrpc2>, methodname='interwikiName', params=())
- 1435 self.__handler,
- 1436 request,
- 1437 verbose=self.__verbose
- 1438 )
- 1439
- verbose undefined
- self
= <ServerProxy for lwikiserver/linuxwiki?action=xmlrpc2>
- self.__verbose
= <_Method instance>
/usr/lib64/python2.5/xmlrpclib.py
in request
(self=<xmlrpclib.Transport instance at 0x101cdd0>,
host=u'lwikiserver',
handler=u'/linuxwiki?action=xmlrpc2', request_body="<?xml
version='1.0'?>\n<methodCall>\n<methodName>i...me</methodName>\n<params>\n</params>\n</methodCall>\n", verbose=False)
- 1189 host + handler,
- 1190 errcode, errmsg,
- 1191 headers
- 1192 )
- 1193
- headers
= <httplib.HTTPMessage instance at 0x101cf38>