Author: kkolinko Date: Mon May 14 12:13:24 2012 New Revision: 1338174 URL: http://svn.apache.org/viewvc?rev=1338174&view=rev Log: CTR: documentation Correct links to Java documentation Those are at docs.oracle.com now.
Modified: tomcat/tc6.0.x/trunk/webapps/docs/class-loader-howto.xml tomcat/tc6.0.x/trunk/webapps/docs/config/context.xml tomcat/tc6.0.x/trunk/webapps/docs/index.xml tomcat/tc6.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml tomcat/tc6.0.x/trunk/webapps/docs/logging.xml Modified: tomcat/tc6.0.x/trunk/webapps/docs/class-loader-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/class-loader-howto.xml?rev=1338174&r1=1338173&r2=1338174&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/class-loader-howto.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/class-loader-howto.xml Mon May 14 12:13:24 2012 @@ -214,8 +214,8 @@ preference to this one.</p> Mechanism" to allow replacement of APIs created outside of the JCP (i.e. DOM and SAX from W3C). It can also be used to update the XML parser implementation. For more information, see: -<a href="http://download.oracle.com/javase/1.5.0/docs/guide/standards/index.html"> -http://download.oracle.com/javase/1.5.0/docs/guide/standards/index.html</a>.</p> +<a href="http://docs.oracle.com/javase/1.5.0/docs/guide/standards/index.html"> +http://docs.oracle.com/javase/1.5.0/docs/guide/standards/index.html</a>.</p> <p>Tomcat utilizes this mechanism by including the system property setting <code>-Djava.endorsed.dirs=$JAVA_ENDORSED_DIRS</code> in the Modified: tomcat/tc6.0.x/trunk/webapps/docs/config/context.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/config/context.xml?rev=1338174&r1=1338173&r2=1338174&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/config/context.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/config/context.xml Mon May 14 12:13:24 2012 @@ -905,8 +905,8 @@ two additional attributes to allow a shared data source to be used with different credentials. When these two additional attributes are used in combination with the <code>javax.sql.DataSource</code> type, different contexts can share a global data source with different credentials. - Under the hood, what happens is that a call to <a href="http://download.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection()"><code>getConnection()</code></a> - is simply translated to a call <a href="http://download.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection(java.lang.String,%20java.lang.String)"> + Under the hood, what happens is that a call to <a href="http://docs.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection()"><code>getConnection()</code></a> + is simply translated to a call <a href="http://docs.oracle.com/javase/6/docs/api/javax/sql/DataSource.html#getConnection(java.lang.String,%20java.lang.String)"> <code>getConnection(username, password)</code></a> on the global data source. This is an easy way to get code to be transparent to what schemas are being used, yet be able to control connections (or pools) in the global configuration. </p> Modified: tomcat/tc6.0.x/trunk/webapps/docs/index.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/index.xml?rev=1338174&r1=1338173&r2=1338174&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/index.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/index.xml Mon May 14 12:13:24 2012 @@ -149,9 +149,9 @@ are responsible for installing, configur - Complete documentation and HOWTOs on the JK native webserver connector, used to interface Apache Tomcat with servers like Apache HTTPd, IIS and others.</li> -<li><a href="http://download.oracle.com/docs/cd/E17802_01/products/products/servlet/2.5/docs/servlet-2_5-mr2/"> +<li><a href="http://docs.oracle.com/cd/E17802_01/products/products/servlet/2.5/docs/servlet-2_5-mr2/"> <strong>Servlet API Javadocs</strong></a> - The Servlet 2.5 API Javadocs.</li> -<li><a href="http://download.oracle.com/docs/cd/E17802_01/products/products/jsp/2.1/docs/jsp-2_1-pfd2/index.html"> +<li><a href="http://docs.oracle.com/cd/E17802_01/products/products/jsp/2.1/docs/jsp-2_1-pfd2/index.html"> <strong>JSP API Javadocs</strong></a> - The JSP 2.1 API Javadocs.</li> </ul> Modified: tomcat/tc6.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml?rev=1338174&r1=1338173&r2=1338174&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/jndi-datasource-examples-howto.xml Mon May 14 12:13:24 2012 @@ -69,7 +69,7 @@ the section about Automatic Application <section name="DriverManager, the service provider mechanism and memory leaks"> <p><code>java.sql.DriverManager</code> supports the -<a href="http://download.oracle.com/javase/6/docs/api/index.html?java/sql/DriverManager.html">service +<a href="http://docs.oracle.com/javase/6/docs/api/index.html?java/sql/DriverManager.html">service provider</a> mechanism. This feature is that all the available JDBC drivers that announce themselves by providing a <code>META-INF/services/java.sql.Driver</code> file are automatically discovered, loaded and registered, Modified: tomcat/tc6.0.x/trunk/webapps/docs/logging.xml URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/logging.xml?rev=1338174&r1=1338173&r2=1338174&view=diff ============================================================================== --- tomcat/tc6.0.x/trunk/webapps/docs/logging.xml (original) +++ tomcat/tc6.0.x/trunk/webapps/docs/logging.xml Mon May 14 12:13:24 2012 @@ -375,7 +375,7 @@ java.util.logging.ConsoleHandler.formatt package. </li> <li>Oracle Java 6 Javadoc for the - <a href="http://download.oracle.com/javase/6/docs/api/java/util/logging/package-summary.html"><code>java.util.logging</code></a> + <a href="http://docs.oracle.com/javase/6/docs/api/java/util/logging/package-summary.html"><code>java.util.logging</code></a> package. </li> </ul> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org