You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2016/01/02 07:46:03 UTC

[1/2] isis-site git commit: ISIS-1243: releasing 1.11.0

Repository: isis-site
Updated Branches:
  refs/heads/asf-site 57c33bd5c -> 34fc176a4


http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/ugbtb.html
----------------------------------------------------------------------
diff --git a/content/guides/ugbtb.html b/content/guides/ugbtb.html
index be80e05..cc6818b 100644
--- a/content/guides/ugbtb.html
+++ b/content/guides/ugbtb.html
@@ -697,7 +697,7 @@ with the system (perhaps automating several related use cases together).</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_dtos_code_1_11_0_snapshot_code">2.1.4. DTOs (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_dtos">2.1.4. DTOs</h4>
 <div class="paragraph">
 <p>DTOs (data transfer objects) are simple classes that (according to <a href="https://en.wikipedia.org/wiki/Data_transfer_object">wikipedia</a>) "carries data between processes".</p>
 </div>
@@ -715,7 +715,7 @@ easily changed by the producer.</p>
 </div>
 <div class="paragraph">
 <p>Instead, a view model can be defined to act as a DTO.  To put this formal contract onto a solid footing, this view
-model can (as of <code>1.11.0-SNAPSHOT</code>) simply be defined as a JAXB-annotated entity; this allows the consumer to obtain
+model can simply be defined as a JAXB-annotated entity; this allows the consumer to obtain
 the DTO in XML format along with a corresponding XSD schema describing the structure of that XML.  These XML
 representations can be surfaced by the <a href="ugvro.html">RestfulObjects viewer</a> (by implementing
 the <a href="rgsvc.html#_rgsvc_spi_ContentMappingService"><code>ContentMappingService</code></a>); the XSD can be obtained
@@ -865,7 +865,7 @@ interface&#8217;s methods: the programmer has full control (but also full respon
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>DTO (<code>1.11.0-SNAPSHOT</code>)</p>
+<p>DTO</p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><div><div class="listingblock">
 <div class="content">
@@ -886,7 +886,7 @@ et al) this state _can</em> include collections.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_ugbtb_view-models_jaxb">2.3. JAXB-annotated DTOs (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_ugbtb_view-models_jaxb">2.3. JAXB-annotated DTOs</h3>
 <div class="paragraph">
 <p>This section provides some recommended practices if using JAXB and <code>@XmlRootElement</code> to define domain models.  The
 examples are taken from the (non-ASF) <a href="http://github.com/isisaddons/isis-app-todoapp">Isis addons' todoapp</a>.</p>
@@ -1854,7 +1854,7 @@ methods for properties (see ?).</p>
 <p>It also supports translations of messages raised imperatively, by which we mean as the result of a call to <code>title()</code> to obtain an object&#8217;s title, or messages resulting from any business rule violations (eg <a href="rgcms.html#_rgcms_methods_prefixes_disable"><code>disable&#8230;&#8203;()</code></a> or <a href="rgcms.html#_rgcms_methods_prefixes_validate"><code>validate&#8230;&#8203;()</code></a>, and so on.</p>
 </div>
 <div class="paragraph">
-<p>(As of <code>1.11.0-SNAPSHOT</code>), the <a href="ugvw.html">Wicket viewer</a> (that is, its labels and messages) is also internationalized using the same mechanism.  If no translations are available, then the Wicket viewer falls back to using Wicket resource bundles.</p>
+<p>The <a href="ugvw.html">Wicket viewer</a> (that is, its labels and messages) is also internationalized using the same mechanism.  If no translations are available, then the Wicket viewer falls back to using Wicket resource bundles.</p>
 </div>
 <div class="paragraph">
 <p>Isis does not translate the values of your domain objects, though.  So, if you have a domain concept such as <code>Country</code> whose name is intended to be localized according to the current user, you will need to model this yourself.</p>
@@ -2163,9 +2163,9 @@ msgstr &quot;Iche heisse {firstName} {lastName}.&quot;</code></pre>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_ugbtb_i18n_wicket-viewer">4.4. Wicket Viewer (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_ugbtb_i18n_wicket-viewer">4.4. Wicket Viewer</h3>
 <div class="paragraph">
-<p>(As of <code>1.11.0-SNAPSHOT</code>), the <a href="ugvw.html">Wicket viewer</a> (its labels and messages) is also internationalized using
+<p>The <a href="ugvw.html">Wicket viewer</a> (its labels and messages) is also internationalized using
 the <code>TranslationService</code>.  This is done through an Isis-specific implementation of the Wicket framework&#8217;s <code>org.apache.wicket.Localizer</code> class, namely <code>LocalizerForIsis</code>.</p>
 </div>
 <div class="paragraph">
@@ -2904,7 +2904,7 @@ The passed object represents passes a context from the caller (eg the scheduler,
 </td>
 <td class="content">
 <div class="paragraph">
-<p>(As of <code>1.11.0-SNAPSHOT</code>) you can use a mixin action on <a href="rgcms.html#_rgcms_classes_mixins_Persistable"><code>Persistable</code></a> mixin
+<p>You can use a mixin action on <a href="rgcms.html#_rgcms_classes_mixins_Persistable"><code>Persistable</code></a> mixin
 to download the JDO class metadata in XML form.</p>
 </div>
 </td>
@@ -2933,7 +2933,7 @@ to download the JDO class metadata in XML form.</p>
 <p>As of 1.9.0 Apache Isis will automatically (attempt) to create the owning schema for a given table if it does not exist. This behaviour can be customized, as described in the section on <a href="#_ugbtb_decoupling_db-schemas">using modules</a>.</p>
 </li>
 <li>
-<p>You may need to override the entire class metadata rather than individual elements; the mixin (<code>1.11.0-SNAPSHOT</code>) mentioned above can help here.</p>
+<p>You may need to override the entire class metadata rather than individual elements; the mixin mentioned above can help here.</p>
 </li>
 </ul>
 </div>
@@ -4792,11 +4792,11 @@ re-propagates the exception. The use case is simply to ensure that all exception
 </tr>
 <tr>
 <td><i class="conum" data-value="2"></i><b>2</b></td>
-<td>what the servlet should do if no existing session was found.  Usual values are either <code>unauthorized</code>, <code>basicAuthChallenge</code> or <code>auto</code> (<code>1.11.0-SNAPSHOT</code>).  Discussed in more detail below.</td>
+<td>what the servlet should do if no existing session was found.  Usual values are either <code>unauthorized</code>, <code>basicAuthChallenge</code> or <code>auto</code>.  Discussed in more detail below.</td>
 </tr>
 <tr>
 <td><i class="conum" data-value="3"></i><b>3</b></td>
-<td>(<code>1.11.0-SNAPSHOT</code>), specify which URIs to ignore and simply passthru.  Originally introduced to allow the SwaggerSpec resource (which does not require a session) to be invoked.</td>
+<td>specify which URIs to ignore and simply passthru.  Originally introduced to allow the <code>SwaggerSpec</code> resource (which does not require a session) to be invoked.</td>
 </tr>
 <tr>
 <td><i class="conum" data-value="4"></i><b>4</b></td>
@@ -4820,7 +4820,7 @@ re-propagates the exception. The use case is simply to ensure that all exception
 <p><code>basicAuthChallenge</code> will also generate a 401 response, and also issues a Basic Auth challenge using <code>WWW-Authenticate</code> response header</p>
 </li>
 <li>
-<p><code>auto</code> (<code>1.11.0-SNAPSHOT</code>) combines the <code>unauthorized</code> and <code>basicAuthChallenge</code> strategies: it will generate a 401 response, but only issues a Basic Auth challenge if it detects that the request originates from a web browser (ie that the HTTP <code>Accept</code> header is set to <code>text/html</code>).  This means that custom Javascript apps can perform their authentication correctly, while the REST API can still be explored using the web browser (relying upon the web browser&#8217;s in-built support for HTTP Basic Auth).</p>
+<p><code>auto</code> combines the <code>unauthorized</code> and <code>basicAuthChallenge</code> strategies: it will generate a 401 response, but only issues a Basic Auth challenge if it detects that the request originates from a web browser (ie that the HTTP <code>Accept</code> header is set to <code>text/html</code>).  This means that custom Javascript apps can perform their authentication correctly, while the REST API can still be explored using the web browser (relying upon the web browser&#8217;s in-built support for HTTP Basic Auth).</p>
 </li>
 <li>
 <p><code>continue</code>, in which case the request is allowed to continue but the destination expected to know that there will be no open session</p>
@@ -4939,12 +4939,12 @@ the default ones of <code>isis.properties</code> et al):</p>
 <li><a href="#_externally_managed_entities">2.1.1. Externally-managed entities</a></li>
 <li><a href="#_in_memory_entities">2.1.2. In-memory entities</a></li>
 <li><a href="#_application_layer_view_models">2.1.3. Application-layer view models</a></li>
-<li><a href="#_dtos_code_1_11_0_snapshot_code">2.1.4. DTOs (<code>1.11.0-SNAPSHOT</code>)</a></li>
+<li><a href="#_dtos">2.1.4. DTOs</a></li>
 <li><a href="#_esb_subscribers">2.1.5. ESB Subscribers</a></li>
 </ul>
 </li>
 <li><a href="#_ugbtb_view-models_programming-model">2.2. Programming Model</a></li>
-<li><a href="#_ugbtb_view-models_jaxb">2.3. JAXB-annotated DTOs (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_ugbtb_view-models_jaxb">2.3. JAXB-annotated DTOs</a>
 <ul class="sectlevel3">
 <li><a href="#_ugbtb_view-models_jaxb_using-packages-to-version">2.3.1. Use packages to version DTOs</a></li>
 <li><a href="#_ugbtb_view-models_jaxb_semantic-versioning">2.3.2. Semantic Versioning</a></li>
@@ -4997,7 +4997,7 @@ the default ones of <code>isis.properties</code> et al):</p>
 <li><a href="#__code_translatableexception_code">4.3.2. <code>TranslatableException</code></a></li>
 </ul>
 </li>
-<li><a href="#_ugbtb_i18n_wicket-viewer">4.4. Wicket Viewer (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_ugbtb_i18n_wicket-viewer">4.4. Wicket Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_commonly_used">4.4.1. Commonly used</a></li>
 <li><a href="#_login_self_sign_up">4.4.2. Login/self-sign-up</a></li>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/ugfun.html
----------------------------------------------------------------------
diff --git a/content/guides/ugfun.html b/content/guides/ugfun.html
index d8dc541..557b13c 100644
--- a/content/guides/ugfun.html
+++ b/content/guides/ugfun.html
@@ -1639,7 +1639,7 @@ TODO; see <a href="rgcms.html#_rgcms_classes_domainevent">domain event</a> class
 </table>
 </div>
 <div class="sect4">
-<h5 id="_ui_events_code_1_11_0_snapshot_code">UI Events (<code>1.11.0-SNAPSHOT</code>)</h5>
+<h5 id="_ui_events">UI Events</h5>
 <div class="admonitionblock note">
 <table>
 <tr>
@@ -2051,7 +2051,7 @@ So, if you have used Apache Isis for prototyping (discussed above), then note th
 <pre class="CodeRay highlight"><code data-lang="bash">mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \
@@ -2088,7 +2088,7 @@ So, if you have used Apache Isis for prototyping (discussed above), then note th
 <pre class="CodeRay highlight"><code data-lang="bash">mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.11.0-SNAPSHOT \
+    -D archetypeVersion=1.12.0-SNAPSHOT \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \
@@ -6210,7 +6210,7 @@ will not resolve such references (otherwise, where to stop&#8230;&#8203; and the
 <li><a href="#_ugfun_core-concepts_building-blocks_mixins-and-contributions">2.3.6. Mixins &amp; Contributions</a></li>
 <li><a href="#_ugfun_core-concepts_building-blocks_domain-events">2.3.7. Domain Events</a>
 <ul class="sectlevel4">
-<li><a href="#_ui_events_code_1_11_0_snapshot_code">UI Events (<code>1.11.0-SNAPSHOT</code>)</a></li>
+<li><a href="#_ui_events">UI Events</a></li>
 </ul>
 </li>
 <li><a href="#_ugfun_core-concepts_building-blocks_oid">2.3.8. OIDs</a></li>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/ugsec.html
----------------------------------------------------------------------
diff --git a/content/guides/ugsec.html b/content/guides/ugsec.html
index f0091d9..585b40f 100644
--- a/content/guides/ugsec.html
+++ b/content/guides/ugsec.html
@@ -1738,11 +1738,11 @@ public <span class="type">interface</span> <span class="class">AuthenticationSes
 </tr>
 <tr>
 <td><i class="conum" data-value="2"></i><b>2</b></td>
-<td>what to do if no session was found; we use <code>auto</code> (<code>1.11.0-SNAPSHOT</code>) so as to issue a 401 status code with basic authentication challenge if the request originated from a web browser.  (Prior to <code>1.11.0-SNAPSHOT</code> this parameter was set either to <code>basicAuthChallenge</code> (which works when requested from web browser) or to <code>unauthorized</code> (which works when requested from a suitably coded custom Javascript app).</td>
+<td>what to do if no session was found; we use <code>auto</code> so as to issue a 401 status code with basic authentication challenge if the request originated from a web browser.  (Prior to <code>1.11.0</code> this parameter was set either to <code>basicAuthChallenge</code> (which works when requested from web browser) or to <code>unauthorized</code> (which works when requested from a suitably coded custom Javascript app).</td>
 </tr>
 <tr>
 <td><i class="conum" data-value="3"></i><b>3</b></td>
-<td>(<code>1.11.0-SNAPSHOT</code>) which paths are allowed to be accessed directly, without a session.  The <code>/restful/swagger</code> path provides access to the SwaggerResource that dynamically generates swagger spec files from the Apache Isis metamodel.</td>
+<td>which paths are allowed to be accessed directly, without a session.  The <code>/restful/swagger</code> path provides access to the SwaggerResource that dynamically generates swagger spec files from the Apache Isis metamodel.</td>
 </tr>
 </table>
 </div>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/ugvro.html
----------------------------------------------------------------------
diff --git a/content/guides/ugvro.html b/content/guides/ugvro.html
index 51ef4f3..ebd06cc 100644
--- a/content/guides/ugvro.html
+++ b/content/guides/ugvro.html
@@ -894,8 +894,7 @@ HTTP <code>Accept</code> header.  If the implementation does not recognize the v
 </div>
 <div class="paragraph">
 <p>The framework provides a number of implementations; an implementation that handles the
-<a href="#_ugvro_simplified-representations">simplified representation</a> of the Apache Isis profile
-(<code>1.11.0-SNAPSHOT</code>); an implementation that provides support for the <code>x-ro-domain-type</code> parameter, and a
+<a href="#_ugvro_simplified-representations">simplified representation</a> of the Apache Isis profile; an implementation that provides support for the <code>x-ro-domain-type</code> parameter, and a
 default/fallback implementation that returns the representations defined by the RO spec.</p>
 </div>
 </li>
@@ -936,7 +935,7 @@ components that expect to consume much simpler representations.  Examples of suc
 <a href="https://github.com/mgcrea/angular-strap">Angular Strap</a>.</p>
 </div>
 <div class="paragraph">
-<p>As of <code>1.11.0-SNAPSHOT</code>, Apache Isis provides support for its own simplified representation for the most commonly-used
+<p>As of <code>1.11.0</code>, Apache Isis provides support for its own simplified representation for the most commonly-used
 representations.  This is implemented using the <code>ContentNegotiationService</code> described in the
 <a href="#_ugvro_architecture">architecture</a> chapter.</p>
 </div>
@@ -1403,7 +1402,7 @@ significantly over the last few years.</p>
 to provide a simplified output, then this can be done with a number of (global) configuration properties.</p>
 </div>
 <div class="paragraph">
-<p>These configuration properties pre-date the support, introduced in <code>1.11.0-SNAPSHOT</code>, for the Apache Isis profile, and
+<p>These configuration properties pre-date the support, introduced in <code>1.11.0</code>, for the Apache Isis profile, and
 are limited by the fact that they are global configuration settings, so cannot be influenced on a request-by-request
 basis (as is the case with the <code>Accept</code> header used for the Apache Isis profile). They have therefore been
 deprecated, and may be removed in the future.</p>
@@ -1458,8 +1457,7 @@ config files are merged together).</p>
 <tr>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
 <p><code>isis.viewer.restfulobjects.</code><br>
-<code>strictAcceptChecking</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>strictAcceptChecking</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code> (<code><em>false</em></code>)</p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">Whether to strictly enforce the <code>Accept</code> header checking for the default RO-spec representations (by the
@@ -1478,7 +1476,7 @@ handful of resources that supported that profile.</p></td>
 representations.</p>
 </div>
 <div class="paragraph">
-<p>These configuration properties pre-date the support, introduced in <code>1.11.0-SNAPSHOT</code>, for the Apache Isis profile, and
+<p>These configuration properties pre-date the support, introduced in <code>1.11.0</code>, for the Apache Isis profile, and
 are limited by the fact that they are global configuration settings, so cannot be influenced on a request-by-request
 basis (as is the case with the <code>Accept</code> header used for the Apache Isis profile). They have therefore been
 deprecated, and may be removed in the future.</p>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/index.html
----------------------------------------------------------------------
diff --git a/content/index.html b/content/index.html
index f7b0ffb..c6f0ca8 100644
--- a/content/index.html
+++ b/content/index.html
@@ -664,7 +664,7 @@
 mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/migration-notes.html
----------------------------------------------------------------------
diff --git a/content/migration-notes.html b/content/migration-notes.html
index 51ed37e..9cf5ee2 100644
--- a/content/migration-notes.html
+++ b/content/migration-notes.html
@@ -510,19 +510,23 @@ table.CodeRay td.code>pre{padding:0}
 any difficulties then let us know via the <a href="support.html">users mailing list</a>, so we can support you and document
 issues here.</p>
 </div>
-<div class="admonitionblock note">
-<table>
-<tr>
-<td class="icon">
-<i class="fa icon-note" title="Note"></i>
-</td>
-<td class="content">
+<div class="sect2">
+<h3 id="_jaxb_view_models">JAXB view models</h3>
 <div class="paragraph">
-<p>At the time of writing <code>1.11.0</code> has not been released; these notes relate to <code>1.11.0-SNAPSHOT</code>.</p>
+<p>Classes annotated with <a href="guides/rgant.html#_rgant-XmlRootElement"><code>@XmlRootElement</code></a> are now recognized
+as view models.  These are serialized out into XML and converted into URL.</p>
+</div>
+<div class="paragraph">
+<p>The <a href="guides/rgsvc.html#_rgsvc_api_JaxbService"><code>JaxbService</code></a> is responsible for performing the XML conversion.
+The default implementation is located in the <code>org.apache.isis.core:isis-core-schema</code> module, specifically under the
+<code>org.apache.isis.core.schema.services</code> package.</p>
+</div>
+<div class="paragraph">
+<p>If your application is bootstrapped using an <code>AppManifest</code> (recommended;
+<a href="guides/rgcms.html#_rgcms_classes_AppManifest-bootstrapping">here</a>) then the <code>JaxbService</code> will automatically be discovered and
+ registered.  However, if you are still using the older <code>isis.properties</code> configuration file to explicitly register
+ services then you will need to add in this service.</p>
 </div>
-</td>
-</tr>
-</table>
 </div>
 <div class="sect2">
 <h3 id="_swagger_ui">Swagger UI</h3>
@@ -592,36 +596,6 @@ to be generated from the Apache Isis metamodel.  These can be downloaded directl
 <div class="paragraph">
 <p>The text of the simple app&#8217;s <code>about/index.html</code> has also changed (the <code>&lt;li</code>&gt; for the <code>/restful</code> URL has been replaced with a <code>/swagger-ui</code> URL).  If you use <a href="https://github.com/apache/isis/blob/master/example/application/simpleapp/webapp/src/main/webapp/about/index.html">this file</a>, then update it.</p>
 </div>
-<div class="paragraph">
-<p>If your application is bootstrapped using an <code>AppManifest</code> (recommended;
-<a href="guides/rgcms.html#_rgcms_classes_AppManifest-bootstrapping">here</a>) then the default implementation of the
-<code>SwaggerService</code> will automatically be discovered and registered.  However, if you are still using the older
-<code>isis.properties</code> configuration file to explicitly register services then you will need to add in this service.</p>
-</div>
-</div>
-<div class="sect2">
-<h3 id="__code_routingservice_code"><code>RoutingService</code></h3>
-<div class="paragraph">
-<p>The new <a href="guides/rgsvc.html#_rgsvc_spi_RoutingService"><code>RoutingService</code></a> SPI service provides a plugin point to the
-<a href="guides/ugvw.html">Wicket viewer</a> so that a different object than that returned from an action invocation can be
-rendered.</p>
-</div>
-<div class="paragraph">
-<p>The framework provides a default implementation of this service that will - instead of a void or a <code>null</code> result -
-render the home page (as per the <a href="guides/rgant.html#_rgant_HomePage"><code>@HomePage</code></a> annotation) if there is one.  This
-is therefore a subtle change in the UI.  If you wish to retain the original behaviour (to return the "no results" page
-instead), then you should implement your own no-op implementation of this service:</p>
-</div>
-<div class="listingblock">
-<div class="content">
-<pre class="CodeRay highlight"><code data-lang="java"><span class="annotation">@DomainService</span>
-<span class="annotation">@DomainServiceLayout</span>(menuOrder=<span class="string"><span class="delimiter">&quot;</span><span class="content">1</span><span class="delimiter">&quot;</span></span>)
-<span class="directive">public</span> <span class="type">class</span> <span class="class">IdentityRoutingService</span> <span class="directive">implements</span> RoutingService {
-    <span class="directive">public</span> <span class="type">boolean</span> canRoute(<span class="predefined-type">Object</span> original) { <span class="keyword">return</span> <span class="predefined-constant">true</span>; }
-    <span class="directive">public</span> <span class="predefined-type">Object</span> route(<span class="predefined-type">Object</span> original) { <span class="keyword">return</span> original; }
-}</code></pre>
-</div>
-</div>
 </div>
 <div class="sect2">
 <h3 id="_wicket_viewer_i18n">Wicket Viewer i18n</h3>
@@ -1998,8 +1972,8 @@ into the new <code>org.isisaddons.module.settings:isis-module-settings-dom</code
                 <ul class="sectlevel1">
 <li><a href="#_migration-notes_1.10.0-to-1.11.0">From v1.10.0 to 1.11.0</a>
 <ul class="sectlevel2">
+<li><a href="#_jaxb_view_models">JAXB view models</a></li>
 <li><a href="#_swagger_ui">Swagger UI</a></li>
-<li><a href="#__code_routingservice_code"><code>RoutingService</code></a></li>
 <li><a href="#_wicket_viewer_i18n">Wicket Viewer i18n</a></li>
 </ul>
 </li>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/release-notes.html
----------------------------------------------------------------------
diff --git a/content/release-notes.html b/content/release-notes.html
index 5443c3d..a9ccbc7 100644
--- a/content/release-notes.html
+++ b/content/release-notes.html
@@ -533,6 +533,23 @@ table.CodeRay td.code>pre{padding:0}
 <td class="tableblock halign-right valign-top"><p class="tableblock">Bugs</p></td>
 </tr>
 <tr>
+<td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#r1.11.0">1.11.0</a></p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">02-jan-2016</p></td>
+<td class="tableblock halign-left valign-top"><div><div class="ulist">
+<ul>
+<li>
+<p><a href="https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12311171&amp;version=12333974">1.11.0</a></p>
+</li>
+</ul>
+</div></div></td>
+<td class="tableblock halign-left valign-top"><div><div class="paragraph">
+<p>Combined release notes for core and simpleapp-archetype.</p>
+</div></div></td>
+<td class="tableblock halign-right valign-top"><p class="tableblock">9</p></td>
+<td class="tableblock halign-right valign-top"><p class="tableblock">19</p></td>
+<td class="tableblock halign-right valign-top"><p class="tableblock">12</p></td>
+</tr>
+<tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#r1.10.0">1.10.0</a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">10-nov-2015</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="ulist">
@@ -939,6 +956,188 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect1">
+<h2 id="r1.11.0">1.11.0</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>The main focus for Apache Isis 1.11.0 is on the REST API and on view models using JAXB:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>the <a href="guides/ugvro.html">Restful Objects viewer</a> now supports simplified
+representations intended to make it easier to write custom Javascript (and other) clients that consume the REST API;
+these are obtained using the HTTP Accept header.  There is also support for <a href="http://swagger.io">Swagger</a> spec files
+so that the REST API can be more easily explored and tested.<br></p>
+<div class="paragraph">
+<p>In addition, the <code>x-ro-follow-links</code> capability for RO spec representations is now supported.</p>
+</div>
+</li>
+<li>
+<p>JAXB-annotated classes are now recognised as view models; these also enable the contents
+collections to be part of the view model&#8217;s state (previously only view model properties were recognised).  The new
+UrlEncodingService allows long URLs (for view models) to be converted into shorter URLs; this also allows the URL
+to optionally be encrypted.</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>The release also includes improved control for domain events (these can now be suppressed if required) , and a new
+category of UI events (so that titles, icons and CSS classes can be provided by event bus subscribers).</p>
+</div>
+<div class="sect2">
+<h3 id="_new_feature">New Feature</h3>
+<div class="ulist">
+<ul>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1279">ISIS-1279</a> - AcceptHeaderService for application-defined content negotiation.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1274">ISIS-1274</a> - ContentNegotiationService for simplified representations for custom RO clients</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1262">ISIS-1262</a> - Provide mixin to allow the JDO metadata to be downloaded for any Persistable.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1258">ISIS-1258</a> - Extend the Isis maven plugin to be able to generate XSD schemas using the JaxbService</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1252">ISIS-1252</a> - New TitleUiEvent, IconUiEvent and CssClassUiEvent as a means to allow subscribers to provide a title for domain objects.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1251">ISIS-1251</a> - UrlEncodingService as a plugin point for serializing mementos into a URL-friendly string.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1250">ISIS-1250</a> - JaxbService to marshall DTOs to XML.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1217">ISIS-1217</a> - Formatting text inside a text field</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-666">ISIS-666</a> - Provide the ablity to return (and render) a different object when an action is invoked.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_improvement">Improvement</h3>
+<div class="ulist">
+<ul>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1275">ISIS-1275</a> - Configuration property for RO viewer to relax Accept header checking.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1273">ISIS-1273</a> - Enhance RO viewer so that the default RO v1 representations are implemented as a ContentNegotiationService</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1269">ISIS-1269</a> - Deleting an object from a list can cause NPE when that list is re-rendered.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1259">ISIS-1259</a> - For derived parameter names from nested inner classes, ignore the parent out class</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1257">ISIS-1257</a> - Allow @Title to be added as an annotation to fields.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1255">ISIS-1255</a> - Provide configuration property so that domain events set to Xxx.Default are either ignored (like the Noop) or are posted anyway.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1254">ISIS-1254</a> - Disable action/property/collection events if set to Noop domain events</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1249">ISIS-1249</a> - Annotate AbstractSubscriber with @DomainServiceLayout(menuOrder=&#8230;&#8203;) so that this is picked up by default by all implementations.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1246">ISIS-1246</a> - Better diagnostics on NPE</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1245">ISIS-1245</a> - During bootstrap, ensure that any @PersistenceCapable entities found on classpath also implement PersistenceCapable interface (ie that the DN enhancer has run).</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1241">ISIS-1241</a> - Providing better feedback when RegEx validation does not match pattern</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1237">ISIS-1237</a> - Integrate with swagger for REST APIs</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1232">ISIS-1232</a> - Enhance RO viewer to support section 34.4 of RO v1.0 spec (x-ro-follow-links)</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1220">ISIS-1220</a> - Methods annotated with @Subscribe should automatically be ignored (as per @Programmatic).</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1117">ISIS-1117</a> - Allow using "marker" view models</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1093">ISIS-1093</a> - Integrate Wicket&#8217;s i18n requirements with Isis' TranslationPoService.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1084">ISIS-1084</a> - Reduce PoReader messages in the log</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1070">ISIS-1070</a> - Add header and handle double quotes in translations.pot file</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-803">ISIS-803</a> - Replace lifecycle methods with additional EventBus events.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_bug">Bug</h3>
+<div class="ulist">
+<ul>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1283">ISIS-1283</a> - SAFE_AND_CACHEABLE semantics caches incorrectly, works for domain services (stateless) but not for domain entities (where stateful target determines result)</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1278">ISIS-1278</a> - Title of choices lnks in RO failing, called incorrectly.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1253">ISIS-1253</a> - Default title for enums is not friendly name</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1244">ISIS-1244</a> - RO POST to "objects of type" resource should return a 201, not a 200.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1242">ISIS-1242</a> - Breadcrumbs broken if change the title&#8230;&#8203;. the drop-down never displays elements</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1227">ISIS-1227</a> - in edit mode, when there are validation errors, these are not showing up for the individual properties, instead for the object-level validation.</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1221">ISIS-1221</a> - JSON Format Layouts not recognized with i18n translations in Wicket Viewer</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1202">ISIS-1202</a> - Mandatory dropdown field doesn&#8217;t show asterisk</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1193">ISIS-1193</a> - void actions return 404 Not Found when called through restful viewer</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1185">ISIS-1185</a> - [CAN&#8217;T REPRODUCE] 'Ok' and 'Cancel' buttons in edit mode are both appearing as 'Submit Query'</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1128">ISIS-1128</a> - 'namedEscaped' is broken when 'named' comes from a translation.po</p>
+</li>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-915">ISIS-915</a> - Framework should transparently allow view models to reference other view models.</p>
+</li>
+</ul>
+</div>
+</div>
+<div class="sect2">
+<h3 id="_task">Task</h3>
+<div class="ulist">
+<ul>
+<li>
+<p><a href="https://issues.apache.org/jira/browse/ISIS-1243">ISIS-1243</a> - Release activities for v1.11.0</p>
+</li>
+</ul>
+</div>
+</div>
+</div>
+</div>
+<div class="sect1">
 <h2 id="r1.10.0">1.10.0</h2>
 <div class="sectionbody">
 <div class="paragraph">
@@ -948,7 +1147,7 @@ table.CodeRay td.code>pre{padding:0}
 <p>Internally there have been substantial simplifications to the codebase.</p>
 </div>
 <div class="sect2">
-<h3 id="_new_feature">New Feature</h3>
+<h3 id="_new_feature_2">New Feature</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -976,7 +1175,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_improvement">Improvement</h3>
+<h3 id="_improvement_2">Improvement</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1037,7 +1236,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_bug">Bug</h3>
+<h3 id="_bug_2">Bug</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1080,7 +1279,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_task">Task</h3>
+<h3 id="_task_2">Task</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1167,7 +1366,7 @@ table.CodeRay td.code>pre{padding:0}
 <p>This release was also the first to include the updated Asciidoc website.</p>
 </div>
 <div class="sect2">
-<h3 id="_new_feature_2">New Feature</h3>
+<h3 id="_new_feature_3">New Feature</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1228,7 +1427,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_improvement_2">Improvement</h3>
+<h3 id="_improvement_3">Improvement</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1385,7 +1584,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_bug_2">Bug</h3>
+<h3 id="_bug_3">Bug</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1480,7 +1679,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_task_2">Task</h3>
+<h3 id="_task_3">Task</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1517,7 +1716,7 @@ table.CodeRay td.code>pre{padding:0}
 <p>Apache Isis 1.8.0 incorporates the Wicket viewer, which was previously a separately released component.  Other components that are included in core (that were previously released separately are: the Restful Objects viewer, Shiro Security and the JDO/DataNucleus ObjectStore.</p>
 </div>
 <div class="sect2">
-<h3 id="_new_feature_3">New Feature</h3>
+<h3 id="_new_feature_4">New Feature</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1605,7 +1804,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_improvement_3">Improvement</h3>
+<h3 id="_improvement_4">Improvement</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1735,7 +1934,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_bug_3">Bug</h3>
+<h3 id="_bug_4">Bug</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1802,7 +2001,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect2">
-<h3 id="_task_3">Task</h3>
+<h3 id="_task_4">Task</h3>
 <div class="ulist">
 <ul>
 <li>
@@ -1838,7 +2037,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_4">New Feature</h4>
+<h4 id="_new_feature_5">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -1867,7 +2066,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_4">Improvement</h4>
+<h4 id="_improvement_5">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -1901,7 +2100,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_4">Bug</h4>
+<h4 id="_bug_5">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -1977,7 +2176,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_4">Task</h4>
+<h4 id="_task_5">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -1990,7 +2189,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer">Wicket viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_5">New Feature</h4>
+<h4 id="_new_feature_6">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2025,7 +2224,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_5">Bug</h4>
+<h4 id="_bug_6">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2051,7 +2250,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_5">Task</h4>
+<h4 id="_task_6">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2072,7 +2271,7 @@ table.CodeRay td.code>pre{padding:0}
 <p>Isis core 1.6.0 also incorporates the Restful Objects viewer, Shiro Security and JDO Objectstore.</p>
 </div>
 <div class="sect3">
-<h4 id="_new_feature_6">New Feature</h4>
+<h4 id="_new_feature_7">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2088,7 +2287,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_5">Improvement</h4>
+<h4 id="_improvement_6">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2122,7 +2321,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_6">Bug</h4>
+<h4 id="_bug_7">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2185,7 +2384,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_2">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_7">New Feature</h4>
+<h4 id="_new_feature_8">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2201,7 +2400,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_6">Improvement</h4>
+<h4 id="_improvement_7">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2217,7 +2416,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_7">Bug</h4>
+<h4 id="_bug_8">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2239,7 +2438,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_6">Task</h4>
+<h4 id="_task_7">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2257,7 +2456,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core_3">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_8">New Feature</h4>
+<h4 id="_new_feature_9">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2273,7 +2472,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_7">Improvement</h4>
+<h4 id="_improvement_8">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2310,7 +2509,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_8">Bug</h4>
+<h4 id="_bug_9">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2332,7 +2531,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_7">Task</h4>
+<h4 id="_task_8">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2348,7 +2547,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_3">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_improvement_8">Improvement</h4>
+<h4 id="_improvement_9">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2373,7 +2572,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_9">Bug</h4>
+<h4 id="_bug_10">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2405,7 +2604,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_8">Task</h4>
+<h4 id="_task_9">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2418,7 +2617,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_restfulobjects_viewer">RestfulObjects Viewer</h3>
 <div class="sect3">
-<h4 id="_task_9">Task</h4>
+<h4 id="_task_10">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2428,7 +2627,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_10">Bug</h4>
+<h4 id="_bug_11">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2438,7 +2637,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_10">Task</h4>
+<h4 id="_task_11">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2454,7 +2653,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_jdo_objectstore">JDO ObjectStore</h3>
 <div class="sect3">
-<h4 id="_improvement_9">Improvement</h4>
+<h4 id="_improvement_10">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2470,7 +2669,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_11">Bug</h4>
+<h4 id="_bug_12">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2483,7 +2682,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_11">Task</h4>
+<h4 id="_task_12">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2504,7 +2703,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_4">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_improvement_10">Improvement</h4>
+<h4 id="_improvement_11">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2517,7 +2716,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_12">Bug</h4>
+<h4 id="_bug_13">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2530,7 +2729,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_jdo_objectstore_2">JDO Objectstore</h3>
 <div class="sect3">
-<h4 id="_bug_13">Bug</h4>
+<h4 id="_bug_14">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2548,7 +2747,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core_4">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_9">New Feature</h4>
+<h4 id="_new_feature_10">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2651,7 +2850,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_11">Improvement</h4>
+<h4 id="_improvement_12">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2733,7 +2932,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_14">Bug</h4>
+<h4 id="_bug_15">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2770,7 +2969,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_12">Task</h4>
+<h4 id="_task_13">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2783,7 +2982,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_5">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_10">New Feature</h4>
+<h4 id="_new_feature_11">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2826,7 +3025,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_12">Improvement</h4>
+<h4 id="_improvement_13">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2893,7 +3092,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_15">Bug</h4>
+<h4 id="_bug_16">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2942,7 +3141,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_13">Task</h4>
+<h4 id="_task_14">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2955,7 +3154,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_restfulobjects_viewer_2">RestfulObjects Viewer</h3>
 <div class="sect3">
-<h4 id="_task_14">Task</h4>
+<h4 id="_task_15">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2968,7 +3167,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_shiro_security">Shiro Security</h3>
 <div class="sect3">
-<h4 id="_new_feature_11">New Feature</h4>
+<h4 id="_new_feature_12">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2981,7 +3180,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_15">Task</h4>
+<h4 id="_task_16">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -2994,7 +3193,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_jdo_objectstore_3">JDO ObjectStore</h3>
 <div class="sect3">
-<h4 id="_new_feature_12">New Feature</h4>
+<h4 id="_new_feature_13">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3028,7 +3227,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_13">Improvement</h4>
+<h4 id="_improvement_14">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3086,7 +3285,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_16">Bug</h4>
+<h4 id="_bug_17">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3109,7 +3308,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_16">Task</h4>
+<h4 id="_task_17">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3127,7 +3326,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_6">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_13">New Feature</h4>
+<h4 id="_new_feature_14">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3137,7 +3336,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_17">Bug</h4>
+<h4 id="_bug_18">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3153,7 +3352,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_17">Task</h4>
+<h4 id="_task_18">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3171,7 +3370,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core_5">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_14">New Feature</h4>
+<h4 id="_new_feature_15">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3256,7 +3455,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_14">Improvement</h4>
+<h4 id="_improvement_15">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3350,7 +3549,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_18">Bug</h4>
+<h4 id="_bug_19">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3396,7 +3595,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_18">Task</h4>
+<h4 id="_task_19">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3409,7 +3608,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_7">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_15">New Feature</h4>
+<h4 id="_new_feature_16">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3470,7 +3669,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_15">Improvement</h4>
+<h4 id="_improvement_16">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3531,7 +3730,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_19">Bug</h4>
+<h4 id="_bug_20">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3562,7 +3761,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_restfulobjects_viewer_3">RestfulObjects Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_16">New Feature</h4>
+<h4 id="_new_feature_17">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3572,7 +3771,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_16">Improvement</h4>
+<h4 id="_improvement_17">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3585,7 +3784,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_20">Bug</h4>
+<h4 id="_bug_21">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3616,7 +3815,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_shiro_security_2">Shiro Security</h3>
 <div class="sect3">
-<h4 id="_improvement_17">Improvement</h4>
+<h4 id="_improvement_18">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3632,7 +3831,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_jdo_objectstore_4">JDO ObjectStore</h3>
 <div class="sect3">
-<h4 id="_new_feature_17">New Feature</h4>
+<h4 id="_new_feature_18">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3660,7 +3859,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_18">Improvement</h4>
+<h4 id="_improvement_19">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3694,7 +3893,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_21">Bug</h4>
+<h4 id="_bug_22">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3723,7 +3922,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_task_19">Task</h4>
+<h4 id="_task_20">Task</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3741,7 +3940,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core_6">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_18">New Feature</h4>
+<h4 id="_new_feature_19">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3784,7 +3983,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_19">Improvement</h4>
+<h4 id="_improvement_20">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3842,7 +4041,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_22">Bug</h4>
+<h4 id="_bug_23">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3858,7 +4057,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_8">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_19">New Feature</h4>
+<h4 id="_new_feature_20">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3889,7 +4088,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_20">Improvement</h4>
+<h4 id="_improvement_21">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -3959,7 +4158,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_23">Bug</h4>
+<h4 id="_bug_24">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4008,7 +4207,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_restfulobjects_viewer_4">RestfulObjects Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_20">New Feature</h4>
+<h4 id="_new_feature_21">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4021,7 +4220,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_21">Improvement</h4>
+<h4 id="_improvement_22">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4045,7 +4244,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core_7">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_21">New Feature</h4>
+<h4 id="_new_feature_22">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4058,7 +4257,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_22">Improvement</h4>
+<h4 id="_improvement_23">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4068,7 +4267,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_24">Bug</h4>
+<h4 id="_bug_25">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4084,7 +4283,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_9">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_22">New Feature</h4>
+<h4 id="_new_feature_23">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4097,7 +4296,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_23">Improvement</h4>
+<h4 id="_improvement_24">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4113,7 +4312,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_25">Bug</h4>
+<h4 id="_bug_26">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4126,7 +4325,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_restfulobjects_viewer_5">RestfulObjects Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_23">New Feature</h4>
+<h4 id="_new_feature_24">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4139,7 +4338,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_24">Improvement</h4>
+<h4 id="_improvement_25">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4158,7 +4357,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_shiro_security_3">Shiro Security</h3>
 <div class="sect3">
-<h4 id="_new_feature_24">New Feature</h4>
+<h4 id="_new_feature_25">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4168,7 +4367,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_25">Improvement</h4>
+<h4 id="_improvement_26">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4178,7 +4377,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_26">Bug</h4>
+<h4 id="_bug_27">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4191,7 +4390,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_jdo_objectstore_5">JDO ObjectStore</h3>
 <div class="sect3">
-<h4 id="_new_feature_25">New Feature</h4>
+<h4 id="_new_feature_26">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4207,7 +4406,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_26">Improvement</h4>
+<h4 id="_improvement_27">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4244,7 +4443,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_27">Bug</h4>
+<h4 id="_bug_28">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4271,7 +4470,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_core_8">Core</h3>
 <div class="sect3">
-<h4 id="_new_feature_26">New Feature</h4>
+<h4 id="_new_feature_27">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4293,7 +4492,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_27">Improvement</h4>
+<h4 id="_improvement_28">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4384,7 +4583,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_28">Bug</h4>
+<h4 id="_bug_29">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4406,7 +4605,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_wicket_viewer_10">Wicket Viewer</h3>
 <div class="sect3">
-<h4 id="_new_feature_27">New Feature</h4>
+<h4 id="_new_feature_28">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4422,7 +4621,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_28">Improvement</h4>
+<h4 id="_improvement_29">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4438,7 +4637,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_29">Bug</h4>
+<h4 id="_bug_30">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4461,7 +4660,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_restfulobjects_viewer_6">RestfulObjects Viewer</h3>
 <div class="sect3">
-<h4 id="_improvement_29">Improvement</h4>
+<h4 id="_improvement_30">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4471,7 +4670,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_bug_30">Bug</h4>
+<h4 id="_bug_31">Bug</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4484,7 +4683,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="sect2">
 <h3 id="_jdo_objectstore_6">JDO ObjectStore</h3>
 <div class="sect3">
-<h4 id="_new_feature_28">New Feature</h4>
+<h4 id="_new_feature_29">New Feature</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4494,7 +4693,7 @@ table.CodeRay td.code>pre{padding:0}
 </div>
 </div>
 <div class="sect3">
-<h4 id="_improvement_30">Improvement</h4>
+<h4 id="_improvement_31">Improvement</h4>
 <div class="ulist">
 <ul>
 <li>
@@ -4524,33 +4723,41 @@ table.CodeRay td.code>pre{padding:0}
             <div class="fallback-toc">
                 <ul class="sectlevel1">
 <li><a href="#_summary">Summary</a></li>
-<li><a href="#r1.10.0">1.10.0</a>
+<li><a href="#r1.11.0">1.11.0</a>
 <ul class="sectlevel2">
 <li><a href="#_new_feature">New Feature</a></li>
 <li><a href="#_improvement">Improvement</a></li>
 <li><a href="#_bug">Bug</a></li>
 <li><a href="#_task">Task</a></li>
-<li><a href="#_dependency_upgrade">Dependency upgrade</a></li>
-<li><a href="#_superceded">Superceded</a></li>
-<li><a href="#_not_implemented_tidying_up_backlog">Not implemented (tidying up backlog)</a></li>
 </ul>
 </li>
-<li><a href="#r1.9.0">1.9.0</a>
+<li><a href="#r1.10.0">1.10.0</a>
 <ul class="sectlevel2">
 <li><a href="#_new_feature_2">New Feature</a></li>
 <li><a href="#_improvement_2">Improvement</a></li>
 <li><a href="#_bug_2">Bug</a></li>
-<li><a href="#_dependency_upgrade_2">Dependency upgrade</a></li>
 <li><a href="#_task_2">Task</a></li>
-<li><a href="#_wish">Wish</a></li>
+<li><a href="#_dependency_upgrade">Dependency upgrade</a></li>
+<li><a href="#_superceded">Superceded</a></li>
+<li><a href="#_not_implemented_tidying_up_backlog">Not implemented (tidying up backlog)</a></li>
 </ul>
 </li>
-<li><a href="#r1.8.0">1.8.0</a>
+<li><a href="#r1.9.0">1.9.0</a>
 <ul class="sectlevel2">
 <li><a href="#_new_feature_3">New Feature</a></li>
 <li><a href="#_improvement_3">Improvement</a></li>
 <li><a href="#_bug_3">Bug</a></li>
+<li><a href="#_dependency_upgrade_2">Dependency upgrade</a></li>
 <li><a href="#_task_3">Task</a></li>
+<li><a href="#_wish">Wish</a></li>
+</ul>
+</li>
+<li><a href="#r1.8.0">1.8.0</a>
+<ul class="sectlevel2">
+<li><a href="#_new_feature_4">New Feature</a></li>
+<li><a href="#_improvement_4">Improvement</a></li>
+<li><a href="#_bug_4">Bug</a></li>
+<li><a href="#_task_4">Task</a></li>
 <li><a href="#_sub_task">Sub-task</a></li>
 </ul>
 </li>
@@ -4558,23 +4765,23 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel2">
 <li><a href="#_core">Core</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_4">New Feature</a></li>
+<li><a href="#_new_feature_5">New Feature</a></li>
 <li><a href="#_security_fixes">Security fixes</a></li>
-<li><a href="#_improvement_4">Improvement</a></li>
-<li><a href="#_bug_4">Bug</a></li>
+<li><a href="#_improvement_5">Improvement</a></li>
+<li><a href="#_bug_5">Bug</a></li>
 <li><a href="#_removed_features">Removed features</a></li>
 <li><a href="#_removed_features_obsolete">Removed features (obsolete)</a></li>
 <li><a href="#_unreleased_features_backed_out">Unreleased features (backed out)</a></li>
-<li><a href="#_task_4">Task</a></li>
+<li><a href="#_task_5">Task</a></li>
 </ul>
 </li>
 <li><a href="#_wicket_viewer">Wicket viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_5">New Feature</a></li>
+<li><a href="#_new_feature_6">New Feature</a></li>
 <li><a href="#_security_fixes_2">Security fixes</a></li>
-<li><a href="#_bug_5">Bug</a></li>
+<li><a href="#_bug_6">Bug</a></li>
 <li><a href="#_dependency_upgrade_3">Dependency upgrade</a></li>
-<li><a href="#_task_5">Task</a></li>
+<li><a href="#_task_6">Task</a></li>
 </ul>
 </li>
 </ul>
@@ -4583,19 +4790,19 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel2">
 <li><a href="#_core_2">Core</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_6">New Feature</a></li>
-<li><a href="#_improvement_5">Improvement</a></li>
-<li><a href="#_bug_6">Bug</a></li>
+<li><a href="#_new_feature_7">New Feature</a></li>
+<li><a href="#_improvement_6">Improvement</a></li>
+<li><a href="#_bug_7">Bug</a></li>
 <li><a href="#_dependency_upgrade_4">Dependency upgrade</a></li>
 <li><a href="#_task_core">Task (Core)</a></li>
 </ul>
 </li>
 <li><a href="#_wicket_viewer_2">Wicket Viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_7">New Feature</a></li>
-<li><a href="#_improvement_6">Improvement</a></li>
-<li><a href="#_bug_7">Bug</a></li>
-<li><a href="#_task_6">Task</a></li>
+<li><a href="#_new_feature_8">New Feature</a></li>
+<li><a href="#_improvement_7">Improvement</a></li>
+<li><a href="#_bug_8">Bug</a></li>
+<li><a href="#_task_7">Task</a></li>
 </ul>
 </li>
 </ul>
@@ -4604,32 +4811,32 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel2">
 <li><a href="#_core_3">Core</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_8">New Feature</a></li>
-<li><a href="#_improvement_7">Improvement</a></li>
-<li><a href="#_bug_8">Bug</a></li>
-<li><a href="#_task_7">Task</a></li>
+<li><a href="#_new_feature_9">New Feature</a></li>
+<li><a href="#_improvement_8">Improvement</a></li>
+<li><a href="#_bug_9">Bug</a></li>
+<li><a href="#_task_8">Task</a></li>
 </ul>
 </li>
 <li><a href="#_wicket_viewer_3">Wicket Viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_improvement_8">Improvement</a></li>
-<li><a href="#_bug_9">Bug</a></li>
+<li><a href="#_improvement_9">Improvement</a></li>
+<li><a href="#_bug_10">Bug</a></li>
 <li><a href="#_dependency_upgrade_5">Dependency upgrade</a></li>
-<li><a href="#_task_8">Task</a></li>
+<li><a href="#_task_9">Task</a></li>
 </ul>
 </li>
 <li><a href="#_restfulobjects_viewer">RestfulObjects Viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_task_9">Task</a></li>
-<li><a href="#_bug_10">Bug</a></li>
 <li><a href="#_task_10">Task</a></li>
+<li><a href="#_bug_11">Bug</a></li>
+<li><a href="#_task_11">Task</a></li>
 </ul>
 </li>
 <li><a href="#_jdo_objectstore">JDO ObjectStore</a>
 <ul class="sectlevel3">
-<li><a href="#_improvement_9">Improvement</a></li>
-<li><a href="#_bug_11">Bug</a></li>
-<li><a href="#_task_11">Task</a></li>
+<li><a href="#_improvement_10">Improvement</a></li>
+<li><a href="#_bug_12">Bug</a></li>
+<li><a href="#_task_12">Task</a></li>
 </ul>
 </li>
 </ul>
@@ -4638,13 +4845,13 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel2">
 <li><a href="#_wicket_viewer_4">Wicket Viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_improvement_10">Improvement</a></li>
-<li><a href="#_bug_12">Bug</a></li>
+<li><a href="#_improvement_11">Improvement</a></li>
+<li><a href="#_bug_13">Bug</a></li>
 </ul>
 </li>
 <li><a href="#_jdo_objectstore_2">JDO Objectstore</a>
 <ul class="sectlevel3">
-<li><a href="#_bug_13">Bug</a></li>
+<li><a href="#_bug_14">Bug</a></li>
 </ul>
 </li>
 </ul>
@@ -4653,182 +4860,182 @@ table.CodeRay td.code>pre{padding:0}
 <ul class="sectlevel2">
 <li><a href="#_core_4">Core</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_9">New Feature</a></li>
-<li><a href="#_improvement_11">Improvement</a></li>
-<li><a href="#_bug_14">Bug</a></li>
-<li><a href="#_task_12">Task</a></li>
-</ul>
-</li>
-<li><a href="#_wicket_viewer_5">Wicket Viewer</a>
-<ul class="sectlevel3">
 <li><a href="#_new_feature_10">New Feature</a></li>
 <li><a href="#_improvement_12">Improvement</a></li>
 <li><a href="#_bug_15">Bug</a></li>
 <li><a href="#_task_13">Task</a></li>
 </ul>
 </li>
-<li><a href="#_restfulobjects_viewer_2">RestfulObjects Viewer</a>
+<li><a href="#_wicket_viewer_5">Wicket Viewer</a>
 <ul class="sectlevel3">
+<li><a href="#_new_feature_11">New Feature</a></li>
+<li><a href="#_improvement_13">Improvement</a></li>
+<li><a href="#_bug_16">Bug</a></li>
 <li><a href="#_task_14">Task</a></li>
 </ul>
 </li>
-<li><a href="#_shiro_security">Shiro Security</a>
+<li><a href="#_restfulobjects_viewer_2">RestfulObjects Viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_11">New Feature</a></li>
 <li><a href="#_task_15">Task</a></li>
 </ul>
 </li>
-<li><a href="#_jdo_objectstore_3">JDO ObjectStore</a>
+<li><a href="#_shiro_security">Shiro Security</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_12">New Feature</a></li>
-<li><a href="#_improvement_13">Improvement</a></li>
-<li><a href="#_bug_16">Bug</a></li>
-<li><a href="#_dependency_upgrade_6">Dependency upgrade</a></li>
 <li><a href="#_task_16">Task</a></li>
 </ul>
 </li>
-</ul>
-</li>
-<li><a href="#r1.3.1">1.3.1</a>
-<ul class="sectlevel2">
-<li><a href="#_wicket_viewer_6">Wicket Viewer</a>
+<li><a href="#_jdo_objectstore_3">JDO ObjectStore</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_13">New Feature</a></li>
+<li><a href="#_improvement_14">Improvement</a></li>
 <li><a href="#_bug_17">Bug</a></li>
+<li><a href="#_dependency_upgrade_6">Dependency upgrade</a></li>
 <li><a href="#_task_17">Task</a></li>
 </ul>
 </li>
 </ul>
 </li>
-<li><a href="#r1.3.0">1.3.0</a>
+<li><a href="#r1.3.1">1.3.1</a>
 <ul class="sectlevel2">
-<li><a href="#_core_5">Core</a>
+<li><a href="#_wicket_viewer_6">Wicket Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_14">New Feature</a></li>
-<li><a href="#_improvement_14">Improvement</a></li>
 <li><a href="#_bug_18">Bug</a></li>
 <li><a href="#_task_18">Task</a></li>
 </ul>
 </li>
-<li><a href="#_wicket_viewer_7">Wicket Viewer</a>
+</ul>
+</li>
+<li><a href="#r1.3.0">1.3.0</a>
+<ul class="sectlevel2">
+<li><a href="#_core_5">Core</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_15">New Feature</a></li>
 <li><a href="#_improvement_15">Improvement</a></li>
 <li><a href="#_bug_19">Bug</a></li>
+<li><a href="#_task_19">Task</a></li>
 </ul>
 </li>
-<li><a href="#_restfulobjects_viewer_3">RestfulObjects Viewer</a>
+<li><a href="#_wicket_viewer_7">Wicket Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_16">New Feature</a></li>
 <li><a href="#_improvement_16">Improvement</a></li>
 <li><a href="#_bug_20">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_shiro_security_2">Shiro Security</a>
+<li><a href="#_restfulobjects_viewer_3">RestfulObjects Viewer</a>
 <ul class="sectlevel3">
+<li><a href="#_new_feature_17">New Feature</a></li>
 <li><a href="#_improvement_17">Improvement</a></li>
+<li><a href="#_bug_21">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_jdo_objectstore_4">JDO ObjectStore</a>
+<li><a href="#_shiro_security_2">Shiro Security</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_17">New Feature</a></li>
 <li><a href="#_improvement_18">Improvement</a></li>
-<li><a href="#_bug_21">Bug</a></li>
-<li><a href="#_dependency_upgrade_7">Dependency upgrade</a></li>
-<li><a href="#_task_19">Task</a></li>
 </ul>
 </li>
-</ul>
-</li>
-<li><a href="#r1.2.0">1.2.0</a>
-<ul class="sectlevel2">
-<li><a href="#_core_6">Core</a>
+<li><a href="#_jdo_objectstore_4">JDO ObjectStore</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_18">New Feature</a></li>
 <li><a href="#_improvement_19">Improvement</a></li>
 <li><a href="#_bug_22">Bug</a></li>
+<li><a href="#_dependency_upgrade_7">Dependency upgrade</a></li>
+<li><a href="#_task_20">Task</a></li>
 </ul>
 </li>
-<li><a href="#_wicket_viewer_8">Wicket Viewer</a>
+</ul>
+</li>
+<li><a href="#r1.2.0">1.2.0</a>
+<ul class="sectlevel2">
+<li><a href="#_core_6">Core</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_19">New Feature</a></li>
 <li><a href="#_improvement_20">Improvement</a></li>
 <li><a href="#_bug_23">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_restfulobjects_viewer_4">RestfulObjects Viewer</a>
+<li><a href="#_wicket_viewer_8">Wicket Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_20">New Feature</a></li>
 <li><a href="#_improvement_21">Improvement</a></li>
+<li><a href="#_bug_24">Bug</a></li>
 </ul>
 </li>
-</ul>
-</li>
-<li><a href="#r1.1.0">1.1.0</a>
-<ul class="sectlevel2">
-<li><a href="#_core_7">Core</a>
+<li><a href="#_restfulobjects_viewer_4">RestfulObjects Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_21">New Feature</a></li>
 <li><a href="#_improvement_22">Improvement</a></li>
-<li><a href="#_bug_24">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_wicket_viewer_9">Wicket Viewer</a>
+</ul>
+</li>
+<li><a href="#r1.1.0">1.1.0</a>
+<ul class="sectlevel2">
+<li><a href="#_core_7">Core</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_22">New Feature</a></li>
 <li><a href="#_improvement_23">Improvement</a></li>
 <li><a href="#_bug_25">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_restfulobjects_viewer_5">RestfulObjects Viewer</a>
+<li><a href="#_wicket_viewer_9">Wicket Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_23">New Feature</a></li>
 <li><a href="#_improvement_24">Improvement</a></li>
+<li><a href="#_bug_26">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_shiro_security_3">Shiro Security</a>
+<li><a href="#_restfulobjects_viewer_5">RestfulObjects Viewer</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_24">New Feature</a></li>
 <li><a href="#_improvement_25">Improvement</a></li>
-<li><a href="#_bug_26">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_jdo_objectstore_5">JDO ObjectStore</a>
+<li><a href="#_shiro_security_3">Shiro Security</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_25">New Feature</a></li>
 <li><a href="#_improvement_26">Improvement</a></li>
 <li><a href="#_bug_27">Bug</a></li>
 </ul>
 </li>
-</ul>
-</li>
-<li><a href="#r1.0.0">1.0.0</a>
-<ul class="sectlevel2">
-<li><a href="#_core_8">Core</a>
+<li><a href="#_jdo_objectstore_5">JDO ObjectStore</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_26">New Feature</a></li>
 <li><a href="#_improvement_27">Improvement</a></li>
 <li><a href="#_bug_28">Bug</a></li>
 </ul>
 </li>
-<li><a href="#_wicket_viewer_10">Wicket Viewer</a>
+</ul>
+</li>
+<li><a href="#r1.0.0">1.0.0</a>
+<ul class="sectlevel2">
+<li><a href="#_core_8">Core</a>
 <ul class="sectlevel3">
 <li><a href="#_new_feature_27">New Feature</a></li>
 <li><a href="#_improvement_28">Improvement</a></li>
 <li><a href="#_bug_29">Bug</a></li>
-<li><a href="#_wish_2">Wish</a></li>
 </ul>
 </li>
-<li><a href="#_restfulobjects_viewer_6">RestfulObjects Viewer</a>
+<li><a href="#_wicket_viewer_10">Wicket Viewer</a>
 <ul class="sectlevel3">
+<li><a href="#_new_feature_28">New Feature</a></li>
 <li><a href="#_improvement_29">Improvement</a></li>
 <li><a href="#_bug_30">Bug</a></li>
+<li><a href="#_wish_2">Wish</a></li>
 </ul>
 </li>
-<li><a href="#_jdo_objectstore_6">JDO ObjectStore</a>
+<li><a href="#_restfulobjects_viewer_6">RestfulObjects Viewer</a>
 <ul class="sectlevel3">
-<li><a href="#_new_feature_28">New Feature</a></li>
 <li><a href="#_improvement_30">Improvement</a></li>
+<li><a href="#_bug_31">Bug</a></li>
+</ul>
+</li>
+<li><a href="#_jdo_objectstore_6">JDO ObjectStore</a>
+<ul class="sectlevel3">
+<li><a href="#_new_feature_29">New Feature</a></li>
+<li><a href="#_improvement_31">Improvement</a></li>
 </ul>
 </li>
 </ul>


[2/2] isis-site git commit: ISIS-1243: releasing 1.11.0

Posted by da...@apache.org.
ISIS-1243: releasing 1.11.0


Project: http://git-wip-us.apache.org/repos/asf/isis-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis-site/commit/34fc176a
Tree: http://git-wip-us.apache.org/repos/asf/isis-site/tree/34fc176a
Diff: http://git-wip-us.apache.org/repos/asf/isis-site/diff/34fc176a

Branch: refs/heads/asf-site
Commit: 34fc176a4fcccf798b37f73abfd638cc3559a91f
Parents: 57c33bd
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Sat Jan 2 06:41:22 2016 +0000
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Sat Jan 2 06:41:22 2016 +0000

----------------------------------------------------------------------
 content/doap_isis.rdf                   |  19 +-
 content/downloads.html                  |  10 +-
 content/guides/cg.html                  | 108 ++---
 content/guides/rgant.html               | 148 ++++---
 content/guides/rgcfg.html               |  30 +-
 content/guides/rgcms.html               |  32 +-
 content/guides/rgsvc.html               |  31 +-
 content/guides/simpleapp-archetype.html |   4 +-
 content/guides/tg.html                  |   4 +-
 content/guides/ugbtb.html               |  30 +-
 content/guides/ugfun.html               |   8 +-
 content/guides/ugsec.html               |   4 +-
 content/guides/ugvro.html               |  12 +-
 content/index.html                      |   2 +-
 content/migration-notes.html            |  58 +--
 content/release-notes.html              | 613 ++++++++++++++++++---------
 16 files changed, 645 insertions(+), 468 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/doap_isis.rdf
----------------------------------------------------------------------
diff --git a/content/doap_isis.rdf b/content/doap_isis.rdf
index ecfab79..38476d0 100644
--- a/content/doap_isis.rdf
+++ b/content/doap_isis.rdf
@@ -36,6 +36,23 @@
     <category rdf:resource="http://projects.apache.org/category/web-framework" />
 
     
+    <!-- 2016-01-02 releases -->
+    <release>
+      <Version>
+        <name>isis</name>
+        <created>2016-01-02</created>
+        <revision>1.11.0</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
+        <name>simpleapp-archetype</name>
+        <created>2016-01-02</created>
+        <revision>1.11.0</revision>
+      </Version>
+    </release>
+    
+
     <!-- 2015-11-10 releases -->
     <release>
       <Version>
@@ -51,7 +68,7 @@
         <revision>1.10.0</revision>
       </Version>
     </release>
-    
+
 
     <!-- 2015-09-01 releases -->
     <release>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/downloads.html
----------------------------------------------------------------------
diff --git a/content/downloads.html b/content/downloads.html
index 9e1dd47..caebd5a 100644
--- a/content/downloads.html
+++ b/content/downloads.html
@@ -532,7 +532,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://www.apache.org/dyn/closer.cgi/isis/isis-core/isis-1.10.0-source-release.zip">isis-1.10.0</a> (<a href="http://www.apache.org/dist/isis/isis-core/isis-1.10.0-source-release.zip.asc">asc</a>, <a href="http://www.apache.org/dist/isis/isis-core/isis-1.10.0-source-release.zip.md5">md5</a>)</p>
+<p><a href="https://www.apache.org/dyn/closer.cgi/isis/isis-core/isis-1.11.0-source-release.zip">isis-1.11.0</a> (<a href="http://www.apache.org/dist/isis/isis-core/isis-1.11.0-source-release.zip.asc">asc</a>, <a href="http://www.apache.org/dist/isis/isis-core/isis-1.11.0-source-release.zip.md5">md5</a>)</p>
 </li>
 </ul>
 </div>
@@ -542,7 +542,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="ulist">
 <ul>
 <li>
-<p><a href="https://www.apache.org/dyn/closer.cgi/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.10.0-source-release.zip">simpleapp-archetype-1.10.0</a> (<a href="http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.10.0-source-release.zip.asc">asc</a>, <a href="http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.10.0-source-release.zip.md5">md5</a>)</p>
+<p><a href="https://www.apache.org/dyn/closer.cgi/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.11.0-source-release.zip">simpleapp-archetype-1.11.0</a> (<a href="http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.11.0-source-release.zip.asc">asc</a>, <a href="http://www.apache.org/dist/isis/archetype/simpleapp-archetype/simpleapp-archetype-1.11.0-source-release.zip.md5">md5</a>)</p>
 </li>
 </ul>
 </div>
@@ -563,7 +563,7 @@ table.CodeRay td.code>pre{padding:0}
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">pgpk -a KEYS
-pgpv isis-1.10.0-source-release.zip.asc</code></pre>
+pgpv isis-1.11.0-source-release.zip.asc</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -572,7 +572,7 @@ pgpv isis-1.10.0-source-release.zip.asc</code></pre>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">pgp -ka KEYS
-pgp isis-1.10.0-source-release.zip.asc</code></pre>
+pgp isis-1.11.0-source-release.zip.asc</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -581,7 +581,7 @@ pgp isis-1.10.0-source-release.zip.asc</code></pre>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">gpg –import KEYS
-gpg –verify isis-1.10.0-source-release.zip.asc</code></pre>
+gpg –verify isis-1.11.0-source-release.zip.asc</code></pre>
 </div>
 </div>
 <div class="paragraph">

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/cg.html
----------------------------------------------------------------------
diff --git a/content/guides/cg.html b/content/guides/cg.html
index 92d5faa..40fc4fc 100644
--- a/content/guides/cg.html
+++ b/content/guides/cg.html
@@ -1959,13 +1959,13 @@ TODO
 <li>
 <p><code>swagger</code><br></p>
 <div class="paragraph">
-<p>(<code>1.11.0-SNAPSHOT</code>) Uses the <a href="rgsvc.html#_rgsvc_api_SwaggerService"><code>SwaggerService</code></a> to generate <a href="http://swagger.io">Swagger</a> spec files that describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.</p>
+<p>Uses the <a href="rgsvc.html#_rgsvc_api_SwaggerService"><code>SwaggerService</code></a> to generate <a href="http://swagger.io">Swagger</a> spec files that describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.</p>
 </div>
 </li>
 <li>
 <p><code>xsd</code><br></p>
 <div class="paragraph">
-<p>(<code>1.11.0-SNAPSHOT</code>) Uses the <a href="rgsvc.html#_rgsvc_api_JaxbService"><code>JaxbService</code></a> to generate XSD schemas from any JAXB-annotated view models/DTOs.<br></p>
+<p>Uses the <a href="rgsvc.html#_rgsvc_api_JaxbService"><code>JaxbService</code></a> to generate XSD schemas from any JAXB-annotated view models/DTOs.<br></p>
 </div>
 <div class="paragraph">
 <p>This is instead of and preferable to using the JAXB <a href="https://jaxb.java.net/2.2.4/docs/schemagen.html">schemagen</a> tool, because it uses the framework&#8217;s support (via <a href="rgant.html#_rgant-XmlJavaValueType"><code>@XmlJavaValueType</code></a>) to translate any references to domain objects into <code>OidDto</code>s (as defined by the Apache Isis <a href="rgcms.html#_rgcms_schema-common">common schema</a>).</p>
@@ -2213,7 +2213,7 @@ different configuration; see the final section for differences.</p>
 [INFO] BUILD FAILURE
 [INFO] ------------------------------------------------------------------------
 [INFO] ...
-[ERROR] Failed to execute goal org.apache.isis.tool:isis-maven-plugin:1.11.0-SNAPSHOT:validate (default) on project simpleapp-dom: 1 problems found. -&gt; [Help 1]</code></pre>
+[ERROR] Failed to execute goal org.apache.isis.tool:isis-maven-plugin:1.12.0-SNAPSHOT:validate (default) on project simpleapp-dom: 1 problems found. -&gt; [Help 1]</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -2326,7 +2326,7 @@ different configuration; see the final section for differences.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_cg_isis-maven-plugin_swagger">5.3. <code>swagger</code> goal (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_cg_isis-maven-plugin_swagger">5.3. <code>swagger</code> goal</h3>
 <div class="paragraph">
 <p>The <code>swagger</code> goal of the <code>isis-maven-plugin</code> uses the <a href="rgsvc.html#_rgsvc_api_SwaggerService"><code>SwaggerService</code></a> to
 generate <a href="http://swagger.io">Swagger</a> spec files to describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.</p>
@@ -2431,7 +2431,7 @@ generate <a href="http://swagger.io">Swagger</a> spec files to describe the publ
 </tr>
 <tr>
 <td><i class="conum" data-value="2"></i><b>2</b></td>
-<td>set to <code>1.11.0-SNAPSHOT</code> (or any later version)</td>
+<td>set to <code>1.11.0</code> (or any later version)</td>
 </tr>
 <tr>
 <td><i class="conum" data-value="3"></i><b>3</b></td>
@@ -2469,7 +2469,7 @@ generate <a href="http://swagger.io">Swagger</a> spec files to describe the publ
 </div>
 </div>
 <div class="sect2">
-<h3 id="_cg_isis-maven-plugin_xsd">5.4. <code>xsd</code> goal (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_cg_isis-maven-plugin_xsd">5.4. <code>xsd</code> goal</h3>
 <div class="paragraph">
 <p>The <code>xsd</code> goal of the <code>isis-maven-plugin</code> uses the <a href="rgsvc.html#_rgsvc_api_JaxbService"><code>JaxbService</code></a> to
 generate XSD schemas from any JAXB-annotated <a href="ugbtb.html#_ugbtb_view-models">view model/DTOs</a>.</p>
@@ -2563,7 +2563,7 @@ below shows the overall design:</p>
     <span class="tag">&lt;parent&gt;</span>
         <span class="tag">&lt;groupId&gt;</span>org.isisaddons.app<span class="tag">&lt;/groupId&gt;</span>
         <span class="tag">&lt;artifactId&gt;</span>todoapp<span class="tag">&lt;/artifactId&gt;</span>
-        <span class="tag">&lt;version&gt;</span>1.11.0-SNAPSHOT<span class="tag">&lt;/version&gt;</span>
+        <span class="tag">&lt;version&gt;</span>1.12.0-SNAPSHOT<span class="tag">&lt;/version&gt;</span>
     <span class="tag">&lt;/parent&gt;</span>
 
     <span class="tag">&lt;artifactId&gt;</span>todoapp-xsd<span class="tag">&lt;/artifactId&gt;</span>
@@ -4182,8 +4182,8 @@ git checkout master &amp;&amp; git merge --no-ff ISIS-1162_pr-31 &amp;&amp; git
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">cd core
 export ISISTMP=/c/tmp              <i class="conum" data-value="1"></i><b>(1)</b>
-export ISISDEV=1.12.0-SNAPSHOT
-export ISISREL=1.11.0
+export ISISDEV=1.13.0-SNAPSHOT
+export ISISREL=1.12.0
 export ISISRC=RC1
 export ISISBRANCH=release-$ISISREL-$ISISRC
 export ISISJIRA=ISIS-9999          <i class="conum" data-value="2"></i><b>(2)</b>
@@ -4214,7 +4214,7 @@ env | grep ISIS | sort</code></pre>
 </td>
 <td class="content">
 <div class="paragraph">
-<p>Note that the branch name is <strong>not</strong> the same any of the eventual tag names (eg <code>isis-1.11.0</code> or <code>simpleapp-archetype-1.11.0</code>).</p>
+<p>Note that the branch name is <strong>not</strong> the same any of the eventual tag names (eg <code>isis-1.12.0</code> or <code>simpleapp-archetype-1.12.0</code>).</p>
 </div>
 <div class="paragraph">
 <p>If they did have the same name, then what would happen is that the <code>maven-release-plugin</code> would checkout the (HEAD of the) branch and thus upload a SNAPSHOT to the snapshot repository.  What it should of course do is checkout the tag and then upload that to the release staging repository.</p>
@@ -4243,13 +4243,13 @@ git checkout -b $ISISBRANCH</code></pre>
 <p>Double check that the version number of the parent pom should reflect the branch name that you are now on (with a <code>-SNAPSHOT</code> suffix).  his will normally have been done already during earlier development; but confirm that it has been updated. If it has not, make the change.</p>
 </div>
 <div class="paragraph">
-<p>Double check that the version number of the core POM (<code>core/pom.xml</code>) should reflect the branch name that you are now on.  For example, if releasing version <code>1.11.0</code>, the POM should read:</p>
+<p>Double check that the version number of the core POM (<code>core/pom.xml</code>) should reflect the branch name that you are now on.  For example, if releasing version <code>1.12.0</code>, the POM should read:</p>
 </div>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="xml"><span class="tag">&lt;groupId&gt;</span>org.apache.isis.core<span class="tag">&lt;/groupId&gt;</span>
 <span class="tag">&lt;artifactId&gt;</span>isis<span class="tag">&lt;/artifactId&gt;</span>
-<span class="tag">&lt;version&gt;</span>1.11.0-SNAPSHOT<span class="tag">&lt;/version&gt;</span></code></pre>
+<span class="tag">&lt;version&gt;</span>1.12.0-SNAPSHOT<span class="tag">&lt;/version&gt;</span></code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -4481,7 +4481,7 @@ mvn clean install -o</code></pre>
 <div class="sect4">
 <h5 id="_cg_committers_cutting-a-release_releasing-core_post-prepare-sanity-check">Post-prepare sanity check</h5>
 <div class="paragraph">
-<p>You should end up with artifacts in your local repo with the new version (eg <code>1.11.0</code>).  This is a good time to do some quick sanity checks; nothing has yet been uploaded:</p>
+<p>You should end up with artifacts in your local repo with the new version (eg <code>1.12.0</code>).  This is a good time to do some quick sanity checks; nothing has yet been uploaded:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -4548,17 +4548,17 @@ popd</code></pre>
 [INFO] Performing a LOCAL checkout from scm:git:file:///C:\APACHE\isis-git-rw\co
 re
 [INFO] Checking out the project to perform the release ...
-[INFO] Executing: cmd.exe /X /C &quot;git clone --branch release-1.11.0 file:///C:\APACHE\isis-git-rw\core C:\APACHE\isis-git-rw\core\target\checkout&quot;
+[INFO] Executing: cmd.exe /X /C &quot;git clone --branch release-1.12.0 file:///C:\APACHE\isis-git-rw\core C:\APACHE\isis-git-rw\core\target\checkout&quot;
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target
 [INFO] Performing a LOCAL checkout from scm:git:file:///C:\APACHE\isis-git-rw
 [INFO] Checking out the project to perform the release ...
-[INFO] Executing: cmd.exe /X /C &quot;git clone --branch release-1.11.0 file:///C:\APACHE\isis-git-rw C:\APACHE\isis-git-rw\core\target\checkout&quot;
+[INFO] Executing: cmd.exe /X /C &quot;git clone --branch release-1.12.0 file:///C:\APACHE\isis-git-rw C:\APACHE\isis-git-rw\core\target\checkout&quot;
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target
 [INFO] Executing: cmd.exe /X /C &quot;git ls-remote file:///C:\APACHE\isis-git-rw&quot;
 [INFO] Working directory: C:\Users\ADMINI~1\AppData\Local\Temp
 [INFO] Executing: cmd.exe /X /C &quot;git fetch file:///C:\APACHE\isis-git-rw&quot;
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target\checkout
-[INFO] Executing: cmd.exe /X /C &quot;git checkout release-1.11.0&quot;
+[INFO] Executing: cmd.exe /X /C &quot;git checkout release-1.12.0&quot;
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target\checkout
 [INFO] Executing: cmd.exe /X /C &quot;git ls-files&quot;
 [INFO] Working directory: C:\APACHE\isis-git-rw\core\target\checkout
@@ -4618,7 +4618,7 @@ env | grep ISIS | sort</code></pre>
 <div class="listingblock">
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="xml"><span class="tag">&lt;properties&gt;</span>
-    <span class="tag">&lt;isis.version&gt;</span>1.11.0<span class="tag">&lt;/isis.version&gt;</span>
+    <span class="tag">&lt;isis.version&gt;</span>1.12.0<span class="tag">&lt;/isis.version&gt;</span>
     ...
 <span class="tag">&lt;/properties&gt;</span></code></pre>
 </div>
@@ -4902,7 +4902,7 @@ git fetch</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">[VOTE] Apache Isis Core release 1.11.0 RC1</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">[VOTE] Apache Isis Core release 1.12.0 RC1</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -4912,17 +4912,17 @@ git fetch</code></pre>
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">I've cut a release for Apache Isis Core and the simpleapp archetype:
 
-* Core 1.11.0
-* SimpleApp Archetype 1.11.0
+* Core 1.12.0
+* SimpleApp Archetype 1.12.0
 
 The source code artifacts have been uploaded to staging repositories on repository.apache.org:
 
-* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/core/isis/1.11.0/isis-1.11.0-source-release.zip
-* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/archetype/simpleapp-archetype/1.11.0/simpleapp-archetype-1.11.0-source-release.zip
+* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/core/isis/1.12.0/isis-1.12.0-source-release.zip
+* http://repository.apache.org/content/repositories/orgapacheisis-10xx/org/apache/isis/archetype/simpleapp-archetype/1.12.0/simpleapp-archetype-1.12.0-source-release.zip
 
 For each zip there is a corresponding signature file (append .asc to the zip's url).
 
-In the source code repo the code has been tagged as isis-1.11.0-RC1 and simpleapp-archetype-1.11.0-RC1; see https://git-wip-us.apache.org/repos/asf?p=isis.git
+In the source code repo the code has been tagged as isis-1.12.0-RC1 and simpleapp-archetype-1.12.0-RC1; see https://git-wip-us.apache.org/repos/asf?p=isis.git
 
 For instructions on how to verify the release (build from binaries and/or use in Maven directly), see http://isis.apache.org/guides/cg.html#_cg_committers_verifying-releases
 
@@ -4939,7 +4939,7 @@ Please verify the release and cast your vote.  The vote will be open for a minim
 <div class="ulist">
 <ul>
 <li>
-<p>the version number (1.11.0 or whatever)</p>
+<p>the version number (1.12.0 or whatever)</p>
 </li>
 <li>
 <p>the release candidate number (<code>RC1</code> or whatever)</p>
@@ -5291,7 +5291,7 @@ https://repository.apache.org/content/repositories/orgapacheisis-065/org/apache/
     -D version=1.0-SNAPSHOT \
     -B \
     -o \
-    -D archetypeVersion=1.11.0   # adjust version as necessary
+    -D archetypeVersion=1.12.0   # adjust version as necessary
 
 cd myapp
 mvn clean install -o
@@ -5343,7 +5343,7 @@ mvn -P self-host antrun:run</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">[RESULT] [VOTE] Apache Isis Core release 1.11.0</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">[RESULT] [VOTE] Apache Isis Core release 1.12.0</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -5373,8 +5373,8 @@ The vote is SUCCESSFUL.</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">sh scripts/promoterctag.sh isis-1.11.0 RC1
-sh scripts/promoterctag.sh simpleapp-archetype-1.11.0 RC1</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">sh scripts/promoterctag.sh isis-1.12.0 RC1
+sh scripts/promoterctag.sh simpleapp-archetype-1.12.0 RC1</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -5484,7 +5484,7 @@ popd</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">sh upd.sh 1.10.0 1.11.0</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">sh upd.sh 1.11.0 1.12.0</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -5508,7 +5508,7 @@ popd</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">sh scripts/jira-release-notes.sh ISIS 1.11.0 &gt; /tmp/1</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">sh scripts/jira-release-notes.sh ISIS 1.12.0 &gt; /tmp/1</code></pre>
 </div>
 </div>
 </div>
@@ -5584,7 +5584,7 @@ popd</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">[ANN] Apache Isis version 1.11.0 Released</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">[ANN] Apache Isis version 1.12.0 Released</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -5592,7 +5592,7 @@ popd</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code>The Apache Isis team is pleased to announce the release of Apache Isis v1.11.0.
+<pre class="CodeRay highlight"><code>The Apache Isis team is pleased to announce the release of Apache Isis v1.12.0.
 
 New features in this release include:
 * ...
@@ -5606,8 +5606,8 @@ Enjoy!
 
 --The Apache Isis team
 
-[1] http://isis.apache.org/release-notes.html#r1.11.0
-[2] http://isis.apache.org/migration-notes.html#_migration-notes_1.10.0-to-1.11.0
+[1] http://isis.apache.org/release-notes.html#r1.12.0
+[2] http://isis.apache.org/migration-notes.html#_migration-notes_1.11.0-to-1.12.0
 [3] http://search.maven.org
 [4] http://isis.apache.org/downloads.html</code></pre>
 </div>
@@ -5628,9 +5628,9 @@ Enjoy!
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">git checkout master                           # update master with latest
 git pull
-git merge release-1.11.0-RC1                  # merge branch onto master
-git branch -d release-1.11.0-RC1              # branch no longer needed
-git push origin --delete release-1.11.0-RC1   # remote branch no longer needed</code></pre>
+git merge release-1.12.0-RC1                  # merge branch onto master
+git branch -d release-1.12.0-RC1              # branch no longer needed
+git push origin --delete release-1.12.0-RC1   # remote branch no longer needed</code></pre>
 </div>
 </div>
 </div>
@@ -5747,7 +5747,7 @@ git push</code></pre>
 <p>update its dependency on Apache Isis to reference the newly released version:<br></p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">sh forsub.sh sh bumpver_isis.sh 1.11.0</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">sh forsub.sh sh bumpver_isis.sh 1.12.0</code></pre>
 </div>
 </div>
 </li>
@@ -5755,7 +5755,7 @@ git push</code></pre>
 <p>release to mvn central (contains a sanity check before hand that everything compiles):<br></p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">sh forsub.sh sh release.sh &quot;1.11.0&quot; &quot;1.12.0-SNAPSHOT&quot; &quot;dan@haywood-associates.co.uk&quot; &quot;this is not really my password&quot;</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">sh forsub.sh sh release.sh &quot;1.12.0&quot; &quot;1.13.0-SNAPSHOT&quot; &quot;dan@haywood-associates.co.uk&quot; &quot;this is not really my password&quot;</code></pre>
 </div>
 </div>
 </li>
@@ -5763,7 +5763,7 @@ git push</code></pre>
 <p>update its dependency on Apache Isis to reference the next SNAPSHOT version:<br></p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">sh forsub.sh sh bumpver_isis.sh &quot;1.12.0-SNAPSHOT&quot;</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">sh forsub.sh sh bumpver_isis.sh &quot;1.13.0-SNAPSHOT&quot;</code></pre>
 </div>
 </div>
 </li>
@@ -5805,7 +5805,7 @@ git push</code></pre>
 </div>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">[RESULT] [VOTE] Apache Isis Core release 1.11.0</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">[RESULT] [VOTE] Apache Isis Core release 1.12.0</code></pre>
 </div>
 </div>
 <div class="paragraph">
@@ -5815,11 +5815,11 @@ git push</code></pre>
 <div class="content">
 <pre class="CodeRay highlight"><code data-lang="bash">The vote has completed with the following result :
 
-  +1 (binding): &lt;i&gt;list of names&lt;/i&gt;
-  +1 (non binding): &lt;i&gt;list of names&lt;/i&gt;
+  +1 (binding): _list of names_
+  +1 (non binding): _list of names_
 
-  -1 (binding): &lt;i&gt;list of names&lt;/i&gt;
-  -1 (non binding): &lt;i&gt;list of names&lt;/i&gt;
+  -1 (binding): _list of names_
+  -1 (non binding): _list of names_
 
 The vote is UNSUCCESSFUL.</code></pre>
 </div>
@@ -5836,7 +5836,7 @@ The vote is UNSUCCESSFUL.</code></pre>
 <p>delete the remote branch, for example:<br></p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">git push --delete origin release-1.11.0-RC1</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">git push --delete origin release-1.12.0-RC1</code></pre>
 </div>
 </div>
 </li>
@@ -5844,8 +5844,8 @@ The vote is UNSUCCESSFUL.</code></pre>
 <p>delete the remote origin server&#8217;s tags, for example:<br></p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">git push --delete origin isis-1.11.0-RC1
-git push --delete origin simpleapp-archetype-1.11.0-RC1</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">git push --delete origin isis-1.12.0-RC1
+git push --delete origin simpleapp-archetype-1.12.0-RC1</code></pre>
 </div>
 </div>
 </li>
@@ -5853,10 +5853,10 @@ git push --delete origin simpleapp-archetype-1.11.0-RC1</code></pre>
 <p>delete the tags that were created locally, for example:<br></p>
 <div class="listingblock">
 <div class="content">
-<pre class="CodeRay highlight"><code data-lang="bash">git tag -d isis-1.11.0
-git tag -d isis-1.11.0-RC1
-git tag -d simpleapp-archetype-1.11.0
-git tag -d simpleapp-archetype-1.11.0-RC1</code></pre>
+<pre class="CodeRay highlight"><code data-lang="bash">git tag -d isis-1.12.0
+git tag -d isis-1.12.0-RC1
+git tag -d simpleapp-archetype-1.12.0
+git tag -d simpleapp-archetype-1.12.0-RC1</code></pre>
 </div>
 </div>
 </li>
@@ -8465,13 +8465,13 @@ xxx<br>
 <li><a href="#_1_9_0_version">5.2.5. 1.9.0 version</a></li>
 </ul>
 </li>
-<li><a href="#_cg_isis-maven-plugin_swagger">5.3. <code>swagger</code> goal (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_cg_isis-maven-plugin_swagger">5.3. <code>swagger</code> goal</a>
 <ul class="sectlevel3">
 <li><a href="#__code_dom_code_submodule_2">5.3.1. <code>dom</code> submodule</a></li>
 <li><a href="#_to_run_2">5.3.2. To run</a></li>
 </ul>
 </li>
-<li><a href="#_cg_isis-maven-plugin_xsd">5.4. <code>xsd</code> goal (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_cg_isis-maven-plugin_xsd">5.4. <code>xsd</code> goal</a>
 <ul class="sectlevel3">
 <li><a href="#_cg_isis-maven-plugin_xsd">5.4.1. <code>xsd</code> submodule</a>
 <ul class="sectlevel4">

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/rgant.html
----------------------------------------------------------------------
diff --git a/content/guides/rgant.html b/content/guides/rgant.html
index ba3eadd..f5d0bb0 100644
--- a/content/guides/rgant.html
+++ b/content/guides/rgant.html
@@ -2339,7 +2339,7 @@ rather than through the constructor.  This substantially reduces the boilerplate
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_code_1_11_0_snapshot_code">3.2.2. Default, Doop and Noop events (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_default_doop_and_noop_events">3.2.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>domainEvent</code> attribute is not explicitly specified (is left as its default value, <code>ActionDomainEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -3786,7 +3786,7 @@ rather than through the constructor.  This substantially reduces the boilerplate
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_code_1_11_0_snapshot_code_2">5.1.2. Default, Doop and Noop events (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_default_doop_and_noop_events_2">5.1.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>domainEvent</code> attribute is not explicitly specified (is left as its default value, <code>CollectionDomainEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -5057,8 +5057,7 @@ can be used instead, eg:</p>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgant-DomainObject_createdLifecycleEvent"><code>created-</code><br>
-<code>LifecycleEvent()</code></a><br>
-(<code>1.11.0-SNAPSHOT</code>)</p></td>
+<code>LifecycleEvent()</code></a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ObjectCreatedEvent</code><br>
 (<code>ObjectCreatedEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
@@ -5089,22 +5088,20 @@ can be used instead, eg:</p>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgant-DomainObject_persistedLifecycleEvent"><code>persisted-</code><br>
-<code>LifecycleEvent()</code></a><br>
-(<code>1.11.0-SNAPSHOT</code>)</p></td>
+<code>LifecycleEvent()</code></a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ObjectPersistedEvent</code><br>
 (<code>ObjectPersistedEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance has just been persisted</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance has just been persisted</p>
 </div></div></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgant-DomainObject_persistingLifecycleEvent"><code>persisting-</code><br>
-<code>LifecycleEvent()</code></a><br>
-(<code>1.11.0-SNAPSHOT</code>)</p></td>
+<code>LifecycleEvent()</code></a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ObjectPersistingEvent</code><br>
 (<code>ObjectPersistingEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance is about to be persisted</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance is about to be persisted</p>
 </div></div></td>
 </tr>
 <tr>
@@ -5125,32 +5122,29 @@ can be used instead, eg:</p>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgant-DomainObject_removingLifecycleEvent"><code>removing-</code><br>
-<code>LifecycleEvent()</code></a><br>
-(<code>1.11.0-SNAPSHOT</code>)</p></td>
+<code>LifecycleEvent()</code></a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ObjectRemovingEvent</code><br>
 (<code>ObjectRemovingEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance is about to be deleted</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance is about to be deleted</p>
 </div></div></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgant-DomainObject_updatedLifecycleEvent"><code>updated-</code><br>
-<code>LifecycleEvent()</code></a><br>
-(<code>1.11.0-SNAPSHOT</code>)</p></td>
+<code>LifecycleEvent()</code></a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ObjectUpdatedEvent</code><br>
 (<code>ObjectUpdatedEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance has just been updated</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance has just been updated</p>
 </div></div></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgant-DomainObject_updatingLifecycleEvent"><code>updating-</code><br>
-<code>LifecycleEvent()</code></a><br>
-(<code>1.11.0-SNAPSHOT</code>)</p></td>
+<code>LifecycleEvent()</code></a></p></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>ObjectUpdatingEvent</code><br>
 (<code>ObjectUpdatingEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance is about to be updated</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> whenever an instance is about to be updated</p>
 </div></div></td>
 </tr>
 </tbody>
@@ -5384,7 +5378,7 @@ can be used instead, eg:</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_createdLifecycleEvent">10.4. createdLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_createdLifecycleEvent">10.4. createdLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a domain object is instantiated or otherwise becomes known to the framework, a "created" lifecycle event is fired.  This is typically when the <a href="rgsvc.html#_rgsvc_api_DomainObjectContainer"><code>DomainObjectContainer</code></a>'s <a href="rgsvc.html#_rgsvc_api_DomainObjectContainer_object-creation-api"><code>newTransientInstance()</code></a> is called;
 it will also happen if the object is simply instantiated with <code>new(&#8230;&#8203;)</code>, and then the container&#8217;s
@@ -5479,7 +5473,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events">10.4.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_3">10.4.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>createdLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectCreatedEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -5584,7 +5578,7 @@ then no event will be posted.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_loadedLifecycleEvent">10.6. loadedLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_loadedLifecycleEvent">10.6. loadedLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a persistent domain object is loaded from the database, a "loaded" lifecycle event is fired.</p>
 </div>
@@ -5677,7 +5671,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_2">10.6.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_4">10.6.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>loadedLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectLoadedEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -5797,7 +5791,7 @@ then no event will be posted.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_persistedLifecycleEvent">10.8. persistedLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_persistedLifecycleEvent">10.8. persistedLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a (just created, still transient) domain object has been saved (INSERTed in)to the database, a "persisted" lifecycle
 event is fired.</p>
@@ -5905,7 +5899,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_3">10.8.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_5">10.8.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>persistedLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectPersistedEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -5926,7 +5920,7 @@ then no event will be posted.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_persistingLifecycleEvent">10.9. persistingLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_persistingLifecycleEvent">10.9. persistingLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a (just created, still transient) domain object is about to be saved (INSERTed in)to the database, a "persisting" lifecycle
 event is fired.</p>
@@ -6037,7 +6031,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_4">10.9.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_6">10.9.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>persistingLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectPersistingEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -6200,7 +6194,7 @@ then no event will be posted.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_removingLifecycleEvent">10.12. removingLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_removingLifecycleEvent">10.12. removingLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a (persistent) domain object is about to be removed (DELETEd) from the database, a "removing"
 lifecycle event is fired.</p>
@@ -6311,7 +6305,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_5">10.12.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_7">10.12.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>removingLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectRemovingEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -6332,7 +6326,7 @@ then no event will be posted.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_updatingLifecycleEvent">10.13. updatingLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_updatingLifecycleEvent">10.13. updatingLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a (persistent) domain object has been modified and is about to be updated to the database, an "updating"
 lifecycle event is fired.</p>
@@ -6443,7 +6437,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_6">10.13.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_8">10.13.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>updatingLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectUpdatingEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -6464,7 +6458,7 @@ then no event will be posted.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObject_updatedLifecycleEvent">10.14. updatedLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObject_updatedLifecycleEvent">10.14. updatedLifecycleEvent()</h3>
 <div class="paragraph">
 <p>Whenever a (persistent) domain object has been modified and has been updated in the database, an "updated" lifecycle
 event is fired.</p>
@@ -6571,7 +6565,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_7">10.14.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_9">10.14.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>updatedLifecycleEvent</code> attribute is not explicitly specified (is left as its default value, <code>ObjectUpdatedEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -6666,7 +6660,7 @@ then no event will be posted.</p>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>CssClassUiEvent</code><br>
 (<code>CssClassUiEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> to obtain a CSS class for the domain object.</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> to obtain a CSS class for the domain object.</p>
 </div></div></td>
 </tr>
 <tr>
@@ -6681,7 +6675,7 @@ then no event will be posted.</p>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>IconUiEvent</code><br>
 (<code>IconUiEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> to obtain the icon (name) for the domain object.</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> to obtain the icon (name) for the domain object.</p>
 </div></div></td>
 </tr>
 <tr>
@@ -6713,7 +6707,7 @@ then no event will be posted.</p>
 <td class="tableblock halign-left valign-top"><p class="tableblock">subtype of <code>TitleUiEvent</code><br>
 (<code>TitleUiEvent.Default</code>)</p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>the event type to be posted (<code>1.11.0-SNAPSHOT</code>) to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> to obtain the title for the domain object.</p>
+<p>the event type to be posted to the <a href="rgsvc.html#_rgsvc_api_EventBusService"><code>EventBusService</code></a> to obtain the title for the domain object.</p>
 </div></div></td>
 </tr>
 </tbody>
@@ -6919,7 +6913,7 @@ member so that it can be styled in an application-specific way.</p>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObjectLayout_cssClassUiEvent">11.4. cssClassUiEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObjectLayout_cssClassUiEvent">11.4. cssClassUiEvent()</h3>
 <div class="paragraph">
 <p>Whenever a domain object is to be rendered, the framework fires off an CSS class UI event to obtain a CSS class to use
 in any wrapping <code>&lt;div&gt;</code>s and <code>&lt;span&gt;</code>s that render the domain object.  This is as an alternative to implementing
@@ -7034,7 +7028,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_8">11.4.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_10">11.4.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>cssClassUiEvent</code> attribute is not explicitly specified (is left as its default value, <code>CssClassUiEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -7082,7 +7076,7 @@ of calling the <a href="rgsvc.html#_rgsvc_api_DomainObjectContainer"><code>Domai
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObjectLayout_iconUiEvent">11.6. iconUiEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObjectLayout_iconUiEvent">11.6. iconUiEvent()</h3>
 <div class="paragraph">
 <p>Whenever a domain object is to be rendered, the framework fires off an icon UI event to obtain an icon (name) for the
 object (if possible). This is as an alternative to implementing
@@ -7197,7 +7191,7 @@ using the <a href="http://www.axonframework.org/">Axon Framework</a> API.  The e
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_9">11.6.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_11">11.6.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>iconUiEvent</code> attribute is not explicitly specified (is left as its default value, <code>IconUiEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -7337,7 +7331,7 @@ of calling the <a href="rgsvc.html#_rgsvc_api_DomainObjectContainer"><code>Domai
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgant-DomainObjectLayout_titleUiEvent">11.10. titleUiEvent() (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgant-DomainObjectLayout_titleUiEvent">11.10. titleUiEvent()</h3>
 <div class="paragraph">
 <p>Whenever a domain object is to be rendered, the framework fires off a title UI event to obtain a title for the object.
 This is as an alternative to implementing <a href="rgcms.html#_rgcms_methods_reserved_title"><code>title()</code></a> reserved method, or
@@ -7453,7 +7447,7 @@ actually specify the title to be used.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_10">11.10.2. Default, Doop and Noop events</h4>
+<h4 id="_default_doop_and_noop_events_12">11.10.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>titleUiEvent</code> attribute is not explicitly specified (is left as its default value, <code>TitleUiEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -8729,7 +8723,7 @@ so that boilerplate-busting tools such as <a href="https://projectlombok.org/">P
 that would normally be passed to <code>java.util.regex.Pattern#compile(String,int)</code>.</p>
 </li>
 <li>
-<p>The related <code>regexPatternReplacement()</code> attribute (as of <code>1.11.0-SNAPSHOT</code>) specifies the error message to show if
+<p>The related <code>regexPatternReplacement()</code> attribute specifies the error message to show if
 the provided argument does not match the regex pattern.</p>
 </li>
 </ul>
@@ -8757,7 +8751,7 @@ the provided argument does not match the regex pattern.</p>
 <table>
 <tr>
 <td><i class="conum" data-value="1"></i><b>1</b></td>
-<td>unused prior to <code>1.11.0-SNAPSHOT</code>. Note that there is currently no i18n support for this phrase.</td>
+<td>Note that there is currently no i18n support for this phrase.</td>
 </tr>
 </table>
 </div>
@@ -9871,7 +9865,7 @@ rather than through the constructor.  This substantially reduces the boilerplate
 </div>
 </div>
 <div class="sect3">
-<h4 id="_default_doop_and_noop_events_code_1_11_0_snapshot_code_3">28.1.2. Default, Doop and Noop events (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_default_doop_and_noop_events_13">28.1.2. Default, Doop and Noop events</h4>
 <div class="paragraph">
 <p>If the <code>domainEvent</code> attribute is not explicitly specified (is left as its default value, <code>PropertyDomainEvent.Default</code>),
 then the framework will, by default, post an event.</p>
@@ -10424,7 +10418,7 @@ tables. Annotating with <code>@Property(where=Where.NOWHERE)</code> overrides th
 <div class="sect2">
 <h3 id="_rgant-Property_regexPattern">28.8. <code>regexPattern()</code></h3>
 <div class="paragraph">
-<p>There are three attributes (as of <code>1.11.0-SNAPSHOT</code>, two in earlier releases) related to enforcing regular expressions:</p>
+<p>There are three attributes related to enforcing regular expressions:</p>
 </div>
 <div class="ulist">
 <ul>
@@ -10436,7 +10430,7 @@ tables. Annotating with <code>@Property(where=Where.NOWHERE)</code> overrides th
 that would normally be passed to <code>java.util.regex.Pattern#compile(String,int)</code>.</p>
 </li>
 <li>
-<p>The related <code>regexPatternReplacement()</code> attribute (as of <code>1.11.0-SNAPSHOT</code>) specifies the error message to show if
+<p>The related <code>regexPatternReplacement()</code> attribute specifies the error message to show if
 the provided argument does not match the regex pattern.</p>
 </li>
 </ul>
@@ -10460,7 +10454,7 @@ the provided argument does not match the regex pattern.</p>
 <table>
 <tr>
 <td><i class="conum" data-value="1"></i><b>1</b></td>
-<td>new in <code>1.11.0-SNAPSHOT</code>. Note that there is currently no i18n support for this phrase.</td>
+<td>Note that there is currently no i18n support for this phrase.</td>
 </tr>
 </table>
 </div>
@@ -11529,10 +11523,10 @@ for symmetry with domain objects that have been annotated using <a href="#_rgant
 </div>
 </div>
 <div class="sect1">
-<h2 id="_rgant-XmlJavaTypeAdapter">34. <code>@XmlJavaTypeAdapter</code> (<code>jaxb</code>) (<code>1.11.0-SNAPSHOT</code>)</h2>
+<h2 id="_rgant-XmlJavaTypeAdapter">34. <code>@XmlJavaTypeAdapter</code> (<code>jaxb</code>)</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>The JAXB <code>@XmlJavaTypeAdapter</code> annotation (<code>1.11.0-SNAPSHOT</code>) is used with the framework-provided
+<p>The JAXB <code>@XmlJavaTypeAdapter</code> annotation is used with the framework-provided
 <code>PersistentEntityAdapter</code> to instruct JAXB to serialize references to persistent entities using the canonical
 <code>OidDto</code> complex type: the object&#8217;s type and its identifier.  This is the formal XML equivalent to the <code>Bookmark</code>
 provided by the <a href="rgsvc.html#_rgsvc_api_BookmarkService"><code>BookmarkService</code></a>.</p>
@@ -11558,10 +11552,10 @@ in the user guide.</p>
 </div>
 </div>
 <div class="sect1">
-<h2 id="_rgant-XmlRootElement">35. <code>@XmlRootElement</code> (<code>jaxb</code>) (<code>1.11.0-SNAPSHOT</code>)</h2>
+<h2 id="_rgant-XmlRootElement">35. <code>@XmlRootElement</code> (<code>jaxb</code>)</h2>
 <div class="sectionbody">
 <div class="paragraph">
-<p>The <code>@XmlRootElement</code> annotation (<code>1.11.0-SNAPSHOT</code>) provides an alternative way to define a
+<p>The <code>@XmlRootElement</code> annotation provides an alternative way to define a
 <a href="rg.html#_ugbtb_view-models">view model</a>, in particular one intended to act as a DTO for use within
 <a href="ugvro.html">RestfulObjects viewer</a>, or which contains arbitrarily complex state.</p>
 </div>
@@ -11716,7 +11710,7 @@ in the user guide.</p>
 <li><a href="#_rgant-Action_domainEvent">3.2. domainEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers">3.2.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_code_1_11_0_snapshot_code">3.2.2. Default, Doop and Noop events (<code>1.11.0-SNAPSHOT</code>)</a></li>
+<li><a href="#_default_doop_and_noop_events">3.2.2. Default, Doop and Noop events</a></li>
 <li><a href="#_raising_events_programmatically">3.2.3. Raising events programmatically</a></li>
 </ul>
 </li>
@@ -11749,7 +11743,7 @@ in the user guide.</p>
 <li><a href="#_rgant-Collection_domainEvent">5.1. <code>domainEvent()</code></a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_2">5.1.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_code_1_11_0_snapshot_code_2">5.1.2. Default, Doop and Noop events (<code>1.11.0-SNAPSHOT</code>)</a></li>
+<li><a href="#_default_doop_and_noop_events_2">5.1.2. Default, Doop and Noop events</a></li>
 <li><a href="#_raising_events_programmatically_2">5.1.3. Raising events programmatically</a></li>
 </ul>
 </li>
@@ -11795,30 +11789,30 @@ in the user guide.</p>
 </ul>
 </li>
 <li><a href="#_rgant-DomainObject_bounded">10.3. <code>bounded()</code></a></li>
-<li><a href="#_rgant-DomainObject_createdLifecycleEvent">10.4. createdLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_createdLifecycleEvent">10.4. createdLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_3">10.4.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events">10.4.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_3">10.4.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
 <li><a href="#_rgant-DomainObject_editing">10.5. <code>editing()</code></a></li>
-<li><a href="#_rgant-DomainObject_loadedLifecycleEvent">10.6. loadedLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_loadedLifecycleEvent">10.6. loadedLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_4">10.6.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_2">10.6.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_4">10.6.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
 <li><a href="#_rgant-DomainObject_nature">10.7. <code>nature()</code></a></li>
-<li><a href="#_rgant-DomainObject_persistedLifecycleEvent">10.8. persistedLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_persistedLifecycleEvent">10.8. persistedLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_5">10.8.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_3">10.8.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_5">10.8.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
-<li><a href="#_rgant-DomainObject_persistingLifecycleEvent">10.9. persistingLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_persistingLifecycleEvent">10.9. persistingLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_6">10.9.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_4">10.9.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_6">10.9.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
 <li><a href="#_rgant-DomainObject_objectType">10.10. <code>objectType()</code></a></li>
@@ -11827,22 +11821,22 @@ in the user guide.</p>
 <li><a href="#__code_publishingpayloadfactory_code_2">10.11.1. <code>publishingPayloadFactory()</code></a></li>
 </ul>
 </li>
-<li><a href="#_rgant-DomainObject_removingLifecycleEvent">10.12. removingLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_removingLifecycleEvent">10.12. removingLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_7">10.12.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_5">10.12.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_7">10.12.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
-<li><a href="#_rgant-DomainObject_updatingLifecycleEvent">10.13. updatingLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_updatingLifecycleEvent">10.13. updatingLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_8">10.13.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_6">10.13.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_8">10.13.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
-<li><a href="#_rgant-DomainObject_updatedLifecycleEvent">10.14. updatedLifecycleEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObject_updatedLifecycleEvent">10.14. updatedLifecycleEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_9">10.14.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_7">10.14.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_9">10.14.2. Default, Doop and Noop events</a></li>
 </ul>
 </li>
 </ul>
@@ -11852,28 +11846,28 @@ in the user guide.</p>
 <li><a href="#_rgant-DomainObjectLayout_bookmarking">11.1. <code>bookmarking()</code></a></li>
 <li><a href="#_rgant-DomainObjectLayout_cssClass">11.2. <code>cssClass()</code></a></li>
 <li><a href="#_rgant-DomainObjectLayout_cssClassFa">11.3. <code>cssClassFa()</code></a></li>
-<li><a href="#_rgant-DomainObjectLayout_cssClassUiEvent">11.4. cssClassUiEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObjectLayout_cssClassUiEvent">11.4. cssClassUiEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_10">11.4.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_8">11.4.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_10">11.4.2. Default, Doop and Noop events</a></li>
 <li><a href="#_raising_events_programmatically_3">11.4.3. Raising events programmatically</a></li>
 </ul>
 </li>
 <li><a href="#_rgant-DomainObjectLayout_describedAs">11.5. <code>describedAs()</code></a></li>
-<li><a href="#_rgant-DomainObjectLayout_iconUiEvent">11.6. iconUiEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObjectLayout_iconUiEvent">11.6. iconUiEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_11">11.6.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_9">11.6.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_11">11.6.2. Default, Doop and Noop events</a></li>
 <li><a href="#_raising_events_programmatically_4">11.6.3. Raising events programmatically</a></li>
 </ul>
 </li>
 <li><a href="#_rgant-DomainObjectLayout_named">11.7. <code>named()</code></a></li>
 <li><a href="#_rgant-DomainObjectLayout_paged">11.8. <code>paged()</code></a></li>
 <li><a href="#_rgant-DomainObjectLayout_plural">11.9. <code>plural()</code></a></li>
-<li><a href="#_rgant-DomainObjectLayout_titleUiEvent">11.10. titleUiEvent() (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-DomainObjectLayout_titleUiEvent">11.10. titleUiEvent()</a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_12">11.10.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_10">11.10.2. Default, Doop and Noop events</a></li>
+<li><a href="#_default_doop_and_noop_events_12">11.10.2. Default, Doop and Noop events</a></li>
 <li><a href="#_raising_events_programmatically_5">11.10.3. Raising events programmatically</a></li>
 </ul>
 </li>
@@ -11934,7 +11928,7 @@ in the user guide.</p>
 <li><a href="#_rgant-Property_domainEvent">28.1. <code>domainEvent()</code></a>
 <ul class="sectlevel3">
 <li><a href="#_subscribers_13">28.1.1. Subscribers</a></li>
-<li><a href="#_default_doop_and_noop_events_code_1_11_0_snapshot_code_3">28.1.2. Default, Doop and Noop events (<code>1.11.0-SNAPSHOT</code>)</a></li>
+<li><a href="#_default_doop_and_noop_events_13">28.1.2. Default, Doop and Noop events</a></li>
 <li><a href="#_raising_events_programmatically_6">28.1.3. Raising events programmatically</a></li>
 </ul>
 </li>
@@ -11985,8 +11979,8 @@ in the user guide.</p>
 <li><a href="#_rgant-ViewModelLayout_plural">33.6. <code>plural()</code></a></li>
 </ul>
 </li>
-<li><a href="#_rgant-XmlJavaTypeAdapter">34. <code>@XmlJavaTypeAdapter</code> (<code>jaxb</code>) (<code>1.11.0-SNAPSHOT</code>)</a></li>
-<li><a href="#_rgant-XmlRootElement">35. <code>@XmlRootElement</code> (<code>jaxb</code>) (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgant-XmlJavaTypeAdapter">34. <code>@XmlJavaTypeAdapter</code> (<code>jaxb</code>)</a></li>
+<li><a href="#_rgant-XmlRootElement">35. <code>@XmlRootElement</code> (<code>jaxb</code>)</a>
 <ul class="sectlevel2">
 <li><a href="#_example">35.1. Example</a></li>
 <li><a href="#_see_also">35.2. See also</a></li>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/rgcfg.html
----------------------------------------------------------------------
diff --git a/content/guides/rgcfg.html b/content/guides/rgcfg.html
index 296466f..8ce0d16 100644
--- a/content/guides/rgcfg.html
+++ b/content/guides/rgcfg.html
@@ -1072,8 +1072,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>createdLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1086,8 +1085,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>loadedLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1100,8 +1098,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>persistingLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1114,8 +1111,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>persistedLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1128,8 +1124,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>removingLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1142,8 +1137,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>updatingLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1156,8 +1150,7 @@ configuration properties externally for different environments can be found in t
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectAnnotation.</code><br>
 <code>updatedLifecycleEvent.</code><br>
-<code>postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1169,8 +1162,7 @@ configuration properties externally for different environments can be found in t
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectLayoutAnnotation.</code><br>
-<code>cssClassUiEvent.postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>cssClassUiEvent.postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1182,8 +1174,7 @@ configuration properties externally for different environments can be found in t
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectLayoutAnnotation.</code><br>
-<code>iconUiEvent.postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>iconUiEvent.postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>
@@ -1195,8 +1186,7 @@ configuration properties externally for different environments can be found in t
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
 <p><code>isis.reflector.facet.</code><br>
 <code>domainObjectLayoutAnnotation.</code><br>
-<code>titleUiEvent.postForDefault</code><br>
-(<code>1.11.0-SNAPSHOT</code>)</p>
+<code>titleUiEvent.postForDefault</code></p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><code>true</code>,<code>false</code><br>
 (<code>true</code>)</p></td>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/rgcms.html
----------------------------------------------------------------------
diff --git a/content/guides/rgcms.html b/content/guides/rgcms.html
index d518e96..9206468 100644
--- a/content/guides/rgcms.html
+++ b/content/guides/rgcms.html
@@ -512,7 +512,7 @@ supporting <a href="#_rgcms_classes">classes</a>.</p>
 </div>
 <div class="paragraph">
 <p>It also describes the <a href="#_rgcms_schema">XSD schema</a> defined by Apache Isis.  One use case is for the
-JAXB serialization of view models (<code>1.11.0-SNAPSHOT</code>).</p>
+JAXB serialization of view models.</p>
 </div>
 <div class="sect2">
 <h3 id="_other_guides">1.1. Other Guides</h3>
@@ -3360,7 +3360,7 @@ any subscribers must be registered before such seed services.  The easiest way t
 <a href="rgant.html#_rgant-DomainServiceLayout_menuOrder"><code>@DomainServiceLayout#menuOrder()</code></a> attribute.</p>
 </div>
 <div class="paragraph">
-<p>As a convenience, (as of <code>1.11.0-SNAPSHOT</code>) the <code>AbstractSubscriber</code> specifies this attribute.</p>
+<p>As a convenience, the <code>AbstractSubscriber</code> specifies this attribute.</p>
 </div>
 </div>
 <div class="sect3">
@@ -3604,7 +3604,7 @@ is specified.</p></td>
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgcms_classes_uievent">3.4. UI Event Classes (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgcms_classes_uievent">3.4. UI Event Classes</h3>
 <div class="paragraph">
 <p>This section catalogues the various UI event classes defined by Apache Isis.</p>
 </div>
@@ -3673,7 +3673,7 @@ will take precedence.</p></td>
 </tbody>
 </table>
 <div class="sect3">
-<h4 id="_rgcms_classes_uievent_TitleUiEvent">3.4.1. <code>TitleUiEvent</code>  (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_rgcms_classes_uievent_TitleUiEvent">3.4.1. <code>TitleUiEvent</code></h4>
 <div class="paragraph">
 <p>This event class represents a request to obtain the title of a domain object.  The class has a number of responsibilities:</p>
 </div>
@@ -3708,7 +3708,7 @@ precedence.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_rgcms_classes_uievent_IconUiEvent">3.4.2. <code>TitleUiEvent</code> (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_rgcms_classes_uievent_IconUiEvent">3.4.2. <code>IconUiEvent</code></h4>
 <div class="paragraph">
 <p>This event class represents a request to obtain the icon (or rather, name of icon) of a domain object.  The class has a number of responsibilities:</p>
 </div>
@@ -3744,7 +3744,7 @@ these will take precedence.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_rgcms_classes_uievent_CssClassUiEvent">3.4.3. <code>CssClassUiEvent</code>  (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_rgcms_classes_uievent_CssClassUiEvent">3.4.3. <code>CssClassUiEvent</code></h4>
 <div class="paragraph">
 <p>This event class represents a request to obtain the a CSS class hint of a domain object.  The class has a number of
 responsibilities:</p>
@@ -4915,9 +4915,9 @@ the current timestamp whenever it is modified in a transaction.</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_rgcms_classes_mixins_Dto">3.11.4. <code>Dto</code> (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_rgcms_classes_mixins_Dto">3.11.4. <code>Dto</code></h4>
 <div class="paragraph">
-<p>The <code>Dto</code> role interface (<code>1.11.0-SNAPSHOT</code>) is intended to be implemented by JAXB-annotated view models, that is, annotated using
+<p>The <code>Dto</code> role interface is intended to be implemented by JAXB-annotated view models, that is, annotated using
 <a href="rgant.html#_rgant-XmlRootElement"><code>@XmlRootElement</code></a>.  It enables the ability to download the XML and
 XSD schema of those objects using two <a href="ugbtb.html#_ugbtb_decoupling_mixins">mixins</a>,
 <code>Dto_downloadXml</code> and <code>Dto_downloadXsd</code>.</p>
@@ -4999,14 +4999,14 @@ referenced by the DTO).</p>
 </div>
 </div>
 <div class="sect3">
-<h4 id="_rgcms_classes_mixins_Persistable">3.11.5. <code>Persistable</code> (<code>1.11.0-SNAPSHOT</code>)</h4>
+<h4 id="_rgcms_classes_mixins_Persistable">3.11.5. <code>Persistable</code></h4>
 <div class="paragraph">
 <p>All domain entities automatically implement the DataNucleus <code>Persistable</code> role interface as a result of the enhancer
 process (the fully qualified class name is <code>org.datanucleus.enhancement.Persistable</code>).  So as a developer you do not
 need to write any code for this role interface.</p>
 </div>
 <div class="paragraph">
-<p>Nevertheless, the <code>Persistable_downloadJdoMetadata</code> mixin (<code>1.11.0-SNAPSHOT</code>) provides the ability to download the
+<p>Nevertheless, the <code>Persistable_downloadJdoMetadata</code> mixin provides the ability to download the
 JDO <a href="http://www.datanucleus.org/products/datanucleus/jdo/metadata_xml.html">class metadata in XML</a> form.  The mixin
 defines the following action:</p>
 </div>
@@ -5516,11 +5516,11 @@ but less formal XML structure.  This may change in the future.</p>
 <li><a href="#_rgcms_classes_domainevent_PropertyDomainEvent">3.3.4. <code>PropertyDomainEvent</code></a></li>
 </ul>
 </li>
-<li><a href="#_rgcms_classes_uievent">3.4. UI Event Classes (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgcms_classes_uievent">3.4. UI Event Classes</a>
 <ul class="sectlevel3">
-<li><a href="#_rgcms_classes_uievent_TitleUiEvent">3.4.1. <code>TitleUiEvent</code>  (<code>1.11.0-SNAPSHOT</code>)</a></li>
-<li><a href="#_rgcms_classes_uievent_IconUiEvent">3.4.2. <code>TitleUiEvent</code> (<code>1.11.0-SNAPSHOT</code>)</a></li>
-<li><a href="#_rgcms_classes_uievent_CssClassUiEvent">3.4.3. <code>CssClassUiEvent</code>  (<code>1.11.0-SNAPSHOT</code>)</a></li>
+<li><a href="#_rgcms_classes_uievent_TitleUiEvent">3.4.1. <code>TitleUiEvent</code></a></li>
+<li><a href="#_rgcms_classes_uievent_IconUiEvent">3.4.2. <code>IconUiEvent</code></a></li>
+<li><a href="#_rgcms_classes_uievent_CssClassUiEvent">3.4.3. <code>CssClassUiEvent</code></a></li>
 </ul>
 </li>
 <li><a href="#_rgcms_classes_lifecycleevent">3.5. Lifecycle Events</a>
@@ -5588,12 +5588,12 @@ but less formal XML structure.  This may change in the future.</p>
 <li><a href="#_alternatives_4">Alternatives</a></li>
 </ul>
 </li>
-<li><a href="#_rgcms_classes_mixins_Dto">3.11.4. <code>Dto</code> (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgcms_classes_mixins_Dto">3.11.4. <code>Dto</code></a>
 <ul class="sectlevel4">
 <li><a href="#_related_services">Related Services</a></li>
 </ul>
 </li>
-<li><a href="#_rgcms_classes_mixins_Persistable">3.11.5. <code>Persistable</code> (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgcms_classes_mixins_Persistable">3.11.5. <code>Persistable</code></a>
 <ul class="sectlevel4">
 <li><a href="#_related_services_2">Related Services</a></li>
 </ul>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/rgsvc.html
----------------------------------------------------------------------
diff --git a/content/guides/rgsvc.html b/content/guides/rgsvc.html
index 41f988a..881ff09 100644
--- a/content/guides/rgsvc.html
+++ b/content/guides/rgsvc.html
@@ -856,9 +856,7 @@ SpecificationProvider</code></a>.</p>
 <code>o.a.i.core</code><br>
 <code>isis-core-schema</code></p>
 </div></div></td>
-<td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p><code>1.11.0-SNAPSHOT</code>.</p>
-</div></div></td>
+<td class="tableblock halign-left valign-top"><div></div></td>
 </tr>
 <tr>
 <td class="tableblock halign-left valign-top"><p class="tableblock"><a href="#_rgsvc_api_MementoService"><code>o.a.i.applib.</code><br>
@@ -942,7 +940,7 @@ SpecificationProvider</code></a>.</p>
 <code>services.sudo</code><br>
 <code>SwaggerService</code></a></p></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
-<p>(<code>1.11.0-SNAPSHOT</code>) Generates <a href="http://swagger.io/">Swagger</a> spec files to describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.  These can then be used with the <a href="http://swagger.io/swagger-ui/">Swagger UI</a> page to explore the REST API, or used to generate client-side stubs using the <a href="http://swagger.io/swagger-codegen/">Swagger codegen</a> tool, eg for use in a custom REST client app.</p>
+<p>Generates <a href="http://swagger.io/">Swagger</a> spec files to describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.  These can then be used with the <a href="http://swagger.io/swagger-ui/">Swagger UI</a> page to explore the REST API, or used to generate client-side stubs using the <a href="http://swagger.io/swagger-codegen/">Swagger codegen</a> tool, eg for use in a custom REST client app.</p>
 </div></div></td>
 <td class="tableblock halign-left valign-top"><div><div class="paragraph">
 <p><code>SwaggerServiceDefault</code><br>
@@ -3208,7 +3206,7 @@ initialization</td>
 <td class="content">
 <div class="paragraph">
 <p>The <a href="rgcms.html#_rgcms_classes_super_AbstractSubscriber"><code>AbstractSubscriber</code></a> class automatically performs this
-registration.  As a convenience, (as of <code>1.11.0-SNAPSHOT</code>) it is also annotated with the
+registration.  As a convenience, it is also annotated with the
 <a href="rgant.html#_rgant-DomainServiceLayout_menuOrder"><code>@DomainServiceLayout#menuOrder()</code></a> attribute.</p>
 </div>
 </td>
@@ -4132,9 +4130,9 @@ further in this <a href="ugfun.html#_ugfun_how-tos_replacing-default-service-imp
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgsvc_api_JaxbService">2.15. <code>JaxbService</code> (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgsvc_api_JaxbService">2.15. <code>JaxbService</code></h3>
 <div class="paragraph">
-<p>The <code>JaxbService</code> (<code>1.11.0-SNAPSHOT</code>) allows instances of JAXB-annotated classes to be marshalled to XML and
+<p>The <code>JaxbService</code> allows instances of JAXB-annotated classes to be marshalled to XML and
 unmarshalled from XML back into domain objects.</p>
 </div>
 <div class="sect3">
@@ -4809,9 +4807,9 @@ further in this <a href="ugfun.html#_ugfun_how-tos_replacing-default-service-imp
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgsvc_api_SwaggerService">2.21. <code>SwaggerService</code> (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgsvc_api_SwaggerService">2.21. <code>SwaggerService</code></h3>
 <div class="paragraph">
-<p>The <code>SwaggerService</code> (<code>1.11.0-SNAPSHOT</code>) generates <a href="http://swagger.io/">Swagger</a> spec files to describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.</p>
+<p>The <code>SwaggerService</code> generates <a href="http://swagger.io/">Swagger</a> spec files to describe the public and/or private RESTful APIs exposed by the <a href="ugvro.html">RestfulObjects viewer</a>.</p>
 </div>
 <div class="paragraph">
 <p>These spec files can then be used with the <a href="http://swagger.io/swagger-ui/">Swagger UI</a> page to explore the REST API, or used to generate client-side stubs using the <a href="http://swagger.io/swagger-codegen/">Swagger codegen</a> tool, eg for use in a custom REST client app.</p>
@@ -5402,9 +5400,8 @@ further in this <a href="ugfun.html#_ugfun_how-tos_replacing-default-service-imp
 <p>The <a href="#_rgsvc_api_MementoService"><code>MementoService</code></a> also provides a mechanism for generating string representations of domain objects.</p>
 </div>
 <div class="paragraph">
-<p>The <a href="#_rgsvc_api_JaxbService"><code>JaxbService</code></a> (<code>1.11.0-SNAPSHOT</code>) is a simple wrapper around
-standard JAXB functionality for generating both XMLs and XSDs from JAXB-annotated classes.  Note that (as of
-<code>1.11.0-SNAPSHOT</code>) there is built-in support for JAXB classes (ie annotated with
+<p>The <a href="#_rgsvc_api_JaxbService"><code>JaxbService</code></a> is a simple wrapper around
+standard JAXB functionality for generating both XMLs and XSDs from JAXB-annotated classes.  Note that there is built-in support for JAXB classes (ie annotated with
 <a href="rgant.html#_rgant-XmlRootElement"><code>@XmlRootElement</code></a>) to be used as view models.</p>
 </div>
 </div>
@@ -8048,9 +8045,9 @@ further in this <a href="ugfun.html#_ugfun_how-tos_replacing-default-service-imp
 </div>
 </div>
 <div class="sect2">
-<h3 id="_rgsvc_spi_UrlEncodingService">3.18. <code>UrlEncodingService</code> (<code>1.11.0-SNAPSHOT</code>)</h3>
+<h3 id="_rgsvc_spi_UrlEncodingService">3.18. <code>UrlEncodingService</code></h3>
 <div class="paragraph">
-<p>The <code>UrlEncodingService</code> (<code>1.11.0-SNAPSHOT</code>) defines a consistent way to convert strings to/from a form safe for use
+<p>The <code>UrlEncodingService</code> defines a consistent way to convert strings to/from a form safe for use
 within a URL.  The service is used by the framework to map <a href="ugbtb.html#_ugbtb_view-models">view model</a>
 mementos (derived from the state of the view model itself) into a form that can be used as a view model.  When the
 framework needs to recreate the view model (for example to invoke an action on it), this URL is converted back into a
@@ -8485,7 +8482,7 @@ to implement a subclass and register.</p>
 <li><a href="#_registering_the_services_7">2.14.6. Registering the Services</a></li>
 </ul>
 </li>
-<li><a href="#_rgsvc_api_JaxbService">2.15. <code>JaxbService</code> (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgsvc_api_JaxbService">2.15. <code>JaxbService</code></a>
 <ul class="sectlevel3">
 <li><a href="#_rgsvc_api_JaxbService_api-and-implementation">2.15.1. API &amp; Implementation</a></li>
 <li><a href="#_usage_within_the_framework_2">2.15.2. Usage within the framework</a></li>
@@ -8529,7 +8526,7 @@ to implement a subclass and register.</p>
 <li><a href="#_registering_the_service_12">2.20.3. Registering the Service</a></li>
 </ul>
 </li>
-<li><a href="#_rgsvc_api_SwaggerService">2.21. <code>SwaggerService</code> (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgsvc_api_SwaggerService">2.21. <code>SwaggerService</code></a>
 <ul class="sectlevel3">
 <li><a href="#_rgsvc_api_SwaggerService_api-and-implementation">2.21.1. API &amp; Implementation</a></li>
 <li><a href="#_usage_within_the_framework_3">2.21.2. Usage within the framework</a></li>
@@ -8707,7 +8704,7 @@ to implement a subclass and register.</p>
 <li><a href="#_related_services_23">3.17.4. Related Services</a></li>
 </ul>
 </li>
-<li><a href="#_rgsvc_spi_UrlEncodingService">3.18. <code>UrlEncodingService</code> (<code>1.11.0-SNAPSHOT</code>)</a>
+<li><a href="#_rgsvc_spi_UrlEncodingService">3.18. <code>UrlEncodingService</code></a>
 <ul class="sectlevel3">
 <li><a href="#_spi_18">3.18.1. SPI</a></li>
 <li><a href="#_implementation_17">3.18.2. Implementation</a></li>

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/simpleapp-archetype.html
----------------------------------------------------------------------
diff --git a/content/guides/simpleapp-archetype.html b/content/guides/simpleapp-archetype.html
index f0a16ce..3924bae 100644
--- a/content/guides/simpleapp-archetype.html
+++ b/content/guides/simpleapp-archetype.html
@@ -523,7 +523,7 @@ table.CodeRay td.code>pre{padding:0}
 <pre class="CodeRay highlight"><code data-lang="bash">mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \
@@ -562,7 +562,7 @@ table.CodeRay td.code>pre{padding:0}
 <pre class="CodeRay highlight"><code data-lang="bash">mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.11.0-SNAPSHOT \
+    -D archetypeVersion=1.12.0-SNAPSHOT \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \

http://git-wip-us.apache.org/repos/asf/isis-site/blob/34fc176a/content/guides/tg.html
----------------------------------------------------------------------
diff --git a/content/guides/tg.html b/content/guides/tg.html
index 0d01ca9..0cbb436 100644
--- a/content/guides/tg.html
+++ b/content/guides/tg.html
@@ -630,7 +630,7 @@ table.CodeRay td.code>pre{padding:0}
 <pre class="CodeRay highlight"><code data-lang="bash">mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=petclinic \
     -D version=1.0-SNAPSHOT \
@@ -1479,7 +1479,7 @@ every time, specify the following system properties:</p>
 <pre class="CodeRay highlight"><code data-lang="bash">mvn archetype:generate  \
     -D archetypeGroupId=org.apache.isis.archetype \
     -D archetypeArtifactId=simpleapp-archetype \
-    -D archetypeVersion=1.10.0 \
+    -D archetypeVersion=1.11.0 \
     -D groupId=com.mycompany \
     -D artifactId=myapp \
     -D version=1.0-SNAPSHOT \