You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by st...@apache.org on 2005/09/15 22:55:42 UTC

svn commit: r289314 - /beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/netui/tutorial_pageflow.xml

Author: steveh
Date: Thu Sep 15 13:55:41 2005
New Revision: 289314

URL: http://svn.apache.org/viewcvs?rev=289314&view=rev
Log:
Editing run through.

Modified:
    beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/netui/tutorial_pageflow.xml

Modified: beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/netui/tutorial_pageflow.xml
URL: http://svn.apache.org/viewcvs/beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/netui/tutorial_pageflow.xml?rev=289314&r1=289313&r2=289314&view=diff
==============================================================================
--- beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/netui/tutorial_pageflow.xml (original)
+++ beehive/trunk/docs/forrest/release/src/documentation/content/xdocs/netui/tutorial_pageflow.xml Thu Sep 15 13:55:41 2005
@@ -114,6 +114,7 @@
                 then your <code>build.properties</code> file would appear as follows.</p>
                 <source>
 beehive.home=<strong>/apache/apache-beehive-1.0</strong>
+
 servlet-api.jar=${os.CATALINA_HOME}/common/lib/servlet-api.jar
 jsp-api.jar=${os.CATALINA_HOME}/common/lib/jsp-api.jar
 
@@ -180,7 +181,7 @@
                 <title>Examine the Controller.java and index.jsp Files</title>
                 <p>There are no edits to make in this step.  The point of this step is 
                     to learn about the code you are about to run.</p>
-                <p>Open the file <code>pageflow_tutorial/Controller.java</code>. 
+                <p>Open the file <code>pageflow_tutorial/web/Controller.java</code>. 
                     </p>
                 <p>The controller class is an ordinary Java class with methods and annotations.</p>
                 <p>A Page Flow controller class must extend 
@@ -251,7 +252,7 @@
     {
     }
 }</source>
-                <p>Open the file <code>pageflow_tutorial/index.jsp</code>. 
+                <p>Open the file <code>pageflow_tutorial/web/index.jsp</code>. 
                     </p>
                 <p><strong><code>index.jsp</code></strong></p>
 <source><![CDATA[
@@ -379,7 +380,8 @@
     }
 )
 public class Controller 
-    extends PageFlowController {
+    extends PageFlowController 
+{
     ...
 }</source>
             <p>Save <code>Controller.java</code>.</p>
@@ -497,7 +499,8 @@
     }
 )
 public class Controller 
-    extends PageFlowController {
+    extends PageFlowController 
+{
 
     <strong>@Jpf.Action(
         forwards = { 
@@ -801,7 +804,8 @@
     }
 )
 public class Controller
-    extends PageFlowController {
+    extends PageFlowController 
+{
 
     <strong>private ProfileForm profileForm;