Re: Try this devel version, was: Re: [Zope] [zshell] ANN: 0.5 with wildcard expansion (fwd)
Jason, don't you have any DNS problem ? My mail server can't resolve your domain yet... On Wed, 9 May 2001, Jason Cunliffe wrote:
def testjaxml(self): versionstring = "jaxml version" + jaxml.__version__ x =jaxml.XML_document() x.sometag(what="testing") x.anestedtag(name="nested") x._text("Waiting for Godot") return x
This time it breaks:
The above testjaxml.py now works ok :-)
OK, anyway attached to this message you'll find an external method to test jaxml in Zope again !
Now at least I can focus on why zshell is not running on my system.
I don't use any particular setup, just plain old Zope compiled from source, on localhost:8080, tested both as anonymous and admin works fine here. PS: did the 0.6beta1 I've posted this morning solve the problem ? bye, Jerome Alet # to test jaxml in Zope import jaxml def testjaxml(self) : x = jaxml.HTML_document() if hasattr(self, "standard_html_header") : x._text("%s" % self.standard_html_header(self, self.REQUEST)) else : x.default_headers(title = "jaxml module test page") x.body(bgcolor="red") x.h3("This is a test page for the jaxml module version %s" % jaxml.__version__) x.a("Download", href="http://cortex.unice.fr/~jerome/jaxml/") x._text("the jaxml module") if hasattr(self, "standard_html_footer") : x._text("%s" % self.standard_html_footer(self, self.REQUEST)) return str(x)
OK, anyway attached to this message you'll find an external method to test jaxml in Zope again !
Thanks. your test taught me nice new jaxml syntax tricks anyway.. BTW Do you have any larger examples of using jaxml I could look at?
PS: did the 0.6beta1 I've posted this morning solve the problem ?
No. same behavior now I am looking at how your zshellscript mechanism works as this seeems to me what is not getting through. ./Jason
On Wed, May 09, 2001 at 01:24:29PM -0400, Jason Cunliffe wrote:
OK, anyway attached to this message you'll find an external method to test jaxml in Zope again !
Thanks. your test taught me nice new jaxml syntax tricks anyway..
BTW Do you have any larger examples of using jaxml I could look at?
it was written for: http://cortex.unice.fr/~jerome/scanerrlog/
now I am looking at how your zshellscript mechanism works as this seeems to me what is not getting through.
an idea: replace the computed form action= in showPrompt by an action="zshell" and tell me the results. bye, Jerome
participants (2)
-
Jason Cunliffe -
Jerome Alet