Please log in before editing, or are you looking for WikiSandBox, where you don't need to login?
Clear message
EditText
of this page
FindPage
by browsing, searching, or an index
Or try one of these actions:
DeletePage,
DeleteUploadedFile,
LikePages,
SpellCheck,
UploadFile
>
OSError | Python 2.2.1 /home/bin/python |
A problem occurred while running a Python script. Here is the sequence of function calls leading up to the error, with the most recent (innermost) call last.
171 try:
172 from MoinMoin.support import cgitb
cgitb = <module 'MoinMoin.support.cgitb' from '/home/hosting_users/jsbin/www/MoinMoin/support/cgitb.pyo'>, handler = <function do_edit>
174 except:
175 cgi.print_exception()
327
328 def do_edit(pagename, form):
329 Page(pagename).send_editor(form)
|
global Page = <class MoinMoin.Page.Page>, pagename = 'ISFJ', global send_editor = undefined, form = FieldStorage(None, None, [MiniFieldStorage('action', 'edit')])
330
331
354 if not config.access_requires_login and config.edit_requires_login and (self.page_name not in config.guestbook_page) and (not user.current.valid):
355 Page(self.page_name).send_page(form,
356 msg='<strong>%s</strong>' % user.current.text('''<b>Please <a href="UserPreferences">log in</a> before editing, or are you looking for <a href="WikiSandBox">WikiSandBox</a>, where you don't need to login?</b>''')) #%webapi.getScriptname()))
|
global msg = undefined, global user = <module 'MoinMoin.user' from '/home/hosting_users/jsbin/www/MoinMoin/user.pyo'>, global current = undefined, global text = undefined
357 #wikiutil.send_title('Edit Error',pagename=self.page_name)
358 #print '<b>Please <a href="/ns/moin.cgi/UserPreferences">log in</a> before editing</b>'
304 key = wikiutil.quoteFilename(self.page_name)
305 cache = caching.CacheEntry(arena, key)
306 if cache.needsUpdate(self._text_filename()):
|
cache = <MoinMoin.caching.CacheEntry instance>, global needsUpdate = undefined, self = <MoinMoin.Page.Page instance>, global _text_filename = undefined
307 links = self.formatter.pagelinks
308 links.sort()
48 try:
49 ctime = os.path.getmtime(self._filename())
50 ftime = os.path.getmtime(filename)
|
ftime = undefined, global os = <module 'os' from '/usr/local/python-2.2.1/lib/python2.2/os.pyo'>, global path = undefined, global getmtime = undefined, filename = '/home/hosting_users/jsbin/www/wiki/data/text/ISFJ'
51 except IOError:
52 return 1
142 def getmtime(filename):
143 """Return the last modification time of a file, reported by os.stat()."""
144 st = os.stat(filename)
|
st = undefined, global os = <module 'os' from '/usr/local/python-2.2.1/lib/python2.2/os.pyo'>, global stat = <module 'stat' from '/usr/local/python-2.2.1/lib/python2.2/stat.pyo'>, filename = '/home/hosting_users/jsbin/www/wiki/data/text/ISFJ'
145 return st[stat.ST_MTIME]
146
OSError: [Errno 2] No such file or directory: '/home/hosting_users/jsbin/www/wiki/data/text/ISFJ'
__doc__ = 'OS system call failed.'
__getitem__ = <bound method OSError.__getitem__ of <exceptions.OSError instance at 0x8234ea4>>
__init__ = <bound method OSError.__init__ of <exceptions.OSError instance at 0x8234ea4>>
__module__ = 'exceptions'
__str__ = <bound method OSError.__str__ of <exceptions.OSError instance at 0x8234ea4>>
args = (2, 'No such file or directory')
errno = 2
filename = '/home/hosting_users/jsbin/www/wiki/data/text/ISFJ'
strerror = 'No such file or directory'