Re: [Zope] Presentations Available

2005-10-03 Thread Bill Campbell
stix.co.uk/presentations >> >>Have fun and let me know what you think! >> >>cheers, >> >>Chris >> >Chris, > >I notice your presentation files have a ".sxi" file extension. Anyway >to convert to something like pdfs? That's the na

Re: [Zope] Presentations Available

2005-10-03 Thread Bill Campbell
ftware is freely available, I don't see that it's a problem. Bill -- INTERNET: [EMAIL PROTECTED] Bill Campbell; Celestial Software LLC UUCP: camco!bill PO Box 820; 6641 E. Mercer Way FAX:(206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1676 URL: http:/

Re: [Zope] Zope 2.8 or 3.1?

2005-10-27 Thread Bill Campbell
for any add-ons you might install >into the Python used for Zope. We've been running Zope and Plone built under the OpenPKG.org portable packaging system for a couple of years now. The OpenPKG system avoids problems with vendor python and other packages. Bill -- INTERNET: [EMAIL PRO

Re: [Zope] Re: Question about Zope and security

2006-03-30 Thread Bill Campbell
ite. The site will be vulnerable to man-in-the-middle >attacks, but only for the duration of a session. I've done this using custom skins, copying the login_form and modifying it to use https when submitting. Bill -- INTERNET: [EMAIL PROTECTED] Bill Campbell; Celestial Software LLC URL:

Re: [Zope] Suggestion for an opensource barchart/piechart graphic package in python

2007-02-17 Thread Bill Campbell
which makes it pretty easy to create a wide variety of plots. Bill -- INTERNET: [EMAIL PROTECTED] Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way FAX:(206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1676 ``Perhaps, when

Re: [Zope] Suggestion for an opensource barchart/piechart graphic package in python

2007-02-17 Thread Bill Campbell
On Sat, Feb 17, 2007, Marco Bizzarri wrote: >On 2/17/07, Bill Campbell <[EMAIL PROTECTED]> wrote: >>On Sat, Feb 17, 2007, Marco Bizzarri wrote: >>>Hi all. >>> >>>I'm looking for an alternative to python gdchart for barchart/piechart >>>in a w

Re: [Zope] tunneling via ...

2007-09-28 Thread Bill Campbell
then run zope on a private interface? Bill -- INTERNET: [EMAIL PROTECTED] Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way FAX:(206) 232-9186 Mercer Island, WA 98040-0820; (206) 236-1676 there is nothing more difficult to tak

Re: [Zope] python script, from string to dictionary.

2008-02-06 Thread Bill Campbell
On Thu, Feb 07, 2008, Stefano Guglia wrote: >hello! > >I converted a dictionary in a string, and now I need to change back the >same string as a dictionary in a zope python script. s = repr(d) newdict = eval(s) Bill -- INTERNET: [EMAIL PROTECTED] Bill Campbell; Celestial Soft

Re: [Zope] kicked off list

2008-11-21 Thread Bill Campbell
SRBLs, or sick Exchange servers (is there any other kind :-) Bill -- INTERNET: [EMAIL PROTECTED] Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way Voice: (206) 236-1676 Mercer Island, WA 98040-0820 Fax:(206) 232-9186 E

Re: [Zope] Zope2 and XMLRPC methods

2009-02-17 Thread Bill Campbell
er version of zope, but the following is working for me using xmlrpclib. from xmlrpclib import ServerProxy baseurl = 'http://username:passw...@host.example.com:8080/' server = ServerProxy(baseurl + 'some/path') results = server.myFunction() # arguments as necessary Perhaps this i