You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by ek...@apache.org on 2005/05/25 04:50:42 UTC

svn commit: r178351 - in /incubator/beehive/trunk/samples/netui-samples: ./ WEB-INF/src/ WEB-INF/src/org/apache/beehive/samples/netui/resources/ loginexample/loginflow/ loginexample/protectedflow/ loginexample/start/ resources/template/ templateactions/ templateactions/flow1/ templateactions/flow2/ templateactions/shared/ ui/datagrid/ ui/formintagfile/ ui/formposting/ ui/pageinput/ ui/popup/ ui/popup/getcolor/ ui/repeaterediting/ ui/resourcebinding/ ui/tree/ validation/

Author: ekoneil
Date: Tue May 24 19:50:41 2005
New Revision: 178351

URL: http://svn.apache.org/viewcvs?rev=178351&view=rev
Log:
Fixes to the netui-samples webapp:

- fix the browser page title to include the "samTitle".  This makes it easier to navigate using the back button
- rename samTitle to sampleTitle
- fixup some properties in site.properties to read "NetUI" rather than "Page Flow"

BB: self
DRT: build.dist / netui-samples builds & runs


Modified:
    incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/build.xml
    incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/org/apache/beehive/samples/netui/resources/site.properties
    incubator/beehive/trunk/samples/netui-samples/index.jsp
    incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/failure.jsp
    incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/index.jsp
    incubator/beehive/trunk/samples/netui-samples/loginexample/protectedflow/index.jsp
    incubator/beehive/trunk/samples/netui-samples/loginexample/start/index.jsp
    incubator/beehive/trunk/samples/netui-samples/resources/template/template.jsp
    incubator/beehive/trunk/samples/netui-samples/templateactions/flow1/index.jsp
    incubator/beehive/trunk/samples/netui-samples/templateactions/flow2/index.jsp
    incubator/beehive/trunk/samples/netui-samples/templateactions/page1.jsp
    incubator/beehive/trunk/samples/netui-samples/templateactions/page2.jsp
    incubator/beehive/trunk/samples/netui-samples/templateactions/shared/template.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/datagrid/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/formintagfile/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/formposting/basicForm.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/formposting/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/formposting/outputForm.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/formposting/validatedForm.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/pageinput/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/confirm.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/popup/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/popup/show.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/repeaterediting/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/resourcebinding/index.jsp
    incubator/beehive/trunk/samples/netui-samples/ui/tree/tree.jsp
    incubator/beehive/trunk/samples/netui-samples/validation/index.jsp
    incubator/beehive/trunk/samples/netui-samples/validation/success.jsp

Modified: incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/build.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/build.xml?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/build.xml (original)
+++ incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/build.xml Tue May 24 19:50:41 2005
@@ -18,7 +18,7 @@
  -->
 
 <!--
-  An Ant build file for compiling the petstoreWeb Beehive sample web application.
+  An Ant build file for compiling the Beehive netui-samples web application.
 -->
 <project name="Beehive/Samples/NetUI-Samples" default="usage" basedir=".">
 
@@ -45,7 +45,6 @@
 
     <target name="deploy-beehive" description="Copy the Beehive webapp rutime into the petstoreWeb webapp">
         <deploy-netui webappDir="${webapp.dir}"/>
-        <deploy-wsm webappDir="${webapp.dir}"/>
     </target>
 
     <target name="build" depends="deploy-beehive" description="Build the petstoreWeb webapp">
@@ -113,10 +112,6 @@
 ant build          -- this builds the netui-samples webapp
 ant war            -- creates a .war archive to deploy
         </echo>
-
-        <java fork="no" classname="org.apache.tools.ant.Main">
-            <arg line="-f ${ant.file} -projecthelp"/>
-        </java>
     </target>
 
 </project>

Modified: incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/org/apache/beehive/samples/netui/resources/site.properties
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/org/apache/beehive/samples/netui/resources/site.properties?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/org/apache/beehive/samples/netui/resources/site.properties (original)
+++ incubator/beehive/trunk/samples/netui-samples/WEB-INF/src/org/apache/beehive/samples/netui/resources/site.properties Tue May 24 19:50:41 2005
@@ -1,3 +1,3 @@
 # Webapp messages
-browserTitle=Beehive Page Flow Feature Samples
-welcome=Welcome to the Page Flow Feature Samples
+browserTitle=Beehive NetUI Feature Samples
+welcome=Welcome to the Beehive NetUI Feature Samples

Modified: incubator/beehive/trunk/samples/netui-samples/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/index.jsp Tue May 24 19:50:41 2005
@@ -21,58 +21,65 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Home Page"/>
+  <netui-template:setAttribute name="sampleTitle" value="Home Page"/>
   <netui-template:section name="main">
-  <p>
-  The following samples demonstrate a variety of Beehive NetUI features:
-  </p>
-    <dl>
-      <dt><netui:anchor href="ui/datagrid/Controller.jpf" value="Data Grid"/></dt>
-      <dd>Demonstrates how to render a data set (in this case, an array of objects) 
-        as an HTML table using the &lt;netui-data:dataGrid> tag.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="loginexample/start/Controller.jpf" value="Login"/></dt>
-      <dd>Demonstrates defining your own LoginHandler, as well as nested page flows and Page Flow
-          inheritance.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/popup/Controller.jpf" value="Popup Window"/></dt>
-      <dd>Demonstrates nested page flow shown in a popup window, with values passed back to the
-          original page flow.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="templateactions/MainFlow.jpf" value="Template Actions"/></dt>
-      <dd>Demonstrates the use of a shared flow to provide actions for a template page (like a
-          template that contains a menu bar).</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/tree/Controller.jpf" value="Tree"/></dt>
-      <dd>Demonstrates how to use &lt;netui:tree> and related tags.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="validation/Controller.jpf" value="Validation"/></dt>
-      <dd>This sample demonstrates the declarative validation model.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/formposting/Controller.jpf" value="Form Posting"/></dt>
-      <dd>Demonstrates how to use a Page Flow and NetUI JSP tags to handle an HTML form POST.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/pageinput/Controller.jpf" value="Page Input"/></dt>
-      <dd>Demonstrates how to use a Page Flow page inputs to pass data from an action to a JSP page.</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/resourcebinding/Controller.jpf" value="Message Resource Binding"/></dt>
-      <dd>Demonstrates how to use JSP EL expressions to data bind to message resources</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/formintagfile/Controller.jpf" value="JSP Tag File as a Form"/></dt>
-      <dd>Demonstrates how to use a JSP 2.0 .tag file to contain a NetUI form</dd>
-    </dl>
-    <dl>
-      <dt><netui:anchor href="ui/repeaterediting/Controller.jpf" value="Editing a Data Set using the Repeater"/></dt>
-      <dd>Demonstrates how to use a repeater tag to edit text / boolean properties of items in a repeated data set with the repeater</dd>
-    </dl>
+      <p>
+          The following samples demonstrate a variety of
+          <netui:anchor href="http://incubator.apache.org/beehive" value="Beehive"/> NetUI features.
+      </p>
+      <br/>
+      <b>NetUI Page Flow Core</b>
+      <br/>
+      <dl>
+          <dt><netui:anchor href="loginexample/start/Controller.jpf" value="Login"/></dt>
+          <dd>Demonstrates defining your own LoginHandler, as well as nested page flows and Page Flow
+              inheritance.</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="templateactions/MainFlow.jpf" value="Template Actions"/></dt>
+          <dd>Demonstrates the use of a shared flow to provide actions for a template page (like a
+              template that contains a menu bar).</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="validation/Controller.jpf" value="Validation"/></dt>
+          <dd>This sample demonstrates the declarative validation model.</dd>
+      </dl>
+      <br/>
+      <b>NetUI JSP Tags</b>
+      <br/>
+      <dl>
+          <dt><netui:anchor href="ui/formposting/Controller.jpf" value="Form Posting"/></dt>
+          <dd>Demonstrates how to use a Page Flow and NetUI JSP tags to handle an HTML form POST.</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/pageinput/Controller.jpf" value="Page Input"/></dt>
+          <dd>Demonstrates how to use a Page Flow page inputs to pass data from an action to a JSP page.</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/resourcebinding/Controller.jpf" value="Message Resource Binding"/></dt>
+          <dd>Demonstrates how to use JSP EL expressions to data bind to message resources</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/repeaterediting/Controller.jpf" value="Editing a Data Set using the Repeater"/></dt>
+          <dd>Demonstrates how to use a repeater tag to edit text / boolean properties of items in a repeated data set with the repeater</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/datagrid/Controller.jpf" value="Data Grid"/></dt>
+          <dd>Demonstrates how to render a data set (in this case, an array of objects)
+              as an HTML table using the &lt;netui-data:dataGrid> tag.</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/tree/Controller.jpf" value="Tree"/></dt>
+          <dd>Demonstrates how to use &lt;netui:tree> and related tags.</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/popup/Controller.jpf" value="Popup Window"/></dt>
+          <dd>Demonstrates nested page flow shown in a popup window, with values passed back to the
+              original page flow.</dd>
+      </dl>
+      <dl>
+          <dt><netui:anchor href="ui/formintagfile/Controller.jpf" value="JSP Tag File as a Form"/></dt>
+          <dd>Demonstrates how to use a JSP 2.0 .tag file to contain a NetUI form</dd>
+      </dl>
   </netui-template:section>
 </netui-template:template>

Modified: incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/failure.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/failure.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/failure.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/failure.jsp Tue May 24 19:50:41 2005
@@ -23,7 +23,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-  <netui-template:setAttribute name="samTitle" value="Login Example - Login Flow"/>
+  <netui-template:setAttribute name="sampleTitle" value="Login Example - Login Flow"/>
 
   <netui-template:section name="main">
         Login failed.

Modified: incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/loginexample/loginflow/index.jsp Tue May 24 19:50:41 2005
@@ -23,7 +23,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-  <netui-template:setAttribute name="samTitle" value="Login Example - Login Flow"/>
+  <netui-template:setAttribute name="sampleTitle" value="Login Example - Login Flow"/>
 
   <netui-template:section name="main">
         <i>In this example, the only valid login is username 'good', password 'good'.</i>

Modified: incubator/beehive/trunk/samples/netui-samples/loginexample/protectedflow/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/loginexample/protectedflow/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/loginexample/protectedflow/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/loginexample/protectedflow/index.jsp Tue May 24 19:50:41 2005
@@ -23,7 +23,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-  <netui-template:setAttribute name="samTitle" value="Login Example - Protected Page Flow"/>
+  <netui-template:setAttribute name="sampleTitle" value="Login Example - Protected Page Flow"/>
 
   <netui-template:section name="main">
         If you got here, then you're logged in.

Modified: incubator/beehive/trunk/samples/netui-samples/loginexample/start/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/loginexample/start/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/loginexample/start/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/loginexample/start/index.jsp Tue May 24 19:50:41 2005
@@ -23,7 +23,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-    <netui-template:setAttribute name="samTitle" value="Login Example - Start"/>
+    <netui-template:setAttribute name="sampleTitle" value="Login Example - Start"/>
 
     <netui-template:section name="main">
         This example demonstrates the following features:

Modified: incubator/beehive/trunk/samples/netui-samples/resources/template/template.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/resources/template/template.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/resources/template/template.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/resources/template/template.jsp Tue May 24 19:50:41 2005
@@ -26,7 +26,7 @@
 <netui:html>
     <head>
         <title>
-            ${bundle.site.browserTitle}
+            ${bundle.site.browserTitle} -- <netui-template:attribute name="sampleTitle" defaultValue="Sample"/>
         </title>
         <link rel="stylesheet" href="${pageContext.request.contextPath}/resources/css/style.css" type="text/css"/>
     </head>
@@ -35,7 +35,7 @@
             <div id="header">
                 <table style="background-color:#FFE87C;width:100%;">
                   <tr>
-                    <td style="font-size:x-large;">Page Flow Feature Samples: <netui-template:attribute name="samTitle"/></td>
+                    <td style="font-size:x-large;">NetUI Feature Samples: <netui-template:attribute name="sampleTitle"/></td>
                     <td style="text-align:right;"><a href="${pageContext.request.contextPath}" target="_top">Samples Home</a></td>
                   </tr>
                 </table><br/>

Modified: incubator/beehive/trunk/samples/netui-samples/templateactions/flow1/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/templateactions/flow1/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/templateactions/flow1/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/templateactions/flow1/index.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 
 <netui-template:template templatePage="../shared/template.jsp">
 
-    <netui-template:setAttribute name="samTitle" value="Validation"/>
+    <netui-template:setAttribute name="sampleTitle" value="Validation"/>
 
     <netui-template:section name="main">
         This is the content for <b>${pageFlow.URI}</b>.

Modified: incubator/beehive/trunk/samples/netui-samples/templateactions/flow2/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/templateactions/flow2/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/templateactions/flow2/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/templateactions/flow2/index.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 
 <netui-template:template templatePage="../shared/template.jsp">
 
-    <netui-template:setAttribute name="samTitle" value="Validation"/>
+    <netui-template:setAttribute name="sampleTitle" value="Validation"/>
 
     <netui-template:section name="main">
         This is the content for <b>${pageFlow.URI}</b>

Modified: incubator/beehive/trunk/samples/netui-samples/templateactions/page1.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/templateactions/page1.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/templateactions/page1.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/templateactions/page1.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 
 <netui-template:template templatePage="shared/template.jsp">
 
-    <netui-template:setAttribute name="samTitle" value="Validation"/>
+    <netui-template:setAttribute name="sampleTitle" value="Validation"/>
 
     <netui-template:section name="main">
         This is page 1 of <b>${pageFlow.URI}</b>.

Modified: incubator/beehive/trunk/samples/netui-samples/templateactions/page2.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/templateactions/page2.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/templateactions/page2.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/templateactions/page2.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 
 <netui-template:template templatePage="shared/template.jsp">
 
-    <netui-template:setAttribute name="samTitle" value="Validation"/>
+    <netui-template:setAttribute name="sampleTitle" value="Validation"/>
 
     <netui-template:section name="main">
         This is page 2 of <b>${pageFlow.URI}</b>.

Modified: incubator/beehive/trunk/samples/netui-samples/templateactions/shared/template.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/templateactions/shared/template.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/templateactions/shared/template.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/templateactions/shared/template.jsp Tue May 24 19:50:41 2005
@@ -35,7 +35,7 @@
             <div id="header">
                 <table style="background-color:#FFE87C;width:100%;">
                   <tr>
-                    <td style="font-size:x-large;">Page Flow Feature Samples: <netui-template:attribute name="samTitle"/></td>
+                    <td style="font-size:x-large;">Page Flow Feature Samples: <netui-template:attribute name="sampleTitle"/></td>
                     <td style="text-align:right;"><a href="${pageContext.request.contextPath}" target="_top">Samples Home</a></td>
                   </tr>
                 </table><br/>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/datagrid/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/datagrid/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/datagrid/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/datagrid/index.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Data Grid"/>
+  <netui-template:setAttribute name="sampleTitle" value="Data Grid"/>
   <netui-template:section name="main">
     <!--
       The 'dataSource' attribute references the 'pets' member variable in the class 'datagrid/Controller.jpf' 

Modified: incubator/beehive/trunk/samples/netui-samples/ui/formintagfile/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/formintagfile/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/formintagfile/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/formintagfile/index.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 <%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value=""/>
+  <netui-template:setAttribute name="sampleTitle" value=""/>
   <netui-template:section name="main">
         <br/>
       <div style="width: 40%">

Modified: incubator/beehive/trunk/samples/netui-samples/ui/formposting/basicForm.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/formposting/basicForm.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/formposting/basicForm.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/formposting/basicForm.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Basic Form"/>
+  <netui-template:setAttribute name="sampleTitle" value="Basic Form"/>
   <netui-template:section name="main">
       <i>Enter a name in this text box and click the Submit button to POST the value to the server.
       <br/>Once the form has been submitted, the name will re-appear in this text box.</i><br/>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/formposting/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/formposting/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/formposting/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/formposting/index.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Form Posting"/>
+  <netui-template:setAttribute name="sampleTitle" value="Form Posting"/>
   <netui-template:section name="main">
     <dl>
       <dt><netui:anchor action="showBasicForm" value="Simple Post"/></dt>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/formposting/outputForm.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/formposting/outputForm.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/formposting/outputForm.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/formposting/outputForm.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Basic Form"/>
+  <netui-template:setAttribute name="sampleTitle" value="Basic Form"/>
   <netui-template:section name="main">
       <i>This NetUI form has been pre-populated with a value from an "output form" from
          the Page Flow action postOutputForm.  <br/>Click the Submit button to POST the form

Modified: incubator/beehive/trunk/samples/netui-samples/ui/formposting/validatedForm.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/formposting/validatedForm.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/formposting/validatedForm.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/formposting/validatedForm.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Basic Form"/>
+  <netui-template:setAttribute name="sampleTitle" value="Basic Form"/>
   <netui-template:section name="main">
       <div style="width:40%;">
       <i>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/pageinput/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/pageinput/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/pageinput/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/pageinput/index.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Page Inputs"/>
+  <netui-template:setAttribute name="sampleTitle" value="Page Inputs"/>
   <netui-template:section name="main">
       
       <netui-data:declarePageInput name="pet" type="org.apache.beehive.samples.netui.beans.PetType"/>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/confirm.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/confirm.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/confirm.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/confirm.jsp Tue May 24 19:50:41 2005
@@ -24,7 +24,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-  <netui-template:setAttribute name="samTitle" value="Popup Windows"/>
+  <netui-template:setAttribute name="sampleTitle" value="Popup Windows"/>
 
     <netui-template:section name="main">
         <netui:form action="done">

Modified: incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/popup/getcolor/index.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-  <netui-template:setAttribute name="samTitle" value="Popup Windows"/>
+  <netui-template:setAttribute name="sampleTitle" value="Popup Windows"/>
 
     <netui-template:section name="main">
         <netui:form action="submitColor">

Modified: incubator/beehive/trunk/samples/netui-samples/ui/popup/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/popup/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/popup/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/popup/index.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Popup Windows"/>
+  <netui-template:setAttribute name="sampleTitle" value="Popup Windows"/>
   <netui-template:section name="main">
     <netui:form action="submit">
       <table>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/popup/show.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/popup/show.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/popup/show.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/popup/show.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-    <netui-template:setAttribute name="samTitle" value="Popup Windows"/>
+    <netui-template:setAttribute name="sampleTitle" value="Popup Windows"/>
     <netui-template:section name="main">
         <h3>You submitted the following information:</h3>
         <table>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/repeaterediting/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/repeaterediting/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/repeaterediting/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/repeaterediting/index.jsp Tue May 24 19:50:41 2005
@@ -23,7 +23,7 @@
 <netui-data:declarePageInput name="totalPrice" type="java.lang.Double" required="true"/>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Editable Repeater"/>
+  <netui-template:setAttribute name="sampleTitle" value="Editable Repeater"/>
   <netui-template:section name="main">
       <netui:form action="update">
           <table border="0" cellspacing="5" cellpadding="5" width="50%">

Modified: incubator/beehive/trunk/samples/netui-samples/ui/resourcebinding/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/resourcebinding/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/resourcebinding/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/resourcebinding/index.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="netui-template"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Resource Bundle Binding"/>
+  <netui-template:setAttribute name="sampleTitle" value="Resource Bundle Binding"/>
   <netui-template:section name="main">
       <b>Binding to the default resource bundle</b>
       <br/>

Modified: incubator/beehive/trunk/samples/netui-samples/ui/tree/tree.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/ui/tree/tree.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/ui/tree/tree.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/ui/tree/tree.jsp Tue May 24 19:50:41 2005
@@ -19,7 +19,7 @@
 <%@ taglib prefix="netui-template" uri="http://beehive.apache.org/netui/tags-template-1.0"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Tree"/>
+  <netui-template:setAttribute name="sampleTitle" value="Tree"/>
   <netui-template:section name="main">
     <div style="border: thin solid;height: 300px;">
       <netui:tree dataSource="pageFlow.root"

Modified: incubator/beehive/trunk/samples/netui-samples/validation/index.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/validation/index.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/validation/index.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/validation/index.jsp Tue May 24 19:50:41 2005
@@ -22,7 +22,7 @@
 
 <netui-template:template templatePage="/resources/template/template.jsp">
 
-  <netui-template:setAttribute name="samTitle" value="Validation"/>
+  <netui-template:setAttribute name="sampleTitle" value="Validation"/>
 
   <netui-template:section name="main">
         <i>

Modified: incubator/beehive/trunk/samples/netui-samples/validation/success.jsp
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/netui-samples/validation/success.jsp?rev=178351&r1=178350&r2=178351&view=diff
==============================================================================
--- incubator/beehive/trunk/samples/netui-samples/validation/success.jsp (original)
+++ incubator/beehive/trunk/samples/netui-samples/validation/success.jsp Tue May 24 19:50:41 2005
@@ -21,7 +21,7 @@
 <%@ taglib prefix="netui-template" uri="http://beehive.apache.org/netui/tags-template-1.0"%>
 
 <netui-template:template templatePage="/resources/template/template.jsp">
-  <netui-template:setAttribute name="samTitle" value="Validation"/>
+  <netui-template:setAttribute name="sampleTitle" value="Validation"/>
   <netui-template:section name="main">
         <p>Validation successful.</p>
         <p><netui:anchor action="begin">Start over</netui:anchor></p>