dmkarr      2004/01/24 10:48:33

  Modified:    contrib/struts-el/src/share/org/apache/strutsel/taglib/html
                        ELImgTagBeanInfo.java
  Log:
  Removed old "accessKey" attribute.  I don't know when or if that was ever in
  the base tag.
  Added new "action" attribute.
  Added new "contextRelative" attribute.
  
  Revision  Changes    Path
  1.6       +9 -5      
jakarta-struts/contrib/struts-el/src/share/org/apache/strutsel/taglib/html/ELImgTagBeanInfo.java
  
  Index: ELImgTagBeanInfo.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-struts/contrib/struts-el/src/share/org/apache/strutsel/taglib/html/ELImgTagBeanInfo.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ELImgTagBeanInfo.java     18 Jan 2004 07:11:27 -0000      1.5
  +++ ELImgTagBeanInfo.java     24 Jan 2004 18:48:33 -0000      1.6
  @@ -78,8 +78,8 @@
           ArrayList proplist = new ArrayList();
   
           try {
  -            proplist.add(new PropertyDescriptor("accesskey", ELImgTag.class,
  -                                                null, "setAccesskeyExpr"));
  +            proplist.add(new PropertyDescriptor("action", ELImgTag.class,
  +                                                null, "setActionExpr"));
           } catch (IntrospectionException ex) {}
           try {
               proplist.add(new PropertyDescriptor("align", ELImgTag.class,
  @@ -100,6 +100,10 @@
           try {
               proplist.add(new PropertyDescriptor("bundle", ELImgTag.class,
                                                   null, "setBundleExpr"));
  +        } catch (IntrospectionException ex) {}
  +        try {
  +            proplist.add(new PropertyDescriptor("contextRelative", ELImgTag.class,
  +                                                null, "setContextRelativeExpr"));
           } catch (IntrospectionException ex) {}
           try {
               proplist.add(new PropertyDescriptor("height", ELImgTag.class,
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to