Unit Tests

2001-10-17 Thread Adam Grohs
Has anyone been able to get the unit tests running on the live src?? If anyone has them working I would appreciate some assistance. I get the following errors, any thoughts, should I post this to the users list?? run.test: [junit] Running org.apache.struts.taglib.logic.TestEqualTag [java]

cvs commit: jakarta-struts/contrib/validator/src/share/com/wintecinc/struts/validation Field.java Validator.java ValidatorResources.java

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 23:03:32 Modified:contrib/validator/src/share/com/wintecinc/struts/validation Field.java Validator.java ValidatorResources.java Log: When indexed property support was added, it broke the cloning of non-default loccale FormSets. The

cvs commit: jakarta-struts/contrib/validator/web/jdbc-example jsRegistration.jsp jsRegistrationSearch.jsp multiRegistration1.jsp multiRegistration2.jsp multiRegistrationSearch.jsp registration.jsp registrationSearch.jsp type.jsp

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 23:21:35 Modified:contrib/validator/web/jdbc-example jsRegistration.jsp jsRegistrationSearch.jsp multiRegistration1.jsp multiRegistration2.jsp multiRegistrationSearch.jsp registration.jsp

Re: form action problem

2001-10-17 Thread Yokota Takehiko
On Wed, 17 Oct 2001 08:11:39 +0100 Mike Dewhirst [EMAIL PROTECTED] wrote: We have a problem where struts is replacing form action URI's with the Weblogic application name, but we want to be able to specify (override) the URI ourselves. How is this possible? I had the same problem, and I

Bad Resource Links

2001-10-17 Thread David Winterfeldt
Ted, I just wanted to mention that any of the resource links to http://husted.com/about/struts are bad since everything was moved to http://husted.com/struts, but even if you take out the about from the url it still does't go to the resource.

cvs commit: jakarta-struts/contrib/validator/src/share/com/wintecinc/struts/validation StrutsValidator.java GenericValidator.java

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 13:16:06 Modified:contrib/validator/src/share/com/wintecinc/struts/validation StrutsValidator.java GenericValidator.java Log: Added min and max length validations. Revision ChangesPath 1.3 +78 -0

cvs commit: jakarta-struts/contrib/validator/docs revision.html

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 13:16:56 Modified:contrib/validator/docs revision.html Log: Added some comments for revisions not posted on home.earthlink.net/~dwinterfeldt. Revision ChangesPath 1.3 +11 -0 jakarta-struts/contrib/validator/docs/revision.html Index:

cvs commit: jakarta-struts/contrib/validator/src/example/com/wintecinc/struts/example/validator ApplicationResources.properties ApplicationResources_fr.properties

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 13:18:04 Modified:contrib/validator/src/example/com/wintecinc/struts/example/validator ApplicationResources.properties ApplicationResources_fr.properties Log: Add min and max length error messages. Revision

cvs commit: jakarta-struts/contrib/validator/src/jdbc-example/com/wintecinc/struts/example/validator/jdbc ApplicationResources.properties ApplicationResources_fr.properties

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 13:19:27 Modified: contrib/validator/src/jdbc-example/com/wintecinc/struts/example/validator/jdbc ApplicationResources.properties ApplicationResources_fr.properties Log: Added min and max length error messages.

cvs commit: jakarta-struts/contrib/validator/web/example/WEB-INF validation.xml

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 13:37:05 Modified:contrib/validator/web/example/WEB-INF validation.xml Log: Added min and max length validators and added min validation to firstName and max validation to lastName in the registrationForm. Revision ChangesPath 1.4 +88 -2

cvs commit: jakarta-struts/contrib/validator/web/jdbc-example/WEB-INF validation.xml

2001-10-17 Thread dwinterfeldt
dwinterfeldt01/10/17 13:37:37 Modified:contrib/validator/web/jdbc-example/WEB-INF validation.xml Log: Added min and max length validators. Revision ChangesPath 1.5 +76 -0 jakarta-struts/contrib/validator/web/jdbc-example/WEB-INF/validation.xml Index:

RE: Arrrg...

2001-10-17 Thread Deadman, Hal
I was getting similar errors trying to use struts post 1.0 on Weblogic 6.0 which uses jaxp 1.0. Struts 1.1 requires a server with a jaxp 1.1 xml parser. Maybe that's the problem? -Original Message- From: Craig Tataryn [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 17, 2001 4:13 PM

Generating doc/*.xml files from javadocs

2001-10-17 Thread Matt Raible
Hello, I am writing to find out if the docs/*.xml files in the source distribution of struts are "generated" or are they static. Ideally, I would like to use this same process to create tld's and html files for our tag libraries. However, I would like to generate the xml files

[PATCH] web cvs link incorrect on Struts homepage

2001-10-17 Thread mascolino . mr
All, I realize this is fairly trivial, but I thought I would report it anyway. The Struts homepage's link to the web view of cvs is wrong. It is still referencing cvsweb (which doesn't appear to be there anymore). I have attached a patch to fix the link to point to viewcvs on cvs.apache.org.

Re: Generating doc/*.xml files from javadocs

2001-10-17 Thread Craig R. McClanahan
On Wed, 17 Oct 2001, Matt Raible wrote: Date: Wed, 17 Oct 2001 18:07:42 -0600 From: Matt Raible [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Martin Gee [EMAIL PROTECTED] Subject: Generating doc/*.xml files from javadocs Hello, I am writing to find out if

Re: Generating doc/*.xml files from javadocs

2001-10-17 Thread Matt Raible
Craig, Thanks for the clarification. I figured out the part you mentioned below, and was able to successfully use what is in struts source to generate documentation for our own tag libraries similarly. However, I think the javadoc information in my tag libraries and the xml source might end up

form action problem

2001-10-17 Thread Mike Dewhirst
We have a problem where struts is replacing form action URI's with the Weblogic application name, but we want to be able to specify (override) the URI ourselves. How is this possible? e.g. in the jsp: sh:form action=/someAction... in generated html: form action;/appname/someAction... we want:

RE: form action problem

2001-10-17 Thread Mike Dewhirst
Title: RE: form action problem sh is just what we had to rename the html prefix to, in effect we DO have: html:form method=post action=SomeAction is there really nobody out there who has faced this problem? We think the only way to resolve this is to amend the Struts source. Mike