You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by cm...@apache.org on 2002/03/06 17:52:47 UTC

cvs commit: jakarta-slide/src/taglib/common/org/apache/slide/taglib/tag NamespaceTagSupport.java

cmlenz      02/03/06 08:52:47

  Modified:    src/taglib/common/org/apache/slide/taglib/tag
                        NamespaceTagSupport.java
  Log:
  Last occurence of the old attribute naming removed
  
  Revision  Changes    Path
  1.4       +6 -5      jakarta-slide/src/taglib/common/org/apache/slide/taglib/tag/NamespaceTagSupport.java
  
  Index: NamespaceTagSupport.java
  ===================================================================
  RCS file: /home/cvs/jakarta-slide/src/taglib/common/org/apache/slide/taglib/tag/NamespaceTagSupport.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NamespaceTagSupport.java	24 Sep 2001 08:15:35 -0000	1.3
  +++ NamespaceTagSupport.java	6 Mar 2002 16:52:47 -0000	1.4
  @@ -1,7 +1,7 @@
   /*
  - * $Header: /home/cvs/jakarta-slide/src/taglib/common/org/apache/slide/taglib/tag/NamespaceTagSupport.java,v 1.3 2001/09/24 08:15:35 remm Exp $
  - * $Revision: 1.3 $
  - * $Date: 2001/09/24 08:15:35 $
  + * $Header: /home/cvs/jakarta-slide/src/taglib/common/org/apache/slide/taglib/tag/NamespaceTagSupport.java,v 1.4 2002/03/06 16:52:47 cmlenz Exp $
  + * $Revision: 1.4 $
  + * $Date: 2002/03/06 16:52:47 $
    *
    * ====================================================================
    *
  @@ -78,7 +78,7 @@
    * scripting variable.
    * 
    * @author <a href="mailto:cmlenz@apache.org">Christopher Lenz</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public abstract class NamespaceTagSupport
       extends TagSupport {
  @@ -235,7 +235,8 @@
               // look for a 'namespace' context parameter, and use its value
               // as namespace name if present
               ServletContext context = pageContext.getServletContext();
  -            name = context.getInitParameter("namespace");
  +            name = context.getInitParameter
  +                ("org.apache.slide.NamespaceName");
           }
           if (name == null) {
               // use the default namespace
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>