Modified: websites/production/tapestry/content/exploring-the-project.html
==============================================================================
--- websites/production/tapestry/content/exploring-the-project.html (original)
+++ websites/production/tapestry/content/exploring-the-project.html Fri Aug 29 
00:21:57 2014
@@ -42,7 +42,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -56,9 +56,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Exploring the 
Project</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Exploring the Project</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -170,7 +170,7 @@ public class Index
     }
 }
 ]]></script>
-</div></div><p>There's a bit going on in this listing, as the Index page 
attempts to demonstrate a bunch of different ideas in Tapestry. Even so, the 
class is essentially pretty simple: Tapestry pages and components have no base 
classes to extend, no interfaces to implement, and are just a very pure POJO 
(Plain Old Java Object) ... with some special naming conventions and 
annotations for fields and methods.</p><p>You do have to meet the Tapestry 
framework partway:</p><ul><li>You need to put the Java class in the expected 
package, here com.example.tutorial.pages</li><li>The class must be 
public</li><li>You need to make sure there's a public, no-arguments constructor 
(here, the Java compiler has silently provided one for us)</li><li>All 
non-static fields must be <strong>private</strong></li></ul><p>As we saw when 
running the application, the page displays the current date and time, as well 
as a couple of extra links. The <code>currentTime</code> property is where that 
value comes from
 ; shortly we'll see how that value is referenced in the template, so it can be 
extracted from the page and output.</p><p>Tapestry always matches a page class 
to a template; neither is functional without the other. In fact, components 
within a page are treated the same way (except that components do not always 
have templates).</p><p>You will often hear about the <a shape="rect" 
class="external-link" href="http://en.wikipedia.org/wiki/Model_view_controller"; 
>Model-View-Controller pattern</a> (MVC). In Tapestry, the page class acts as 
both the Model (the source of data) and the controller (the logic that responds 
to user interaction). The template is the View in MVC. As a model, the page 
exposes JavaBeans properties that can be referenced in the 
template.</p><p>Let's look at how the component template builds on the Java 
class to provide the full user interface.</p><h1 
id="ExploringtheProject-ComponentTemplate">Component Template</h1><p>Tapestry 
pages are the combination of a POJO Java 
 class with a Tapestry component template. The template has the same name as 
the Java class, but has the extension <code>.tml</code>. Since the Java class 
here is com.example.tutorial.pages.Index, the template file will be located at 
src/main/resource/com/example/tutorial/pages/Index.tml. Ultimately, both the 
Java class and the component template file will be stored in the same folder 
within the deployed WAR file.</p><p>Tapestry component templates are 
well-formed XML documents. This means that you can use any available XML 
editor. Templates may even have a DOCTYPE or an XML schema to validate the 
structure of the template page</p><p></p><p></p><p>&lt;style type='text/css'&gt;
+</div></div><p>There's a bit going on in this listing, as the Index page 
attempts to demonstrate a bunch of different ideas in Tapestry. Even so, the 
class is essentially pretty simple: Tapestry pages and components have no base 
classes to extend, no interfaces to implement, and are just a very pure POJO 
(Plain Old Java Object) ... with some special naming conventions and 
annotations for fields and methods.</p><p>You do have to meet the Tapestry 
framework partway:</p><ul><li>You need to put the Java class in the expected 
package, here com.example.tutorial.pages</li><li>The class must be 
public</li><li>You need to make sure there's a public, no-arguments constructor 
(here, the Java compiler has silently provided one for us)</li><li>All 
non-static fields must be <strong>private</strong></li></ul><p>As we saw when 
running the application, the page displays the current date and time, as well 
as a couple of extra links. The <code>currentTime</code> property is where that 
value comes from
 ; shortly we'll see how that value is referenced in the template, so it can be 
extracted from the page and output.</p><p>Tapestry always matches a page class 
to a template; neither is functional without the other. In fact, components 
within a page are treated the same way (except that components do not always 
have templates).</p><p>You will often hear about the <a shape="rect" 
class="external-link" href="http://en.wikipedia.org/wiki/Model_view_controller"; 
>Model-View-Controller pattern</a> (MVC). In Tapestry, the page class acts as 
both the Model (the source of data) and the controller (the logic that responds 
to user interaction). The template is the View in MVC. As a model, the page 
exposes JavaBeans properties that can be referenced in the 
template.</p><p>Let's look at how the component template builds on the Java 
class to provide the full user interface.</p><h1 
id="ExploringtheProject-ComponentTemplate">Component Template</h1><p>Tapestry 
pages are the combination of a POJO Java 
 class with a Tapestry component template. The template has the same name as 
the Java class, but has the extension <code>.tml</code>. Since the Java class 
here is com.example.tutorial.pages.Index, the template file will be located at 
src/main/resource/com/example/tutorial/pages/Index.tml. Ultimately, both the 
Java class and the component template file will be stored in the same folder 
within the deployed WAR file.</p><p>Tapestry component templates are 
well-formed XML documents. This means that you can use any available XML 
editor. Templates may even have a DOCTYPE or an XML schema to validate the 
structure of the template page</p><p></p><p></p><p></p><p>&lt;style 
type='text/css'&gt;
 .FootnoteMarker, .FootnoteNum a {
   background: transparent 
url(/confluence/download/resources/com.adaptavist.confluence.footnoteMacros:footnote/gfx/footnote.png)
 no-repeat top right;
   padding: 1px 2px 0px 1px;
@@ -236,13 +236,11 @@ var footnoteMarkerHighlight = function(i
 }
 //--&gt;
 &lt;/script&gt;
-
 <sup id="FootnoteMarker1">
     <a shape="rect" class="FootnoteMarker" name="FootnoteMarker1" 
href="#Footnote1" onclick="footnoteHighlight(&quot;1&quot;,true);" 
alt="Footnote: Click here to display the footnote" title="Footnote: Click here 
to display the footnote">
             1
     </a>
-</sup>
-</p><p></p><p></p><p>.</p><p>&#160;</p><p>For the most part, a Tapestry 
component template looks like ordinary XHTML:</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeHeader panelHeader pdl" 
style="border-bottom-width: 
1px;"><b>src/main/resources/com/example/tutorial/pages/Index.tml</b></div><div 
class="codeContent panelContent pdl">
+</sup></p><p></p><p></p><p></p><p>.</p><p>&#160;</p><p>For the most part, a 
Tapestry component template looks like ordinary XHTML:</p><div class="code 
panel pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" 
style="border-bottom-width: 
1px;"><b>src/main/resources/com/example/tutorial/pages/Index.tml</b></div><div 
class="codeContent panelContent pdl">
 <script class="theme: Default; brush: xml; gutter: false" 
type="syntaxhighlighter"><![CDATA[&lt;html t:type=&quot;layout&quot; 
title=&quot;tutorial1 Index&quot;
       t:sidebarTitle=&quot;Framework Version&quot;
       xmlns:t=&quot;http://tapestry.apache.org/schema/tapestry_5_3.xsd&quot;
@@ -292,13 +290,12 @@ var footnoteMarkerHighlight = function(i
                             <p>You do have to name your component template 
file, Index.tml, with the <strong>exact same case</strong> as the component 
class name, Index. If you get the case wrong, it may work on some operating 
systems (such as Mac OS X, Windows) and not on others (Linux, and most others). 
This can be really vexing, as it is common to develop on Windows and deploy on 
Linux or Solaris, so be careful about case in this one area.</p>
                     </div>
     </div>
-<p>The goal in Tapestry is for component templates, such as Index.tml, to look 
as much as possible like ordinary, static HTML files</p><p></p><p></p><p>
+<p>The goal in Tapestry is for component templates, such as Index.tml, to look 
as much as possible like ordinary, static HTML files</p><p></p><p></p><p></p><p>
 <sup id="FootnoteMarker2">
     <a shape="rect" class="FootnoteMarker" name="FootnoteMarker2" 
href="#Footnote2" onclick="footnoteHighlight(&quot;2&quot;,true);" 
alt="Footnote: Click here to display the footnote" title="Footnote: Click here 
to display the footnote">
             2
     </a>
-</sup>
-</p><p></p><p></p><p>. In fact, the expectation is that in many cases, the 
templates will start as static HTML files, created by a web developer, and then 
be <em>instrumented</em> to act as live Tapestry 
pages.</p><p>&#160;</p><p>Tapestry hides non-standard elements and attributes 
inside XML namespaces. By convention, the prefix "t:" is used for the primary 
namespace, but that is not a requirement, any prefix you want to use is 
fine.</p><p>This short template demonstrates quite a few features of 
Tapestry.</p>    <div class="aui-message problem shadowed information-macro">
+</sup></p><p></p><p></p><p></p><p>. In fact, the expectation is that in many 
cases, the templates will start as static HTML files, created by a web 
developer, and then be <em>instrumented</em> to act as live Tapestry 
pages.</p><p>&#160;</p><p>Tapestry hides non-standard elements and attributes 
inside XML namespaces. By convention, the prefix "t:" is used for the primary 
namespace, but that is not a requirement, any prefix you want to use is 
fine.</p><p>This short template demonstrates quite a few features of 
Tapestry.</p>    <div class="aui-message problem shadowed information-macro">
                             <span class="aui-icon icon-problem">Icon</span>
                 <div class="message-content">
                             <p>Part of the concept of the quickstart archetype 
is to demonstrate a bunch of different features, approaches and common patterns 
used in Tapestry, thus we're hitting you with a lot all at once.</p>
@@ -317,37 +314,33 @@ var footnoteMarkerHighlight = function(i
                             <p>If you are coming to Tapestry 5 from Tapestry 4 
or earlier, expansions are a concise replacement for the Insert component.</p>
                     </div>
     </div>
-<p>The value inside the curly braces is a <em>property expression</em>. 
Tapestry uses its own property expression language that is expressive, fast, 
and type-safe</p><p></p><p></p><p>
+<p>The value inside the curly braces is a <em>property expression</em>. 
Tapestry uses its own property expression language that is expressive, fast, 
and type-safe</p><p></p><p></p><p></p><p>
 <sup id="FootnoteMarker3">
     <a shape="rect" class="FootnoteMarker" name="FootnoteMarker3" 
href="#Footnote3" onclick="footnoteHighlight(&quot;3&quot;,true);" 
alt="Footnote: Click here to display the footnote" title="Footnote: Click here 
to display the footnote">
             3
     </a>
-</sup>
-</p><p></p><p></p><p>. More advanced property expressions can traverse 
multiple properties (for example, <code>user.address.city</code>), or even 
invoke public methods. Here the expansion simply reads the 
<code>currentTime</code> property of the page.</p><p>&#160;</p><p>Tapestry 
follows the rules defined by Sun's JavaBeans specification: a property name of 
<code>currentTime</code> maps to two methods: <code>getCurrentTime()</code> and 
<code>setCurrentTime()</code>. If you omit one or the other of these methods, 
the property is either read only (as here), or write only</p><p></p><p></p><p>
+</sup></p><p></p><p></p><p></p><p>. More advanced property expressions can 
traverse multiple properties (for example, <code>user.address.city</code>), or 
even invoke public methods. Here the expansion simply reads the 
<code>currentTime</code> property of the page.</p><p>&#160;</p><p>Tapestry 
follows the rules defined by Sun's JavaBeans specification: a property name of 
<code>currentTime</code> maps to two methods: <code>getCurrentTime()</code> and 
<code>setCurrentTime()</code>. If you omit one or the other of these methods, 
the property is either read only (as here), or write 
only</p><p></p><p></p><p></p><p>
 <sup id="FootnoteMarker4">
     <a shape="rect" class="FootnoteMarker" name="FootnoteMarker4" 
href="#Footnote4" onclick="footnoteHighlight(&quot;4&quot;,true);" 
alt="Footnote: Click here to display the footnote" title="Footnote: Click here 
to display the footnote">
             4
     </a>
-</sup>
-</p><p></p><p></p><p>.</p><p>&#160;</p><p>Tapestry does go one step further: 
it ignores case when matching properties inside the expansion to properties of 
the page. In the template we could say ${currenttime} or ${CurrentTime} or any 
variation, and Tapestry will <em>still</em> invoke the 
<code>getCurrentTime()</code> method.</p><p>Note that in Tapestry it is not 
necessary to configure what object holds the <code>currentTime</code> property; 
a template and a page are always used in combination with each other; 
expressions are always rooted in the page instance, in this case, an instance 
of the Index class.</p><p>The Index.tml template includes a second 
expansion:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
+</sup></p><p></p><p></p><p></p><p>.</p><p>&#160;</p><p>Tapestry does go one 
step further: it ignores case when matching properties inside the expansion to 
properties of the page. In the template we could say ${currenttime} or 
${CurrentTime} or any variation, and Tapestry will <em>still</em> invoke the 
<code>getCurrentTime()</code> method.</p><p>Note that in Tapestry it is not 
necessary to configure what object holds the <code>currentTime</code> property; 
a template and a page are always used in combination with each other; 
expressions are always rooted in the page instance, in this case, an instance 
of the Index class.</p><p>The Index.tml template includes a second 
expansion:</p><div class="code panel pdl" style="border-width: 1px;"><div 
class="codeContent panelContent pdl">
 <script class="theme: Default; brush: xml; gutter: false" 
type="syntaxhighlighter"><![CDATA[    &lt;p&gt;${message:greeting}&lt;/p&gt;
 ]]></script>
-</div></div><p>Here <code>greeting</code> is not a property of the page; its 
actually a localized message key. Every Tapestry page and component is allowed 
to have its own message catalog</p><p></p><p></p><p>
+</div></div><p>Here <code>greeting</code> is not a property of the page; its 
actually a localized message key. Every Tapestry page and component is allowed 
to have its own message catalog</p><p></p><p></p><p></p><p>
 <sup id="FootnoteMarker5">
     <a shape="rect" class="FootnoteMarker" name="FootnoteMarker5" 
href="#Footnote5" onclick="footnoteHighlight(&quot;5&quot;,true);" 
alt="Footnote: Click here to display the footnote" title="Footnote: Click here 
to display the footnote">
             5
     </a>
-</sup>
-</p><p></p><p></p><p>.</p><p>&#160;</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeHeader panelHeader pdl" 
style="border-bottom-width: 
1px;"><b>src/main/resources/com/example/tutorial/pages/Index.properties</b></div><div
 class="codeContent panelContent pdl">
+</sup></p><p></p><p></p><p></p><p>.</p><p>&#160;</p><div class="code panel 
pdl" style="border-width: 1px;"><div class="codeHeader panelHeader pdl" 
style="border-bottom-width: 
1px;"><b>src/main/resources/com/example/tutorial/pages/Index.properties</b></div><div
 class="codeContent panelContent pdl">
 <script class="theme: Default; brush: java; gutter: false" 
type="syntaxhighlighter"><![CDATA[greeting=Welcome to Tapestry 5!  We hope that 
this project template will get you going in style.
 ]]></script>
-</div></div><p>Message catalogs are useful for storing repeating strings 
outside of code or templates, though their primary purpose is related to 
localization of the application (which will be described in more detail in a 
later chapter). Messages that may be used across multiple pages can be stored 
in the application's global message catalog, 
src/main/webapp/WEB-INF/app.properties, instead.</p><p>This "message:" prefix 
is not some special case; there are actually quite a few of these <em>binding 
prefixes</em> built into Tapestry, each having a specific purpose. In fact, 
omitting a binding prefix in an expansion is exactly the same as using the 
"prop:" binding prefix, which means to treat the binding as a property 
expression.</p><p>Expansions are useful for extracting a piece of information 
and rendering it out to the client as a string, but the real heavy lifting of 
Tapestry occurs inside components.</p><h1 
id="ExploringtheProject-ComponentsInsideTemplates">Components Inside Templa
 tes</h1><p>Components can be represented inside a component template in two 
ways</p><p></p><p></p><p>
+</div></div><p>Message catalogs are useful for storing repeating strings 
outside of code or templates, though their primary purpose is related to 
localization of the application (which will be described in more detail in a 
later chapter). Messages that may be used across multiple pages can be stored 
in the application's global message catalog, 
src/main/webapp/WEB-INF/app.properties, instead.</p><p>This "message:" prefix 
is not some special case; there are actually quite a few of these <em>binding 
prefixes</em> built into Tapestry, each having a specific purpose. In fact, 
omitting a binding prefix in an expansion is exactly the same as using the 
"prop:" binding prefix, which means to treat the binding as a property 
expression.</p><p>Expansions are useful for extracting a piece of information 
and rendering it out to the client as a string, but the real heavy lifting of 
Tapestry occurs inside components.</p><h1 
id="ExploringtheProject-ComponentsInsideTemplates">Components Inside Templa
 tes</h1><p>Components can be represented inside a component template in two 
ways</p><p></p><p></p><p></p><p>
 <sup id="FootnoteMarker6">
     <a shape="rect" class="FootnoteMarker" name="FootnoteMarker6" 
href="#Footnote6" onclick="footnoteHighlight(&quot;6&quot;,true);" 
alt="Footnote: Click here to display the footnote" title="Footnote: Click here 
to display the footnote">
             6
     </a>
-</sup>
-</p><p></p><p></p><p>:</p><p>&#160;</p><ul><li>As an ordinary element, but 
with a t:type attribute to define the type of component.</li></ul><ul><li>As an 
element in the Tapestry namespace, in which case the element name determines 
the type.</li></ul><p>Here we've used an &lt;html&gt; element to represent the 
application's Layout component.</p><div class="code panel pdl" 
style="border-width: 1px;"><div class="codeContent panelContent pdl">
+</sup></p><p></p><p></p><p></p><p>:</p><p>&#160;</p><ul><li>As an ordinary 
element, but with a t:type attribute to define the type of 
component.</li></ul><ul><li>As an element in the Tapestry namespace, in which 
case the element name determines the type.</li></ul><p>Here we've used an 
&lt;html&gt; element to represent the application's Layout component.</p><div 
class="code panel pdl" style="border-width: 1px;"><div class="codeContent 
panelContent pdl">
 <script class="theme: Default; brush: xml; gutter: false" 
type="syntaxhighlighter"><![CDATA[&lt;html t:type=&quot;layout&quot; ...&gt; 
   ...
 &lt;/html&gt;
@@ -364,31 +357,13 @@ var footnoteMarkerHighlight = function(i
 
 
 
-<span class="gliffy-container" id="gliffy-container-24346949-1355" 
data-fullwidth="913" data-ceoid="24188263" data-filename="Templates and 
Parameters">
-
-            
-<span class="gliffy-chrome-container">
+<span class="gliffy-container" id="gliffy-container-24346949-2446" 
data-fullwidth="913" data-ceoid="24188263" 
data-edit="${diagramEditLink.getLinkUrl()}" 
data-full="/confluence/plugins/gliffy/viewer.action?inline=false&amp;attachmentId=24346949&amp;attachmentVersion=2&amp;lastPage=%2Fpages%2Fviewpage.action%3FpageId%3D24188263"
 data-filename="Templates and Parameters">
 
-    <span class="gliffy-chrome">
-
-        <span class="gliffy-item gliffy-first">
-            <img class="gliffy-logo" 
src="https://cwiki.apache.org/confluence/download/resources/com.gliffy.integration.confluence:gliffy-macro-key/icons/logo_16x16.png";
 title="Gliffy" alt="Gliffy">
-                     Gliffy         </span>
-                        <span class="gliffy-item gliffy-zoom gliffy-end-button 
gliffy-start-button">
-            <a shape="rect" 
href="exploring-the-project.data/Templates%20and%20Parameters.png?version=2&amp;modificationDate=1371888025000&amp;api=v2"
 target="_self">
-                <span>
-                    <img class="gliffy-icon-full" 
src="https://cwiki.apache.org/confluence/download/resources/com.gliffy.integration.confluence:gliffy-macro-key/icons/gliffy_macro_icon_zoom.png";
 alt="Zoom" title="Zoom">
-                     Zoom                 </span>
-            </a>
-        </span>
-            </span>
-</span>
-    
-    <map id="gliffy-map-24346949-4298" name="gliffy-map-24346949-4298"></map>
+    <map id="gliffy-map-24346949-3068" name="gliffy-map-24346949-3068"></map>
 
-    <img class="gliffy-image gliffy-image-border" 
id="gliffy-image-24346949-1355" width="304" height="300" data-full-width="913" 
data-full-height="901" 
src="https://cwiki.apache.org/confluence/download/attachments/24188263/Templates%20and%20Parameters.png?version=2&amp;modificationDate=1371888025000&amp;api=v2";
 usemap="#gliffy-map-24346949-4298">
+    <img class="gliffy-image gliffy-image-border" 
id="gliffy-image-24346949-2446" width="304" height="300" data-full-width="913" 
data-full-height="901" 
src="https://cwiki.apache.org/confluence/download/attachments/24188263/Templates%20and%20Parameters.png?version=2&amp;modificationDate=1371888025000&amp;api=v2";
 alt="Templates and Parameters" usemap="#gliffy-map-24346949-3068">
 
-    <map class="gliffy-dynamic" id="gliffy-dynamic-map-24346949-1355" 
name="gliffy-dynamic-map-24346949-1355"></map>
+    <map class="gliffy-dynamic" id="gliffy-dynamic-map-24346949-2446" 
name="gliffy-dynamic-map-24346949-2446"></map>
 </span>
 
 
@@ -415,7 +390,7 @@ var footnoteMarkerHighlight = function(i
                             <p>This level of detail reflects that the 
application has been configured to run in <em>development mode</em> instead of 
<em>production mode</em>. In production mode, the exception report would simply 
be the top level exception message. However, most production applications go 
further and customize how Tapestry handles and reports exceptions.</p>
                     </div>
     </div>
-<p>There was a bunch of other stuff on this page, related to links and Ajax 
and other things, that we'll ignore for the 
moment.</p><hr><p>&#160;</p><p></p><p></p><p></p><p><table class="Footnotes" 
style="width: 100%; border:none;" cellspacing="0" cellpadding="0" summary="This 
table contains one or more notes for references made elsewhere on the 
page."><caption class="accessibility">Footnotes</caption><thead 
class="accessibility"><tr class="accessibility"><th colspan="1" rowspan="1" 
class="accessibility" id="footnote-th1">Reference</th><th colspan="1" 
rowspan="1" class="accessibility" 
id="footnote-th2">Notes</th></tr></thead><tbody><tr name="Footnote1"><td 
colspan="1" rowspan="1" valign="top" class="FootnoteNum" 
headings="footnote-th1">
+<p>There was a bunch of other stuff on this page, related to links and Ajax 
and other things, that we'll ignore for the 
moment.</p><hr><p>&#160;</p><p></p><p></p><p></p><p></p><p><table 
class="Footnotes" style="width: 100%; border:none;" cellspacing="0" 
cellpadding="0" summary="This table contains one or more notes for references 
made elsewhere on the page."><caption 
class="accessibility">Footnotes</caption><thead class="accessibility"><tr 
class="accessibility"><th colspan="1" rowspan="1" class="accessibility" 
id="footnote-th1">Reference</th><th colspan="1" rowspan="1" 
class="accessibility" id="footnote-th2">Notes</th></tr></thead><tbody><tr 
name="Footnote1"><td colspan="1" rowspan="1" valign="top" class="FootnoteNum" 
headings="footnote-th1">
         <a shape="rect" id="FootnoteNum1" href="#FootnoteMarker1" 
onclick="footnoteMarkerHighlight(&quot;1&quot;);" 
onmouseover="footnoteHighlight(&quot;1&quot;,false);" alt="Footnote: Click to 
return to reference in text" title="Footnote: Click to return to reference in 
text">
             1
         </a>
@@ -452,7 +427,7 @@ var footnoteMarkerHighlight = function(i
         </a>
       </td><td colspan="1" rowspan="1" valign="top" class="Footnote" 
id="Footnote6" width="100%" headings="footnote-th2">
           Ok, there's a third way as well, which will be discussed in good 
time.
-      </td></tr></tbody></table></p><p></p><p></p><style 
type="text/css">/*<![CDATA[*/
+      </td></tr></tbody></table></p><p></p><p></p><p></p><style 
type="text/css">/*<![CDATA[*/
 table.ScrollbarTable  {border: none;padding: 3px;width: 100%;padding: 
3px;margin: 0px;background-color: #f0f0f0}
 table.ScrollbarTable td.ScrollbarPrevIcon {text-align: center;width: 
16px;border: none;}
 table.ScrollbarTable td.ScrollbarPrevName {text-align: left;border: none;}

Modified: websites/production/tapestry/content/extending-the-if-component.html
==============================================================================
--- websites/production/tapestry/content/extending-the-if-component.html 
(original)
+++ websites/production/tapestry/content/extending-the-if-component.html Fri 
Aug 29 00:21:57 2014
@@ -42,7 +42,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -56,9 +56,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Extending the If 
Component</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Extending the If Component</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/first.html
==============================================================================
--- websites/production/tapestry/content/first.html (original)
+++ websites/production/tapestry/content/first.html Fri Aug 29 00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>First</h1></div></div>
+<h1 id="SmallBanner-PageTitle">First</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/footer.html
==============================================================================
--- websites/production/tapestry/content/footer.html (original)
+++ websites/production/tapestry/content/footer.html Fri Aug 29 00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Footer</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Footer</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: 
websites/production/tapestry/content/forms-and-form-components-faq.html
==============================================================================
--- websites/production/tapestry/content/forms-and-form-components-faq.html 
(original)
+++ websites/production/tapestry/content/forms-and-form-components-faq.html Fri 
Aug 29 00:21:57 2014
@@ -41,7 +41,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -55,9 +55,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Forms and Form Components 
FAQ</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Forms and Form Components FAQ</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/forms-and-form-components.html
==============================================================================
--- websites/production/tapestry/content/forms-and-form-components.html 
(original)
+++ websites/production/tapestry/content/forms-and-form-components.html Fri Aug 
29 00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Forms and Form 
Components</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Forms and Form Components</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/forms-and-validation.html
==============================================================================
--- websites/production/tapestry/content/forms-and-validation.html (original)
+++ websites/production/tapestry/content/forms-and-validation.html Fri Aug 29 
00:21:57 2014
@@ -42,7 +42,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -56,9 +56,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Forms and 
Validation</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Forms and Validation</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -101,11 +101,11 @@
                             </div>
         </li></ul>
 </div><p>The life's blood of any application is form input; this is the most 
effective way to gather significant information from the user. Whether it's a 
search form, a login screen or a multi-page registration wizard, forms are how 
the user really expresses themselves to the application.</p><p>Tapestry excels 
at creating forms and validating input. Input validation is declarative, 
meaning you simply tell Tapestry what validations to apply to a given field, 
and it takes care of it on the server and (once implemented) on the client as 
well.</p><p>Finally, Tapestry is able to not only present the errors back to 
the user, but to decorate the fields and the labels for the fields, marking 
them as containing errors (primarily, using CSS 
effects).</p><p><strong>Contents</strong></p><p><style 
type="text/css">/*<![CDATA[*/
-div.rbtoc1401297593965 {padding: 0px;}
-div.rbtoc1401297593965 ul {list-style: disc;margin-left: 0px;}
-div.rbtoc1401297593965 li {margin-left: 0px;padding-left: 0px;}
+div.rbtoc1409271669073 {padding: 0px;}
+div.rbtoc1409271669073 ul {list-style: disc;margin-left: 0px;}
+div.rbtoc1409271669073 li {margin-left: 0px;padding-left: 0px;}
 
-/*]]>*/</style></p><div class="toc-macro rbtoc1401297593965">
+/*]]>*/</style></p><div class="toc-macro rbtoc1409271669073">
 <ul class="toc-indentation"><li>Related Articles</li></ul>
 <ul><li><a shape="rect" href="#FormsandValidation-TheFormComponent">The Form 
Component</a>
 <ul class="toc-indentation"><li><a shape="rect" 
href="#FormsandValidation-FormEvents">Form Events</a></li><li><a shape="rect" 
href="#FormsandValidation-TrackingValidationErrors">Tracking Validation 
Errors</a></li><li><a shape="rect" 
href="#FormsandValidation-StoringDataBetweenRequests">Storing Data Between 
Requests</a></li><li><a shape="rect" 
href="#FormsandValidation-ConfiguringFieldsandLabels">Configuring Fields and 
Labels</a></li><li><a shape="rect" 
href="#FormsandValidation-ErrorsandDecorations">Errors and 
Decorations</a></li></ul>

Modified: websites/production/tapestry/content/forms.html
==============================================================================
--- websites/production/tapestry/content/forms.html (original)
+++ websites/production/tapestry/content/forms.html Fri Aug 29 00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Forms</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Forms</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/frequently-asked-questions.html
==============================================================================
--- websites/production/tapestry/content/frequently-asked-questions.html 
(original)
+++ websites/production/tapestry/content/frequently-asked-questions.html Fri 
Aug 29 00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Frequently Asked 
Questions</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Frequently Asked Questions</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -63,7 +63,7 @@
 <div id="content">
 <div id="ConfluenceContent"><ul class="childpages-macro"><li><a shape="rect" 
href="general-questions.html">General Questions</a></li><li><a shape="rect" 
href="templating-and-markup-faq.html">Templating and Markup FAQ</a></li><li><a 
shape="rect" href="page-and-component-classes-faq.html">Page And Component 
Classes FAQ</a></li><li><a shape="rect" 
href="forms-and-form-components-faq.html">Forms and Form Components 
FAQ</a></li><li><a shape="rect" href="beaneditform-faq.html">BeanEditForm 
FAQ</a></li><li><a shape="rect" href="link-components-faq.html">Link Components 
FAQ</a></li><li><a shape="rect" href="component-events-faq.html">Component 
Events FAQ</a></li><li><a shape="rect" href="javascript-faq.html">JavaScript 
FAQ</a></li><li><a shape="rect" href="ajax-components-faq.html">Ajax Components 
FAQ</a></li><li><a shape="rect" href="injection-faq.html">Injection 
FAQ</a></li><li><a shape="rect" 
href="tapestry-inversion-of-control-faq.html">Tapestry Inversion of Control 
FAQ</a></li><li><a s
 hape="rect" href="security-faq.html">Security FAQ</a></li><li><a shape="rect" 
href="integration-with-existing-applications.html">Integration with existing 
applications</a></li><li><a shape="rect" 
href="request-processing-faq.html">Request Processing FAQ</a></li><li><a 
shape="rect" href="limitations.html">Limitations</a></li><li><a shape="rect" 
href="specific-errors-faq.html">Specific Errors FAQ</a></li><li><a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a></li><li><a 
shape="rect" href="maven-support-faq.html">Maven Support FAQ</a></li><li><a 
shape="rect" href="release-upgrade-faq.html">Release Upgrade FAQ</a></li></ul>
 
-<p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p></div>
+<p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p><p></p></div>
 </div>
 
 <div class="clearer"></div>

Modified: websites/production/tapestry/content/functional-flows.html
==============================================================================
--- websites/production/tapestry/content/functional-flows.html (original)
+++ websites/production/tapestry/content/functional-flows.html Fri Aug 29 
00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Functional 
Flows</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Functional Flows</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/general-questions.html
==============================================================================
--- websites/production/tapestry/content/general-questions.html (original)
+++ websites/production/tapestry/content/general-questions.html Fri Aug 29 
00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>General 
Questions</h1></div></div>
+<h1 id="SmallBanner-PageTitle">General Questions</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/getting-started.html
==============================================================================
--- websites/production/tapestry/content/getting-started.html (original)
+++ websites/production/tapestry/content/getting-started.html Fri Aug 29 
00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Getting 
Started</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Getting Started</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -86,7 +86,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="principles.html">Principles</a>
+                            <a shape="rect" 
href="tapestry-tutorial.html">Tapestry Tutorial</a>
                     
                 
                             </div>
@@ -95,7 +95,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="getting-started.html">Getting Started</a>
+                            <a shape="rect" 
href="principles.html">Principles</a>
                     
                 
                             </div>
@@ -104,7 +104,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="tapestry-tutorial.html">Tapestry Tutorial</a>
+                            <a shape="rect" 
href="getting-started.html">Getting Started</a>
                     
                 
                             </div>

Modified: websites/production/tapestry/content/hibernate-core-conf.html
==============================================================================
--- websites/production/tapestry/content/hibernate-core-conf.html (original)
+++ websites/production/tapestry/content/hibernate-core-conf.html Fri Aug 29 
00:21:57 2014
@@ -41,7 +41,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -55,9 +55,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Hibernate - Core - 
Conf</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Hibernate - Core - Conf</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -112,7 +112,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
+                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
                     
                 
                             </div>
@@ -121,7 +121,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" href="hibernate.html">Hibernate</a>
+                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
                     
                 
                             </div>
@@ -130,7 +130,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
+                            <a shape="rect" href="hibernate.html">Hibernate</a>
                     
                 
                             </div>

Modified: websites/production/tapestry/content/hibernate-core.html
==============================================================================
--- websites/production/tapestry/content/hibernate-core.html (original)
+++ websites/production/tapestry/content/hibernate-core.html Fri Aug 29 
00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Hibernate - 
Core</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Hibernate - Core</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -104,7 +104,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
+                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
                     
                 
                             </div>
@@ -113,7 +113,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" href="hibernate.html">Hibernate</a>
+                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
                     
                 
                             </div>
@@ -122,7 +122,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
+                            <a shape="rect" href="hibernate.html">Hibernate</a>
                     
                 
                             </div>

Modified: websites/production/tapestry/content/hibernate-statistics.html
==============================================================================
--- websites/production/tapestry/content/hibernate-statistics.html (original)
+++ websites/production/tapestry/content/hibernate-statistics.html Fri Aug 29 
00:21:57 2014
@@ -41,7 +41,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -55,9 +55,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Hibernate 
Statistics</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Hibernate Statistics</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -112,7 +112,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
+                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
                     
                 
                             </div>
@@ -121,7 +121,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" href="hibernate.html">Hibernate</a>
+                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
                     
                 
                             </div>
@@ -130,7 +130,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
+                            <a shape="rect" href="hibernate.html">Hibernate</a>
                     
                 
                             </div>

Modified: websites/production/tapestry/content/hibernate-support-faq.html
==============================================================================
--- websites/production/tapestry/content/hibernate-support-faq.html (original)
+++ websites/production/tapestry/content/hibernate-support-faq.html Fri Aug 29 
00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Hibernate Support 
FAQ</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Hibernate Support FAQ</h1></div></div>
 <div class="clearer"></div>
 </div>
 

Modified: websites/production/tapestry/content/hibernate-user-guide.html
==============================================================================
--- websites/production/tapestry/content/hibernate-user-guide.html (original)
+++ websites/production/tapestry/content/hibernate-user-guide.html Fri Aug 29 
00:21:57 2014
@@ -41,7 +41,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -55,9 +55,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Hibernate User 
Guide</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Hibernate User Guide</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -112,7 +112,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
+                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
                     
                 
                             </div>
@@ -121,7 +121,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" href="hibernate.html">Hibernate</a>
+                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
                     
                 
                             </div>
@@ -130,7 +130,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
+                            <a shape="rect" href="hibernate.html">Hibernate</a>
                     
                 
                             </div>

Modified: websites/production/tapestry/content/hibernate.html
==============================================================================
--- websites/production/tapestry/content/hibernate.html (original)
+++ websites/production/tapestry/content/hibernate.html Fri Aug 29 00:21:57 2014
@@ -33,7 +33,7 @@
   <div class="wrapper bs">
 
 <div id="navigation"><div class="nav">
-<ul class="alternate" type="square"><li><a shape="rect" href="index.html" 
title="Index">Home</a></li><li><a shape="rect" href="getting-started.html" 
title="Getting Started">Getting Started</a></li><li><a shape="rect" 
href="documentation.html" title="Documentation">Documentation</a></li><li><a 
shape="rect" href="download.html" title="Download">Download</a></li><li><a 
shape="rect" href="about.html" title="About">About</a></li><li><a shape="rect" 
href="community.html" title="Community">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
+<ul class="alternate"><li><a shape="rect" 
href="index.html">Home</a></li><li><a shape="rect" 
href="getting-started.html">Getting Started</a></li><li><a shape="rect" 
href="documentation.html">Documentation</a></li><li><a shape="rect" 
href="download.html">Download</a></li><li><a shape="rect" 
href="about.html">About</a></li><li><a shape="rect" 
href="community.html">Community</a></li><li><a shape="rect" 
class="external-link" href="http://www.apache.org/";>Apache</a></li><li><a 
shape="rect" class="external-link" 
href="http://www.apache.org/foundation/sponsorship.html";>Sponsorship</a></li><li><a
 shape="rect" class="external-link" 
href="http://www.apache.org/foundation/thanks.html";>Thanks</a></li></ul>
 </div></div>
 
 <div id="top">
@@ -47,9 +47,9 @@
 
 </div>
 
-<div class="emblem" style="float:left"><a shape="rect" href="index.html" 
title="Index"><span class="image-wrap" style=""><img 
src="small-banner.data/tapestry_s.png" style="border: 0px solid 
black"></span></a></div>
+<div class="emblem" style="float:left"><a shape="rect" href="index.html"><img 
class="confluence-embedded-image" 
src="https://cwiki.apache.org/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2";
 
data-image-src="/confluence/download/attachments/21791252/tapestry_s.png?version=3&amp;modificationDate=1293093635000&amp;api=v2"></a></div>
 <div class="title" style="float:left; margin: 0 0 0 3em">
-<h1><a shape="rect" name="SmallBanner-PageTitle"></a>Hibernate</h1></div></div>
+<h1 id="SmallBanner-PageTitle">Hibernate</h1></div></div>
 <div class="clearer"></div>
 </div>
 
@@ -104,7 +104,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
+                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
                     
                 
                             </div>
@@ -113,7 +113,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" href="hibernate.html">Hibernate</a>
+                            <a shape="rect" 
href="hibernate-support-faq.html">Hibernate Support FAQ</a>
                     
                 
                             </div>
@@ -122,7 +122,7 @@
                     <span class="icon icon-page" title="Page">Page:</span>     
       </div>
 
             <div class="details">
-                            <a shape="rect" 
href="hibernate-user-guide.html">Hibernate User Guide</a>
+                            <a shape="rect" href="hibernate.html">Hibernate</a>
                     
                 
                             </div>


Reply via email to