Re: [Zope-dev] SkinScript, and family

2000-09-09 Thread Steve Alexander

Bill Anderson wrote:

 Steve Spicklemire wrote:
  
  Hi Bill,
  
 I doubt that skinscript is going to help with 'potentially
  complicated calculations'.
 
 After looking, I don't think it wil either.
 
 I am building statistics of of a call Tracking System. For example, each
 ticket has a response time property, and one of the graphs needs average
 response time.
 
 Looks like PythonMehtods is the winner


Well, I'd start by using a CatalogingTrigger that responds to events 
related to your Tickets, and records the ticket_id, ticket_date and 
response_time in a ResopnseTimes ZCatalog.

Then, I'd use ZCatalog queries to get average response times for various 
periods of time.

I can't see a use for SkinScript in there, though :-)

ps. I am working on a skin script howto. Expect to see something after I 
return from a conference on Monday.

--
Steve Alexander
Software Engineer
Cat-Box limited
http://www.cat-box.net


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




[Zope-dev] Calendar Tag 0.9.21 released

2000-09-09 Thread IbaƱez Palomar Juan David



Hi all,

The version 0.9.21 of the calendar tag has been released, it can be
downloaded from "http://www.zope.org/Members/jdavid/Calendar".

This is a beta version, pre-1.0. If you're aware of any bug or want
a *small* change to be done in 1.0 tell me now (hope to release 1.0
and start 1.1.x soon).


regards,
david

___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




[Zope-dev] PATH_TRANSLATED delimted with backslash ?

2000-09-09 Thread Steve Alexander

I just tried out on Windows 98 a Zope application that was developed on
Linux.

Everything worked fine, except that REQUEST.PATH_TRANSLATED changed to
be delimited by backslashes on Windows 98, whereas it is delimited by
slashes on Linux.

This caught me out, as I'd been using it raw in an external method:

  obj = self.restrictedTraverse(REQUEST.PATH_TRANSLATED)

This stopped working when I tried the software on Windows.

Bug or feature?

--
Steve Alexander
Software Engineer
Cat-Box limited
http://www.cat-box.net

___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )




Re: [Zope-dev] PATH_TRANSLATED delimted with backslash ?

2000-09-09 Thread Evan Simpson

From: "Steve Alexander" [EMAIL PROTECTED]
   obj = self.restrictedTraverse(REQUEST.PATH_TRANSLATED)

 This stopped working when I tried the software on Windows.

 Bug or feature?

I'm not sure, but I'm *very* curious what you're trying to accomplish with
this code.  A better equivalent would probably be obj =
self.getPhysicalRoot().restrictedTraverse(REQUEST.steps).

Cheers,

Evan @ digicool  4-am


___
Zope-Dev maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
**  No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope )