DO NOT REPLY [Bug 14949] New: - Combining Internationalization with the validator framework

2002-11-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14949

Combining Internationalization with the validator framework

   Summary: Combining Internationalization with the validator
framework
   Product: Struts
   Version: Nightly Build
  Platform: PC
OS/Version: Windows NT/2K
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Validator Framework
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


When I tried out the Validator framework all worked fine, just until I changed 
my Language Preference in internet explorer to fr_be  as first in the list. To 
be sure that it wasn't me that configured the validator wrong, I checked it 
with the Struts-validator.war example packaged with Struts.
So I startup my MS internet explorer with language preference fr_be and surf to 
the address http://localhost:8080/struts-validator. All messages are in French 
no problem so far. But now it happens when I click the link "Formulaire de 
type" and proceed without filling anything in the validation is not performed.
When I try the javascripts examples it appears that the Struts controller 
component didn't insert the following code 


Struts Validations ??

2002-11-29 Thread Rajendra Yadav

Hi All,

I need some information regarding the usgae of the struts validations.

If anyone is using it, please let me know the pros and cons of it and how effective it 
is if compared to javascript validations.

Thanks,

- Raj



-
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now


Re: Struts WML Tag Library

2002-11-29 Thread Davor Cengija
Chip Paul wrote:
> Thanks.  Do you have a site or anything that has design/progress/java
> docs for what you've done so far?

Hi.

What's the status of your efforts? I'm in the 'group' mentioned earlier in
this thread and we have fully functional WML taglib which works quite fine,
at least in my project. We've been a little bit too busy with other things,
but now I'd probably find some time and announce it. Just some final makeups
are needed.

Contact me directly if you're interested in 'prerelease'





--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Struts Validations ??

2002-11-29 Thread Deepika Malik
hi,
I am myself doing quite a bit of research on this.
but have not been able to come to an effective solution.

According to me the simpler validations should be in javascript.
as this would save
1)one trip to the server.
2)would not make the page too heavy with javascript.
3)too complex validations in javascript are always a pain.
but these validation should again be repeated on the server 'cos
javascript validation can easily be disabled on the browser.

What you need to do in validate method of actionform
for server side validation is:
public ActionErrors validate(ActionMapping mapping,
 HttpServletRequest request)
 {

ActionErrors errors = new ActionErrors();
 if (formAttribute == null)
  errors.add("formAttribute ", new
ActionError("error.username.required"));


return errors;

}
lets say you are validating that your formAttribute cannot be null.
then you will add this error to "errors" object with the same name as your
attribute.
In this case,formAttribute.
error.username.required -have this entry in your properties file.
and in your jsp page

this will display your error.

Thanks,
Deepika

-Original Message-
From: Rajendra Yadav [mailto:[EMAIL PROTECTED]]
Sent: Friday, November 29, 2002 3:17 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Struts Validations ??



Hi All,

I need some information regarding the usgae of the struts validations.

If anyone is using it, please let me know the pros and cons of it and how
effective it is if compared to javascript validations.

Thanks,

- Raj



-
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: Struts Validations ??

2002-11-29 Thread Ted Husted
This is really a question for the Struts USER list. 

There are a couple of extensions available for Struts 1.0 that 
provide both client-side and server-side validations. One of 
these, the Commons/Strtus Validator, is being bundled with Struts 
1.1.

Questions regarding how to use any of these should be directed to 
the USER list. 

-Ted.


11/29/2002 6:17:26 AM, Rajendra Yadav <[EMAIL PROTECTED]> wrote:

Hi All,

I need some information regarding the usgae of the struts 
validations.

If anyone is using it, please let me know the pros and cons of it 
and how effective it is if compared to javascript validations.

Thanks,

- Raj



-
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now





--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




DO NOT REPLY [Bug 14956] New: - adds jsessionid even when href specified

2002-11-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14956

 adds jsessionid even when href specified

   Summary:  adds jsessionid even when href specified
   Product: Struts
   Version: 1.1 Beta 2
  Platform: All
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Custom Tags
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]


The docs for bean:include indicate 'session' will not be preserved in URLs 
included by this tag when the href parameter is used.  I specified href='url 
for an html file on some other server' and jsessionid was more of then than not 
appended to the included URL.

This prevented 'other server' from resolving the URL.  I've since moved to 
 which works as expected.

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Struts Validation DTD

2002-11-29 Thread Ralph Schaer
I found a problem with struts validation. 
I have one struts installation on a pc that does not have an internet connection. This 
works fine. Struts can read the dtd for the struts-config file from the jar 
(org\apache\struts\resources\struts-config_1_1.dtd).
Then I added the struts validation configurations file to the application. The 
ValidatorPlugIn tries to read the dtd from the Internet 
(http://jakarta.apache.org/commons/dtds/validator_1_0.dtd) and crashes with an 
Exception (UnknownHostException: jakarta.apache.org). 

Regards
Ralph




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc index.xml

2002-11-29 Thread husted
husted  2002/11/29 09:14:41

  Modified:doc  index.xml
  Log:
  A few tweaks.
  
  Revision  ChangesPath
  1.37  +64 -55jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- index.xml 7 Nov 2002 08:47:33 -   1.36
  +++ index.xml 29 Nov 2002 17:14:41 -  1.37
  @@ -1,60 +1,69 @@
   
   
   
  -  
  -Craig R. McClanahan
  -Ted Husted
  -Martin Cooper
  -James Holmes
  -The Apache Struts Web Application Framework
  -  
  -
  -  
  -
  -  
  -
  -  
  -  Welcome to Struts!  The goal of this project
  -  is to provide an open source framework for building Web applications.
  -  The core of Struts is a flexible control layer based on standard
  -  technologies like
  -  Java Servlets,
  -  JavaBeans,
  -  ResourceBundles,
  -  and Extensible Markup Language (XML).
  -  
  -  
  -  Struts encourages application architectures based on the Model 2 approach,
  -  a variation of the classic
  -  http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>Model-View-Controller
 (MVC) design paradigm. Struts
  -  provides its own Controller component and integrates
  -  with other technologies to provide 
the Model and the View.
  -  For the Model, Struts can interact with any
  -  standard data access technology, including 
Enterprise Java Beans, JDBC, and Object Relational Bridge.
  -  For the View, Struts works well with JavaServer Pages, Velocity Templates,
  -  XSLT, and other presentation systems.
  -  
  -
  -  
  -  The Struts framework provides the invisible underpinnings every
  -  professional Web application needs to survive. Struts helps you
  -  create an extensible development environment for your application,
  -  based on published standards and proven design patterns.
  -  
  -
  -  
  -  Struts is part of the http://jakarta.apache.org";>Apache Jakarta
  -  Project, sponsored by the
  -  http://www.apache.org";>Apache Software Foundation.  The
  -  official Struts home page is at
  -  http://jakarta.apache.org/struts";>http://jakarta.apache.org/struts.
  -  
  -
  -  
  -
  -  
  -  So when is the next 
release coming out?
  -  
  +
  +Craig R. McClanahan
  +Ted Husted
  +Martin Cooper
  +James Holmes
  +The Apache Struts Web Application Framework
  +
  +
  +
  +
  +
  +
  +
  +Welcome to Struts!
  +The goal of this project is to provide an open source framework for 
building web applications.
  +
  +
  +
  +The core of the Struts framework is a flexible control layer based 
on
  +standard
  +technologies like
  +Java Servlets,
  +JavaBeans,
  +ResourceBundles,
  +and Extensible Markup Language (XML).
  +
  +
  +
  +Struts encourages application architectures based on the Model 2 
approach,
  +a variation of the classic
  +http://java.sun.com/blueprints/guidelines/designing_enterprise_applications_2e/web-tier/web-tier5.html";>
  +Model-View-Controller
  + (MVC) design paradigm.
  +Struts provides its own
  +Controller component and integrates with
  +other technologies to 
provide the Model and the View.
  +For the Model, Struts can interact with any
  +standard data access 
technology, including Enterprise Java Beans, JDBC, and Object Relational Bridge.
  +For the View, Struts works well with JavaServer Pages, 
Velocity Templates, XSLT, and
  +other presentation systems.
  +
  +
  +
  +The Struts framework provides the invisible underpinnings every 
professional web application needs to survive.
  +Struts helps you create an extensible development environment for 
your application, based on published standards and proven design patterns.
  +
  +
  +
  +Struts is part of the
  +http://jakarta.apache.org";>Apache Jakarta Project,
  +sponsored by the
  +http://www.apache.org";>Apache Software Foundation.
  +The official Struts home page is at
  +http://jakarta.apache.org/struts";>http://jakarta.apache.org/struts.
  +
  +
  +
  +
  +
  +
  +So when is the next release 
coming out?
  +
  +
   
  -  
  +
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, 

DO NOT REPLY [Bug 14968] New: - Improvement for component state management

2002-11-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14968

Improvement for component state management

   Summary: Improvement for component state management
   Product: Struts
   Version: Unknown
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: Other
 Component: Custom Tags
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
CC: [EMAIL PROTECTED]


Hi,

  I posted on a mailing list a while ago regarding a way to manage 
buttons/fields that must be disable/enabled at any given time in an web 
application.  My conclusion was that they where no easy way handle that (Am I 
wrong?).

So I implement my state management this way:
 />

NOTE: I didn't use tag lib for input .. I probably got a problem with it .. 
anyway ...

The HtmlcomponentController returns a HTML string to disable/enable the button 
base on application current state and user's role/permission.

I would have liked to do it this way, which is more clean:-)



In this solution you must provide a handler (maybe put it in the session as 
application attribute). When the stateManaged attribute is set, the taglib get 
the pre-defined handler and calls a method (like getStateAttribute ) with the 
button name as argument and get the button current state (This one return 
true/false).

Maybe it already been asked before.. or maybe I didn't address my problem the 
right way ... Anyway I'm asking just to be sure ... :-)

If you need more inputs just tell me 

Best Regards
/David GAgnon

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc volunteers.xml using.xml project.xml index.xml acquiring.xml

2002-11-29 Thread husted
husted  2002/11/29 11:01:31

  Modified:doc  volunteers.xml using.xml project.xml index.xml
acquiring.xml
  Log:
  A few tweaks.
  
  Revision  ChangesPath
  1.17  +8 -2  jakarta-struts/doc/volunteers.xml
  
  Index: volunteers.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/volunteers.xml,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- volunteers.xml6 Nov 2002 22:47:31 -   1.16
  +++ volunteers.xml29 Nov 2002 19:01:31 -  1.17
  @@ -353,6 +353,12 @@
   and the community surrounding it.
   
   
  -  Next: How you can help
  +
   
  -
  +  
  +  
  +  Next: Development Roadmap
  +  
  +  
  +
  +
  
  
  
  1.3   +6 -0  jakarta-struts/doc/using.xml
  
  Index: using.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/using.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- using.xml 7 Nov 2002 08:47:33 -   1.2
  +++ using.xml 29 Nov 2002 19:01:31 -  1.3
  @@ -147,5 +147,11 @@
   
 
   
  +  
  +  
  +  Next: Who We Are
  +  
  +  
  +  
 
   
  
  
  
  1.31  +4 -12 jakarta-struts/doc/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/project.xml,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- project.xml   17 Nov 2002 22:07:11 -  1.30
  +++ project.xml   29 Nov 2002 19:01:31 -  1.31
  @@ -72,25 +72,17 @@
   
   
   
   
  -
   
  -
  + name="FAQs and Howtos" 
  + href="faqs/index.html"
  + />
   
   
   
  
  
  
  1.38  +9 -3  jakarta-struts/doc/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/index.xml,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- index.xml 29 Nov 2002 17:14:41 -  1.37
  +++ index.xml 29 Nov 2002 19:01:31 -  1.38
  @@ -60,9 +60,15 @@
   
   
   
  -
  -So when is the next release 
coming out?
  -
  +
  +Next: Learning About Struts
  +
  +
  +
  +
  +
  +So when is the next release coming 
out?
  +
   
   
   
  
  
  
  1.2   +9 -1  jakarta-struts/doc/acquiring.xml
  
  Index: acquiring.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/acquiring.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- acquiring.xml 6 Nov 2002 22:47:32 -   1.1
  +++ acquiring.xml 29 Nov 2002 19:01:31 -  1.2
  @@ -17,7 +17,7 @@
 The production release of Struts 1.0.2 is available in
 a convenient binary distribution and also with complete source code. In
 addition, a library distribution is available, which contains the latest
  -  Struts binaries without the sample applications, providing a smaller,
  +  Struts binaries without the documentation or sample applications, providing a 
smaller,
 faster download.
 
   
  @@ -232,6 +232,14 @@
 
   
 
  +
  +
  +  
  +  
  +  Next: Using Struts
  +  
  +  
  +
   
 
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc learning.xml

2002-11-29 Thread husted
husted  2002/11/29 11:01:38

  Modified:doc  learning.xml
  Log:
  A few tweaks.
  
  Revision  ChangesPath
  1.2   +90 -42jakarta-struts/doc/learning.xml
  
  Index: learning.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/learning.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- learning.xml  6 Nov 2002 22:47:32 -   1.1
  +++ learning.xml  29 Nov 2002 19:01:38 -  1.2
  @@ -16,64 +16,106 @@
 
 The official documentation for the framework is provided both online
 and as a self-installing WAR in the distribution. The
  -  struts-documentation.war includes our
  -  FAQs and Howtos,
  -  Newbie along with the
  -  Users Guide,
  -  Javadocs, and everything else you find here.
  -  You are invited to preview the documentation online, and then install the
  -  application locally for closer study.
  +  struts-documentation.war includes our 
  +  
  +  
  +  
  + 
  + User and Developer Guides,
  + 
  + 
  +Javadocs,
  + 
  + 
  + FAQs and Howtos,
  + 
  + 
  + and everything else you find here.
  + 
  +  
  +  
  +  
  +  You are invited to preview the documentation online and then install the 
application locally for closer study.
 
   
 
  -  Note: Most of the links in this section refer to the Nightly Build.
  -  When learning about Struts, be sure to refer to the documentation for the
  -  version you are actually using. The documentation is bundled with each
  -  distribution as an application that you can install locally. Links to the
  -  documentation for the current stable release (1.0.2) are also provided on the
  -  menu bar. Whenever possible, please help conserve our bandwidth, and install
  -  the documentation locally.
  +  NOTE: If you are previewing the documentation on the website, most of the 
links in this section will refer to the Nightly Build.
  +  When learning about Struts, be sure to refer to the documentation for the 
version you are actually using. 
  +  The documentation is bundled with each distribution as an application that you 
can install locally. 
  +  Once you start working with Struts, you should refer to the documentation bundled 
with the release you are using. 
  +  For your convenience, links to the documentation for the current stable release 
(1.0.2) are also provided on the menu bar. 
  +  Whenever possible, please help conserve our bandwidth and install the 
documentation locally.
 
   
  -  
  -  The Kickstart FAQ answers the most 
common
  -  non-technical questions people first ask about Struts. The
  -  Struts Newbie FAQ answers the most common
  -  technical questions asked by first-timer Struts developers. The
  -  How to Help FAQ answers the most common 
questions
  -  about contributing to the Jakarta-Struts project. A more extensive
  -  Struts knowledgebase is available at the
  -  http://jguru.com/faq/Struts";>JGuru FAQ and
  -  http://jguru.com/forums/Struts";>Forum.
  -  
  -
 
  -  The concise Struts Users Guide 
introduces the
  -  Model-View-Controller architecture, and how it relates to the major components of 
Struts.
  -  To help you get started with the Struts JSP tag extensions and utility packages,
  -  several Developer Guides supplement the Users Guide. The Users Guide also
  -  includes detailed installation instructions and release notes for each version of 
the
  -  framework.
  +  The concise Struts User Guide 
introduces the Model-View-Controller architecture, 
  +  and how it relates to the major components of Struts.
  +  If you want to find out "How Struts works", this is the place to start: Read 
me first.
  +  Along with an architectural overview, 
  +  the User Guide also includes detailed installation instructions and release notes 
for each version of the framework.
  +  
  +  
  +  
  +  Our Developer Guides are detailed technical references to the extensions 
and components provided in the Struts distribution. 
  +  Included are package overviewa and API referencea for each of the Struts taglibs, 
  +  along with guides to the Struts Utilities and the Struts Validator. 
  +  The Developer Guides are designed as a day-to-day reference to help you get the 
most out of the standard packages.
 
   
 
 For more detail about a specific class or package, the Struts
 Javadocs
  -  are surprisingly comprehensive and carefully maintained. It is 
strongly recommended that
  -  you refer to the
  +  are surprisingly comprehensive and carefully maintained. 
  +  It is strongly recommended that you refer to the
 
  -  Javadoc for each class as you begin to use it, to be sure important features
  -  and options are not overlooked. What you don't know, can't help you.
  +  Javadoc for each class as you begin to use it. 
  +  This will help ensure that important features and options are not overlooked.

DO NOT REPLY [Bug 14968] - Improvement for component state management

2002-11-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14968

Improvement for component state management

[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Normal  |Enhancement

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/news project.xml index.xml

2002-11-29 Thread husted
husted  2002/11/29 11:49:36

  Modified:doc/news project.xml index.xml
  Log:
  Routine update.
  
  Revision  ChangesPath
  1.3   +0 -5  jakarta-struts/doc/news/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/news/project.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- project.xml   17 Nov 2002 22:07:47 -  1.2
  +++ project.xml   29 Nov 2002 19:49:36 -  1.3
  @@ -16,11 +16,6 @@
   
   
   
  -
  -
  -
  -
  -
   
   
   
  
  
  
  1.9   +49 -1 jakarta-struts/doc/news/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/news/index.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- index.xml 18 Nov 2002 02:00:19 -  1.8
  +++ index.xml 29 Nov 2002 19:49:36 -  1.9
  @@ -104,6 +104,54 @@
   
   
   
  +
  +
  +27 Nov 2002 - Expresso 5.0.2 Released
  +
  +Expresso 5.0.2 can be downloaded freely from:
  +
  +
  +http://www.jcorporate.com/product/expresso.html";>http://www.jcorporate.com/product/expresso.html
  +
  +
  +Both Expresso source and binaries are available. 
  +
  +
  +This minor release is primarily a bug fix release. Bug Fixes include a
  +NPE fix in JDBC Executor, a Blob Field fix, Validation improvements, and
  +ComponentManager link fixes. 
  +
  +
  +New Features (not affecting existing code) include a proper Struts-based
  +ExLink tag by Malcolm Wise.
  +
  +
  +
  +
  +24 Nov 2002 - O'Reilly Struts Book Now Available
  +
  +Programming Jakarta Struts by Chuck Cavaness (ISBN: 0596003285) is now available 
and shipping. 
  +
  +
  +
  + http://www.amazon.com/exec/obidos/ISBN=0596003285/hitchhikeguidetoA/";>Amazon
  +
  +
  + http://www.bookpool.com/.x/6kq93k1kim/sm/0596003285";>Bookpool
  +
  +
  + http://www.oreilly.com/catalog/jakarta";>O’Reilly
  +
  +
  +
  +
  +
   17 Nov 2002 - Struts At ApacheCon 2002
   
   If you're coming to Las Vegas this week for ApacheCon, there will be two
  @@ -240,7 +288,7 @@
   added and Struts 1.1 modules are supported.
   
   
  -Easy Struts Features :
  +Easy Struts Features:
   
   
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




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

2002-11-29 Thread dgraham
dgraham 2002/11/29 11:49:50

  Modified:src/share/org/apache/struts/action ActionServlet.java
  Log:
  Removed duplicate InputStream close for Bugzilla PR# 14894.
  
  Revision  ChangesPath
  1.133 +5 -5  
jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java
  
  Index: ActionServlet.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServlet.java,v
  retrieving revision 1.132
  retrieving revision 1.133
  diff -u -r1.132 -r1.133
  --- ActionServlet.java28 Nov 2002 07:47:37 -  1.132
  +++ ActionServlet.java29 Nov 2002 19:49:50 -  1.133
  @@ -893,9 +893,9 @@
   input = getServletContext().getResourceAsStream(path);
   is.setByteStream(input);
   digester.parse(is);
  -input.close();
   getServletContext().setAttribute
   (Globals.MODULE_KEY + prefix, config);
  +
   } catch (Throwable t) {
   log.error(internal.getMessage("configParse", path), t);
   throw new UnavailableException
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/news project.xml index.xml

2002-11-29 Thread husted
husted  2002/11/29 11:53:24

  Modified:doc/news project.xml index.xml
  Log:
  Routine update.
  
  Revision  ChangesPath
  1.4   +2 -1  jakarta-struts/doc/news/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/news/project.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- project.xml   29 Nov 2002 19:49:36 -  1.3
  +++ project.xml   29 Nov 2002 19:53:24 -  1.4
  @@ -7,7 +7,8 @@
   
   
   
  -
  +
  +
   
   
   
  
  
  
  1.10  +1 -1  jakarta-struts/doc/news/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/news/index.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- index.xml 29 Nov 2002 19:49:36 -  1.9
  +++ index.xml 29 Nov 2002 19:53:24 -  1.10
  @@ -54,7 +54,7 @@
   So when is the next 
release coming out?
   
   
  -
  +
   
   
   Download counts for Struts binary distributions in October 2002:
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/bean IncludeTag.java

2002-11-29 Thread dgraham
dgraham 2002/11/29 11:54:22

  Modified:src/share/org/apache/struts/taglib/bean IncludeTag.java
  Log:
  Formatted code.
  
  Revision  ChangesPath
  1.19  +49 -66
jakarta-struts/src/share/org/apache/struts/taglib/bean/IncludeTag.java
  
  Index: IncludeTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/bean/IncludeTag.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- IncludeTag.java   22 Sep 2002 06:32:45 -  1.18
  +++ IncludeTag.java   29 Nov 2002 19:54:22 -  1.19
  @@ -60,7 +60,6 @@
   
   package org.apache.struts.taglib.bean;
   
  -
   import java.io.BufferedInputStream;
   import java.io.InputStreamReader;
   import java.net.HttpURLConnection;
  @@ -74,7 +73,6 @@
   import org.apache.struts.util.MessageResources;
   import org.apache.struts.util.RequestUtils;
   
  -
   /**
* Define the contents of a specified intra-application request as a
* page scope attribute of type java.lang.String.  If the
  @@ -91,16 +89,13 @@
   
   public class IncludeTag extends TagSupport {
   
  -
   // - Properties
   
  -
   /**
* Buffer size to use when reading the input stream.
*/
   protected static final int BUFFER_SIZE = 256;
   
  -
   /**
* The anchor to be added to the end of the generated hyperlink.
*/
  @@ -114,7 +109,6 @@
   this.anchor = anchor;
   }
   
  -
   /**
* The name of the global ActionForward that contains a
* path to our requested resource.
  @@ -129,7 +123,6 @@
   this.forward = forward;
   }
   
  -
   /**
* The absolute URL to the resource to be included.
*/
  @@ -143,7 +136,6 @@
   this.href = href;
   }
   
  -
   /**
* The name of the scripting variable that will be exposed as a page
* scope attribute.
  @@ -158,14 +150,11 @@
   this.id = id;
   }
   
  -
   /**
* The message resources for this package.
*/
   protected static MessageResources messages =
  -MessageResources.getMessageResources
  -("org.apache.struts.taglib.bean.LocalStrings");
  -
  +
MessageResources.getMessageResources("org.apache.struts.taglib.bean.LocalStrings");
   
   /**
* Deprecated method to set the "name" attribute, which has been
  @@ -177,21 +166,19 @@
   this.page = name;
   }
   
  -
   /**
* The context-relative URI of the page or servlet to be included.
*/
   protected String page = null;
   
   public String getPage() {
  - return (this.page);
  +return (this.page);
   }
   
   public void setPage(String page) {
  - this.page = page;
  +this.page = page;
   }
   
  -
   /**
* Include transaction token (if any) in the hyperlink?
*/
  @@ -205,10 +192,8 @@
   this.transaction = transaction;
   }
   
  -
   // - Public Methods
   
  -
   /**
* Define the contents returned for the specified resource as a
* page scope attribute.
  @@ -217,91 +202,91 @@
*/
   public int doStartTag() throws JspException {
   
  - // Set up a URLConnection to read the requested resource
  -Map params = RequestUtils.computeParameters
  -(pageContext, null, null, null, null,
  - null, null, null, transaction); // FIXME -  attributes
  +// Set up a URLConnection to read the requested resource
  +Map params =
  +RequestUtils.computeParameters(
  +pageContext,
  +null,
  +null,
  +null,
  +null,
  +null,
  +null,
  +null,
  +transaction);
  +// FIXME -  attributes
   String urlString = null;
   URL url = null;
   try {
  -urlString = RequestUtils.computeURL(pageContext, forward, href,
  -page, params, anchor, false);
  +urlString =
  +RequestUtils.computeURL(pageContext, forward, href, page, params, 
anchor, false);
   if (urlString.indexOf(':') < 0) {
  -HttpServletRequest request = (HttpServletRequest)
  -pageContext.getRequest();
  +HttpServletRequest request = (HttpServletRequest) 
pageContext.getRequest();
   url = new URL(RequestUtils.requestURL(request), urlString);
   } else {
   url = new URL(urlString);
   }
   } catch (MalformedURLException e) {
   RequestUtils.saveException(pageContext, e);
  -throw new J

DO NOT REPLY [Bug 14938] - Inconsistent "No getter method found" error for bean object within ArrayList, but the property does exist

2002-11-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14938

Inconsistent "No getter method found" error for bean object within ArrayList, but the 
property does exist

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME



--- Additional Comments From [EMAIL PROTECTED]  2002-11-29 20:02 ---
Bugzilla is not the appropriate place for this question.  Please post this to the 
struts-user 
mailing list.  The description really doesn't help us track this down.  Whenever you 
find yourself 
saying, "This happens randomly" or "I can't consistently reproduce this." then rethink 
posting 
it to bugzilla until you can.  Thanks.

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/resources tutorials.xml project.xml guis.xml books.xml

2002-11-29 Thread husted
husted  2002/11/29 12:04:32

  Modified:doc/resources tutorials.xml project.xml guis.xml books.xml
  Log:
  Routine update.
  
  Revision  ChangesPath
  1.8   +2 -0  jakarta-struts/doc/resources/tutorials.xml
  
  Index: tutorials.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/resources/tutorials.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- tutorials.xml 1 Nov 2002 04:49:10 -   1.7
  +++ tutorials.xml 29 Nov 2002 20:04:32 -  1.8
  @@ -10,6 +10,8 @@
   http://husted.com/struts/resources";> 
   
   
  +http://www.projectrefinery.com/struts.html";>Introduction to Struts 
by Roger W. Barnes - PowerPoint Presentation reivewing the basics of the Struts was 
architecture. 
  +http://www.projectrefinery.com/struts.html";>Struts Cross-Reference 
by Roger W. Barnes - (PDF) Shows how the struts-config of the Struts MailReader 
example relates to its Java classes and JavaServer Pages.
   http://www.fawcette.com/javapro/2002_07/online/kjones/";>Create 
Better Web Apps with Struts by Kevin Jones.
   http://javaboutique.internet.com/tutorials/Struts/";>Stepping through 
Jakarta Struts by Keld H. Hansen.
   http://javaboutique.internet.com/tutorials/Struts2/";>Coding your 
second Jakarta Struts Application by Keld H. Hansen.
  
  
  
  1.6   +0 -5  jakarta-struts/doc/resources/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/resources/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml   17 Nov 2002 22:07:33 -  1.5
  +++ project.xml   29 Nov 2002 20:04:32 -  1.6
  @@ -33,11 +33,6 @@
   
   
   
  -
  -
  -
  -
  -
   
   
   
  
  
  
  1.9   +1 -1  jakarta-struts/doc/resources/guis.xml
  
  Index: guis.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/resources/guis.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- guis.xml  18 Nov 2002 00:09:20 -  1.8
  +++ guis.xml  29 Nov 2002 20:04:32 -  1.9
  @@ -11,9 +11,9 @@
   
   
   http://www.objectventure.com/products/objectassembler.html";>ObjectAssembler 
2.5 Pro by ObjectVentur - supports the development of Struts applications, a 
popular open source web application framework that is part of Apache's Jakarta 
Project. The same visual development and code synchronization available with J2EE 
components are available for Struts components.
  +http://easystruts.sourceforge.net/";>Easy Struts by Emmanuel 
Boudrant - The aim of this project is to provide a bunch of development tools, for 
Eclipse v2.0 and Borland JBuilder 5-7, in order to facilitate the development of a 
Struts application. A GUI editor for struts-config.xml files is available in Eclipse 
2.0 plugin.
   http://www.jamesholmes.com/struts/";>Struts Console 3.0 by 
James Holmes. The Struts Console is a standalone Java Swing application for managing 
Struts-based applications, including plugin support for Sun Forte for Java, NetBeans, 
Borland JBuilder, and Oracle JDeveloper 9i. 
   http://www.synthis.com/products/adalon/overview.jsp";>Adalon 
- Adalon is a next generation functional design tool that fills the gaps left by 
today's market leading software design products. 
  -http://easystruts.sourceforge.net/";>Easy Struts by Emmanuel 
Boudrant - The aim of this project is to provide a bunch of development tools, for 
Eclispe v2.0 and Borland JBuilder 5-7, in order to facilitate the development of a 
Struts application. A GUI editor for struts-config.xml files is available in Eclipse 
2.0 plugin.
   http://www.solanasoft.com";>JForms: a visual tool for 
Struts-based Web forms.
   http://www.javanovic.com";>Karapan Sapi: open source 
generator software for the Struts framework.
   http://www.scioworks.com/scioworks_camino.html";>Scioworks 
Camino by Scioworks Pte Ltd. - A visual tool for Struts. 
  
  
  
  1.12  +3 -3  jakarta-struts/doc/resources/books.xml
  
  Index: books.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/resources/books.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- books.xml 11 Nov 2002 21:33:51 -  1.11
  +++ books.xml 29 Nov 2002 20:04:32 -  1.12
  @@ -11,6 +11,9 @@
   
   
   
  +http://www.amazon.com/exec/obidos/ISBN=0596003285/hitchhikeguidetoA/";>Programming
 Jakarta Struts by Chuck Cavaness - Not yet published. [http://www.oreilly.com/catalog/jakarta/";>beta chapter available] [http://www.theserverside.com/resources/strutsreview.jsp";>Public review draft]
  +
  +
   http://www.softpro.com/1-55860-862-1.html";>The Struts Framework: 
Practical Guid

Re: b3 minus 27? (or so)

2002-11-29 Thread Peter A. J. Pilgrim
David M. Karr wrote:

"micael" == micael  <[EMAIL PROTECTED]> writes:



micael> I did not get an answer to my inquiry about how to find the magic 27.  However,
micael> I did get to this page which has 19.  Is this the place?

You could fiddle with a detailed query URL, or you could just go to the query
page and enter reasonable constraints.  Go to
.  Select "Struts" in the
"Program" list, and you could select all but "Enhancement" in the "Severity"
list.  You could even check for "AssignedTo" being equal to
"[EMAIL PROTECTED]" (in the box just above the "Sort By" box).
This will get you to a manageable list.

Then click "Submit Query" and browse through the results.



Try this horrible URL

http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&product=Struts&version=Nightly+Build&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&bug_file_loc=&bug_file_loc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=%27Importance%27

--
Peter Pilgrim
ServerSide Java Specialist

My on-line resume and for interview videos about myself, J2EE
Open Source, Struts and Expresso.
   ||
   \\===>  `` http://www.xenonsoft.demon.co.uk/no-it-striker.html ''


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/images/books - New directory

2002-11-29 Thread husted
husted  2002/11/29 13:16:29

  jakarta-struts/doc/images/books - New directory

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/images/books 1930110502.jpg 1558608621.jpg 0672324725.jpg 0596003285.jpg 0471213020.jpg

2002-11-29 Thread husted
husted  2002/11/29 13:16:53

  Added:   doc/images/books 1930110502.jpg 1558608621.jpg
0672324725.jpg 0596003285.jpg 0471213020.jpg
  Log:
  Images for Struts books (keyed by ISBN).
  
  Revision  ChangesPath
  1.1  jakarta-struts/doc/images/books/1930110502.jpg
  
<>
  
  
  1.1  jakarta-struts/doc/images/books/1558608621.jpg
  
<>
  
  
  1.1  jakarta-struts/doc/images/books/0672324725.jpg
  
<>
  
  
  1.1  jakarta-struts/doc/images/books/0596003285.jpg
  
<>
  
  
  1.1  jakarta-struts/doc/images/books/0471213020.jpg
  
<>
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/resources tools.xml project.xml guis.xml books.xml

2002-11-29 Thread husted
husted  2002/11/29 13:17:39

  Modified:doc/resources project.xml guis.xml books.xml
  Added:   doc/resources tools.xml
  Log:
  Move guis to "tools". Add images for books.
  
  Revision  ChangesPath
  1.7   +4 -4  jakarta-struts/doc/resources/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/resources/project.xml,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- project.xml   29 Nov 2002 20:04:32 -  1.6
  +++ project.xml   29 Nov 2002 21:17:39 -  1.7
  @@ -6,19 +6,19 @@
   Struts Framework
   
   
  -
  -
  -
  +
  +
  +
   
   
   
   
  -
   
   
   
   
   
  +
   
   
   
  
  
  
  1.10  +6 -22 jakarta-struts/doc/resources/guis.xml
  
  Index: guis.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/resources/guis.xml,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- guis.xml  29 Nov 2002 20:04:32 -  1.9
  +++ guis.xml  29 Nov 2002 21:17:39 -  1.10
  @@ -1,31 +1,15 @@
   
   
   
  -Mike Schachter
  -Ted Husted
  -James Holmes
  -Resources - Code Generators and GUIs - Jakarta Struts
  +Ooops - Jakarta Struts
   

   http://husted.com/struts/resources";> 
  -
  + 
   
  -http://www.objectventure.com/products/objectassembler.html";>ObjectAssembler 
2.5 Pro by ObjectVentur - supports the development of Struts applications, a 
popular open source web application framework that is part of Apache's Jakarta 
Project. The same visual development and code synchronization available with J2EE 
components are available for Struts components.
  -http://easystruts.sourceforge.net/";>Easy Struts by Emmanuel 
Boudrant - The aim of this project is to provide a bunch of development tools, for 
Eclipse v2.0 and Borland JBuilder 5-7, in order to facilitate the development of a 
Struts application. A GUI editor for struts-config.xml files is available in Eclipse 
2.0 plugin.
  -http://www.jamesholmes.com/struts/";>Struts Console 3.0 by 
James Holmes. The Struts Console is a standalone Java Swing application for managing 
Struts-based applications, including plugin support for Sun Forte for Java, NetBeans, 
Borland JBuilder, and Oracle JDeveloper 9i. 
  -http://www.synthis.com/products/adalon/overview.jsp";>Adalon 
- Adalon is a next generation functional design tool that fills the gaps left by 
today's market leading software design products. 
  -http://www.solanasoft.com";>JForms: a visual tool for 
Struts-based Web forms.
  -http://www.javanovic.com";>Karapan Sapi: open source 
generator software for the Struts framework.
  -http://www.scioworks.com/scioworks_camino.html";>Scioworks 
Camino by Scioworks Pte Ltd. - A visual tool for Struts. 
  -http://rivernorth.sourceforge.net";>Struts Builder by 
RiverNorth - an Opensource tool (GPL license) originally developed for internal use to 
aid in development of Struts-based web applications (1.1 style).
  -http://husted.com/struts/resources/codemaker.htm";>Struts 
CodeMaker by Ravindran Ramaiah - Generate Struts application by reading 
configuration file or JSP files. Updated 2001-08-21.
  -http://husted.com/struts/resources/StrutsGen.htm";>Struts Gen 
by Cyberzombie - A rudimentary wrapper tool for value objects.
  -http://home.earthlink.net/~dwinterfeldt/generator/";>Struts 
Generator by David Winterfeldt - Based on the generator.xml and a table/query 
an xml file is generated.  Based on the generated xml file a primary key class, data 
bean class, jdbc class, and an ActionForm (Struts) can be generated.
  -http://www.alien-factory.co.uk/struts/struts-index.html";>Struts 
GUI by Alien-Factory - Alien-Factory's Struts GUI for Microsoft Visio is 
essentially a Visio Stencil with Visual Basic Macros.
  -http://xsltgenerator.sourceforge.net/";>Struts XSLT Code 
Generator by Shengmeng Liu - An XSLT based code generator for Struts, 
completely based on the XSLT transformation and a set of stylesheet files. Ideally, 
users can customize the stylesheet for each type of Struts files  to have templates of 
their own without having to access the source code and recompile it.
  -http://husted.com/struts/resources/tldtovlm.zip";>TLD to VLM 
by Mario Busche - Simple Java program to convert standard TLD's to the VLM format used 
by Homesite, CF Studio, and JRun Studio.
  -http://jakarta.apache.org/taglibs/doc/ultradev4-doc/intro.html";>UltraDev 4.0 
Custom Tag Library Extension - Hosted by Jakarta Taglibs.
  -http://www.objectwave.com/html/tools/tool1_3.htm";>X2J  by 
Objectwave - A code generation tool for building Struts applications. It includes 
wizard for easily creating JSPs, and the required Action and ActionForm classe

cvs commit: jakarta-struts/doc learning.xml

2002-11-29 Thread husted
husted  2002/11/29 13:19:11

  Modified:doc  learning.xml
  Log:
  Add images for books.
  
  Revision  ChangesPath
  1.3   +15 -1 jakarta-struts/doc/learning.xml
  
  Index: learning.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/learning.xml,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- learning.xml  29 Nov 2002 19:01:38 -  1.2
  +++ learning.xml  29 Nov 2002 21:19:11 -  1.3
  @@ -166,12 +166,26 @@
   
 
   
  +  
  +  
  +  
  +
  +  
  +  
  +  
  +  
  +  
  +
  +  
  +  
  + 
  +
 
 Printed books about Struts are available now, and several more are on the way.
 A current list of books about Struts is maintained in the
 resource area. Links to excerpts are provided when available.
 
  -
  +  
 
 A great number of online articles and tutorials have also been published about 
Struts,
 which are also listed in the
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/faqs project.xml kickstart.xml index.xml

2002-11-29 Thread husted
husted  2002/11/29 13:24:49

  Modified:doc/faqs project.xml kickstart.xml index.xml
  Log:
  Routine updates.
  
  Revision  ChangesPath
  1.6   +1 -6  jakarta-struts/doc/faqs/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/faqs/project.xml,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- project.xml   25 Nov 2002 05:25:14 -  1.5
  +++ project.xml   29 Nov 2002 21:24:49 -  1.6
  @@ -11,7 +11,7 @@
   
   
   
  -
  +
   
   
   
  @@ -19,11 +19,6 @@
   
   
   
  -
  -
  -
  -
  -
   
   
   
  
  
  
  1.4   +15 -1 jakarta-struts/doc/faqs/kickstart.xml
  
  Index: kickstart.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/faqs/kickstart.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- kickstart.xml 6 Nov 2002 22:48:46 -   1.3
  +++ kickstart.xml 29 Nov 2002 21:24:49 -  1.4
  @@ -40,7 +40,8 @@
   Why aren't the Struts tags maintained as part of the 
Jakarta Taglibs project?
   Are the Struts tags XHTML compliant?
   What about the JSTL and JavaServer Faces?
  -  
  +Is there a particularly good IDE to use with Struts?
  + 
   Is there a digest for the mailing list?
   Is there a Struts Newsgroup?
   Why didn't my posting show up on the user 
list?"
  @@ -292,6 +293,19 @@
   development and might be released sometime in the Q4 2002. The taglib depends
   on unreleased JSF features, and so an early release of the taglib must follow
   release of a later implementation of JSF.
  +
  +
  +
  +
  +
  +Struts should work well with any development environment that you would like to 
use, as well as with any programmers editor. 
  +The members of the Struts development team each use their own tools, which ranges 
from emacs and Textpad to IntelliJ, with NetBeans and Eclipse ranging in between. 
  +
  +
  +At this writing, in the free zone, NetBeans had the edge with JSP editing, but 
Eclipse has relatively more advanced refactoring features. 
  +Eclipse is also a general-purpose IDE and can be used with non-Java projects.
  +In the non-free zone, IntelliJ is highly regarded, but costs money. (Of course, if 
*you* cost money, good tools are often a good investment.)
  +See the Howto Guides for more about configuring 
IDEs to work with Struts.
   
   
   
  
  
  
  1.4   +8 -4  jakarta-struts/doc/faqs/index.xml
  
  Index: index.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/faqs/index.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- index.xml 25 Nov 2002 05:25:14 -  1.3
  +++ index.xml 29 Nov 2002 21:24:49 -  1.4
  @@ -6,7 +6,7 @@
   
   
   
  -
  +
   

   Kickstart FAQ (read me first)
  @@ -14,10 +14,14 @@
   How to Help FAQ 

   
  +
  +
  +
  +

  -SSL Howto
  -Example development environment with Eclipse 
2.0.1
  -Example development environment with Netbeans 
3.4
  +Using the SSL protocol
  +Installing the Eclipse IDE
  +Installing the Netbeans IDE

   
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/proposals project.xml

2002-11-29 Thread husted
husted  2002/11/29 13:25:00

  Modified:doc/proposals project.xml
  Log:
  Routine update.
  
  Revision  ChangesPath
  1.5   +1 -7  jakarta-struts/doc/proposals/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/proposals/project.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- project.xml   17 Nov 2002 22:07:41 -  1.4
  +++ project.xml   29 Nov 2002 21:25:00 -  1.5
  @@ -7,13 +7,7 @@
   
   
   
  -
  -
  -
  -
  -
  -
  -
  + 
   
   
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/userGuide project.xml

2002-11-29 Thread husted
husted  2002/11/29 13:25:16

  Modified:doc/userGuide project.xml
  Log:
  Routine update.
  
  Revision  ChangesPath
  1.18  +4 -16 jakarta-struts/doc/userGuide/project.xml
  
  Index: project.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/project.xml,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- project.xml   17 Nov 2002 22:07:19 -  1.17
  +++ project.xml   29 Nov 2002 21:25:16 -  1.18
  @@ -3,9 +3,9 @@
href="http://jakarta.apache.org/struts/userGuide";
   image="../images/struts.gif">
   
  -Struts User's Guide
  +Getting Started
   
  -
  +
 
 
 
  @@ -13,6 +13,8 @@
 
 
 
  +  
  +  
   
   
   
  @@ -34,22 +36,8 @@
 href="dev_validator.html"/>
   
   
  -
  -  
  -  
  -  
  -
  -
   
   
  -
  -
  -
  -
  -
   
   
   
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




cvs commit: jakarta-struts/doc/userGuide preface.xml

2002-11-29 Thread husted
husted  2002/11/29 13:27:57

  Modified:doc/userGuide preface.xml
  Log:
  Add DynaBean link.
  
  Revision  ChangesPath
  1.14  +3 -3  jakarta-struts/doc/userGuide/preface.xml
  
  Index: preface.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/preface.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- preface.xml   18 Nov 2002 13:37:24 -  1.13
  +++ preface.xml   29 Nov 2002 21:27:57 -  1.14
  @@ -214,12 +214,12 @@
   
   
   
  -For more about DynaBeans, see
  +For more about DynaBeans, see 
   
   
   
   
  -[:TODO:]
  +http://jakarta.apache.org/commons/beanutils/api/index.html";>The 
Commons BeanUtils Javadocs
   
   
   
  @@ -292,7 +292,7 @@
 deployment descriptor.
   
 A servlet is generally a subclass of
  -  javax.servlet.http.HttpServlet, and must implement the
  +  javax.servlet.http.HttpServlet and must implement the
 following methods:
 
 public void init(ServletConfig config) - Called by the
  
  
  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




DO NOT REPLY [Bug 14949] - Combining Internationalization with the validator framework

2002-11-29 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14949

Combining Internationalization with the validator framework

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME



--- Additional Comments From [EMAIL PROTECTED]  2002-11-30 03:13 ---
It always helps if state the date of teh Nightly builds,
There appear to be two issues here:

See :
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14384

This is a know bug, patch exists,in the commons-validator.
When the locale of the browser does not = the default locale
of the server.

The '<-- Begin' sounds like a bug that did exist until early October,
but was fixed. 

So try building a patched
version of the commons-validator, 14384, and using it with  
a recient nightly build of struts and see if this fixes your problems.

I am going to close this bug report, if there is still a problem
them please reopen this bug report.


-Rob

--
To unsubscribe, e-mail:   
For additional commands, e-mail: