Author: sabob
Date: Wed Mar 2 07:40:05 2011
New Revision: 1076129
URL: http://svn.apache.org/viewvc?rev=1076129&view=rev
Log:
fix doco links
Modified:
click/trunk/click/extras/src/org/apache/click/extras/gae/GoogleAppEngineListener.java
click/trunk/click/framework/src/org/apache/click/Control.java
click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java
Modified: click/trunk/click/extras/src/org/apache/click/extras/gae/GoogleAppEngineListener.java
URL: http://svn.apache.org/viewvc/click/trunk/click/extras/src/org/apache/click/extras/gae/GoogleAppEngineListener.java?rev=1076129&r1=1076128&r2=1076129&view=diff
==============================================================================
--- click/trunk/click/extras/src/org/apache/click/extras/gae/GoogleAppEngineListener.java
(original)
+++ click/trunk/click/extras/src/org/apache/click/extras/gae/GoogleAppEngineListener.java
Wed Mar 2 07:40:05 2011
@@ -135,7 +135,7 @@ import ognl.OgnlRuntime;
*
* <h3>Page Automapping</h3>
* GAE does not always adhere to the Servlet specification. One of the areas that affects
- * Click directly is the <a href="../../../../../../user-guide/html/ch04s02.html#application-automapping">automatic
mapping</a>
+ * Click directly is the <a href="../../../../../../user-guide/html/ch05s02.html#application-automapping">automatic
mapping</a>
* of Page templates to page classes. GAE does not implement the ServletContext
* method <tt>getResourcePaths("/")</tt>. Instead of returning the resources
under
* the web-app root, it returns an empty set. Click needs these resources to map
@@ -208,7 +208,7 @@ import ognl.OgnlRuntime;
* automatically deploy its resources.
* <p/>
* Please see the user-guide section,
- * <a href="../../../../../../user-guide/html/ch04s03.html#deploying-restricted-env">Deploying
resources in a restricted environment</a>,
+ * <a href="../../../../../../user-guide/html/ch05s03.html#deploying-restricted-env">Deploying
resources in a restricted environment</a>,
* for various solutions.
*/
public class GoogleAppEngineListener implements ServletContextListener {
Modified: click/trunk/click/framework/src/org/apache/click/Control.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/Control.java?rev=1076129&r1=1076128&r2=1076129&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/Control.java (original)
+++ click/trunk/click/framework/src/org/apache/click/Control.java Wed Mar 2 07:40:05 2011
@@ -82,7 +82,7 @@ import org.apache.click.util.HtmlStringB
* startup time Click will scan this folder for resources and deploy them to the
* web application. This deployment strategy is the same approach taken by the
* Servlet 3.0 specification. Please see the section
- * <a href="../../../../user-guide/html/ch04s03.html#deploying-custom-resources">Deploying
Custom Resources</a>
+ * <a href="../../../../user-guide/html/ch05s03.html#deploying-custom-resources">Deploying
Custom Resources</a>
* for more details.
* <p/>
* An alternative approach to deploying static resources on startup is provided
@@ -311,7 +311,7 @@ public interface Control extends Seriali
* Click also supports an alternative deployment strategy which relies on
* packaging resource (stylesheets, JavaScript, images etc.) following a
* specific convention. See the section
- * <a href="../../../../user-guide/html/ch04s03.html#deploying-custom-resources">Deploying
Custom Resources</a>
+ * <a href="../../../../user-guide/html/ch05s03.html#deploying-custom-resources">Deploying
Custom Resources</a>
* for further details.
*
* @param servletContext the servlet context
Modified: click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java
URL: http://svn.apache.org/viewvc/click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java?rev=1076129&r1=1076128&r2=1076129&view=diff
==============================================================================
--- click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java (original)
+++ click/trunk/click/framework/src/org/apache/click/service/XmlConfigService.java Wed Mar
2 07:40:05 2011
@@ -1352,7 +1352,7 @@ public class XmlConfigService implements
}
buffer.append("To resolve this issue please see the Click user-guide:");
- buffer.append(" http://click.apache.org/docs/user-guide/html/ch04s03.html#deploying-restricted-env");
+ buffer.append(" http://click.apache.org/docs/user-guide/html/ch05s03.html#deploying-restricted-env");
buffer.append(" \nIgnore this warning once you have settled on a");
buffer.append(" deployment strategy");
getLogService().warn(buffer.toString());
|