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/01/19 22:42:55 UTC

svn commit: r847326 - in /websites/staging/isis/trunk: cgi-bin/ content/ content/getting-started/screenshots.html

Author: buildbot
Date: Sat Jan 19 21:42:54 2013
New Revision: 847326

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/getting-started/screenshots.html

Propchange: websites/staging/isis/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Jan 19 21:42:54 2013
@@ -1 +1 @@
-1435713
+1435716

Propchange: websites/staging/isis/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Jan 19 21:42:54 2013
@@ -1 +1 @@
-1435713
+1435716

Modified: websites/staging/isis/trunk/content/getting-started/screenshots.html
==============================================================================
--- websites/staging/isis/trunk/content/getting-started/screenshots.html (original)
+++ websites/staging/isis/trunk/content/getting-started/screenshots.html Sat Jan 19 21:42:54 2013
@@ -303,25 +303,34 @@ public class ToDoItem {
     </td>
   </tr>
   <tr>
-    <td>Entity detail pages<br/><br/><i>The Wicket viewer shows an icon and title for the entity top left; (scalar) properties are displayed underneath , and (vector) collections on the right.  This is all inferred form the domain class's structure:</i><pre>
+    <td>Entity detail pages<br/><br/><i>The Wicket viewer builds the UI from the domain class's structure.  It shows an icon and title for the entity top left:</i>
+    <pre>
 public class ToDoItem {
     public String title() {
-        final TitleBuffer buf = new TitleBuffer();
+        final TitleBuffer buf = 
+            new TitleBuffer();
         buf.append(getDescription());
         if (isComplete()) {
             buf.append(" - Completed!");
         } else {
             if (getDueBy() != null) {
-                buf.append(" due by ", getDueBy());
+                buf.append(" due by ", 
+                           getDueBy());
             }
         }
         return buf.toString();
     }
+    ... </pre>
+    <i>...(scalar) properties are displayed underneath:</i><pre>
     ...
-    @RegEx(validation = "\w[@&amp;:\-\,\.\+ \w]*")
+    @RegEx(validation = 
+      "\w[@&amp;:\-\,\.\+ \w]*")
     @MemberOrder(sequence = "1")
     public String getDescription() { ... }
-    public void setDescription(String description) { ... }
+    public void setDescription(
+            String description) { ... }
+    ...
+</pre><i>... and (vector) collections on the right:</i><pre>
     ...
     @Disabled
     @MemberOrder(sequence = "1")
@@ -329,13 +338,12 @@ public class ToDoItem {
     public List<ToDoItem> getDependencies() { ... }
     public void setDependencies(List<ToDoItem>) { ... }
     ...
-</div>
-</pre></i><br/><i>Actions are shown top right, and near to collections:</i><pre>
-public class ToDoItem {
+</pre></i><br/><i>... and actions are shown top right:</i><pre>
     ...
     @Named("Clone")
     @MemberOrder(sequence = "3")
     public ToDoItem duplicate() { ... }
+    ...
 </div>
 </pre></td>
     <td>
@@ -367,20 +375,23 @@ public class ToDoItem {
     strategy=VersionStrategy.VERSION_NUMBER, 
     column="VERSION")
 ...
-public class ToDoItem implements Comparable<ToDoItem> {
+public class ToDoItem {
     ...
     @Hidden(where=Where.ALL_TABLES)
     @Disabled
-    @MemberOrder(name="Detail", sequence = "99")
+    @MemberOrder(name="Detail", 
+                 sequence = "99")
     @Named("Version")
     public Long getVersionSequence() {
-        if(!(this instanceof PersistenceCapable)) {
+        if(!(this instanceof 
+               PersistenceCapable)) {
             return null;
         } 
-        PersistenceCapable persistenceCapable = 
+        PersistenceCapable pc = 
             (PersistenceCapable) this;
         final Long version = 
-            (Long) JDOHelper.getVersion(persistenceCapable);
+            (Long) JDOHelper.
+                   getVersion(pc);
         return version;
     }
     ...