I think you have to update documentation on this attribute in
docs/config/context.xml.

It is also mentioned in docs/config/systemprops.xml as one of the
attributes changed by "strict compliance" option.

2013/11/22  <ma...@apache.org>:
> Author: markt
> Date: Fri Nov 22 11:11:56 2013
> New Revision: 1544487
>
> URL: http://svn.apache.org/r1544487
> Log:
> Always use a namespace aware parser for TLD files.
>
> Modified:
>     tomcat/tc7.0.x/trunk/java/org/apache/catalina/Context.java
>     tomcat/tc7.0.x/trunk/java/org/apache/catalina/core/StandardContext.java
>     tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/FailedContext.java
>     tomcat/tc7.0.x/trunk/java/org/apache/catalina/startup/TldConfig.java
>     tomcat/tc7.0.x/trunk/test/org/apache/catalina/core/TesterContext.java
>     tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
>

> @@ -6616,13 +6610,13 @@ public class StandardContext extends Con
>
>      @Override
>      public boolean getTldNamespaceAware(){
> -        return tldNamespaceAware;
> +        return true;
>      }
>
>
>      @Override
>      public void setTldNamespaceAware(boolean tldNamespaceAware){
> -        this.tldNamespaceAware = tldNamespaceAware;
> +        // NO-OP;
>      }
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to