-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
> Can you attach the Python that's generated from the PSP page? It
> probably will be more clear from that. I think that module should be in
> WebKit/Cache/PSP/
Ah yes... that might help wouldn't it =)
BTW... the stuff Im working on right now is for the Model2+1 wiki page =)
- --
Luke Holden
eBI Solutions
Main: (949) 387-5182
Email: [EMAIL PROTECTED]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE+G5vL3q5xXfLZTQkRAqVVAJ9lr7woGhN/Jb2zejQu0AA4UsRjeACgktKz
xEvug8SGAUU9meOS2/B5q30=
=hRTZ
-----END PGP SIGNATURE-----
from layout import SiteLayout
from Security.SecureMixIn import SecureMixIn
import WebKit
from WebKit import Page
__orig_file__ = '/home/alterself/public_html/SiteContext/test.psp'
import types
_baseClasses = []
if isinstance(SecureMixIn, types.ModuleType):
_baseClasses.append(SecureMixIn.SecureMixIn)
else:
_baseClasses.append(SecureMixIn)
if isinstance(SiteLayout, types.ModuleType):
_baseClasses.append(SiteLayout.SiteLayout)
else:
_baseClasses.append(SiteLayout)
class _home_alterself_public_html_SiteContext_test_psp(_baseClasses[0],_baseClasses[1]):
def canBeThreaded(self):
return 0
def canBeReused(self):
return 1
def awake(self,trans):
self.__class__.__bases__[0].awake(self, trans)
self.initPSP()
def __includeFile(self, filename):
self.write(open(filename).read())
def initPSP(self):
pass
def title(self):
return "Test page"
def writeScreen(self, transaction=None):
trans = self._transaction
res= trans.response()
req = trans.request()
_formatter = str
res.write("""
""")
res.write("""
Great! We are authorized!
""")
##footer