[Zope-dev] Zope Tests: 4 OK, 1 Failed

2008-01-02 Thread Zope Tests Summarizer
Summary of messages to the zope-tests list. Period Tue Jan 1 12:00:00 2008 UTC to Wed Jan 2 12:00:00 2008 UTC. There were 5 messages: 5 from Zope Unit Tests. Test failures - Subject: FAILED (failures=1) : Zope-trunk Python-2.4.4 : Linux From: Zope Unit Tests Date: Tue Jan 1

Re: [Zope-dev] Finding modification time for a specific file

2008-01-02 Thread Christian Theune
Hi, Am Sonntag, den 30.12.2007, 11:35 -0800 schrieb Saurabh Bagchi: I would like to do the following for a specific file, call it addMember.xls: 1) Print the name of the file. 2) By the side of the file, print its modification time. I can do this for all the files in the folder, but not

[Zope-dev] Notify event for getWSGIApplication?

2008-01-02 Thread Yusei TAHARA
Hello, I'd like to add a new event for getWSGIApplication. (the name is like WSGIPublisherApplicationCreatedEvent?) Because, now zope3 uses no particular web server but can use any wsgi server and I'd like to make a internal webserver calling facility with a generic way. I'd appreciate any

[Zope-dev] Tutorial on SQLScript - Feedback solicited

2008-01-02 Thread kevin gill
I found that there is a lack of documentation for using SQLScript with Zope3. SQLAlchemy is newer and exciting and SQLScript is mostly ignored. This is unfortunate as it works well and is well known to Zope2 developers. I have made an attempt to redress the balance by adding a page on it to the

RE: [Zope] Re: Best Practice for including Javascript inZope Applications

2008-01-02 Thread Matt Hollingsworth
Andreas Jung wrote: ... Larger JS frameworks like Dojo tend to be split across several files and directories. The fun starts when such frameworks load/reload stuff using relative URLs. A co-worker using Dojo intensively had to invest some time in order to integrate such a JS monster

Re: [Zope] Best Practice for including Javascript in Zope Applications

2008-01-02 Thread Tom Von Lahndorff
On Jan 1, 2008, at 7:20 PM, Matt Hollingsworth wrote: Hello, I’m new to developing for zope, and I have a quick question regarding some best practices when using Javascript in zope applications. I would like to use Ext JS (http://www.extjs.com/ ) in an application that I am writing.

[Zope] Defining a Variable

2008-01-02 Thread Victor Subervi
Hi; I have this in a page template: html body table tr td tal:define=num python:here.scripts.getQuote span metal:use-macro=here/en-us/quotes/?num/macros/quote /br / div align=center span class=text a href=quotes.pt target=_topbThe quotes/b/a /span /div /td /tr /table

Re: [Zope] Defining a Variable

2008-01-02 Thread Andreas Jung
--On 2. Januar 2008 14:44:24 -0400 Victor Subervi [EMAIL PROTECTED] wrote: td tal:define=num python:here.scripts.getQuote As in nearly all other programming languages methods are called with parentheses - or? span metal:use-macro=here/en-us/quotes/?num/macros/quote /br / Now,

Re: [Zope] Best Practice for including Javascript in Zope Applications

2008-01-02 Thread Tim Nash
I am writing an application that uses extjs as the front end and zope on the back and they work together really well. I am using a webserver to server the extjs library and everything else comes out of zope. So far I have had no trouble with relative links or files broken up in different

RE: [Zope] Best Practice for including Javascript in Zope Applications

2008-01-02 Thread Matt Hollingsworth
Yep! I have had very good luck with it so far; my little hack that I posted works like a (klutzy) charm and ExtJS is great with zope. The ExtJS folks are very well organized, and the library is quite powerful. It's working great. However, my application doesn't have quite the segregation that

[Zope] looking for an easier way

2008-01-02 Thread David Bear
I'm writing an exteranl method to store data into a sql data base. In my first attempts to do this I just had an external method dump whatever zope gave it to a text file, then looked. I came up with the following to split up the data the zope handed the external method and store it an sql. This

Re: [Zope] looking for an easier way

2008-01-02 Thread Jonathan
- Original Message - From: David Bear [EMAIL PROTECTED] To: zope Zope@zope.org Sent: Wednesday, January 02, 2008 6:10 PM Subject: [Zope] looking for an easier way There must be an easier way to 'know' what zope is giving me and grab the correct dictionary that has the form data in it.