You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by bu...@apache.org on 2014/02/11 01:32:52 UTC

svn commit: r897317 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/how-tos/how-to-write-a-view-model.html content/reference/services/scratchpad.html

Author: buildbot
Date: Tue Feb 11 00:32:52 2014
New Revision: 897317

Log:
Staging update by buildbot for isis

Removed:
    websites/staging/isis/trunk/content/how-tos/how-to-write-a-view-model.html
Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/reference/services/scratchpad.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Feb 11 00:32:52 2014
@@ -1 +1 @@
-1566897
+1566901

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Feb 11 00:32:52 2014
@@ -1 +1 @@
-1566897
+1566901

Modified: websites/staging/isis/trunk/content/reference/services/scratchpad.html
==============================================================================
--- websites/staging/isis/trunk/content/reference/services/scratchpad.html (original)
+++ websites/staging/isis/trunk/content/reference/services/scratchpad.html Tue Feb 11 00:32:52 2014
@@ -277,7 +277,7 @@
 </h1>
 </div>
 
-<p>The <code>Scratchpad</code> service is a <a href="../../applib-guide/domain-services/how-to-09-020-How-to-write-a-typical-domain-service.html">request-scoped</a> service to allow objects to exchange information even if they do not directly call each other.</p>
+<p>The <code>Scratchpad</code> service is a <a href="../../more-advanced-topics/how-to-09-020-How-to-write-a-typical-domain-service.html">request-scoped</a> service to allow objects to exchange information even if they do not directly call each other.</p>
 
 <h3>API &amp; Implementation</h3>
 
@@ -301,9 +301,9 @@ public class Scratchpad {
 
 <h3>Usage</h3>
 
-<p>The most common use-case is for <a href="../../applib-guide/reference/recognized-annotations/Bulk.html">Bulk</a> actions that <a href="../../applib-guide/how-tos/how-to-01-065-How-to-add-an-action-to-be-called-on-every-object-in-a-list.html">act upon multiple objects in a list</a>.  The (same) <code>Scratchpad</code> service is injected into each of these objects, and they can use pass information.</p>
+<p>The most common use-case is for <a href="../recognized-annotations/Bulk.html">Bulk</a> actions that <a href="../../how-tos/how-to-01-065-How-to-add-an-action-to-be-called-on-every-object-in-a-list.html">act upon multiple objects in a list</a>.  The (same) <code>Scratchpad</code> service is injected into each of these objects, and they can use pass information.</p>
 
-<p>For example, the <a href="../../getting-started/quickstart-archetype.html">ToDo app</a> demonstrates how the <code>Scratchpad</code> service can be used to calculate the total cost of the selected <code>ToDoItem</code>s:</p>
+<p>For example, the <a href="../../intro/getting-started/quickstart-archetype.html">ToDo app</a> demonstrates how the <code>Scratchpad</code> service can be used to calculate the total cost of the selected <code>ToDoItem</code>s:</p>
 
 <pre><code>@ActionSemantics(Of.SAFE)
 @Bulk(AppliesTo.BULK_ONLY)
@@ -322,7 +322,7 @@ public void injectScratchpad(Scratchpad 
 }
 </code></pre>
 
-<p>A more complex example could use a <a href="../../applib-guide/how-tos/how-to-write-a-view-model.html">view model</a> to enable bulk updates to a set of objects.  The view model's job is to keep track of the items to be updated:</p>
+<p>A more complex example could use a <a href="../../more-advanced-topics/ViewModel.html">view model</a> to enable bulk updates to a set of objects.  The view model's job is to keep track of the items to be updated:</p>
 
 <pre><code>public class ToDoItemUpdateBulkUpdate extends AbstractViewModel { 
     ...
@@ -371,7 +371,7 @@ public void injectScratchpad(Scratchpad 
 
 <h3>Related Services</h3>
 
-<p>The <a href="./bulk-interaction.html">Bulk.Interaction</a> service allows <a href="../../applib-guide/reference/recognized-annotations/Bulk.html">@Bulk</a> actions to co-ordinate with each other.</p>
+<p>The <a href="./bulk-interaction.html">Bulk.Interaction</a> service allows <a href="../recognized-annotations/Bulk.html">@Bulk</a> actions to co-ordinate with each other.</p>
 
 <p>The <a href="./query-results-cache.html">QueryResultsCache</a> is useful for caching the results of expensive method calls.</p>