cvs commit: jakarta-struts/src/share/org/apache/struts/validator FieldChecks.java Resources.java ValidatorPlugIn.java

2002-10-26 Thread rleland
rleland 2002/10/26 23:44:01

  Modified:src/share/org/apache/struts/validator FieldChecks.java
Resources.java ValidatorPlugIn.java
  Log:
  Cleanup JavaDoc.
  In Plugin close stream after use.
  
  Revision  ChangesPath
  1.2   +1 -2  
jakarta-struts/src/share/org/apache/struts/validator/FieldChecks.java
  
  Index: FieldChecks.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/validator/FieldChecks.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FieldChecks.java  18 Oct 2002 03:41:10 -  1.1
  +++ FieldChecks.java  27 Oct 2002 06:44:00 -  1.2
  @@ -135,8 +135,7 @@
   
   /**
*  
  - *
  - *  Checks if the field isn't null based on the values of other fields
  + *  Checks if the field isn't null based on the values of other fields.
*  
*
*@param  bean The bean validation is being performed on.
  
  
  
  1.2   +32 -7 
jakarta-struts/src/share/org/apache/struts/validator/Resources.java
  
  Index: Resources.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/validator/Resources.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Resources.java18 Oct 2002 03:41:10 -  1.1
  +++ Resources.java27 Oct 2002 06:44:00 -  1.2
  @@ -108,6 +108,7 @@
   
  /**
   * Retrieve ValidatorResources for the module.
  +* @param application servlet context
   *
   * @deprecated In Struts 1.1b3 This method can only return the resources for the 
default
   *  module.  Use getValidatorResources(HttpServletRequest, ServletContext)
  @@ -119,6 +120,8 @@
   
 /**
  * Retrieve ValidatorResources for the current module.
  +   * @param application  Application Context
  +   * @param request The ServletRequest
  */
  public static ValidatorResources getValidatorResources(ServletContext 
application,HttpServletRequest request) {
 return (ValidatorResources) 
application.getAttribute(ValidatorPlugIn.VALIDATOR_KEY +
  @@ -127,6 +130,7 @@
   
  /**
   * Retrieve MessageResources for the application module.
  +* @param  application servlet context
   *
   * @deprecated This method can only return the resources for the default
   *  module.  Use getMessageResources(HttpServletRequest) to get the
  @@ -138,6 +142,7 @@
   
  /**
   * Retrieve MessageResources for the application module.
  +* @param request the servlet request
  */
  public static MessageResources getMessageResources(HttpServletRequest request) {
 return (MessageResources)request.getAttribute(Action.MESSAGES_KEY);
  @@ -145,6 +150,7 @@
   
  /**
   * Get the Locale of the current user.
  +* @param request servlet request
  */
  public static Locale getLocale(HttpServletRequest request) {
 Locale locale = null;
  @@ -162,6 +168,9 @@
   
  /**
   * Gets the Locale sensitive value based on the key passed in.
  +* @param messages  The Message resources
  +* @param localeThe locale
  +* @param key key used to lookup the message
  */
  public static String getMessage(MessageResources messages, Locale locale, String 
key) {
 String message = null;
  @@ -178,6 +187,8 @@
   
  /**
   * Gets the Locale sensitive value based on the key passed in.
  +* @param request servlet request
  +* @param key the request key
  */
  public static String getMessage(HttpServletRequest request, String key) {
 MessageResources messages = getMessageResources(request);
  @@ -188,6 +199,10 @@
  /**
   * Gets the locale sensitive message based on the ValidatorAction 
message and the
   * Field's arg objects.
  +* @param messages  The Message resources
  +* @param localeThe locale
  +* @param vaThe Validator Action
  +* @param field The Validator Field
  */
  public static String getMessage(MessageResources messages, Locale locale,
  ValidatorAction va, Field field) {
  @@ -201,6 +216,9 @@
  /**
   * Gets the ActionError based on the ValidatorAction 
message and the
   * Field's arg objects.
  +* @param request the servlet request
  +* @param va Validator action
  +* @param field the validator Field
  */
  public static ActionError getActionError(HttpServletRequest request,
   ValidatorAction va, Field field) {
  @@ -214,6 +232,10 @@
  /**
   * Gets the message arguments based on the current ValidatorAction
   * and Field.
  +* @param actionName   action name
  +* @param messages  message resources
  +* @param locale   the locale
  +* 

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

2002-10-26 Thread rleland
rleland 2002/10/26 23:11:00

  Modified:src/share/org/apache/struts/action DynaActionForm.java
  Log:
  Remove unused assignments and cleanup JavaDoc
  
  Revision  ChangesPath
  1.4   +7 -13 
jakarta-struts/src/share/org/apache/struts/action/DynaActionForm.java
  
  Index: DynaActionForm.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/DynaActionForm.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DynaActionForm.java   17 Jul 2002 15:40:23 -  1.3
  +++ DynaActionForm.java   27 Oct 2002 06:10:59 -  1.4
  @@ -165,8 +165,8 @@
   
   
   /**
  - * Does the specified mapped property contain a value for the specified
  - * key value?
  + * Indicates if the specified mapped property contain a value for the specified
  + * key value.
*
* @param name Name of the property to check
* @param key Name of the key to check
  @@ -176,7 +176,6 @@
*/
   public boolean contains(String name, String key) {
   
  -DynaProperty descriptor = getDynaProperty(name);
   Object value = dynaValues.get(name);
   if (value == null) {
   throw new NullPointerException
  @@ -260,7 +259,6 @@
*/
   public Object get(String name, int index) {
   
  -DynaProperty descriptor = getDynaProperty(name);
   Object value = dynaValues.get(name);
   if (value == null) {
   throw new NullPointerException
  @@ -291,7 +289,6 @@
*/
   public Object get(String name, String key) {
   
  -DynaProperty descriptor = getDynaProperty(name);
   Object value = dynaValues.get(name);
   if (value == null) {
   throw new NullPointerException
  @@ -330,7 +327,6 @@
*/
   public void remove(String name, String key) {
   
  -DynaProperty descriptor = getDynaProperty(name);
   Object value = dynaValues.get(name);
   if (value == null) {
   throw new NullPointerException
  @@ -402,7 +398,6 @@
*/
   public void set(String name, int index, Object value) {
   
  -DynaProperty descriptor = getDynaProperty(name);
   Object prop = dynaValues.get(name);
   if (prop == null) {
   throw new NullPointerException
  @@ -439,7 +434,6 @@
*/
   public void set(String name, String key, Object value) {
   
  -DynaProperty descriptor = getDynaProperty(name);
   Object prop = dynaValues.get(name);
   if (prop == null) {
   throw new NullPointerException
  @@ -559,7 +553,7 @@
   
   
   /**
  - * Is an object of the source class assignable to the destination class?
  + * Indicates if an object of the source class is assignable to the destination 
class.
*
* @param dest Destination class
* @param source Source class
  
  
  

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




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

2002-10-26 Thread rleland
rleland 2002/10/26 23:01:49

  Modified:src/share/org/apache/struts/action ActionServlet.java
ActionServletWrapper.java
  Log:
  Fixup javadoc
  
  Revision  ChangesPath
  1.123 +6 -4  
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.122
  retrieving revision 1.123
  diff -u -r1.122 -r1.123
  --- ActionServlet.java27 Oct 2002 05:36:47 -  1.122
  +++ ActionServlet.java27 Oct 2002 06:01:48 -  1.123
  @@ -1212,6 +1212,8 @@
* Initialize the servlet mapping under which our controller servlet
* is being accessed.  This will be used in the &html:form>
* tag to generate correct destination URLs for form submissions.
  + * @throws ServletException if error happens while scanning web.xml
  + * FIXME throws ServletException Never thrown by this base method
*/
   protected void initServlet() throws ServletException {
   
  
  
  
  1.6   +12 -8 
jakarta-struts/src/share/org/apache/struts/action/ActionServletWrapper.java
  
  Index: ActionServletWrapper.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/ActionServletWrapper.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ActionServletWrapper.java 22 Sep 2002 05:46:52 -  1.5
  +++ ActionServletWrapper.java 27 Oct 2002 06:01:48 -  1.6
  @@ -100,7 +100,10 @@
   
   }
   
  -
  +/**
  + * Log message
  + * @param message
  + */
   public void log(String message) {
   
   servlet.log(message);
  @@ -109,6 +112,7 @@
   
   /**
* Set servlet to a MultipartRequestHandler.
  + * @param object The MultipartRequestHandler
* :FIXME: Should this be based on an "setServlet"
* interface or introspection for a setServlet method?
* Or, is it safer to just add the types we want as we want them?
  @@ -119,10 +123,10 @@
   
   
   /**
  - * Create object and set servlet property
  - *
  + * Create object and set servlet property.
  + * @param servlet ActionServlet to wrap
*/
  - public ActionServletWrapper (ActionServlet servlet) {
  + public ActionServletWrapper(ActionServlet servlet) {
   super();
   this.servlet = servlet;
   }
  
  
  

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




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

2002-10-26 Thread rleland
rleland 2002/10/26 22:56:59

  Modified:src/share/org/apache/struts/action Action.java
  Log:
  Use errors.isEmpty() instead of errors.empty().
  
  Revision  ChangesPath
  1.49  +6 -6  jakarta-struts/src/share/org/apache/struts/action/Action.java
  
  Index: Action.java
  ===
  RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/Action.java,v
  retrieving revision 1.48
  retrieving revision 1.49
  diff -u -r1.48 -r1.49
  --- Action.java   14 Oct 2002 18:16:18 -  1.48
  +++ Action.java   27 Oct 2002 05:56:59 -  1.49
  @@ -722,7 +722,7 @@
 ActionErrors errors) {
   
   // Remove any error messages attribute if none are required
  -if ((errors == null) || errors.empty()) {
  +if ((errors == null) || errors.isEmpty()) {
   request.removeAttribute(ERROR_KEY);
   return;
   }
  @@ -747,7 +747,7 @@
   ActionMessages messages) {
   
   // Remove any messages attribute if none are required
  -if ((messages == null) || messages.empty()) {
  +if ((messages == null) || messages.isEmpty()) {
   request.removeAttribute(MESSAGE_KEY);
   return;
   }
  
  
  

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




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

2002-10-26 Thread rleland
rleland 2002/10/26 22:36:48

  Modified:src/share/org/apache/struts/action ActionServlet.java
  Log:
  Close stream to web.xml after reading it
  into digester. Remove unused imports
  
  Revision  ChangesPath
  1.122 +11 -14
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.121
  retrieving revision 1.122
  diff -u -r1.121 -r1.122
  --- ActionServlet.java18 Oct 2002 15:27:42 -  1.121
  +++ ActionServlet.java27 Oct 2002 05:36:47 -  1.122
  @@ -69,21 +69,16 @@
   import java.sql.SQLException;
   import java.util.ArrayList;
   import java.util.Enumeration;
  -import java.util.HashMap;
   import java.util.Iterator;
  -import java.util.Locale;
   import java.util.MissingResourceException;
  -import javax.servlet.RequestDispatcher;
   import javax.servlet.ServletException;
   import javax.servlet.UnavailableException;
   import javax.servlet.http.HttpServlet;
   import javax.servlet.http.HttpServletRequest;
   import javax.servlet.http.HttpServletResponse;
  -import javax.servlet.http.HttpSession;
   import javax.sql.DataSource;
   import org.apache.commons.beanutils.BeanUtils;
   import org.apache.commons.beanutils.ConvertUtils;
  -import org.apache.commons.beanutils.PropertyUtils;
   import org.apache.commons.beanutils.converters.BooleanConverter;
   import org.apache.commons.beanutils.converters.ByteConverter;
   import org.apache.commons.beanutils.converters.CharacterConverter;
  @@ -94,7 +89,6 @@
   import org.apache.commons.beanutils.converters.ShortConverter;
   import org.apache.commons.collections.FastHashMap;
   import org.apache.commons.digester.Digester;
  -import org.apache.commons.digester.Rule;
   import org.apache.commons.digester.RuleSet;
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  @@ -107,8 +101,6 @@
   import org.apache.struts.config.ForwardConfig;
   import org.apache.struts.config.MessageResourcesConfig;
   import org.apache.struts.config.PlugInConfig;
  -import org.apache.struts.taglib.html.Constants;
  -import org.apache.struts.upload.MultipartRequestWrapper;
   import org.apache.struts.util.GenericDataSource;
   import org.apache.struts.util.MessageResources;
   import org.apache.struts.util.MessageResourcesFactory;
  @@ -1258,8 +1250,13 @@
   } catch (Throwable e) {
   log.error(internal.getMessage("configWebXml"), e);
   } finally {
  -if (input != null)
  -input = null;
  +if (input != null) {
  +try {
  +input.close();
  +} catch (IOException e) {
  +;
  +}
  +}
   }
   
   // Record a servlet context attribute (if appropriate)
  
  
  

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




Validator 1.0 RC3 Available

2002-10-26 Thread James Turner
We've had to do a few intermediate RCs since RC1 was released last week 
(one to fix a DTD issue, one to close out an obscure but important bug)

The latest Validator release candidate (RC3) can be found at:

http://jakarta.apache.org/builds/jakarta-commons/release/commons-validator/v 
1.0_rc3/

The intent, baring any unusual problems, is to vote on this RC as the 1.0 
release on Halloween (Oct 31st).

Enjoy (and thanks for Martin Cooper for more RC magic)
James




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



cvs commit: jakarta-struts build-all-clean.bat.sample

2002-10-26 Thread rleland
rleland 2002/10/26 21:02:00

  Modified:.build-all-clean.bat.sample
  Log:
  Fix problem pointed out by Martin Cooper
  
  Revision  ChangesPath
  1.3   +17 -13jakarta-struts/build-all-clean.bat.sample
  
  Index: build-all-clean.bat.sample
  ===
  RCS file: /home/cvs/jakarta-struts/build-all-clean.bat.sample,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- build-all-clean.bat.sample26 Oct 2002 05:38:07 -  1.2
  +++ build-all-clean.bat.sample27 Oct 2002 04:02:00 -  1.3
  @@ -1,23 +1,27 @@
   @echo on
  -
   rem This is an example "build-all-clean.bat" file, used to build struts from 
  -rem a clean commons. It uses Cygwin to remove build directories since 
  +rem a clean commons. 
  +rem What is needed is a good top level commons build.xml for ant/maven.
  +rem I know I could submit a patch.
  +rem
  +rem This bat file uses Cygwin to remove build directories since 
   rem commons doesn't have an ant clean target. (HINT for COMMONS COMITTERS!)
   rem Make any changes you need, and rename this file
  -rem to "build-all-clean.bat" and in the same directory that contains the Struts
  -rem "build.xml" file.
  +rem to "build-all-clean.bat" and place it in the same directory that 
  +rem contains the Struts "build.xml" file.
  +rem 
   rem assumes jakarta-commons, 
   rem jakarta-commons-sandbox,
   rem jakarta-struts-current
  -rem are checked out in the same directory.
  +rem are checked out of CVS in the same directory.
   rem Also assumes uses of 
  -rem   maven beta 7,
  +rem   maven beta 7 or above,
   rem   ant 1.5.1
   rem   cactus v 1.2 & v1.3
  -rem  Because the commons (resources) use an old version
  -rem  of cactus for units test, that maven doesn't precompile 
  -rem  anymore, you'll need to copy the cactus.jar into the 
  -rem  maven repository directoty. I filed a bug report for this.
  +rem  v 1.2 Because the commons (resources) use an old version
  +remof cactus for units test, that maven doesn't precompile 
  +remanymore. You'll need to copy the cactus.jar into the 
  +remmaven repository directory. I filed a bug report for this.
   rem  
   rem
   rem $Id$
  @@ -57,12 +61,12 @@
   cd ..\validator
   call ant clean dist
   
  -cd fileupload
  +cd ..\fileupload
   call maven
   
   cd ..\..\jakarta-commons-sandbox
   
  -cd ..\resources
  +cd resources
   call maven
   
   cd ..\services
  
  
  

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




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

2002-10-26 Thread jmitchell
jmitchell2002/10/26 19:44:14

  Modified:doc/userGuide preface.xml
  Log:
  Update to fix a few typos
  
  Revision  ChangesPath
  1.9   +8 -8  jakarta-struts/doc/userGuide/preface.xml
  
  Index: preface.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/preface.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- preface.xml   31 Aug 2002 13:15:02 -  1.8
  +++ preface.xml   27 Oct 2002 02:44:14 -  1.9
  @@ -38,18 +38,18 @@
   If you are familiar with Java, but not these 
technologies,
   the best overall starting point is
   http://java.sun.com/webservices/docs/1.0/tutorial/index.html";>The 
Java Web Services Tutorial.
  -This is also available for download as a
  -http://java.sun.com/webservices/docs/1.0/tutorial/doc/JavaWSTutorial.pdf";>PDF.
  +This is also available for download in
  +http://java.sun.com/webservices/docs/1.0/tutorial/doc/JavaWSTutorial.pdf";>PDF
 format.
   
   
  -If you've created web applications for other platforms, you may able to 
follow along
  +If you've created web applications for other platforms, you may be able to 
follow along
   and visit the other references as needed. The core technologies used by Struts 
are
   also used by most other Java web development products, so the background 
information will be
   useful in any Java project.
   
   
   If you are not familiar with the Java language generally,
  -then the best start starting point is
  +then the best starting point is
   http://java.sun.com/docs/books/tutorial/index.html";>The Java 
Tutorial.
   This overlaps with the Java Web Services Tutorial in some places, but the two 
work well together.
   
  @@ -64,7 +64,7 @@
a HTML document. The browser then formats and displays the document to its 
user. HTTP is used to
   transport more than HTML, but HTML is the lingua franca of the Web and web 
applications. 
   
  -Some Java engineers working web applications write their own HTML. Others 
leave that to the
  +While building web applications, some Java developers will write their own 
HTML. Others leave that responsibility to the
   page designers.
   
   For more about HTTP, HTML, and User Agents, see:
  @@ -184,7 +184,7 @@
   Java applications, including web applications, are often configured using
   http://java.sun.com/j2se/1.4.1/docs/api/java/util/Properties.html";>Properties
   files. Properties files are the basis for the
  -http://java.sun.com/j2se/1.4.1/docs/api/java/util/ResourceBundle.html";>ResourceBundles
 that Struts uses to provide messages resources
  +http://java.sun.com/j2se/1.4.1/docs/api/java/util/ResourceBundle.html";>ResourceBundles
 that Struts uses to provide message resources
   to an application. 
   
   For more about Properties files, see: 
  @@ -211,7 +211,7 @@
   
   Much of the HTTP Request/Response cycle nuts-and-bolts 
are handled by Sun's
   http://java.sun.com/products/servlet/";>Java Servlet platform. This 
casts HTTP
  -into an object-orientated form so that developers can better concentrate what
  +into an object-orientated form so that developers can better concentrate on what
   they need their application to do -- rather than the mechanics of HTTP.
   
   Struts provides a ready-to-use servlet for your application. As a Struts 
developer, you
  @@ -334,7 +334,7 @@
 parses the request URI (contextPath, servletPath, and pathInfo) are
 available separately.
 User Information - If you are using
  -  Container Managed Security, you can ask
  +  Container Managed Security, you can ask for
 the username of the authenticated user, retrieve a
 Principal object representing the current user, and
 whether the current user is authorized for a specified role.
  
  
  

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




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

2002-10-26 Thread dgraham
dgraham 2002/10/26 19:29:03

  Modified:doc/userGuide building_controller.xml
  Log:
  fixed typo in exception handler docs
  
  Revision  ChangesPath
  1.39  +1 -1  jakarta-struts/doc/userGuide/building_controller.xml
  
  Index: building_controller.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_controller.xml,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -r1.38 -r1.39
  --- building_controller.xml   27 Oct 2002 02:27:47 -  1.38
  +++ building_controller.xml   27 Oct 2002 02:29:02 -  1.39
  @@ -429,7 +429,7 @@
 You can override global exception handlers by defining a handler inside an 
action definition.
 
 
  -  A common use of ExceptionHandler's is to configure one for 
java.lang.Exception so it's called
  +  A common use of ExceptionHandlers is to configure one for java.lang.Exception 
so it's called
 for any exception and log the exception to some data store.
 
 
  
  
  

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




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

2002-10-26 Thread dgraham
dgraham 2002/10/26 19:27:48

  Modified:doc/userGuide building_controller.xml
  Log:
  fixed exception handler docs
  
  Revision  ChangesPath
  1.38  +6 -5  jakarta-struts/doc/userGuide/building_controller.xml
  
  Index: building_controller.xml
  ===
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/building_controller.xml,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- building_controller.xml   20 Oct 2002 20:01:06 -  1.37
  +++ building_controller.xml   27 Oct 2002 02:27:47 -  1.38
  @@ -417,15 +417,16 @@
 Your execute method should process the Exception and return an ActionForward
 object to tell Struts where to forward to next.  Then you configure your 
 handler in struts-config.xml like this:
  -  
  - 
  - 
  - 
  -  
  + 
  + 
  + 
 
 That configuration says that com.yourcorp.ExceptionHandler.execute() will be 
called 
 when any IOException is thrown by an Action.  The key is a key from your 
message resources
 properties file that can be used to display an error message.
  +  
  +  
  +  You can override global exception handlers by defining a handler inside an 
action definition.
 
 
 A common use of ExceptionHandler's is to configure one for 
java.lang.Exception so it's called
  
  
  

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




DO NOT REPLY [Bug 5303] - BaseTag when there is a web server acting as proxy in front of servlet engine

2002-10-26 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=5303

BaseTag when there is a web server acting as proxy in front of servlet engine

[EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Normal  |Enhancement



--- Additional Comments From [EMAIL PROTECTED]  2002-10-27 02:03 ---
Marking as enhancement since the bug in the second comment has been fixed and the 
first comment's 
request is not a bug.

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




DO NOT REPLY [Bug 12872] - ForwardAction doesn't play nice with Declarative Exception Handling

2002-10-26 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=12872

ForwardAction doesn't play nice with Declarative Exception Handling

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2002-10-27 01:12 ---
Marking invalid because it's a container specific issue and is a misuse of the 
declaritive 
exception handling.  JSP compilation errors should be fixed before deployment; 
exception 
handling is for runtime exceptions.  If I've misunderstood the issue please re-open.

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




DO NOT REPLY [Bug 13853] - Change Tiles "CompContext" Request Attribute Name

2002-10-26 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=13853

Change Tiles "CompContext" Request Attribute Name

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

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




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/tiles ComponentConstants.java

2002-10-26 Thread dgraham
dgraham 2002/10/26 17:29:53

  Modified:src/share/org/apache/struts/taglib/tiles
ComponentConstants.java
  Log:
  changed COMPONENT_CONTEXT variable to specify full package to avoid
  collisions with application variables.
  Fixes bug #13853
  
  Revision  ChangesPath
  1.2   +4 -4  
jakarta-struts/src/share/org/apache/struts/taglib/tiles/ComponentConstants.java
  
  Index: ComponentConstants.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/tiles/ComponentConstants.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ComponentConstants.java   25 Jun 2002 03:16:30 -  1.1
  +++ ComponentConstants.java   27 Oct 2002 00:29:53 -  1.2
  @@ -72,7 +72,7 @@
   public interface ComponentConstants {
   
   /** Name used to store Tile/Component context */
  -  public static final String COMPONENT_CONTEXT = "CompContext";
  +  public static final String COMPONENT_CONTEXT = 
"org.apache.struts.taglib.tiles.CompContext";
   
 public static final intCOMPONENT_SCOPE = 8;
 public static final String LOCALE_KEY = Action.LOCALE_KEY;
  
  
  

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




DO NOT REPLY [Bug 12600] - html:form tag always prepends context path to action via getActionMappingURL

2002-10-26 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=12600

html:form tag always prepends context path to action via getActionMappingURL

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]



--- Additional Comments From [EMAIL PROTECTED]  2002-10-27 00:25 ---
*** Bug 13871 has been marked as a duplicate of this bug. ***

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




DO NOT REPLY [Bug 13871] - Form tag transforms URL

2002-10-26 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=13871

Form tag transforms URL

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE
Summary|Form tag transforms URL |Form tag transforms URL



--- Additional Comments From [EMAIL PROTECTED]  2002-10-27 00:25 ---


*** This bug has been marked as a duplicate of 12600 ***

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




DO NOT REPLY [Bug 11021] - ActionForward or tag does not support absolute URIs

2002-10-26 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=11021

ActionForward or  tag does not support absolute URIs

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]



--- Additional Comments From [EMAIL PROTECTED]  2002-10-27 00:10 ---
*** Bug 13721 has been marked as a duplicate of this bug. ***

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




DO NOT REPLY [Bug 13721] - ActionForward redirect=true

2002-10-26 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=13721

ActionForward redirect=true

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2002-10-27 00:10 ---


*** This bug has been marked as a duplicate of 11021 ***

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




DO NOT REPLY [Bug 12861] - URL address changed when I use path-mapping on servlet

2002-10-26 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=12861

URL address changed when I use path-mapping on servlet

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||INVALID



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 23:55 ---
As stated 
here:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dd_config_mapping

"WARNING 
- Struts will not operate correctly if you define more than one  
element for the 
controller servlet."

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




DO NOT REPLY [Bug 2017] - Text entered in forms using multi-part/formdata cannot be utf8

2002-10-26 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=2017

Text entered in forms using multi-part/formdata cannot be utf8





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 23:35 ---
Has this been fixed?  The comments indicate that it should have been fixed for 1.0.

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




DO NOT REPLY [Bug 5292] - page attribute in LinkTag does not compute a full server relative URI

2002-10-26 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=5292

page attribute in LinkTag does not compute a full server relative URI

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WONTFIX



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 23:31 ---
The link tag's behavior is the same as the JSTL url tag; therefore, I'm closing this 
bug.  It seems 
that the only reason one would map the action servlet in this way is to have only part 
of a webapp 
using struts (the part under /one/two/three/*).  This can be accomplished in other 
ways (such as 
mapping to *.do or /do).

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




DO NOT REPLY [Bug 10194] - Servlet Mapping bug in FormTag

2002-10-26 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=10194

Servlet Mapping bug in FormTag

[EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL PROTECTED]



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 23:02 ---
*** Bug 13878 has been marked as a duplicate of this bug. ***

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




DO NOT REPLY [Bug 13878] - Form tag eats action value with default servlet mapping

2002-10-26 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=13878

Form tag eats action value with default servlet mapping

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 23:02 ---
This has been fixed in 1.1.  Marking as duplicate...

*** This bug has been marked as a duplicate of 10194 ***

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




DO NOT REPLY [Bug 13337] - html:select has an "accesskey" attribute, but "select" has no "accesskey" in HTML 4.01

2002-10-26 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=13337

html:select has an "accesskey" attribute, but "select" has no "accesskey" in HTML 4.01





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 22:53 ---
We can't deprecate the SelectTag's accesskey attribute because it's defined in 
BaseHandlerTag. Anyone using this attribute is in violation of the html spec.  Also, 
if they are 
using the attribute, it wouldn't be doing anything useful as browsers don't understand 
it.

I 
think the tld attribute should be removed same as the img tag.

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




DO NOT REPLY [Bug 13530] - submit tag doesn't work with "indexed" attribute

2002-10-26 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=13530

submit tag doesn't work with "indexed" attribute

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 22:37 ---
I doubt the "Version" field on this report is correct, as the listed source code
shows "Struts 1.1", which I doubt was ever in source code in the "0.5 Final"
version, if that version ever existed.

In any case, this change was apparently made to this code in version 1.11 of
this file.

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




DO NOT REPLY [Bug 13337] - html:select has an "accesskey" attribute, but "select" has no "accesskey" in HTML 4.01

2002-10-26 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=13337

html:select has an "accesskey" attribute, but "select" has no "accesskey" in HTML 4.01





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 22:33 ---
It's unfortunate the JSP specification didn't allow for an optional "deprecated"
element (with text) in the "attribute" element of the TLD, along with related
behavior in the JSP compilation step.  Although, this would probably only be
really useful if pages are pre-compiled.  We could make the tag class instance
variable and access methods be deprecated, but it doesn't sound to me like that
gets the information to the people who need to see it, which are the page
developers.

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




DO NOT REPLY [Bug 5286] - struts logic:redirect tag not working

2002-10-26 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=5286

struts logic:redirect tag not working





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 22:23 ---
The issue with putting the context in twice may be valid.  The issue about the 
ampersands is not; see 
section C.12 here for an explanation: 

http://www.w3.org/TR/xhtml1/#guidelines

Notice in their example that "tid" is the 
context, not "kiosk".  "tid" appears to be inserted twice.  I'll try to reproduce this 
in 1.1b2.

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




DO NOT REPLY [Bug 10705] - Title being created on a link tag when title is not an attribute, but...

2002-10-26 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=10705

Title being created on a link tag when title is not an attribute, but...

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 22:21 ---
If the "Version" field on this report is correct, 1.0B2 was on version 1.3 of
BaseHandlerTag.java.  Versions 1.14 and 1.15 appear to be addressing this issue.
 the comment from "[EMAIL PROTECTED]" shows the structure of the
current code, which shows that this bug won't happen anymore.  I'd call this
resolved.  The original poster could verify this, using the nightly build.

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




DO NOT REPLY [Bug 13878] - Form tag eats action value with default servlet mapping

2002-10-26 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=13878

Form tag eats action value with default servlet mapping





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 22:07 ---
I'd say this is invalid.  The following is from the Servlet 2.3 specification:

---
SRV.11.2 Specification of Mappings
In the web application deployment descriptor, the following syntax is used to define
mappings:
• A string beginning with a ‘/’ character and ending with a ‘/*’ postfix is used
for path mapping.
• A string beginning with a ‘*.’ prefix is used as an extension mapping.
• A string containing only the ’/’ character indicates the "default" servlet of the
application. In this case the servlet path is the request URI minus the context
path and the path info is null.
• All other strings are used for exact matches only.
---

>From what I read here, the third bullet refers to this situation, and it
indicates that the request should be mapped to the root application.

Does anyone else agree?

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




DO NOT REPLY [Bug 5286] - struts logic:redirect tag not working

2002-10-26 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=5286

struts logic:redirect tag not working





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 21:52 ---
Am I wrong to judge this as invalid?  You don't put the context path into
application-relative URLs.  If you do, you should get exactly the result as
described here.  The URL should have been "/example/logon.jsp".  Does anyone
else agree with this?

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




DO NOT REPLY [Bug 5292] - page attribute in LinkTag does not compute a full server relative URI

2002-10-26 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=5292

page attribute in LinkTag does not compute a full server relative URI





--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 21:45 ---
I haven't delved into these issues much before, but I had a thought about this,
and I was wondering if I'm anywhere close to the mark.

My impression of the "servlet-mapping" facility is that it's intended as a
"one-way" mapping, in that if a request comes in with a URL matching the
pattern, then the request will be mapped to a particular servlet.  I didn't
think it was implying the mapping could go in the other direction.

This problem description seems to refer to a desire to map in the other
direction, to end up creating a URL formed from the url-pattern.  Is this really
what is intended, and is it sensible to do that?

This bug report is also somewhat old (in web time).  Is this problem still relevant?

The comment about refactoring, however, is probably still correct, as these two
tags seem to generate their URLs with completely different code.  Whether it's
worth doing anything in the 1.1 timeframe, I don't know.

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




RE: Struts IRC Channel

2002-10-26 Thread James Mitchell
I totally agree with you David.

I've collected an enormous amount of FAQ material (which I haven't organized
yet) from this and the users list over the last 6 or 7 months.

What good does it do to solve a really tricky problem if no one else can
take advantage of that knowledge transfer?

I'll be adding the new FAQ material and a few 'how to' sections  soon.  (for
example: How to setup Netbeans to step through and debug your web
application on Tomcat using Remote Debugging - a pictorial guide)




James Mitchell
Software Engineer/Struts Evangelist
http://www.open-tools.org

"Only two things are infinite, the universe and human stupidity, and I'm not
sure about the former."
- Albert Einstein (1879-1955)





> -Original Message-
> From: David Graham [mailto:dgraham1980@;hotmail.com]
> Sent: Saturday, October 26, 2002 3:01 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Struts IRC Channel
>
>
> I for one, will not be answering questions on another forum.  It's hard
> enough to keep up with the questions on this list :-).  Also, I
> think it's a
> good that there be a central place to ask Struts questions.
>
> David
>
>
>
>
>
>
> >From: Nick <[EMAIL PROTECTED]>
> >Reply-To: "Struts Developers List" <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED]
> >Subject: Struts IRC Channel
> >Date: Sat, 26 Oct 2002 14:57:00 -0400 (EDT)
> >
> >Hi,
> >
> >I've recently started hanging out in #struts on irc.freenode.net to help
> >answer questions relating to the framework.  I don't know that much about
> >some of the esoteric areas of Struts, so I would really appreciate it if
> >some of the developers would idle there and field the occasional
> question.
> >Activity is very low, so the load shouldn't be too high.
> >
> >If you think that this is a waste of time, let me know how you'd improve
> >upon it.  Sending people to mailing list archives doesn't always work as
> >the search functionality isn't great.
> >
> >Thanks for your time.
> >
> >-Nick
> >
> >
> >
> >--
> >To unsubscribe, e-mail:
> >
> >For additional commands, e-mail:
> >
>
>
> _
> Get faster connections -- switch to MSN Internet Access!
> http://resourcecenter.msn.com/access/plans/default.asp
>
>
> --
> To unsubscribe, e-mail:

For additional commands, e-mail: 



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




Re: Struts IRC Channel

2002-10-26 Thread David Graham
I for one, will not be answering questions on another forum.  It's hard 
enough to keep up with the questions on this list :-).  Also, I think it's a 
good that there be a central place to ask Struts questions.

David






From: Nick <[EMAIL PROTECTED]>
Reply-To: "Struts Developers List" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Struts IRC Channel
Date: Sat, 26 Oct 2002 14:57:00 -0400 (EDT)

Hi,

I've recently started hanging out in #struts on irc.freenode.net to help
answer questions relating to the framework.  I don't know that much about
some of the esoteric areas of Struts, so I would really appreciate it if
some of the developers would idle there and field the occasional question.
Activity is very low, so the load shouldn't be too high.

If you think that this is a waste of time, let me know how you'd improve
upon it.  Sending people to mailing list archives doesn't always work as
the search functionality isn't great.

Thanks for your time.

-Nick



--
To unsubscribe, e-mail:   

For additional commands, e-mail: 



_
Get faster connections -- switch to MSN Internet Access! 
http://resourcecenter.msn.com/access/plans/default.asp


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



Struts IRC Channel

2002-10-26 Thread Nick
Hi,

I've recently started hanging out in #struts on irc.freenode.net to help
answer questions relating to the framework.  I don't know that much about
some of the esoteric areas of Struts, so I would really appreciate it if
some of the developers would idle there and field the occasional question.
Activity is very low, so the load shouldn't be too high.

If you think that this is a waste of time, let me know how you'd improve
upon it.  Sending people to mailing list archives doesn't always work as
the search functionality isn't great.

Thanks for your time.

-Nick



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




DO NOT REPLY [Bug 13823] - tour.htm contains invalid HTML

2002-10-26 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=13823

tour.htm contains invalid HTML

[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||LATER



--- Additional Comments From [EMAIL PROTECTED]  2002-10-26 15:12 ---
We'll revisit this when we add the support for enabling/disabling XHTML output.

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




cvs commit: jakarta-struts/src/share/org/apache/struts/taglib/html BaseFieldTag.java BaseTag.java ButtonTag.java CancelTag.java CheckboxTag.java FrameTag.java ImageTag.java ImgTag.java MultiboxTag.java RadioTag.java ResetTag.java SubmitTag.java

2002-10-26 Thread jholmes
jholmes 2002/10/26 08:08:17

  Modified:src/share/org/apache/struts/taglib/html BaseFieldTag.java
BaseTag.java ButtonTag.java CancelTag.java
CheckboxTag.java FrameTag.java ImageTag.java
ImgTag.java MultiboxTag.java RadioTag.java
ResetTag.java SubmitTag.java
  Log:
  revert changes for Bugzilla #12185
  
  Revision  ChangesPath
  1.15  +5 -5  
jakarta-struts/src/share/org/apache/struts/taglib/html/BaseFieldTag.java
  
  Index: BaseFieldTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/html/BaseFieldTag.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- BaseFieldTag.java 21 Oct 2002 22:30:22 -  1.14
  +++ BaseFieldTag.java 26 Oct 2002 15:08:16 -  1.15
  @@ -192,7 +192,7 @@
   results.append("\"");
   results.append(prepareEventHandlers());
   results.append(prepareStyles());
  -results.append(" />");
  +results.append(">");
   
   // Print this field to our output writer
   ResponseUtils.write(pageContext, results.toString());
  
  
  
  1.8   +5 -5  
jakarta-struts/src/share/org/apache/struts/taglib/html/BaseTag.java
  
  Index: BaseTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/html/BaseTag.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BaseTag.java  21 Oct 2002 22:30:22 -  1.7
  +++ BaseTag.java  26 Oct 2002 15:08:16 -  1.8
  @@ -133,7 +133,7 @@
   buf.append(target);
   buf.append("\"");
   }
  -buf.append(" />");
  +buf.append(">");
   JspWriter out = pageContext.getOut();
   try {
   out.write(buf.toString());
  
  
  
  1.12  +5 -5  
jakarta-struts/src/share/org/apache/struts/taglib/html/ButtonTag.java
  
  Index: ButtonTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/html/ButtonTag.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- ButtonTag.java21 Oct 2002 22:30:22 -  1.11
  +++ ButtonTag.java26 Oct 2002 15:08:16 -  1.12
  @@ -207,7 +207,7 @@
   results.append("\"");
   results.append(prepareEventHandlers());
   results.append(prepareStyles());
  -results.append(" />");
  +results.append(">");
   
   // Render this element to our writer
   ResponseUtils.write(pageContext, results.toString());
  
  
  
  1.8   +5 -5  
jakarta-struts/src/share/org/apache/struts/taglib/html/CancelTag.java
  
  Index: CancelTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/html/CancelTag.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- CancelTag.java21 Oct 2002 22:30:22 -  1.7
  +++ CancelTag.java26 Oct 2002 15:08:16 -  1.8
  @@ -210,7 +210,7 @@
   results.append("\"");
   results.append(prepareEventHandlers());
   results.append(prepareStyles());
  -results.append(" />");
  +results.append(">");
   
   // Render this element to our writer
   ResponseUtils.write(pageContext, results.toString());
  
  
  
  1.15  +5 -5  
jakarta-struts/src/share/org/apache/struts/taglib/html/CheckboxTag.java
  
  Index: CheckboxTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/html/CheckboxTag.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- CheckboxTag.java  23 Oct 2002 18:54:49 -  1.14
  +++ CheckboxTag.java  26 Oct 2002 15:08:16 -  1.15
  @@ -218,7 +218,7 @@
   results.append(" checked=\"checked\"");
   results.append(prepareEventHandlers());
   results.append(prepareStyles());
  -results.append(" />");
  +results.append(">");
   
   // Print this field to our output writer
   ResponseUtils.write(pageContext, results.toString());
  
  
  
  1.6   +5 -5  
jakarta-struts/src/share/org/apache/struts/taglib/html/FrameTag.java
  
  Index: FrameTag.java
  ===
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/html/FrameTag.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FrameTag.java 21 Oct 2002 22:30:22 -  1.5
  +++ FrameTag.java 26 Oct 2002 15:08:16 -  1.6
  @@ -243,7 +2