svn commit: r596821 - /ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r596821 - /ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java

adrianc
Author: adrianc
Date: Tue Nov 20 12:52:05 2007
New Revision: 596821

URL: http://svn.apache.org/viewvc?rev=596821&view=rev
Log:
Updated the Webtools services to use the new description methods in the entity classes (Revision 596815). The Entity Reference page now contains much more documentation.

Modified:
    ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java

Modified: ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java?rev=596821&r1=596820&r2=596821&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java (original)
+++ ofbiz/trunk/framework/webtools/src/org/ofbiz/webtools/WebToolsServices.java Tue Nov 20 12:52:05 2007
@@ -697,7 +697,7 @@
                                 keysList.add(keysMap);
                             }
                             relationMap.put("title", relation.getTitle());
-                            //relationMap.put("description", relation.getDescription());
+                            relationMap.put("description", relation.getDescription());
                             relationMap.put("relEntity", relation.getRelEntityName());
                             relationMap.put("fkName", relation.getFkName());
                             relationMap.put("type", relation.getType());
@@ -718,7 +718,7 @@
                             
                             Map indexMap = new HashMap();
                             indexMap.put("name", index.getName());
-                            //indexMap.put("description", index.getDescription());
+                            indexMap.put("description", index.getDescription());
                             indexMap.put("fieldNameList", fieldNameList);
                             indexList.add(indexMap);
                         }
@@ -729,7 +729,7 @@
                         entityMap.put("plainTableName", entity.getPlainTableName());
                         entityMap.put("title", entity.getTitle());
                         entityMap.put("description", entity.getDescription());
-                        //entityMap.put("location", entity.getLocation());
+                        entityMap.put("location", entity.getLocation());
                         entityMap.put("javaNameList", javaNameList);
                         entityMap.put("relationsList", relationsList);
                         entityMap.put("indexList", indexList);