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 2014/10/14 08:14:42 UTC

svn commit: r1631632 - in /isis/site/trunk/content: documentation.md reference/services/developer-utilities-service.md reference/services/settings-services.md

Author: danhaywood
Date: Tue Oct 14 06:14:41 2014
New Revision: 1631632

URL: http://svn.apache.org/r1631632
Log:
isis addon modules and screencasts

Modified:
    isis/site/trunk/content/documentation.md
    isis/site/trunk/content/reference/services/developer-utilities-service.md
    isis/site/trunk/content/reference/services/settings-services.md

Modified: isis/site/trunk/content/documentation.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/documentation.md?rev=1631632&r1=1631631&r2=1631632&view=diff
==============================================================================
--- isis/site/trunk/content/documentation.md (original)
+++ isis/site/trunk/content/documentation.md Tue Oct 14 06:14:41 2014
@@ -330,15 +330,11 @@ summarized [here](./reference/services.h
 
 #### <a name="isis-module-command">Command Service (persistence)</a>
 
-Profiling, extended auditing.
-
 * [API](./reference/services/command-service.html) <a href="./reference/services/command-context.html#screencast"><img src="./images/tv_show-25.png"></a> 
 * [Isis addons implementation](http://github.com/isisaddons/isis-module-command)  <a href="./intro/tutorials/screencasts.html"><img src="./images/tv_show-25.png"></a>
 
 #### <a name="isis-module-command">Background Command Service</a>
 
-Background/async execution
-
 * [API](./reference/services/background-command-service.html)
 * [Background Execution](./reference/non-ui/background-command-execution.html)
 * [Isis addons implementation](http://github.com/isisaddons/isis-module-command) (for both)
@@ -362,23 +358,13 @@ Background/async execution
 
 {col-md-4
 
-#### <a name="isis-module-settings">Settings Service</a>
-
-* [API](./reference/services/settings-services.html)
-* [Isis addons implementation](http://github.com/isisaddons/isis-module-settings) 
-
-#### <a name="isis-module-devutils">Developer Utilities</a>
-
-* [API](./reference/services/developer-utilities-service.html)
-* [Isis addons implementation](http://github.com/isisaddons/isis-module-devutils) 
-
 #### <a name="modules-isisaddons">Other Isis Addons</a>
 
-Hosted at [isisaddons.org](http://www.isisaddons.org).
-
+* [Developer Utilities](http://github.com/isisaddons/isis-module-devutils) 
 * [Docx Mail merge](http://github.com/isisaddons/isis-module-docx)
 * [Excel download/upload](http://github.com/isisaddons/isis-module-excel) <a href="./intro/tutorials/screencasts.html"><img src="./images/tv_show-25.png"></a>
 * [Security](http://github.com/isisaddons//isis-module-security) <a href="./intro/tutorials/screencasts.html"><img src="./images/tv_show-25.png"></a>
+* [Settings](http://github.com/isisaddons/isis-module-settings) 
 * [String interpolator](http://github.com/isisaddons//isis-module-stringinterpolator)
 * [Tags](http://github.com/isisaddons/isis-module-tags)
 

Modified: isis/site/trunk/content/reference/services/developer-utilities-service.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/reference/services/developer-utilities-service.md?rev=1631632&r1=1631631&r2=1631632&view=diff
==============================================================================
--- isis/site/trunk/content/reference/services/developer-utilities-service.md (original)
+++ isis/site/trunk/content/reference/services/developer-utilities-service.md Tue Oct 14 06:14:41 2014
@@ -1,5 +1,9 @@
 Title: Developer Utilities Service
 
+{note
+In 1.6.0 this implementation was released as part of *org.apache.isis.core:isis-module-devutils-jdo:1.6.0* and was also released as an [Isis addon](http://github.com/isisaddons/isis-module-devutils) module.  **In 1.7.0+ only the [Isis addon](http://github.com/isisaddons/isis-module-devutils) implementation is released.**
+}
+
 The `DeveloperUtilitiesService` service provides a number of development-time utilities, mostly related to accessing/interacting with the Isis metamodel.  These are visible in the UI, either as menu actions or as contributed actions.  All actions are annotated with [@Prototype](../recognized-annotations/Prototype.html), so are suppressed in [production mode](../deployment-type.html).
 
 

Modified: isis/site/trunk/content/reference/services/settings-services.md
URL: http://svn.apache.org/viewvc/isis/site/trunk/content/reference/services/settings-services.md?rev=1631632&r1=1631631&r2=1631632&view=diff
==============================================================================
--- isis/site/trunk/content/reference/services/settings-services.md (original)
+++ isis/site/trunk/content/reference/services/settings-services.md Tue Oct 14 06:14:41 2014
@@ -1,5 +1,9 @@
 Title: Settings Services
 
+{note
+In 1.6.0 this implementation was released as part of *org.apache.isis.core:isis-module-settings-jdo:1.6.0* and was also released as an [Isis addon](http://github.com/isisaddons/isis-module-settings) module.  **In 1.7.0+ only the [Isis addon](http://github.com/isisaddons/isis-module-settings) implementation is released.**
+}
+
 The `ApplicationSettingsService` and the `UserSettingsService` are two similar services that provide the ability to store either configuration settings.  With `ApplicationSettingsService` these settings have global scope; for the `UserSettingsService` the settings are stored per user.
 
 The core applib defines only interfaces and some convenience abstract classes.  The JDO objectstore provides an [implementation](../../components/objectstores/jdo/services/settings-services-jdo.html), alternatively you could write your own implementation.