Re: cvs commit: jakarta-struts/src/doc/stylesheets struts.xsluserGuide.xsl

2001-01-21 Thread Martin Cooper
only acceptable form. -- Martin Cooper Tumbleweed Communications - Original Message - From: "Michael Westbay" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 21, 2001 5:02 PM Subject: Re: cvs commit: jakarta-struts/src/doc/stylesheets struts.xsl userGuide.xsl

Re: cvs commit: jakarta-struts/src/conf struts-config_1_0.dtd

2001-02-13 Thread Martin Cooper
Just curious - in what situations might I want to use a class other than ActionFormBean to represent form-bean entries? -- Martin Cooper Tumbleweed Communications - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 13, 2001 10:59 AM Subject: cvs

Re: Getting Form Names

2001-02-14 Thread Martin Cooper
t; attribute in your field entries in validation.xml, I believe that should do the trick. -- Martin Cooper Tumbleweed Communications - Original Message - From: "Neal Kaiser" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 13, 2001 7:04 PM Subject: Getting Form

Validation and automatic form bean generation

2001-02-15 Thread Martin Cooper
lso make sense, where a basic validation scheme might take care of existence rules (e.g. 'required') and type definitions (e.g. 'must be an integer'), but where more sophisticated validation (e.g. must match 'mm/dd/yy') would be left to an external validator. What do people think about this? -- Martin Cooper Tumbleweed Communications

Re: Validation and automatic form bean generation

2001-02-16 Thread martin . cooper
, which is in full swing over on struts-user right now. What I'd really like to pursue in this thread is how to address validation within the context of automatically generating form beans. Just my thoughts, best, Michael Thanks! -- Martin Cooper Tumbleweed Communications

Re: [VOTE] Struts 1.0-beta-1 Release Plan

2001-02-19 Thread Martin Cooper
+1 -- Martin Cooper Tumbleweed Communications - Original Message - From: "Craig R. McClanahan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 19, 2001 10:18 PM Subject: [VOTE] Struts 1.0-beta-1 Release Plan Now that the TODO list for 1.0 (and the b

Re: [PROPOSAL] Two New Committers

2001-02-24 Thread Martin Cooper
+1 each. - Original Message - From: "Craig R. McClanahan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 24, 2001 1:53 PM Subject: [PROPOSAL] Two New Committers I would like to propose the following individuals for committer status on the Struts project: Rob

Re: recursive tag

2001-02-27 Thread martin . cooper
on Actions with Body) for more on this. Hope this helps. -- Martin Cooper Tumbleweed Communications At 08:22 AM 2/27/01 -0600, Young, Wayne wrote: Does anyone know how to create a tag that produces struts tags then recursively processes them. Something like: app:databyschema schema="

Re: Using session bean for action form is a design flaw

2001-03-01 Thread martin . cooper
this helps. -- Martin Cooper Tumbleweed Communications At 01:18 PM 3/1/01 -0500, Tony Kian Heffner wrote: Hi, Since action form is stored as JSP session bean, large scale web application that are running on a load balancing cluster environment will not be able to use Struct. Does Strut has any plan

Re: [VOTE] Proposed Committer: Cedric Dumoulin

2001-03-04 Thread Martin Cooper
+1 - Original Message - From: "Craig R. McClanahan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, March 02, 2001 10:16 AM Subject: [VOTE] Proposed Committer: Cedric Dumoulin Cedric has created some very nice extensions to the JSP template model in Struts, and is interested

Re: Iterating over collections with null values

2001-03-05 Thread Martin Cooper
ere's More Than One Way To Do It" slogan. IMHO, having more options is not always better. -- Martin Cooper - Original Message - From: "Nick Pellow" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, March 04, 2001 7:50 PM Subject: Re: Iterating over collections

Re: Checkboxs in a list

2001-03-13 Thread Martin Cooper
setter will be called with a String array containing all of the values for the checkboxes which were checked. Hope this helps. -- Martin Cooper - Original Message - From: "Paul Jackson" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 4:00 PM Subject: Checkboxs

Re: Iterate -- Logic Tag

2001-03-16 Thread Martin Cooper
bean:write name="myCollectionElement"/br /logic:iterate Hope this helps. -- Martin Cooper At 06:45 AM 3/16/01, raghu tadi wrote: logic:iterate id="myCollectionElement" name="list" Do something with myCollectionElement /logic:iterate How do i get the Position value o

Re: [PROPOSAL] Struts Unit Test Guidelines

2001-03-18 Thread Martin Cooper
h around a test case for which you don't expect an exception) 15) Document tests in javadoc. This is very important as unit tests are a very good way to document the code. These seem like good guidelines to me! Vincent. -- Martin Cooper

Re: development issues

2001-03-28 Thread Martin Cooper
tter, just an "interested party".) -- Martin Cooper - Original Message - From: "Tahir Awan" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 28, 2001 11:55 AM Subject: RE: development issues Sorry Martin but I could not find any way to contact those

Re: development issues

2001-03-28 Thread Martin Cooper
It can handle both client-side and server-side validations. The client-side validations are done using JavaScript. The server-side validations are done using the validate() method on an ActionForm. -- Martin Cooper - Original Message - From: "Tahir Awan" [EMAIL PROTECTED]

Re: cvs commit:jakarta-struts/src/share/org/apache/struts/taglib/html FormTag.java

2001-04-29 Thread Martin Cooper
Cool! This will really help with the issue of too many tags on one JSP page, since it will allow a form to be split over multiple pages. (We are already doing this by underhanded means, so it's nice to see that we can clean that up now!) -- Martin Cooper - Original Message - From

RE: RE-2: cvs commit:jakarta-struts/src/share/org/apache/struts/acti on Action.javaActionForm.java

2001-05-11 Thread Martin Cooper
, otherwise it uses the one Struts passed to the perform() method. -- Martin Cooper At 12:38 PM 5/11/01, Deadman, Hal wrote: I thought of that too but I don't know how to add parameters to the request. Maybe you could use request.setAttribute and store the multi-part request String parameters

Re: cvs commit: jakarta-struts/src/share/org/apache/struts/utilRequestUtils.java

2001-05-11 Thread Martin Cooper
from there using mapping.findForward(nextAction), where the forward has redirect=false, this will fail? This would be very bad - in every case where we have a file upload, we subsequently forward to another action. Craig -- Martin Cooper

Re: development issues

2001-03-28 Thread Martin Cooper
with them. 3) There is at least one other implementation of Struts form validation using regular expressions that I am aware of, which was written by David Winterfeldt, and is based on the Jakarta Regexp package. -- Martin Cooper - Original Message - From: Tahir Awan [EMAIL PROTECTED

Deprecations in Beta 2

2001-05-21 Thread Martin Cooper
, or is there something I can do to fix the warnings? Thanks! -- Martin Cooper

Logic tags and string properties

2001-05-23 Thread Martin Cooper
the definition of presence to include type-specific values. Comments, anyone? -- Martin Cooper

[PATCH] Enhance bean:message to obtain message resource keydynamically

2001-05-27 Thread Martin Cooper
a bean. That key is then used as if it had been specified using the 'key' attribute. The attached patch adds the 'name', 'property' and 'scope' attributes to the bean:message tag to support this usage. -- Martin Cooper Index: MessageTag.java

Re: Struts 1.0 Release Planning

2001-06-01 Thread Martin Cooper
+1. Getting tight for us, but this will work. Anything I can do to help at this stage? - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 01, 2001 2:12 PM Subject: Struts 1.0 Release Planning I *really* wanted to have a 1.0 final

Re: Use of HashMaps via logic:iterate and bean:write

2001-06-08 Thread Martin Cooper
is bean:write name=element property=value/ /logic:iterate - Hope this helps. -- Martin Cooper At 01:43 PM 6/8/01, John J. Thomas wrote: We have written XML driven data access components that implement the Collection interface. A data access object retrieves data from the JDBC ResultSet then uses

Re: Handling session timeouts

2001-06-09 Thread Martin Cooper
the values from the form bean. This way, if the form bean is created by Struts, but not populated by your action, the 'valid' property will be false, thus detecting the situation you described. Hope this helps. -- Martin Cooper - Original Message - From: Andreas Prohaska [EMAIL PROTECTED

Re: [PROPOSAL] Struts Extensions

2001-06-10 Thread Martin Cooper
, we might want to encourage people to amble on over to our neighbour, the Jakarta taglibs project, rather than add them as Struts extensions. -- Martin Cooper - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 2:39 AM Subject

Re: [PROPOSAL] Struts Extensions

2001-06-10 Thread Martin Cooper
I like this idea. I think David is right - a lot of people do extend ActionServlet just to initialize resources. While this idea wouldn't remove all of the reasons to build a custom servlet, it would provide a systematic - and potentially simpler - way to solve a common problem. -- Martin Cooper

Re: Multipart request handling

2001-06-10 Thread Martin Cooper
) for this, so hopefully it will be fixed before 1.0 ships. -- Martin Cooper - Original Message - From: Incze Lajos [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 10, 2001 4:33 PM Subject: Multipart request handling I've just verified that the detected behaviour (upload bombs when

Re: Main Branch/1.0 Branch and CVS

2001-06-11 Thread Martin Cooper
a graphical version of the log, with labels attached at branch and label points. -- Martin Cooper - Original Message - From: SCHACHTER,MICHAEL (HP-NewJersey,ex2) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 11, 2001 7:33 PM Subject: Main Branch/1.0 Branch and CVS Hi, Could

Re: Patch Submission for ActionServlet.java

2001-06-12 Thread Martin Cooper
This problem has been fixed on the main trunk, and there is a Bugzilla bug report for moving it into the Struts 1.0 branch. You are correct that the request needs to be unwrapped. Rest assured that the fix will be in Struts 1.0! -- Martin Cooper At 12:36 PM 6/12/01, Chad Johnston wrote

Re: Patch Submission for ActionServlet.java

2001-06-12 Thread Martin Cooper
The goal is to get it done by this Friday, June 15th. -- Martin Cooper At 01:04 PM 6/12/01, Matt Raible wrote: Any idea when 1.0 will be released? Thanks, Matt - Original Message - From: Martin Cooper [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, June 12

Re: [ANNOUNCEMENT] Struts 1.0 (Final) Released

2001-06-16 Thread Martin Cooper
is a big plus. Perhaps you could add a fourth bullet that says something about how the content of a page can be obtained from resources based on the user's locale, or something like that. One other minor point: independant -- independent -- Martin Cooper - Original Message - From: Ted

Re: I would like to offer myself to help with documentation

2001-06-16 Thread Martin Cooper
, including the tld stylesheet. However, it is Windows only. I got it from http://www.xmleverywhere.com/cooktop/. -- Martin Cooper - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 16, 2001 9:46 AM Subject: Re: I would like to offer myself

Re: I would like to offer myself to help with documentation

2001-06-16 Thread Martin Cooper
I did, and it is, but it's not free. XML Cooktop is. :-) -- Martin Cooper - Original Message - From: Jonathan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 16, 2001 7:04 PM Subject: Re: I would like to offer myself to help with documentation Try xml spy. Thats a real

Re: [ANNOUNCEMENT] Struts 1.0 (Final) Released

2001-06-17 Thread Martin Cooper
Yep, that looks good (but Struts' instead of Strut's). -- Martin Cooper - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 17, 2001 3:07 AM Subject: Re: [ANNOUNCEMENT] Struts 1.0 (Final) Released How about: ... / * Utility classes

Re: The documentation, xml, and stylesheets

2001-06-17 Thread Martin Cooper
You probably won't have to do much, if anything, with stylesheets unless you need to break away from the documentation style currently used by Struts. The stylesheets for that, obviously, are already in place, and you don't have to look at them if you don't want to. :-) -- Martin Cooper

Re: Struts 1.0 Released - Looking forward to 1.1!!!!!!!

2001-06-18 Thread Martin Cooper
not sure if that's the same thing or not. Thanks! -- Martin Cooper - Original Message - From: Niall Pemberton [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 6:46 PM Subject: Struts 1.0 Released - Looking forward to 1.1!!! Congratulations and thank you

Proposed enhancement to bean:message

2001-06-18 Thread Martin Cooper
specification of messages, while delegating the resolution of the actual message text to the view. Comments? -- Martin Cooper

Re: Proposed enhancement to bean:message

2001-06-19 Thread Martin Cooper
Yes, that is exactly what I intended. -- Martin Cooper - Original Message - From: Oleg V Alexeev [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 11:11 PM Subject: Re: Proposed enhancement to bean:message Hello Martin, +1 I think it must work at standard

Re: Proposed enhancement to bean:message

2001-06-21 Thread Martin Cooper
on the actor's locale? Or am I overlooking something? /OT -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel 716 737-3463. -- http://www.husted.com/about/struts/ Martin Cooper wrote: I posted this a few weeks ago as a patch, when it should more properly

Re: server-side, java-based validation rules for struts..

2001-06-23 Thread Martin Cooper
for the listeners to be cacheable (by Struts) so that step 2 can be performed either at startup time or on first hit for a given listener. -- Martin Cooper - Original Message - From: Cook, Levi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 21, 2001 8:20 AM Subject: RE: server-side

Re: Controller loads forms before validating logon/session

2001-06-24 Thread Martin Cooper
an object of the class specified by that attribute, and then call the sessionCheck() method on that object. This method returns the ActionForward object for where to go next, or null if everything is OK. Does this make sense? -- Martin Cooper

Re: Re[2]: Controller loads forms before validatinglogon/session

2001-06-24 Thread Martin Cooper
need be modified to implement them. As you point out, the one I mentioned (which I plucked straight from the original post on this thread) is not the only candidate. -- Martin Cooper - Original Message - From: Oleg V Alexeev [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 24

Re: [VOTE] Two New Committers

2001-06-24 Thread Martin Cooper
+1 each. - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, June 24, 2001 3:54 AM Subject: [VOTE] Two New Committers I would like to propose the following individuals for Committer status on the Struts project: Oleg V Alexeev

Re: Logic tags and string properties

2001-06-24 Thread Martin Cooper
. Is this what you had in mind? -- Martin Cooper - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 23, 2001 9:29 AM Subject: Re: Logic tags and string properties On Wed, 23 May 2001, Martin Cooper wrote: It seems

Re: Need help !

2001-06-27 Thread Martin Cooper
This is really a question for struts-user, rather than struts-dev. However... You should put the vector into request scope, unless it has to exist across multiple requests, in which case you should put it into session scope. In your action, just use request.setAttribute(list, v). -- Martin

Re[2]: New name for Components / Extended Templates?

2001-06-28 Thread Martin Cooper
. What's a portlet? -- Martin Cooper At 01:27 PM 6/28/01, Oleg V Alexeev wrote: Hello Chuck, Thursday, June 28, 2001, 11:14:00 PM, you wrote: CS How about Portlet? When I look at the features that's the first thing that CS comes to mind. Good choice. Components, blocks, pieces - all this terms

Re: /contrib

2001-07-04 Thread Martin Cooper
names) for A and B be distinct from each other, but they should both be distinct from Struts proper. Otherwise, it will be hard to migrate contributed code to Struts proper without breaking existing code that already uses the contributed functionality. -- Martin Cooper - Original Message

Re: question about processPath() line item in ActionServlet

2001-07-06 Thread Martin Cooper
, and we don't trip over something like: /foo.bar/baz by stripping off everything after the period. -- Martin Cooper At 06:53 AM 7/6/01, Jonathan wrote: Gentlemen. In the ActionServlet's processPath() method the below code exists. processPath(HttpServletRequest request

Re: cvs commit:jakarta-struts/contrib/validator/src/example/com/wintecinc/struts/example/validatorApplicationResources.properties ApplicationResources_fr.propertiesCityStateZip.java MultiRegistrationAction.java RegistrationAction.javaRegistrationForm.j

2001-07-08 Thread Martin Cooper
Unfortunately, CVS doesn't work that way. You can commit multiple files at one time, but every time you create a new directory, CVS will send a message. As you've probably noticed, most of these commits are for new directories. On the other hand, 'import' would probably have worked. -- Martin

Re: Re[2]: Indexed tags - proposal to add changes

2001-07-09 Thread Martin Cooper
+1 for 'indexed=true' +1 for 'indexId' -- Martin Cooper - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED]; Oleg V Alexeev [EMAIL PROTECTED] Sent: Monday, July 09, 2001 9:35 AM Subject: Re: Re[2]: Indexed tags - proposal to add changes Hi. Does anyone have any

RE: ActionMapping Workflows

2001-07-10 Thread Martin Cooper
. Thoughts, anyone? -- Martin Cooper At 08:35 AM 7/10/01, Robbin L. Gratz wrote: Another point that I believe is getting ignored on the workflow stuff is how is data getting transferred between the different steps. In the system I just worked on, we had a number of two or more step workflows that were

Re: Re[2]: Indexed tags - proposal to add changes

2001-07-10 Thread Martin Cooper
Thinking about this some more, if we have the 'indexId' attribute, do we need the 'indexed' attribute as well? Wouldn't the specification of a value for 'indexId' imply 'indexed=true' anyway? -- Martin Cooper - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: [VOTE] Changing Struts 1.1 to depend on Commons Packages

2001-07-15 Thread Martin Cooper
+1. This is absolutely the right way to go. -- Martin Cooper - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, July 14, 2001 6:20 PM Subject: [VOTE] Changing Struts 1.1 to depend on Commons Packages As I cc'd to this list

Re: Struts install - error in SilverStream install doc (fwd)

2001-07-21 Thread Martin Cooper
John, I have updated the instructions in CVS, so the distributions should be correct now. However, I don't know how the web site gets updated. Perhaps Craig or Ted can take care of this. -- Martin Cooper - Original Message - From: John Rousseau [EMAIL PROTECTED] To: [EMAIL PROTECTED

Disabling Struts multipart handling

2001-07-21 Thread Martin Cooper
-param Would anyone have a problem with this? If not, I'll go ahead and make the change. -- Martin Cooper

Re: Disabling Struts multipart handling

2001-07-22 Thread Martin Cooper
interface used by Struts. -- Martin Cooper - Original Message - From: Thomas Burleson [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, July 22, 2001 7:54 PM Subject: RE: Disabling Struts multipart handling Martin, Could you briefly explain the purpose/need for multipart handling

Re: Are form tags tied to beans?!!!

2001-07-31 Thread Martin Cooper
association between requests and beans. You can ignore form beans if you want, and query the request directly for parameters. -- Martin Cooper - Original Message - From: Jonathan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 30, 2001 2:32 PM Subject: Are form tags tied to beans

Re: weblogic 60 sp1 and struts 1_0 and jsp1.1 spec

2001-08-03 Thread Martin Cooper
here == As you can see, there is a getter and a setter for BaseTag. I don't know why you're seeing the error, unless there's some older version of struts.jat that's being picked up along with the newer taglib. -- Martin Cooper At 09:15 AM 8/2/01, Ben Gill wrote: Hi, Has anyone seen

Re: validation

2001-08-17 Thread martin . cooper
You might want to take a look at David Winterfeldt's Struts Validator, at: http://home.earthlink.net/~dwinterfeldt/ -- Martin Cooper - Original Message - From: Mike Dewhirst [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 17, 2001 6:55 AM Subject: validation What about

Re: CheckboxTag

2001-08-28 Thread Martin Cooper
The best thing to do would be to enter a bug in the bug database. The bug database is at http://nagoya.apache.org/bugzilla/. If you have a patch too, you can attach it to the bug entry. Thanks! -- Martin Cooper At 12:13 PM 8/28/01, Anton wrote: Hello I would like to contribute to STRUTS

Fixing bugs in Struts code moved to Commons

2001-08-28 Thread martin . cooper
. Thoughts? -- Martin Cooper

Re: Niall's if/then/else tags?

2001-09-06 Thread martin . cooper
I agree with this. In particular, I'd like to see tags of this type incorporated in JSPTL. They currently have if, and choose/when/otherwise, but no explicit then or else (although I believe those can be constructed from the others). -- Martin Cooper - Original Message - From: Ted

Re: [PATCH] FormTag - call reset after instantiation

2001-09-09 Thread martin . cooper
Erik, You're right, it appears that it was not committed. I'll try to get to it soon. -- Martin Cooper - Original Message - From: Erik Hatcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, September 08, 2001 8:44 PM Subject: Re: [PATCH] FormTag - call reset after

Re: multipart/form-data problem

2001-09-13 Thread martin . cooper
that you are using templates? -- Martin Cooper - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 12, 2001 5:25 AM Subject: FW: multipart/form-data problem It seems that no user experienced this problem before? So I thought I'll ask the question

Re: Updating Site for Struts 1.1

2001-09-14 Thread martin . cooper
. -- Custom Software ~ Technical Services. -- Tel +1 716 737-3463 -- http://www.husted.com/about/struts/ -- Martin Cooper

Re: Updating Site for Struts 1.1

2001-09-16 Thread martin . cooper
it being deprecated and moved. Ditto for the Bean-Utils. +1 -- Ted Husted. Thanks for doing all this! -- Martin Cooper

Re: cvs commit: jakarta-struts/src/share/org/apache/struts/utilConvertUtils.java

2001-09-17 Thread martin . cooper
Actually, I did apply it in Commons, though my commit message never made it to the list. I posted a message to the Commons list about that, and was told that it was expected that the first commit message might be delayed due to moderator lag (my phrase :-) ). -- Martin Cooper - Original

Re: [PATCH] FormTag - call reset after instantiation

2001-09-17 Thread martin . cooper
if I offended - that was certainly not my intent. And thanks for the patch! -- Martin Cooper - Original Message - From: Erik Hatcher [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 17, 2001 3:52 AM Subject: Re: [PATCH] FormTag - call reset after instantiation Martin

Re: Updating Site for Struts 1.1

2001-09-17 Thread martin . cooper
calling it 1.0.1, rather than 1.01? The latter seems potentially confusing to me, since 1.01 seems a little too close to 1.1. -T. -- Martin Cooper

Re: Updating Site for Struts 1.1

2001-09-17 Thread martin . cooper
such as Tomcat and Turbine. -- Ted Husted, Husted dot Com, Fairport NY USA. -- Custom Software ~ Technical Services. -- Tel +1 716 737-3463 -- http://www.husted.com/about/struts/ -- Martin Cooper

RE: TODO 1.1 - Tools - ActionForm Code Generator

2001-09-21 Thread martin . cooper
stylesheet, and you're done. Same thing for Javadoc comment format, etc. -- Martin Cooper At 11:57 AM 9/21/01, Baldree, Matthew wrote: It looks like you have most of it complete. I have a few suggestions from generators I wrote. I would add the ability to generate classes using templates - JSP

Re: cvs commit:jakarta-struts/src/share/org/apache/struts/taglib/html ImageTag.java

2001-09-23 Thread martin . cooper
I have no problem with applying this to 1.0.1 if you think that's the right thing to do. To be honest, I wasn't sure whether to treat this (and similar missing attribute reports) as a bug or a feature request. :-} -- Martin Cooper - Original Message - From: Ted Husted [EMAIL PROTECTED

Re: .NET and Struts...

2001-09-24 Thread martin . cooper
Something to keep your eye on in this vein is JavaServer Faces: http://jcp.org/jsr/detail/127.jsp It's still in a very early stage of development, but there was a brief demo at JavaOne a few months ago, and it looked pretty cool. -- Martin Cooper - Original Message - From: Craig

Re: TODO 1.1 - Tools - ActionForm Code Generator

2001-09-24 Thread martin . cooper
I found this rather interesting article, which is somewhat relevant to this discussion: http://www.theserverside.com/patterns/thread.jsp?thread_id=8675 -- Martin Cooper - Original Message - From: David Winterfeldt [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 23

Re: Updating Site for Struts 1.1

2001-10-03 Thread martin . cooper
select=document('../userGuide/project.xml')/project/ [...] xsl:apply-templates select=$project/ -- Martin Cooper - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 9:11 AM Subject: Re: Updating Site for Struts 1.1

Re: Bugzilla Bug Reports

2001-10-03 Thread martin . cooper
like to see them initially unassigned, if that's possible, and other people agree. -- Martin Cooper - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 5:50 PM Subject: Bugzilla Bug Reports Hi Folks, Finally getting

Re: [PATCH] Allow Multiple Config Files

2001-10-19 Thread martin . cooper
. -- Martin Cooper At 02:22 PM 10/19/01, James Holmes wrote: Attached is a patch for ActionServlet to allow multiple config files. With this patch you can specify a comma separated list of config files like this: init-param param-nameconfig/param-name param-value /WEB-INF/struts

Re: cvs commit: jakarta-struts/doc/userGuidebuilding_controller.xml building_model.xml building_view.xmlintroduction.xml

2001-11-02 Thread martin . cooper
currently. -- Martin Cooper - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, November 02, 2001 2:32 AM Subject: Re: cvs commit: jakarta-struts/doc/userGuide building_controller.xml building_model.xml building_view.xml introduction.xml

Commit message delays

2001-11-03 Thread martin . cooper
Is it just me, or are other committers seeing their commit messages long after their checkins? The last few of mine seem to be averaging around 12 hours late, which seems a little excessive... -- Martin Cooper -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

Re: Converting struts-html tags to be XHTML-compliant (Ready toPost)

2001-11-13 Thread martin . cooper
HTML to XHTML (Transitional/Strict) would be a good idea? Of course, you're welcome to post an XHTML version of the example, and I'm sure Ted would link to it from his Struts page (as would the Struts Resources page when it gets updated). -- Martin Cooper - Original Message - From: Matt

Re: Multiple controller servlets

2001-11-14 Thread martin . cooper
to see responses saying both. ;-) I guess my question is, what is the real problem people need to solve? -- Martin Cooper Once both of these features are added, I believe the use-cases I've seen would be addressed. The downside of multiple servlets is 1) Since servlets are multi-threaded

[VOTE] Struts 1.0.1 Release

2001-11-15 Thread martin . cooper
of the release [ ] -1 I am against this proposal (must include a reason). -- -- Martin Cooper -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Resources page for Struts 1.0.1

2001-11-19 Thread martin . cooper
that 1.0.1 has the latest list? -- Martin Cooper -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: CVS Tag for 1.0.1?

2001-11-20 Thread Martin Cooper
Struts 1.0.1 will be taken off the STRUTS_1_0_BRANCH branch, so that's where you need to check in fixes for it. You should also make sure you check in the same changes to the main trunk, so that they'll make it into Struts 1.1. -- Martin Cooper - Original Message - From: SCHACHTER

Re: i think i screwed up cvs...

2001-11-20 Thread Martin Cooper
problem as I am with commit messages being flagged for moderation. -- Martin Cooper - Original Message - From: SCHACHTER,MICHAEL (HP-NewJersey,ex2) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 9:33 PM Subject: RE: i think i screwed up cvs... I'm a bit confused

Re: i think i screwed up cvs...

2001-11-21 Thread Martin Cooper
You're off the hook now, Mike. ;-) I managed to delete the bogus branch (using 'cvs rtag -d', as suggested by you and Pete Donald), and label the tip of the 1.0 branch as 1.0.1, so we're back on track. -- Martin Cooper - Original Message - From: SCHACHTER,MICHAEL (HP-NewJersey,ex2

Re: using the indexId from logic:iterate in html:text

2001-10-05 Thread martin . cooper
This is a question better asked on the struts-user list. - Original Message - From: Kaelin Lee [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 05, 2001 9:17 AM Subject: using the indexId from logic:iterate in html:text Hi all, I have some questions on the nested

Re: properties other than basic wrappers

2001-10-06 Thread martin . cooper
?config=struts-dev_jakarta_apach e_orgrestrict=exclude=words=PropertyEditor I don't have any personal practical experience with PropertyEditors, but I have to say that the content of this thread pretty much killed any interest I might have had in building them into Struts. -- Martin Cooper

[PROPOSAL] XMLMessageResources

2001-10-10 Thread martin . cooper
incorporating this into the Struts 1.1 code base? -- Martin Cooper

RE: [PROPOSAL] XMLMessageResources

2001-10-11 Thread martin . cooper
Ah. Thanks for letting me know. I guess I was on hiatus when that happened in Commons. ;-) I'd better go take a look at what's there. I'm a Commons committer also, so I should be able to commit to the sandbox. -- Martin Cooper At 09:12 AM 10/11/01, SCHACHTER,MICHAEL (HP-NewJersey,ex2) wrote

RE: [PROPOSAL] XMLMessageResources

2001-10-11 Thread martin . cooper
and the output. -- Martin Cooper At 05:32 AM 10/11/01, Young, Wayne wrote: What are some benefits of using XMLMessageResources over standard property files? Wayne Young -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]] Sent: Thursday, October

Re: [PROPOSAL] XMLMessageResources

2001-10-13 Thread martin . cooper
Do you mean having one bundle (from the Struts naming perspective) comprised of messages from multiple properties files or XML files? Good idea. I'll give that some thought as I look into the Commons resources project. -- Martin Cooper - Original Message - From: Ted Husted [EMAIL

Re: [PROPOSAL] XMLMessageResources

2001-10-13 Thread martin . cooper
and uninstaller only have to worry about which files to add or remove, and not about what they contain or how to modify them. -- Martin Cooper - Original Message - From: James Holmes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 13, 2001 4:29 PM Subject: Re: [PROPOSAL

Re: Bean tags

2001-10-16 Thread martin . cooper
In Struts, you could make your ControllerExtension a subclass of Action, and override the perform() method to do your login checking where necessary, before passing control to your main execution method. The configuration could be done using the 'parameter' attribute of the action mapping, or

Re: [PROPOSAL] XMLMessageResources

2001-10-16 Thread martin . cooper
to a full J2EE container to get that support. :-) If I *am* missing something, and there is a way to do this kind of thing with separate WAR files, I'd definitely be interested in knowing more. -- Martin Cooper At 05:30 AM 10/16/01, Petr Jiricka wrote: What is the advantage of having multiple

Re: cvs commit:jakarta-struts/src/example/org/apache/struts/webapp/exampleApplicationResources_ru.properties

2001-11-30 Thread Martin Cooper
Just curious - how do you generate this stuff? I mean, you're obviously not going to sit down and start typing sequences of escaped Unicode character codes... ;-) I wondered the same thing when I saw Craig's commit yesterday. Thanks! -- Martin Cooper - Original Message - From: [EMAIL

Re: bean:write format attribute changes bean:write default behavior

2001-12-05 Thread Martin Cooper
I agree with you - I'd say this is a bug. Could you file a bug in bugzilla, please (if you haven't done so already)? Thanks. -- Martin Cooper - Original Message - From: Deadman, Hal [EMAIL PROTECTED] To: 'Struts Dev List' [EMAIL PROTECTED] Sent: Monday, December 03, 2001 6:07 PM

Re: TODO List: XmlMessageResources volunteer

2001-12-10 Thread Martin Cooper
(which was moved to Commons from Struts) to parse the XML files, and it uses the same file naming scheme (i.e. appended locale name) as that for regular property files. -- Martin Cooper - Original Message - From: mihai iancu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, December 08

  1   2   3   4   5   6   >