You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2003/01/14 15:43:30 UTC

cvs commit: jakarta-tapestry/config Version.properties

hlship      2003/01/14 06:43:30

  Modified:    framework/src/net/sf/tapestry/util/prop Tag: hship-2-3
                        IPublicBean.java
               framework/src/net/sf/tapestry Tag: hship-2-3
                        AbstractComponent.java
               junit/src/net/sf/tapestry/junit Tag: hship-2-3
                        TapestrySuite.java
               web      Tag: hship-2-3 new.html
               config   Tag: hship-2-3 Version.properties
  Removed:     framework/src/net/sf/tapestry/util/prop Tag: hship-2-3
                        PublicBeanPropertyAccessor.java
               junit/src/net/sf/tapestry/junit/utils Tag: hship-2-3
                        TestPublicBean.java
  Log:
  Mark IPublicBean deprecated, since OGNL now supplies that functionality by default.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.6.2.1   +2 -1      jakarta-tapestry/framework/src/net/sf/tapestry/util/prop/IPublicBean.java
  
  Index: IPublicBean.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/net/sf/tapestry/util/prop/IPublicBean.java,v
  retrieving revision 1.6
  retrieving revision 1.6.2.1
  diff -u -r1.6 -r1.6.2.1
  --- IPublicBean.java	27 Nov 2002 17:58:48 -0000	1.6
  +++ IPublicBean.java	14 Jan 2003 14:43:29 -0000	1.6.2.1
  @@ -11,6 +11,7 @@
    *  @version $Id$
    *  @author Howard Lewis Ship
    *  @since 1.0.1
  + *  @deprecated This is now standard behavior supplied by OGNL.
    * 
    **/
   
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.20.2.3  +2 -10     jakarta-tapestry/framework/src/net/sf/tapestry/AbstractComponent.java
  
  Index: AbstractComponent.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/framework/src/net/sf/tapestry/AbstractComponent.java,v
  retrieving revision 1.20.2.2
  retrieving revision 1.20.2.3
  diff -u -r1.20.2.2 -r1.20.2.3
  --- AbstractComponent.java	31 Dec 2002 12:23:22 -0000	1.20.2.2
  +++ AbstractComponent.java	14 Jan 2003 14:43:29 -0000	1.20.2.3
  @@ -9,8 +9,6 @@
   import java.util.List;
   import java.util.Map;
   
  -import ognl.OgnlRuntime;
  -
   import net.sf.tapestry.bean.BeanProvider;
   import net.sf.tapestry.bean.BeanProviderPropertyAccessor;
   import net.sf.tapestry.event.ChangeObserver;
  @@ -21,12 +19,10 @@
   import net.sf.tapestry.listener.ListenerMap;
   import net.sf.tapestry.param.ParameterManager;
   import net.sf.tapestry.spec.ComponentSpecification;
  -import net.sf.tapestry.spec.ContainedComponent;
  -import net.sf.tapestry.util.prop.IPublicBean;
   import net.sf.tapestry.util.prop.OgnlUtils;
   import net.sf.tapestry.util.prop.PropertyFinder;
   import net.sf.tapestry.util.prop.PropertyInfo;
  -import net.sf.tapestry.util.prop.PublicBeanPropertyAccessor;
  +import ognl.OgnlRuntime;
   
   /**
    *  Abstract base class implementing the {@link IComponent} interface.
  @@ -43,10 +39,6 @@
           // beans of a bean provider as named properties.
   
           OgnlRuntime.setPropertyAccessor(IBeanProvider.class, new BeanProviderPropertyAccessor());
  -
  -        // Same with IPublicBean.
  -
  -        OgnlRuntime.setPropertyAccessor(IPublicBean.class, new PublicBeanPropertyAccessor());
       }
   
       /**
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.17.2.8  +2 -3      jakarta-tapestry/junit/src/net/sf/tapestry/junit/TapestrySuite.java
  
  Index: TapestrySuite.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/junit/src/net/sf/tapestry/junit/TapestrySuite.java,v
  retrieving revision 1.17.2.7
  retrieving revision 1.17.2.8
  diff -u -r1.17.2.7 -r1.17.2.8
  --- TapestrySuite.java	14 Jan 2003 14:03:49 -0000	1.17.2.7
  +++ TapestrySuite.java	14 Jan 2003 14:43:29 -0000	1.17.2.8
  @@ -2,6 +2,7 @@
   
   import junit.framework.Test;
   import junit.framework.TestSuite;
  +
   import net.sf.tapestry.junit.mock.MockTestCase;
   import net.sf.tapestry.junit.parse.SpecificationParserTest;
   import net.sf.tapestry.junit.parse.TemplateParserTest;
  @@ -15,7 +16,6 @@
   import net.sf.tapestry.junit.utils.TestLocalizedNameGenerator;
   import net.sf.tapestry.junit.utils.TestPool;
   import net.sf.tapestry.junit.utils.TestPropertyFinder;
  -import net.sf.tapestry.junit.utils.TestPublicBean;
   import net.sf.tapestry.junit.valid.ValidSuite;
   
   /**
  @@ -37,7 +37,6 @@
           suite.addTestSuite(TestPool.class);
           suite.addTestSuite(TestLocalizedNameGenerator.class);
           suite.addTestSuite(TestResourceLocation.class);
  -        suite.addTestSuite(TestPublicBean.class);
           suite.addTestSuite(TestPropertyFinder.class);
           suite.addTestSuite(TestListenerMap.class);
           suite.addTestSuite(TestIdAllocator.class);
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.102.4.10 +7 -1      jakarta-tapestry/web/new.html
  
  Index: new.html
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/web/new.html,v
  retrieving revision 1.102.4.9
  retrieving revision 1.102.4.10
  diff -u -r1.102.4.9 -r1.102.4.10
  --- new.html	4 Jan 2003 02:49:30 -0000	1.102.4.9
  +++ new.html	14 Jan 2003 14:43:30 -0000	1.102.4.10
  @@ -11,6 +11,12 @@
   	<tr>
   		<td valign="top" align="left"><img height="44" src="images/ico_t.gif" alt="[Tapestry Logo]" width="44" align="absMiddle" border="0">&nbsp;<img height="22" alt="Tapestry" src="images/hd_tapestry.gif" width="100" align="absMiddle" vspace="17" border="0">
   
  +<h3>Release 2.4-alpha-2</h3>
  +
  +<ul>
  +<li>Made improvements to how Tapestry handles arrays of objects and scalars
  +</ul>
  +
   <h3>Release 2.4-alpha-1</h3>
   
   <ul>
  
  
  
  No                   revision
  
  
  No                   revision
  
  
  1.22.2.2  +2 -2      jakarta-tapestry/config/Version.properties
  
  Index: Version.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-tapestry/config/Version.properties,v
  retrieving revision 1.22.2.1
  retrieving revision 1.22.2.2
  diff -u -r1.22.2.1 -r1.22.2.2
  --- Version.properties	5 Dec 2002 11:54:01 -0000	1.22.2.1
  +++ Version.properties	14 Jan 2003 14:43:30 -0000	1.22.2.2
  @@ -2,4 +2,4 @@
   #
   # Stores the version number of the framework.
   
  -framework.version=2.4-alpha-1
  +framework.version=2.4-alpha-2