RE: JSP Components

2001-03-13 Thread Rey Francois
I am reposting this item below because I haven't got any feedback since I posted it on 8 March. Just briefly, this is about the ability to perform an Action specific to a JSP component being reused. Right now it is not possible to make an action being automatically performed when including a JSP

[GUMP] Build Failure - Struts

2001-03-13 Thread Sam Ruby
This email is autogenerated from the output from: http://jakarta.apache.org/builds/gump/2001-03-13/jakarta-struts.html Buildfile: build.xml prepare.dist: [mkdir] Created dir:

Re: [PROPOSAL - specialized taglib for fast interface development]

2001-03-13 Thread Jean-Noël Ribette
Hi Michael, - Original Message - From: Michael Gerdau [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 10:17 AM Subject: Re: [PROPOSAL - specialized taglib for fast interface development] Hi Jean-Nol ! [Proposal for struts with reduced options to simplify rapid

Re: JSP Components

2001-03-13 Thread Cedric Dumoulin
Hi Francois, I have been confronted to a similar problem while building a portal page including several components containing different form. I have written an Action associated to the portal page, and one action for each form. The main Action calls each component's action, and forwards to

Re: [PROPOSAL - specialized taglib for fast interface development]

2001-03-13 Thread Craig R. McClanahan
On Mon, 12 Mar 2001, [iso-8859-1] Jean-Noël Ribette wrote: Hi, I have been working with Struts for one month now, and I think Struts is a great framework. My company is going to use and support it. Otherwise, there are a view features I would like to see in Struts or as an extension.

Re: [PROPOSAL - specialized taglib for fast interface development]

2001-03-13 Thread Craig R. McClanahan
On Tue, 13 Mar 2001, [iso-8859-1] Jean-Noël Ribette wrote: - Original Message - From: Michael Gerdau [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 2:35 PM Subject: Re: [PROPOSAL - specialized taglib for fast interface development] Why not try to add

cvs commit: jakarta-struts/src/share/org/apache/struts/action ActionServlet.java

2001-03-13 Thread craigmcc
craigmcc01/03/13 11:21:43 Modified:src/share/org/apache/struts/action ActionServlet.java Log: Add debugging messages when ServletContext.getRequestDispatcher() returns null, in the remaining cases where this did not occur. Prevents NullPointerException problems on

cvs commit: jakarta-struts/src/share/org/apache/struts/digester Digester.java

2001-03-13 Thread craigmcc
craigmcc01/03/13 11:39:50 Modified:src/share/org/apache/struts/digester Digester.java Log: When digesting recursive structures, allow the developer to distinguish rules for the root node of the structure from nested nodes, by deterministically matching the longest "*/xxx"

Re: Running Unpacked Struts in Weblogic 6.0 - solved.

2001-03-13 Thread Craig R. McClanahan
On Tue, 13 Mar 2001, Open Source wrote: Hi all, Just wanted to share with all of you that when the unpacked struts-example is executed on Weblogic6.0 , there are some extra lines to be added to web.xml file to make it work (atleast I had to) First of all the reason for the failure in

Re: Handling multiple button actions in struts html form

2001-03-13 Thread Craig R. McClanahan
On Tue, 13 Mar 2001, Open Source wrote: Hi, I have started developing some real life jsp applications with Struts now. I have a rather simple question which might have addresed in Struts , but I could not figure it out. I have two questions 1. When a html form (using struts) has 2

cvs commit: jakarta-struts/web/example/WEB-INF struts-config.xml

2001-03-13 Thread craigmcc
craigmcc01/03/13 14:31:57 Modified:src/conf struts-config_1_0.dtd src/share/org/apache/struts/action ActionMapping.java ActionResources.properties ActionServlet.java web/example/WEB-INF struts-config.xml Log: Add a "delegate via

Re: content map population

2001-03-13 Thread Incze Lajos
On Tue, Mar 13, 2001 at 09:57:36AM +0100, Cedric Dumoulin wrote: Not yet, but in a few days I will provide such facilities for Templates. If you want to know how it will work, I have put an extract of a previous mail at the end of this mail. Cedric Will be this facility part of the

Re: Checkboxs in a list

2001-03-13 Thread Nick Pellow
Paul Jackson wrote: Does anyone of the best approach for the following situation? I wish to have a list of files for processing with a checkbox on the left hand side of each file to indicate if the file should be processed or not. I'm looking at how to do this in a single form with a

Re: [INFORMATIONAL] Javasoft J2EE Patterns Catalog

2001-03-13 Thread javaboy
mj - Original Message - From: Philip Hart To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Sent: Thursday, March 08, 2001 10:40 PM Subject: [INFORMATIONAL] Javasoft J2EE Patterns Catalog Hi All Javasoft have just released a J2EE Patterns Catalog

Re: Checkboxs in a list

2001-03-13 Thread Martin Cooper
You can do this with the html:multibox tag. - Use the same 'name' attribute for each checkbox. - Use a different 'value' attribute for each checkbox (probably obtained from your iterator). - Define the corresponding bean property as type String[]. When the form is submitted, your property