Author: steveh Date: Thu Dec 2 10:49:12 2004 New Revision: 109517 URL: http://svn.apache.org/viewcvs?view=rev&rev=109517 Log: (1) Fix for BEEHIVE-108: Tutorial documentation bug (2) General web site update, misc. changes. Modified: incubator/beehive/site/build/site/index.html incubator/beehive/site/build/site/pageflow/pageflow_building.html incubator/beehive/site/build/site/pageflow/pageflow_controllers.html incubator/beehive/site/build/site/reference.html incubator/beehive/site/build/site/wsm/tutorial_wsm.html incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml
Modified: incubator/beehive/site/build/site/index.html Url: http://svn.apache.org/viewcvs/incubator/beehive/site/build/site/index.html?view=diff&rev=109517&p1=incubator/beehive/site/build/site/index.html&r1=109516&p2=incubator/beehive/site/build/site/index.html&r2=109517 ============================================================================== --- incubator/beehive/site/build/site/index.html (original) +++ incubator/beehive/site/build/site/index.html Thu Dec 2 10:49:12 2004 @@ -315,20 +315,20 @@ <a href="#Get+Involved">Get Involved</a> </li> </ul> - <!-- - Beehive - Welcome<should link to the HTML page created from Welcome.doc> - License<should link to http://www.apache.org/licenses/LICENSE-2.0> - - Documentation - FAQ<should link to the HTML page created from FAQ.doc> - Controls Overview<should link to Kyle's control Overview> - Controls Programming<should link to Kyle's Controls programming pdf> - Web Services (JSR 181)<should link to http://jcp.org/en/jsr/detail?id=181> - - Contributing - Mailing Lists<should link to HTML Page created from MailingLists.doc> - Contributers<should link to HTML Page created from Contributers.doc> + <!-- + Beehive + Welcome<should link to the HTML page created from Welcome.doc> + License<should link to http://www.apache.org/licenses/LICENSE-2.0> + + Documentation + FAQ<should link to the HTML page created from FAQ.doc> + Controls Overview<should link to Kyle's control Overview> + Controls Programming<should link to Kyle's Controls programming pdf> + Web Services (JSR 181)<should link to http://jcp.org/en/jsr/detail?id=181> + + Contributing + Mailing Lists<should link to HTML Page created from MailingLists.doc> + Contributers<should link to HTML Page created from Contributers.doc> --> <a name="N1000E"></a><a name="Beehive+releases+a+V1+Alpha"></a> Modified: incubator/beehive/site/build/site/pageflow/pageflow_building.html Url: http://svn.apache.org/viewcvs/incubator/beehive/site/build/site/pageflow/pageflow_building.html?view=diff&rev=109517&p1=incubator/beehive/site/build/site/pageflow/pageflow_building.html&r1=109516&p2=incubator/beehive/site/build/site/pageflow/pageflow_building.html&r2=109517 ============================================================================== --- incubator/beehive/site/build/site/pageflow/pageflow_building.html (original) +++ incubator/beehive/site/build/site/pageflow/pageflow_building.html Thu Dec 2 10:49:12 2004 @@ -639,7 +639,7 @@ <tr> -<td colspan="1" rowspan="1">JSTL <strong>is this right?</strong></td> +<td colspan="1" rowspan="1">JSTL <strong>[todo: is this right? ]</strong></td> <td colspan="1" rowspan="1">standard.jar</td> <td colspan="1" rowspan="1">1.1.1</td> Modified: incubator/beehive/site/build/site/pageflow/pageflow_controllers.html Url: http://svn.apache.org/viewcvs/incubator/beehive/site/build/site/pageflow/pageflow_controllers.html?view=diff&rev=109517&p1=incubator/beehive/site/build/site/pageflow/pageflow_controllers.html&r1=109516&p2=incubator/beehive/site/build/site/pageflow/pageflow_controllers.html&r2=109517 ============================================================================== --- incubator/beehive/site/build/site/pageflow/pageflow_controllers.html (original) +++ incubator/beehive/site/build/site/pageflow/pageflow_controllers.html Thu Dec 2 10:49:12 2004 @@ -499,7 +499,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="signup.jsp" ); + @Jpf.Forward( name="success", path="signup.jsp") } )</strong> public Forward signUp() @@ -509,7 +509,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="login.jsp" ); + @Jpf.Forward( name="success", path="login.jsp" ) } )</strong> public Forward login() @@ -535,7 +535,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="signup.jsp" ); + @Jpf.Forward( name="success", path="signup.jsp" ) } )</strong> public Forward signUp() @@ -545,7 +545,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="login.jsp" ); + @Jpf.Forward( name="success", path="login.jsp" ) } )</strong> public Forward login() @@ -602,14 +602,14 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="authenticated", path="mypage.jsp" ); - @Jpf.Forward( name="not_authenticated", path="login.jsp" ); + @Jpf.Forward( name="authenticated", path="mypage.jsp" ), + @Jpf.Forward( name="not_authenticated", path="login.jsp" ) } )</strong> public Forward myPage() { HttpServletRequest request = getRequest(); - HttpSession session = request.getSession(); + HttpSession session = request.getSession(); if ( session.getAttribute( "authenticated_user" ) != null ) { @@ -758,8 +758,8 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="authenticated", path="mypage.jsp" ); - @Jpf.Forward( name="not_authenticated", path="login.jsp" ); + @Jpf.Forward( name="authenticated", path="mypage.jsp" ), + @Jpf.Forward( name="not_authenticated", path="login.jsp" ) } )</strong> public Forward processLogin(LoginForm form) Modified: incubator/beehive/site/build/site/reference.html Url: http://svn.apache.org/viewcvs/incubator/beehive/site/build/site/reference.html?view=diff&rev=109517&p1=incubator/beehive/site/build/site/reference.html&r1=109516&p2=incubator/beehive/site/build/site/reference.html&r2=109517 ============================================================================== --- incubator/beehive/site/build/site/reference.html (original) +++ incubator/beehive/site/build/site/reference.html Thu Dec 2 10:49:12 2004 @@ -312,8 +312,8 @@ <a target="_blank" href="reference/classref_pageflows/index.html">Page Flow API Reference</a> </li> - <!--<li> - <fork href="pageflow/config/netui-config.html">Configuration: netui-config.xml</fork> + <!--<li> + <fork href="pageflow/config/netui-config.html">Configuration: netui-config.xml</fork> </li>--> <li> Modified: incubator/beehive/site/build/site/wsm/tutorial_wsm.html Url: http://svn.apache.org/viewcvs/incubator/beehive/site/build/site/wsm/tutorial_wsm.html?view=diff&rev=109517&p1=incubator/beehive/site/build/site/wsm/tutorial_wsm.html&r1=109516&p2=incubator/beehive/site/build/site/wsm/tutorial_wsm.html&r2=109517 ============================================================================== --- incubator/beehive/site/build/site/wsm/tutorial_wsm.html (original) +++ incubator/beehive/site/build/site/wsm/tutorial_wsm.html Thu Dec 2 10:49:12 2004 @@ -697,12 +697,12 @@ build.webapp redeploy</pre> </div> -<a name="N101F9"></a><a name="To+Test+the+Non-Web+Invokable+Method-N101E6"></a> -<h5>To Test the Non-Web Invokable Method</h5> +<a name="N101F9"></a><a name="To+Test+the+Parameterized+Method+%28with+SOAP-encoded+style%29"></a> +<h5>To Test the Parameterized Method (with SOAP-encoded style)</h5> <div style="margin-left: 0 ; border: 2px"> <p>Enter the following URL in the address bar of your browser. </p> <p> -<a target="_blank" href="http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHelloWorld">http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHelloWorld</a> +<a target="_blank" href="http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHello&greetee=Moon">http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHello&greetee=Moon</a> </p> <p>The following SOAP response appears in the browser. Compare the RPC style below with the DOC style above.</p> <pre class="code"><soapenv:Envelope> Modified: incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml?view=diff&rev=109517&p1=incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml&r1=109516&p2=incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml&r2=109517 ============================================================================== --- incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml (original) +++ incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_building.xml Thu Dec 2 10:49:12 2004 @@ -212,7 +212,7 @@ <td>2.4</td> </tr> <tr> - <td>JSTL <strong>is this right?</strong></td> + <td>JSTL <strong>[todo: is this right? ]</strong></td> <td>standard.jar</td> <td>1.1.1</td> </tr> Modified: incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml?view=diff&rev=109517&p1=incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml&r1=109516&p2=incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml&r2=109517 ============================================================================== --- incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml (original) +++ incubator/beehive/site/src/documentation/content/xdocs/pageflow/pageflow_controllers.xml Thu Dec 2 10:49:12 2004 @@ -182,7 +182,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="signup.jsp" ); + @Jpf.Forward( name="success", path="signup.jsp") } )</strong> public Forward signUp() @@ -192,7 +192,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="login.jsp" ); + @Jpf.Forward( name="success", path="login.jsp" ) } )</strong> public Forward login() @@ -220,7 +220,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="signup.jsp" ); + @Jpf.Forward( name="success", path="signup.jsp" ) } )</strong> public Forward signUp() @@ -230,7 +230,7 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="success", path="login.jsp" ); + @Jpf.Forward( name="success", path="login.jsp" ) } )</strong> public Forward login() @@ -290,14 +290,14 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="authenticated", path="mypage.jsp" ); - @Jpf.Forward( name="not_authenticated", path="login.jsp" ); + @Jpf.Forward( name="authenticated", path="mypage.jsp" ), + @Jpf.Forward( name="not_authenticated", path="login.jsp" ) } )</strong> public Forward myPage() { HttpServletRequest request = getRequest(); - HttpSession session = request.getSession(); + HttpSession session = request.getSession(); if ( session.getAttribute( "authenticated_user" ) != null ) { @@ -449,8 +449,8 @@ <strong>@Jpf.Action( forwards = { - @Jpf.Forward( name="authenticated", path="mypage.jsp" ); - @Jpf.Forward( name="not_authenticated", path="login.jsp" ); + @Jpf.Forward( name="authenticated", path="mypage.jsp" ), + @Jpf.Forward( name="not_authenticated", path="login.jsp" ) } )</strong> public Forward processLogin(LoginForm form) Modified: incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml?view=diff&rev=109517&p1=incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml&r1=109516&p2=incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml&r2=109517 ============================================================================== --- incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml (original) +++ incubator/beehive/site/src/documentation/content/xdocs/wsm/tutorial_wsm.xml Thu Dec 2 10:49:12 2004 @@ -1,4 +1,4 @@ -ï<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V1.2//EN" "http://forrest.apache.org/dtd/document-v12.dtd"> <!--<!DOCTYPE document SYSTEM "C:\apache-forrest-0.5.1\context\resources\schema\dtd\document-v12.dtd">--> <document> @@ -304,7 +304,7 @@ <section> <title>To Test the Parameterized Method (with SOAP-encoded style)</title> <p>Enter the following URL in the address bar of your browser. </p> - <p><fork href="http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHello&greetee=Moon">http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHello&greetee=Moon</fork></p> + <p><fork href="http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHello&greetee=Moon">http://localhost:8080/ws_tutorial/template/Blank.jws?method=sayHello&greetee=Moon</fork></p> <p>The following SOAP response appears in the browser. Compare the RPC style below with the DOC style above.</p> <source><