Re: Flow Database stuff ( The new FOM? )

2003-07-11 Thread Jeremy Quinn
On Thursday, July 10, 2003, at 09:04 AM, Reinhard Pötz wrote: IMO no. I would use Object/Relational mapping tools like OJB http://db.apache.org/ojb/ or Hibernate (http://hibernate.bluemars.net). Is there a wiki somewhere on this type of thing? http://wiki.cocoondev.org/

Re: Flow Database stuff ( The new FOM? )

2003-07-14 Thread Jeremy Quinn
On Sunday, July 13, 2003, at 10:30 AM, Reinhard Pötz wrote: From: Jeremy Quinn [mailto:[EMAIL PROTECTED] By passing a Bean persisted by Hibernate from the flow layer to the view layer, you are implementing SoC by allowing the view layer to decide what is relevant for that view. This aspect

Re: Flow Database stuff ( The new FOM? )

2003-07-14 Thread Jeremy Quinn
On Sunday, July 13, 2003, at 10:40 AM, Reinhard Pötz wrote: However, once you have triggered the view layer with SendPageAndWait(), control does not return to the flow layer until the Response has been sent and the next Request received, thus loosing you the opportunity to close the Hibernate

Re: Flow Database stuff ( The new FOM? )

2003-07-14 Thread Jeremy Quinn
On Monday, July 14, 2003, at 04:39 PM, Hugo Burm wrote: -Original Message- From: Jeremy Quinn [mailto:[EMAIL PROTECTED] Sent: Monday, July 14, 2003 3:43 PM To: [EMAIL PROTECTED] Subject: Re: Flow Database stuff ( The new FOM? ) On Sunday, July 13, 2003, at 10:40 AM, Reinhard Pötz

Re: Flow Database stuff ( The new FOM? )

2003-07-15 Thread Jeremy Quinn
On Tuesday, July 15, 2003, at 07:21 AM, Reinhard Pötz wrote: From: Jeremy Quinn What I do not grok ATM, how does the Hibernate Session automatically get closed at the appropriate time (ie. after the view layer has completed)? IIU the current flow implementation correctly you have no chance

Re: Flow Database stuff ( The new FOM? )

2003-07-15 Thread Jeremy Quinn
On Tuesday, July 15, 2003, at 08:28 AM, Christopher Oliver wrote: Reinhard Pötz wrote: From: Christopher Oliver [mailto:[EMAIL PROTECTED] snip catch (break) { // a continuation is being captured, // code to handle that goes here releaseSession(); } ... and this is

Re: [flow] session creation

2003-07-16 Thread Jeremy Quinn
On Tuesday, July 15, 2003, at 05:43 PM, Christopher Oliver wrote: Jeremy Quinn wrote: On Tuesday, July 15, 2003, at 02:19 PM, Vadim Gritsenko wrote: snip/ While I do actually use Continuations in some functions, I strenuously avoid keeping any other 'app state' in Global variables, so

Re: Woody or JXForms? + hibernate or * ?

2003-07-16 Thread Jeremy Quinn
On Tuesday, July 15, 2003, at 09:53 PM, Antonio Gallardo wrote: Hi: I want to try some of the new spectacular technologies sported in Cocoon :) I also will play with persistent data. The idea is to create a simple database application using postgres as storage of persistent data. After

Re: Accessing public static final constants from JXTemplate

2003-08-11 Thread Jeremy Quinn
On Friday, August 8, 2003, at 08:26 PM, Hunsberger, Peter wrote: Jeremy Quinn [EMAIL PROTECTED] responds: On Friday, August 8, 2003, at 07:56 PM, Hunsberger, Peter wrote: Jeremy Quinn [EMAIL PROTECTED] asks: I have a class called Constants, that is like this: public final class Constants

MIDI .... wow!!!

2003-08-14 Thread Jeremy Quinn
I just updated Cocoon, and took a wizz around the samples In the MIDI section, I clicked on A Short MIDI File, and it played in my browser =:-() I NEARLY DROPPED MY CHIPS ! Well done!!! It reminds me of something I never got to contribute to Cocoon 1, I had made a set of XSLT

Flow + Hibernate sample offer

2003-08-14 Thread Jeremy Quinn
Dear All, I have just been given permission by my client inIVA.org to open source the application I have been writing for them for editing their SQL dataset (their Archive on http://www.iniva.org/archive). My hope is that this could constitute a sample of working with FlowScript + JX +

Re: Accessing public static final constants from JXTemplate

2003-08-14 Thread Jeremy Quinn
On Friday, August 8, 2003, at 08:36 PM, Hunsberger, Peter wrote: Jeremy Quinn [EMAIL PROTECTED] writes: OK, thats a bit clearer ;) But I still don't understand how I would go about using these constants from inside JXTemplate XPath expressions. I don't use JXTemplate, but I assume you've got

[OT] java[script]doc

2003-08-14 Thread Jeremy Quinn
Hi All, Does anyone know if there is an equivalent to the javadoc tool for JavaScript files? I'd love to pump out nice html docs for my commented flowscripts ;) Thanks for any suggestions regards Jeremy

Re: [ANN] Apache Cocoon 2.1 Release Candidate

2003-08-14 Thread Jeremy Quinn
On Thursday, July 31, 2003, at 01:27 PM, Stefano Mazzocchi wrote: On Thursday, Jul 31, 2003, at 14:05 Europe/Rome, Nicola Ken Barozzi wrote: Steven Noels wrote, On 31/07/2003 13.32: On 31/07/2003 13:27 Stefano Mazzocchi wrote: I removed references to the publishing framework and added a CSS

Accessing public static final constants from JXTemplate

2003-08-14 Thread Jeremy Quinn
Hi All, I have a class called Constants, that is like this: public final class Constants { public static final String FAILURE = Failed; public static final String CANCEL_ACTION = Cancelled; // etc. } I wish to share this between my Java 'biz logic', my FlowScripts and

converting FlowApp to new FOM

2003-08-14 Thread Jeremy Quinn
Hi All, I am in the process of converting a flow app written for Cocoon2.1RC1 to the new FOM. The first problem I face is with the Request Object. My helper Java Classes have been written to take an org.apache.cocoon.environment.Request Object, but now my flowscripts are not able to pass

Re: [OT] java[script]doc

2003-08-14 Thread Jeremy Quinn
On Tuesday, August 12, 2003, at 12:36 PM, Bertrand Delacretaz wrote: Le Mardi, 12 aoû 2003, à 12:09 Europe/Zurich, Jeremy Quinn a écrit : Does anyone know if there is an equivalent to the javadoc tool for JavaScript files? Did you try the qdox block? I have no idea if it would work, dunno how

Re: converting FlowApp to new FOM

2003-08-14 Thread Jeremy Quinn
On Wednesday, August 13, 2003, at 12:47 PM, Reinhard Pötz wrote: Jeremy, I've never tried it but if I understood Chris correctly you can call the method form.populate( cocoon.request); in your flow, and object of the type org.apache.cocoon.environment.Request is available in your java class

Re: converting FlowApp to new FOM

2003-08-14 Thread Jeremy Quinn
On Wednesday, August 13, 2003, at 02:00 PM, Sylvain Wallez wrote: Jeremy Quinn wrote: snip/ I just converted all my classes to use the org.apache.cocoon.components.flow.javascript.fom.FOM_Cocoon.FOM_Reques t. jsFunction_getParameter (String name) method, and they appear to be working

Re: accessing a HashMap from JXTemplate

2003-08-14 Thread Jeremy Quinn
On Friday, August 8, 2003, at 11:17 PM, Christopher Oliver wrote: Try this: #{form/errors[/constants/NAME_FIELD]} Yes, many thanks Christopher Thats what I woke up with in my head this morning . regards Jeremy

Re: Flow + Hibernate sample offer

2003-08-15 Thread Jeremy Quinn
On Thursday, August 14, 2003, at 06:29 PM, Vadim Gritsenko wrote: Jeremy Quinn wrote: Dear All, ... My hope is that this could constitute a sample of working with FlowScript + JX + Hibernate. It would not be otherwise useful to anyone, because it all depends on inIVA's copious data (which

Re: Flow + Hibernate sample offer

2003-08-15 Thread Jeremy Quinn
On Friday, August 15, 2003, at 04:37 PM, Sylvain Wallez wrote: Steven Noels wrote: Vadim Gritsenko wrote: I meant your code (if any) which has imports of hybernate packages. I'm not sure that it can have ASL/BSD license. If it's stored in Apache CVS and redistributed with Cocoon, it can't.

HttpSessionBindingEvent

2003-08-16 Thread Jeremy Quinn
Hi All Sorry, this is part of the Servlet spec I have had little use for in the past. I don't think HttpSessionBindingListener/HttpSessionBindingEvents are available in Cocoon, but I think they are supposed to be the way to solve a problem I have. I am planning a Job Manager, shared by a

Re: HttpSessionBindingEvent

2003-08-17 Thread Jeremy Quinn
On Saturday, August 16, 2003, at 09:51 PM, Sylvain Wallez wrote: Jeremy Quinn wrote: Hi All Sorry, this is part of the Servlet spec I have had little use for in the past. I don't think HttpSessionBindingListener/HttpSessionBindingEvents are available in Cocoon, but I think they are supposed

[OT] CVS version strings

2003-08-18 Thread Jeremy Quinn
Hi All, I like the trick in the Cocoon source code whereby the CVS version, date and committer username is embedded in the source files. I would like to do the same with one of my repositories. How does this get inserted into our files, and kept up to date? : eg. * @version CVS $Id:

Re: [OT] CVS version strings

2003-08-18 Thread Jeremy Quinn
On Monday, August 18, 2003, at 02:39 PM, Christian Haul wrote: On 18.Aug.2003 -- 01:39 PM, Jeremy Quinn wrote: Hi All, I like the trick in the Cocoon source code whereby the CVS version, date and committer username is embedded in the source files. I would like to do the same with one of my

Re: can you reach sitemap params from JXTemplate?

2003-08-20 Thread Jeremy Quinn
On Wednesday, August 20, 2003, at 06:11 PM, Sylvain Wallez wrote: Jeremy Quinn wrote: Hi All Does anyone know the correct syntax for getting a Sitemap parameter in JXTemplate? I have tried all of the following: #{cocoon/parameters[publishedJobServer]} #{cocoon/parameters/publishedJobServer

Re: can you reach sitemap params from JXTemplate?

2003-08-20 Thread Jeremy Quinn
Message- From: Jeremy Quinn [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 4:35 PM To: [EMAIL PROTECTED] Subject: can you reach sitemap params from JXTemplate? Hi All Does anyone know the correct syntax for getting a Sitemap parameter in JXTemplate? I have tried all of the following

Any interest in a JobManager?

2003-08-21 Thread Jeremy Quinn
Hi All, For my current client, I have implemented a JobManager and I am wondering if it is general enough to be of interest to anyone else (ie. commit it to Cocoon as a Block). It is not a proper avalon component yet, so I would have to do this first. The problem I needed to solve was this:

Re: can you reach sitemap params from JXTemplate?

2003-08-21 Thread Jeremy Quinn
On Thursday, August 21, 2003, at 02:10 AM, Christopher Oliver wrote: This is how you do it: #{$parameters.getParameter(publishedJobServer)} results in : org.apache.commons.jxpath.JXPathException: Invalid XPath: '$parameters.getParameter(\publishedJobServer\)'. Syntax error after: '$p'

Re: can you reach sitemap params from JXTemplate?

2003-08-21 Thread Jeremy Quinn
On Thursday, August 21, 2003, at 10:27 AM, Unico Hommes wrote: What build are you using. This wasn't working a few weeks ago but has been fixed. 2.1.1-dev, a couple of days old. regards Jeremy

Re: can you reach sitemap params from JXTemplate?

2003-08-22 Thread Jeremy Quinn
On Friday, August 22, 2003, at 10:10 AM, Giacomo Pati wrote: Ok, the sitemap parameters specified on the flow pipeline are not accessible from the view pipeline (you should have got an Exception The parameter 'status' does not contain a value). The view pipeline gets its on set of parameters

Re: Inclusion of the Calendar Popup in Apache Cocoon

2003-09-01 Thread Jeremy Quinn
On Sunday, August 31, 2003, at 03:37 PM, Sylvain Wallez wrote: Antonio Gallardo wrote: Sylvain Wallez dijo: [For cocoon-dev] I asked Matt Kruse about the inclusion of his nice JavaScript calendar popup (http://www.mattkruse.com/javascript/calendarpopup/) into Cocoon. He answered very

Re: Flow debugger not showing local variables

2003-09-03 Thread Jeremy Quinn
On Wednesday, September 3, 2003, at 03:52 PM, Timothy Larson wrote: The Cocoon flow debugger works well except it is not showing any local variables in the Locals tab. Does anybody else have this problem? Yes. Although I just thought I was using the debugger incorrectly :) Platform: MacOSX

Re: [Vote] Antonio Gallardo and Tony Collen as Cocoon committers

2003-09-11 Thread Jeremy Quinn
On Thursday, September 11, 2003, at 06:38 AM, David Crossley wrote: I propose Antonio Gallardo and Tony Collen to be Cocoon committers. They have both been contributing lots of stuff and discussion on both cocoon-dev and cocoon-users since mid-2002. Here is my +1 for both. --David Nice one Guys

Re: [VOTE] Keep the docs list for wiki updates only

2003-09-23 Thread Jeremy Quinn
On Tuesday, September 23, 2003, at 06:49 AM, Bertrand Delacretaz wrote: Just being slightly formal here to give everyone a chance to vote - I think we have consensus already. I have turned +1s to the proposal into votes below, please yell if you want to change your mind. The question on which

Re: [Vote] Releasing next version

2003-09-24 Thread Jeremy Quinn
On Wednesday, September 24, 2003, at 10:05 AM, Carsten Ziegeler wrote: a) Make a 2.1.2 release on October, 1th +1 regards Jeremy

Re: on better release and version management

2003-09-24 Thread Jeremy Quinn
On Wednesday, September 24, 2003, at 02:09 PM, Giacomo Pati wrote: On Wed, 24 Sep 2003, Stefano Mazzocchi wrote: On Tuesday, Sep 23, 2003, at 22:38 Europe/Rome, Berin Loritsch wrote: I would highly recommend steering away from the use of the word certified unless you intend to establish a

Re: setup method inside transformers, Performance?

2003-09-25 Thread Jeremy Quinn
On Wednesday, September 24, 2003, at 04:33 PM, Vadim Gritsenko wrote: Bruno Dumon wrote: On Wed, 2003-09-24 at 15:51, [EMAIL PROTECTED] wrote: Hi, does anybody have any idea why calling the setup method for some transformers (like the stylesheet transfomer) takes up to 200 milliseconds? The

Re: on better release and version management

2003-09-25 Thread Jeremy Quinn
On Wednesday, September 24, 2003, at 04:29 PM, Reinhard Poetz wrote: From: Stefano Mazzocchi On Tuesday, Sep 23, 2003, at 22:38 Europe/Rome, Berin Loritsch wrote: I would highly recommend steering away from the use of the word certified unless you intend to establish a standards body to oversee

Re: on better release and version management

2003-09-25 Thread Jeremy Quinn
On Wednesday, September 24, 2003, at 08:46 PM, Timothy Larson wrote: Which solution should I select : Woody or JXForms? FOP or iText? Just look at the activity to determine the health of a module/block. Exactly. Of course, no measure is going to be perfect, but something like this could help.

Re: setup method inside transformers, Performance?

2003-09-25 Thread Jeremy Quinn
On Thursday, September 25, 2003, at 01:21 PM, Vadim Gritsenko wrote: Jeremy Quinn wrote: On Wednesday, September 24, 2003, at 04:33 PM, Vadim Gritsenko wrote: Bruno Dumon wrote: On Wed, 2003-09-24 at 15:51, [EMAIL PROTECTED] wrote: Hi, does anybody have any idea why calling the setup method

Talk by TBL

2003-09-28 Thread Jeremy Quinn
Hi All There is a talk by Tim Berners-Lee at The Royal Society: http://www.royalsoc.ac.uk/live/ The Future of the World Wide Web. enjoy regards Jeremy

Jetty startup error with 2.1.3-dev

2003-10-02 Thread Jeremy Quinn
Hi Guys I have been trying to get Cocoon 2.1.3-dev up and running since the release of 2.1.2 and so far it fails. The build is successful, but I get this error in Jetty: [tintin:~/Checkouts/Secure/cocoon-2.1] jermq% ./build.sh webapp . BUILD SUCCESSFUL Total time: 7 minutes 20 seconds

Re: [vote] Change in block file-system layout

2003-10-02 Thread Jeremy Quinn
On Thursday, October 2, 2003, at 03:30 PM, Stefano Mazzocchi wrote: As emerged with the discussion on Merlin Blocks vs. Cocoon Blocks, it has been asked that we avoid collission by moving our proprietary information on a different location. So, as Berin suggested, vote on the proposed change:

Brilliant GT!

2003-10-08 Thread Jeremy Quinn
Thanks all for a brilliant GT! It was great to put faces to names etc. Those of you who spoke it would be very cool if you could go to the wiki page we made of your talk, and fill in any gaps (lots ;) or link to your talk, if it is online somewhere. Many thanks regards Jeremy

Re: Whiteboard Tool (was: [RT] FirstFriday - monthly virtual Hackathon (wiki pages))

2003-10-13 Thread Jeremy Quinn
On Thursday, October 9, 2003, at 09:58 AM, Bertrand Delacretaz wrote: Le Jeudi, 9 oct 2003, à 10:41 Europe/Zurich, Reinhard Poetz a écrit : ...Which tool do you guys recommend? I prefer something that works for all platforms and doesn't require hours of registration or installation and is

Re: [OT] Digital Video Amarcord

2003-10-14 Thread Jeremy Quinn
On Saturday, October 11, 2003, at 03:19 AM, Antonio Gallardo wrote: Great job Stefano! I hope soon we will be able to download it from the Apache website! ;) One thought If we have jpegs or gifs of the slides used in the presentations, we could provide the movies wrapped as interactive

Re: [OT] Digital Video Amarcord

2003-10-15 Thread Jeremy Quinn
On Tuesday, October 14, 2003, at 08:47 PM, Stefano Mazzocchi wrote: On Tuesday, Oct 14, 2003, at 18:37 Europe/Rome, Andrew Savory wrote: On Tue, 14 Oct 2003, Stefano Mazzocchi wrote: that would rock. don't know if there is a SMIL player for linux, though. Realplayer8 will (just about) do it.

Re: [OT] Digital Video Amarcord

2003-10-15 Thread Jeremy Quinn
On Saturday, October 11, 2003, at 11:29 AM, Stefano Mazzocchi wrote: Actually, know what? the encoding is so slow that I could transfer while encoding hmmm, does anybody know how to do this? like a SSH-thru symlink? Just a thought . it's probably too late now . The MacOSX Finder

Re: Finished Video Processing

2003-10-15 Thread Jeremy Quinn
On Wednesday, October 15, 2003, at 03:06 PM, Berin Loritsch wrote: Steven Noels wrote: Stefano Mazzocchi wrote: www.divx.com, easy enough ;-) On MacOSX, I'm quite happy with http://mplayerosx.sourceforge.net/, and mplayer on Linux seems to be doing a good job on Bruno's laptop. Doesn't help me

Re: Finished Video Processing

2003-10-16 Thread Jeremy Quinn
On Thursday, October 16, 2003, at 12:18 AM, Stefano Mazzocchi wrote: On Wednesday, Oct 15, 2003, at 18:27 Europe/Rome, Jeremy Quinn wrote: On Wednesday, October 15, 2003, at 03:06 PM, Berin Loritsch wrote: Steven Noels wrote: Stefano Mazzocchi wrote: www.divx.com, easy enough ;-) On MacOSX

Re: Menus should work now on MAC

2003-10-16 Thread Jeremy Quinn
On Thursday, October 16, 2003, at 08:28 AM, Christopher Kohlhaas wrote: There is a mozilla bug with menubars on mac http://bugzilla.mozilla.org/show_bug.cgi?id=210204 but i've made a workaround in the online-demo of wobzilla. Sure the menus behave a bit, lets say odd, but they work. Think it

Re: Finished Video Processing

2003-10-17 Thread Jeremy Quinn
On Thursday, October 16, 2003, at 02:29 PM, Andrew Savory wrote: On Thu, 16 Oct 2003, Stefano Mazzocchi wrote: Andrew knows a lot about SMIL, any suggestion there? We shouldn't need to specify audio separately if it's in the video. It should just work. Of course, it'd be lovely if we had audio

Re: [VOTE] Unico Hommes as a Cocoon/Forrest Committer [was: Re: [VOTE] Unico Hommes as a Forrest Committer]

2003-10-18 Thread Jeremy Quinn
On Friday, October 17, 2003, at 01:50 PM, Steven Noels wrote: Nicola Ken Barozzi wrote: I propose Unico Hommes as a Cocoon committer. +1 Welcome aboard!! regards Jeremy

Re: Finished Video Processing

2003-10-19 Thread Jeremy Quinn
Sorry, this email took 4 days to arrive, my feckwit of an ISP appears to lurch from one email disaster to the next. On Thursday, October 16, 2003, at 02:06 PM, Stefano Mazzocchi wrote: On Thursday, Oct 16, 2003, at 13:17 Europe/Rome, Jeremy Quinn wrote: On Thursday, October 16, 2003, at 11:05

Re: Finished Video Processing

2003-10-19 Thread Jeremy Quinn
On Sunday, October 19, 2003, at 01:29 PM, David Crossley wrote: Jeremy Quinn wrote: snip/ I ought to have a go at separating the audio and video tracks ... I just tried with mplayer -dumpaudio on Linux, but failed ... i think my installation to blame. Hmm interesting MacOSX QuickTime 6.4

Re: Whiteboard Tool (was: [RT] FirstFriday - monthly virtual Hackathon (wiki pages))

2003-10-20 Thread Jeremy Quinn
On Monday, October 13, 2003, at 01:53 PM, Arje Cahn wrote: If any of you are interested in working with me on this, please get in touch. I can install any specific server software here jerm.dyndns.org we might need (as long as it runs on MacOSX). Count me in for client testing, Jeremy. If there's

NPEs in FlowLayer

2003-10-29 Thread Jeremy Quinn
Hi All I am getting mysterious NPEs in the flowlayer, while working with the flow version of 'authentication-fw'. Not only are they odd, they are completely inconsistent. They tend to happen after a script redirects after eg. a bad login. eg.

'dispose' method of component

2003-10-29 Thread Jeremy Quinn
Hi All I am working with the 'authentication-fw' in FlowScript, having added an authenticator that uses Hibernate. ie. My authentication pipeline is now a FlowScript which calls an internal pipeline to produce the authentication XML for the framework. I am finding that the 'dispose' method

Re: NPEs in FlowLayer

2003-10-29 Thread Jeremy Quinn
On Wednesday, October 29, 2003, at 12:10 PM, Ugo Cei wrote: Jeremy Quinn wrote: Hi All I am getting mysterious NPEs in the flowlayer, while working with the flow version of 'authentication-fw'. Not only are they odd, they are completely inconsistent. They tend to happen after a script

Re: NPEs in FlowLayer

2003-10-29 Thread Jeremy Quinn
On Wednesday, October 29, 2003, at 05:10 PM, Christopher Oliver wrote: Can you recreate this problem with a simple example you can post to the list? I'll do my best to Thanks regards Jeremy Jeremy Quinn wrote: On Wednesday, October 29, 2003, at 04:28 PM, Ugo Cei wrote: Jeremy Quinn

Re: 'dispose' method of component

2003-10-29 Thread Jeremy Quinn
On Wednesday, October 29, 2003, at 01:40 PM, Giacomo Pati wrote: Hi Jeremy Jeremy Quinn wrote: snipped public class HibernateFactory extends AbstractLogEnabled implements PersistanceFactory, Configurable, Serviceable, Initializable, Disposable, ThreadSafe IIRC ThreadSafe components

Re: 'dispose' method of component

2003-10-29 Thread Jeremy Quinn
On Wednesday, October 29, 2003, at 09:03 PM, Giacomo Pati wrote: Jeremy Quinn wrote: On Wednesday, October 29, 2003, at 01:40 PM, Giacomo Pati wrote: Hi Jeremy Jeremy Quinn wrote: snipped public class HibernateFactory extends AbstractLogEnabled implements PersistanceFactory, Configurable

Re: NPEs in FlowLayer

2003-10-29 Thread Jeremy Quinn
the authentication pipeline is provided by FlowScript. After the this pipeline has run and control returns to the original login FlowScript, several of the cocoon.* FOM properties have become null. Thanks regards Jeremy Jeremy Quinn wrote: On Wednesday, October 29, 2003, at 04:28 PM, Ugo Cei wrote

Re: [IMP] Performance problems with TraxTransformer

2003-10-30 Thread Jeremy Quinn
On Thursday, October 30, 2003, at 02:45 AM, Vadim Gritsenko wrote: use-store - why in hell is use-store to false??? IIRC, it was fist set to true because the transient store was actually not transient and tried to serialize compiled XSLTs in the persistant store, which failed because

Re: [IMP] Performance problems with TraxTransformer

2003-10-30 Thread Jeremy Quinn
On Thursday, October 30, 2003, at 11:42 AM, Vadim Gritsenko wrote: Jeremy Quinn wrote: On Thursday, October 30, 2003, at 02:45 AM, Vadim Gritsenko wrote: use-store Let's switch it to true an ensure the transient store is really transient. +1. Store is checking for Serializable (again, IIRC

Re: [FYI] cool packages for mach-o

2003-10-30 Thread Jeremy Quinn
On Thursday, October 30, 2003, at 02:00 PM, Stefano Mazzocchi wrote: [since the number of switchers around here is increasing, I think this is less and less off-topic ;-)] Point your browser to http://www.serverlogistics.com/software.php where you find very nicely packages for - apache

Re: [RT] Unit testing and CocoonUnit

2003-11-02 Thread Jeremy Quinn
On Saturday, November 1, 2003, at 05:21 PM, Upayavira wrote: snip wot=really interesting stuff String generatorXML = response.getPipelineXML(0); String transformedXML = response.getPipelineXML(1); If I understand this correctly you are referring to elements on the pipeline via

Re: [RT] Direct Form-SQL mapping through OJB and DynaBeans

2003-11-02 Thread Jeremy Quinn
On Friday, October 31, 2003, at 03:25 PM, Sylvain Wallez wrote: Hi, Some people to which I demonstrated Woody and Flowscript asked me how we can directly map forms to a database. Yeah, I know that architecturally having intermediate domain objects is better, but it seems a bit overkill when

Re: NPEs in FlowLayer

2003-11-03 Thread Jeremy Quinn
On Wednesday, October 29, 2003, at 05:10 PM, Christopher Oliver wrote: Can you recreate this problem with a simple example you can post to the list? I tried a simple replication of the problem, but so far, it still behaves properly. Still looking into it. regards Jeremy Jeremy Quinn wrote

Woody: managing persistence sessions

2003-11-04 Thread Jeremy Quinn
Dear All, I am using Woody (for the first time), with Hibernate, to edit Beans. Below is my first stab at a function for updating one of my Beans (a User Bean). The issue you may be able to offer advice on is this: How can I manage my HibernateSession, while using the Woody Framework?

Re: Woody: managing persistence sessions

2003-11-04 Thread Jeremy Quinn
On Tuesday, November 4, 2003, at 11:10 AM, Antonio Gallardo wrote: Thanks for your feedback, Antonio. Hi Jeremy: I use other approach in Flow. Example: function listform(form) { var factory = cocoon.getComponent(Packages.o.a.cJdoPMF.ROLE); var bean = new

Re: Woody: managing persistence sessions

2003-11-04 Thread Jeremy Quinn
On Tuesday, November 4, 2003, at 01:43 PM, Reinhard Poetz wrote: IIRC catch(break) is must be used as top-level statement (... but this is only a guess - never tried catch(continue) but catch(break) works for me.) Wow! Thanks Reinhard, I'll give that a go!! regards Jeremy

Re: Woody: managing persistence sessions

2003-11-04 Thread Jeremy Quinn
On Tuesday, November 4, 2003, at 01:43 PM, Reinhard Poetz wrote: catch (break) { // a continuation has been started } catch (continue) { // a continuation has been resumed } } IIRC catch(break) is must be used as top-level statement I think this is why they did not

Re: Woody: managing persistence sessions

2003-11-05 Thread Jeremy Quinn
On Wednesday, November 5, 2003, at 12:02 PM, Reinhard Poetz wrote: From: Jeremy Quinn On Tuesday, November 4, 2003, at 01:43 PM, Reinhard Poetz wrote: catch (break) { // a continuation has been started } catch (continue) { // a continuation has been resumed

[Woody] wd:help

2003-11-05 Thread Jeremy Quinn
Dear All, Correct me if I am wrong, but it does not appear that the wd:help/ tag of the wd:widget/ is supported by the 'woody-field-styling.xsl', except for when it is used inside a wd:group/. Would anyone object to me adding this? I was thinking of adding handling for this to the

Re: Woody: managing persistence sessions

2003-11-05 Thread Jeremy Quinn
On Wednesday, November 5, 2003, at 01:06 PM, Reinhard Poetz wrote: I am really impressed with the Cocoon Forms framework!! And the continuation-lifecycle 'catch' events work well too!! There is one more event that some people could conceivably want but I do not know if it is possible

Re: [Woody] wd:help

2003-11-05 Thread Jeremy Quinn
On Wednesday, November 5, 2003, at 02:44 PM, Sylvain Wallez wrote: Jeremy Quinn wrote: Dear All, Correct me if I am wrong, but it does not appear that the wd:help/ tag of the wd:widget/ is supported by the 'woody-field-styling.xsl', except for when it is used inside a wd:group/. Would

Re: Woody: managing persistence sessions

2003-11-05 Thread Jeremy Quinn
On Wednesday, November 5, 2003, at 03:23 PM, Reinhard Poetz wrote: From: Jeremy Quinn On Wednesday, November 5, 2003, at 01:06 PM, Reinhard Poetz wrote: I am really impressed with the Cocoon Forms framework!! And the continuation-lifecycle 'catch' events work well too!! There is one more event

Re: Woody: managing persistence sessions

2003-11-05 Thread Jeremy Quinn
has resumed , break: a continuation has started, return: sendPageAndWait has finished rendering the page. Any clearer? regards Jeremy Jeremy Quinn dijo: On Wednesday, November 5, 2003, at 01:06 PM, Reinhard Poetz wrote: I am really impressed with the Cocoon Forms framework

[Woody] cancel button

2003-11-06 Thread Jeremy Quinn
Hi All, I am trying to add a 'Cancel' button to a form, so if the user clicks it they exit the current form processing by being redirected to another URL, it is not working as expected. in my form model: wd:action id=cancel action-command=cancel wd:labelCancel/wd:label wd:hintcancels this

Re: [Woody] cancel button

2003-11-06 Thread Jeremy Quinn
On Thursday, November 6, 2003, at 01:34 PM, Reinhard Poetz wrote: From: Jeremy Quinn Hi All, I am trying to add a 'Cancel' button to a form, so if the user clicks it they exit the current form processing by being redirected to another URL, it is not working as expected. snip/ I guess

Re: [Woody] cancel button

2003-11-08 Thread Jeremy Quinn
On 6 Nov 2003, at 18:24, Sylvain Wallez wrote: Jeremy Quinn wrote: On Thursday, November 6, 2003, at 01:34 PM, Reinhard Poetz wrote: From: Jeremy Quinn Hi All, I am trying to add a 'Cancel' button to a form, so if the user clicks it they exit the current form processing by being redirected

[woody] validation error messages

2003-11-11 Thread Jeremy Quinn
Dear All I noticed that when you use something like : form.getWidget (email).setValidationError ( new ValidationError (validation.email.inuse) ); then the i18n tag output by setValidationError() looks like this: i18n:text

Re: GT 2003 talks: audio only example, please test

2003-11-11 Thread Jeremy Quinn
On 11 Nov 2003, at 11:41, Stefano Mazzocchi wrote: On 11 Nov 2003, at 12:31, Antonio Gallardo wrote: Bertrand Delacretaz dijo: Le Mardi, 11 nov 2003, à 12:09 Europe/Zurich, Torsten Curdt a écrit : ...For low quality audio ogg is supposed to be much better. Does it play everywhere without

Re: [woody] validation error messages

2003-11-11 Thread Jeremy Quinn
On 11 Nov 2003, at 11:53, Antonio Gallardo wrote: Jeremy Quinn dijo: Dear All I noticed that when you use something like : form.getWidget (email).setValidationError ( new ValidationError (validation.email.inuse) ); then the i18n tag output by setValidationError

Re: GT 2003 talks: audio only example, please test

2003-11-11 Thread Jeremy Quinn
On 11 Nov 2003, at 12:25, Antonio Gallardo wrote: Jeremy Quinn dijo: I was trying to do lo-res audio re-samples to use them for my SMIL Presentation attempt instead of the video which does not seem to play for anyone. Hi Jeremy: Why you said that I played the videos on Red Hat 9 and Fedora

Re: [woody] validation error messages

2003-11-11 Thread Jeremy Quinn
On 11 Nov 2003, at 13:27, Sylvain Wallez wrote: Jeremy Quinn wrote: Dear All I noticed that when you use something like : form.getWidget (email).setValidationError ( new ValidationError (validation.email.inuse) ); then the i18n tag output by setValidationError() looks like

Re: [woody] validation error messages

2003-11-11 Thread Jeremy Quinn
On 11 Nov 2003, at 14:15, Bruno Dumon wrote: On Tue, 2003-11-11 at 12:47, Jeremy Quinn wrote: Dear All I noticed that when you use something like : form.getWidget (email).setValidationError ( new ValidationError (validation.email.inuse) ); then the i18n tag

Re: [woody] validation error messages

2003-11-11 Thread Jeremy Quinn
;) Thanks for pointing this out. regards Jeremy On Tue, 2003-11-11 at 15:03, Jeremy Quinn wrote: snip/ BTW. Is there a plan to add a generic form validation message tag to woody? ie. not tied to a particular field widget. A widget that would collect all error messages? IIRC, this has been

Re: MountTableMatcher

2003-11-19 Thread Jeremy Quinn
... regards Jeremy -Original Message- From: Jeremy Quinn [mailto:[EMAIL PROTECTED] Sent: woensdag 19 november 2003 16:41 To: [EMAIL PROTECTED] On 17 Nov 2003, at 23:03, Geoff Howard wrote: Interesting. I'd rather integrate my build into Cocoon's, rather than the other way around, and now I can

Re: MountTableMatcher

2003-11-20 Thread Jeremy Quinn
On 19 Nov 2003, at 18:37, Upayavira wrote: Jeremy, Splendid article. Stuff I've been thinking about a lot recently too. Just one useful quote from the Ant manual: property environment=env/ echo message=Number of Processors = ${env.NUMBER_OF_PROCESSORS}/ echo message=ANT_HOME is set to =

Re: DB support in flowscript (was: XSP official position)

2003-11-20 Thread Jeremy Quinn
On 19 Nov 2003, at 12:34, Leszek Gawron wrote: Continuing II: I still cannot picture retrieving 5000 of objects via O/R and showing them on paginated view - the performance would be tragical. well ... have you tried it? there was nothing tragic about listing 3 records from Hibernate

Re: XConfPath task (was Re: MountTableMatcher)

2003-11-21 Thread Jeremy Quinn
On 20 Nov 2003, at 09:59, Upayavira wrote: Jeremy Quinn wrote: On 19 Nov 2003, at 18:37, Upayavira wrote: Jeremy, Splendid article. Stuff I've been thinking about a lot recently too. Just one useful quote from the Ant manual: property environment=env/ echo message=Number of Processors

Re: New woody multivaluefield styling: the double listbox

2003-11-21 Thread Jeremy Quinn
On 19 Nov 2003, at 16:53, Sylvain Wallez wrote: This again relies on Matt Kruse's JS libraries (thanks Matt!) and required to add a generic infrastructure in the woody JS library to register handlers that are called either during onload of the document or onsubmit of the form. Unfortunately

Re: [Woody] - wd:hotkey status?

2003-11-21 Thread Jeremy Quinn
On 21 Nov 2003, at 09:48, Marc Portier wrote: where message key=prompt.namewi:accesskeyN/wi:accesskeyame:/message ? hm, I don't actually don't know if current i18n transformer is supporting mixed content-model messages, anyone? I find this works : message key=prompt.namepblah/ppblah/p/message

Re: XConfPath task (was Re: MountTableMatcher)

2003-11-21 Thread Jeremy Quinn
On 21 Nov 2003, at 15:04, Geoff Howard wrote: Vadim Gritsenko wrote: Geoff Howard wrote: Upayavira wrote: ... We could: (1) Remove the replace-properties attribute, and replace properties automatically in the content, and in the top level attributes. (2) Leave the replace-properties attribute,

Re: [VOTE] Tim Larson as Cocoon committer

2003-11-25 Thread Jeremy Quinn
On 24 Nov 2003, at 18:09, Bruno Dumon wrote: Tim has been hanging around on our mailing lists for quite some time, and is actively contributing, both in discussions and code. Becoming a committer can only motivate him to keep up the good work. +1 from me. +1 . . . . . Congratulations !! :)

persisting re-arranged repeater-rows

2003-11-25 Thread Jeremy Quinn
Hi All, I am struggling with persisting re-arranged repeater rows. I have a form that edits an Album Bean which has a (java.util.List) 'Resources' Property which is populated by Resource Beans. I have the List of Resource Beans represented in the form as a repeater-widget, with move-up,

  1   2   3   4   5   >