You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by df...@apache.org on 2004/06/05 03:29:16 UTC

cvs commit: jakarta-commons/jelly/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing SwingTagLibrary.java

dfs         2004/06/04 18:29:16

  Modified:    jelly    project.xml
               jelly/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing
                        SwingTagLibrary.java
  Log:
  The <component/> tag was not registered in SwingTagLibrary but was listed
  in the documentation as being a JellySwing tag.  I had a need to use
  the tag and took the liberty of adding the registration of the tag in
  the SwingTagLibrary constructor.  After verifying it worked properly,
  I'm committing the change and adding myself to the project developers
  list in project.xml.  The convention for unit testing JellySwing tags
  was non-obvious to me, so I did not add a test at this time.
  
  Revision  Changes    Path
  1.141     +5 -0      jakarta-commons/jelly/project.xml
  
  Index: project.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jelly/project.xml,v
  retrieving revision 1.140
  retrieving revision 1.141
  diff -u -r1.140 -r1.141
  --- project.xml	24 May 2004 21:39:35 -0000	1.140
  +++ project.xml	5 Jun 2004 01:29:15 -0000	1.141
  @@ -158,6 +158,11 @@
         <id>rdonkin</id>
         <email>rdonkin@apache.org</email>
       </developer>
  +    <developer>
  +      <name>Daniel F. Savarese</name>
  +      <id>dfs</id>
  +      <email>dfs -> apache.org</email>
  +    </developer>
     </developers>
   
     <contributors>
  
  
  
  1.23      +1 -0      jakarta-commons/jelly/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java
  
  Index: SwingTagLibrary.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/jelly/jelly-tags/swing/src/java/org/apache/commons/jelly/tags/swing/SwingTagLibrary.java,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- SwingTagLibrary.java	25 Feb 2004 01:31:56 -0000	1.22
  +++ SwingTagLibrary.java	5 Jun 2004 01:29:16 -0000	1.23
  @@ -66,6 +66,7 @@
           
       public SwingTagLibrary() {
           registerTag( "action", ActionTag.class );
  +        registerTag( "component", ComponentTag.class );
           registerTag( "font", FontTag.class );
           registerTag( "windowListener", WindowListenerTag.class );
           registerTag( "focusListener", FocusListenerTag.class );
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org