Author: kkolinko Date: Sat Apr 26 22:10:33 2014 New Revision: 1590313 URL: http://svn.apache.org/r1590313 Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=56365 Correct errors in StandardJarScanFilter documentation.
Modified: tomcat/trunk/webapps/docs/config/jar-scan-filter.xml tomcat/trunk/webapps/docs/config/systemprops.xml Modified: tomcat/trunk/webapps/docs/config/jar-scan-filter.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/jar-scan-filter.xml?rev=1590313&r1=1590312&r2=1590313&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/config/jar-scan-filter.xml (original) +++ tomcat/trunk/webapps/docs/config/jar-scan-filter.xml Sat Apr 26 22:10:33 2014 @@ -92,14 +92,14 @@ <attributes> <attribute name="tldSkip" required="false"> - <p>The comma separated list of JAR file and / or directory name patterns + <p>The comma separated list of JAR file name patterns to skip when scanning for TLDs. If not specified, the default is obtained from the <code>tomcat.util.scan.StandardJarScanFilter.jarsToSkip</code> system property.</p> </attribute> <attribute name="tldScan" required="false"> - <p>The comma separated list of JAR file and / or directory name patterns + <p>The comma separated list of JAR file name patterns to scan when scanning for TLDs. If not specified, the default is obtained from the <code>tomcat.util.scan.StandardJarScanFilter.jarsToScan</code> system property.</p> @@ -115,7 +115,7 @@ </attribute> <attribute name="pluggabilitySkip" required="false"> - <p>The comma separated list of JAR file and / or directory name patterns + <p>The comma separated list of JAR file name patterns to skip when scanning for pluggable features. If not specified, the default is obtained from the <code>tomcat.util.scan.StandardJarScanFilter.jarsToSkip</code> system @@ -123,7 +123,7 @@ </attribute> <attribute name="pluggabilityScan" required="false"> - <p>The comma separated list of JAR file and / or directory name patterns + <p>The comma separated list of JAR file name patterns to scan when scanning for pluggable features. If not specified, the default is obtained from the <code>tomcat.util.scan.StandardJarScanFilter.jarsToScan</code> system Modified: tomcat/trunk/webapps/docs/config/systemprops.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/systemprops.xml?rev=1590313&r1=1590312&r2=1590313&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/config/systemprops.xml (original) +++ tomcat/trunk/webapps/docs/config/systemprops.xml Sat Apr 26 22:10:33 2014 @@ -544,22 +544,23 @@ <section name="JAR Scanning"> <properties> - <property name="tomcat.util.scan. DefaultJarScanner.jarsToSkip"> - <p>The comma-separated list of filenames of JARs that Tomcat will not scan - for configuration information when using the - <a href="jar-scanner.html">JarScanner</a> functionality. Note that - there are additional system properties that enable JARs to be excluded - from specific scans rather than all scans.</p> - <p>The coded default is that no JARs are skipped however the system - property is set in a default Tomcat installation via the + <property name="tomcat.util.scan. StandardJarScanFilter.jarsToSkip"> + <p>A list of comma-separated file name patters that is used as the default + value for <code>pluggabilitySkip</code> and <code>tldSkip</code> + attributes of the standard + <a href="jar-scan-filter.html">JarScanFilter</a> implementation.</p> + <p>The coded default empty, however the system property is set in + a default Tomcat installation via the <code>$CATALINA_BASE/conf/catalina.properties</code> file.</p> </property> - <property name="org.apache.catalina.startup. ContextConfig.jarsToSkip"> - <p>The comma-separated list of additional filenames of JARs that Tomcat - will not scan for Servlet 3.0 pluggability features.</p> - <p>The coded default is that no JARs are skipped however the system - property is set in a default Tomcat installation via the + <property name="tomcat.util.scan. StandardJarScanFilter.jarsToScan"> + <p>A list of comma-separated file name patters that is used as the default + value for <code>pluggabilityScan</code> and <code>tldScan</code> + attributes of the standard + <a href="jar-scan-filter.html">JarScanFilter</a> implementation.</p> + <p>The coded default empty, however the system property is set in + a default Tomcat installation via the <code>$CATALINA_BASE/conf/catalina.properties</code> file.</p> </property> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org