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 2013/11/14 11:20:21 UTC

svn commit: r886607 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/documentation.html content/learning-more/common-use-cases.html

Author: buildbot
Date: Thu Nov 14 10:20:20 2013
New Revision: 886607

Log:
Staging update by buildbot for isis

Modified:
    websites/staging/isis/trunk/cgi-bin/   (props changed)
    websites/staging/isis/trunk/content/   (props changed)
    websites/staging/isis/trunk/content/documentation.html
    websites/staging/isis/trunk/content/learning-more/common-use-cases.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Nov 14 10:20:20 2013
@@ -1 +1 @@
-1541867
+1541868

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Nov 14 10:20:20 2013
@@ -1 +1 @@
-1541867
+1541868

Modified: websites/staging/isis/trunk/content/documentation.html
==============================================================================
--- websites/staging/isis/trunk/content/documentation.html (original)
+++ websites/staging/isis/trunk/content/documentation.html Thu Nov 14 10:20:20 2013
@@ -279,7 +279,7 @@
 <li><a href="learning-more/common-use-cases.html">Common Use Cases</a></li>
 </ul>
 
-<h3>Getting Statred</h3>
+<h3>Getting Started</h3>
 
 <ul>
 <li><strong><a href="getting-started/simple-archetype.html">Simple Archetype</a> (<a href="getting-started/release-notes/about.html">1.3.1</a>)</strong></li>
@@ -289,7 +289,10 @@
 <h3>Tutorials and Screencasts</h3>
 
 <ul>
-<li><a href="getting-started/screenshots.html">RRRADD!!! Github tutorial</a></li>
+<li><a href="https://github.com/danhaywood/rrraddd-isis-131">RRRADD!!! - 3 domain class tutorial</a>
+<ul>
+<li>a github project, with a tag for each of 22 steps</li>
+</ul></li>
 <li><a href="getting-started/screencasts.html">Screencasts</a></li>
 </ul>
 

Modified: websites/staging/isis/trunk/content/learning-more/common-use-cases.html
==============================================================================
--- websites/staging/isis/trunk/content/learning-more/common-use-cases.html (original)
+++ websites/staging/isis/trunk/content/learning-more/common-use-cases.html Thu Nov 14 10:20:20 2013
@@ -288,14 +288,18 @@
 
 <p>One of the original motivations for Isis itself was to be able automatically generate a user interface for a domain object model.</p>
 
-<p>Isis provides two alternative user interface webapps:</p>
+<p>Isis' has a pluggable architecture allowing different user interface technologies.  The principal implementation (as configured by the <a href="../getting-started/simple-archetype.html">simple</a> and <a href="../getting-started/quickstart-archetype.html">quickstart</a> archetypes) is the <a href="../components/viewers/wicket/about.html">Wicket viewer</a>.  This provides an appealing default user interface, with the ability to customize the user interface by writing new <a href="http://wicket.apache.org">Apache Wicket</a> components.  Some third-party components can be found on github, integrating the Wicket viewer with <a href="https://github.com/danhaywood/isis-wicket-gmap3">google maps</a>, <a href="github.com/danhaywood/isis-wicket-fullcalendar2">a full calendar</a>, <a href="https://github.com/danhaywood/isis-wicket-wickedcharts">a charting library</a> and a <a href="https://github.com/danhaywood/isis-wicket-excel">export to Excel</a> component.</p>
+
+<p>Another viewer (though as yet unreleased) is the <a href="../components/viewers/scimpi/about.html">Scimpi viewer</a> (not yet released) provides a JSF-like taglib approach for building web pages.  All domain objects have a default representation, but can be customized on a per-type basis.</p>
+
+<p>It is also possible to write your own viewers:</p>
 
 <ul>
-<li>the <a href="../components/viewers/wicket/about.html">Wicket viewer</a> provides an appealing default user interface, with the ability to customize the user interface by writing new <a href="http://wicket.apache.org">Apache Wicket</a> components</li>
-<li>the <a href="../components/viewers/scimpi/about.html">Scimpi viewer</a> provides a JSF-like taglib approach for building web pages.  All domain objects have a default representation, but can be customized on a per-type basis.</li>
+<li>One of Isis' committers has developed a viewer based on <a href="">DHTMLX</a>, also available on <a href="https://github.com/madytyoo/dhtmlx-isis-viewer">github</a>.  An online demo can be found <a href="isis-viewer-dhtmlx.appspot.com">here</a>.</li>
+<li>Another of Isis' committers has a (closed source) viewer based on <a href="http://www.wavemaker.com/">Wavemaker</a>.</li>
 </ul>
 
-<p>Deploying on Isis means that the framework also manages object persistence.  Several object stores are provided, the main alternatives are the <a href="../components/objectstores/jdo/about.html">JDO objectstore</a> and the <a href="../components/objectstores/nosql/about.html">NoSQL objectstore</a>.</p>
+<p>Deploying on Isis means that the framework also manages object persistence.  Again this is pluggable, but the principal implementation is the <a href="../components/objectstores/jdo/about.html">JDO objectstore</a>.  Because JDO supports both SQL and NoSQL databases, you can then deploy on a variety of platforms, including the <a href="https://developers.google.com/appengine/">Google App Engine (GAE)</a>.</p>
 
 <h3>Deploy on Isis as a RESTful web service</h3>