[gatein-commits] gatein SVN: r1562 - in portal/trunk: component/portal/src/main/java/org/exoplatform/portal/pom/data and 25 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Mon Feb 8 14:55:00 EST 2010


Author: julien_viet
Date: 2010-02-08 14:54:59 -0500 (Mon, 08 Feb 2010)
New Revision: 1562

Modified:
   portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java
   portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java
   portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/NavigationData.java
   portal/trunk/component/portal/src/main/resources/binding.xml
   portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestLoadedPOM.java
   portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestSavedPOM.java
   portal/trunk/component/portal/src/test/resources/portal/group/platform/guests/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/group/platform/test/legacy/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/group/platform/test/normalized/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/group/platform/users/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/portal/template/test/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/portal/test/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/user/demo/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/user/john/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/user/mary/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/user/root/navigation.xml
   portal/trunk/component/portal/src/test/resources/portal/user/template/user/navigation.xml
   portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/users/navigation.xml
   portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/root/navigation.xml
   portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/users/navigation.xml
   portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/root/navigation.xml
   portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIGroupNavigationManagement.java
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/guests/navigation.xml
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/users/navigation.xml
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/demo/navigation.xml
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/john/navigation.xml
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/marry/navigation.xml
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/navigation.xml
   portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/user/navigation.xml
Log:
remove description from node navigation as it's not really implemented and used and useful



Modified: portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java
===================================================================
--- portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/main/java/org/exoplatform/portal/config/model/PageNavigation.java	2010-02-08 19:54:59 UTC (rev 1562)
@@ -34,8 +34,6 @@
 
    private String ownerId;
 
-   private String description;
-
    private transient boolean modifiable;
 
    private String creator;
@@ -73,7 +71,6 @@
       //
       this.ownerType = nav.getOwnerType();
       this.ownerId = nav.getOwnerId();
-      this.description = nav.getDescription();
       this.creator = nav.getCreator();
       this.modifier = nav.getModifier();
       this.priority = nav.getPriority();
@@ -115,16 +112,6 @@
       modifiable = b;
    }
 
-   public void setDescription(String des)
-   {
-      description = des;
-   }
-
-   public String getDescription()
-   {
-      return description;
-   }
-
    public int getPriority()
    {
       return priority;
@@ -219,8 +206,6 @@
          setPriority(nav.priority);
       if (!modifiable)
          setModifiable(nav.modifiable);
-      if (description == null)
-         setDescription(nav.description);
       if (creator == null)
          setCreator(nav.creator);
       if (modifier == null)
@@ -260,6 +245,6 @@
    public NavigationData build()
    {
       List<NavigationNodeData> children = buildNavigationChildren();
-      return new NavigationData(storageId, ownerType, ownerId, description, creator, modifier, priority, children);
+      return new NavigationData(storageId, ownerType, ownerId, creator, modifier, priority, children);
    }
 }
\ No newline at end of file

Modified: portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java
===================================================================
--- portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/Mapper.java	2010-02-08 19:54:59 UTC (rev 1562)
@@ -25,7 +25,6 @@
 import org.exoplatform.portal.config.model.ApplicationType;
 import org.exoplatform.portal.config.model.CloneApplicationState;
 import org.exoplatform.portal.mop.ProtectedResource;
-import org.exoplatform.portal.pom.data.ModelChange;
 import org.exoplatform.portal.config.model.PersistentApplicationState;
 import org.exoplatform.portal.config.model.PortalConfig;
 import org.exoplatform.portal.config.model.TransientApplicationState;
@@ -61,7 +60,6 @@
 import java.util.Set;
 import java.util.UUID;
 
-import static org.exoplatform.portal.pom.config.Utils.join;
 import static org.exoplatform.portal.pom.config.Utils.split;
 
 /**
@@ -137,7 +135,6 @@
             src.getObjectId(),
             ownerType,
             ownerId,
-            attrs.getValue(MappedAttributes.DESCRIPTION),
             attrs.getValue(MappedAttributes.CREATOR),
             attrs.getValue(MappedAttributes.MODIFIER),
             attrs.getValue(MappedAttributes.PRIORITY, 1),
@@ -226,7 +223,6 @@
          attrs.setValue(MappedAttributes.PRIORITY, pageNav.getPriority());
          attrs.setValue(MappedAttributes.CREATOR, pageNav.getCreator());
          attrs.setValue(MappedAttributes.MODIFIER, pageNav.getModifier());
-         attrs.setValue(MappedAttributes.DESCRIPTION, pageNav.getDescription());
       }
       else
       {

Modified: portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/NavigationData.java
===================================================================
--- portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/NavigationData.java	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/main/java/org/exoplatform/portal/pom/data/NavigationData.java	2010-02-08 19:54:59 UTC (rev 1562)
@@ -31,9 +31,6 @@
    private final NavigationKey key;
 
    /** . */
-   private final String description;
-
-   /** . */
    private final String creator;
 
    /** . */
@@ -45,20 +42,18 @@
    public NavigationData(
       String ownerType,
       String ownerId,
-      String description,
       String creator,
       String modifier,
       Integer priority,
       List<NavigationNodeData> children)
    {
-      this(null, ownerType, ownerId, description, creator, modifier, priority, children);
+      this(null, ownerType, ownerId, creator, modifier, priority, children);
    }
 
    public NavigationData(
       String storageId,
       String ownerType,
       String ownerId,
-      String description,
       String creator,
       String modifier,
       Integer priority,
@@ -78,7 +73,6 @@
 
       //
       this.key = new NavigationKey(ownerType, ownerId);
-      this.description = description;
       this.creator = creator;
       this.modifier = modifier;
       this.priority = priority != null ? priority : 1;
@@ -99,11 +93,6 @@
       return key.getId();
    }
 
-   public String getDescription()
-   {
-      return description;
-   }
-
    public String getCreator()
    {
       return creator;

Modified: portal/trunk/component/portal/src/main/resources/binding.xml
===================================================================
--- portal/trunk/component/portal/src/main/resources/binding.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/main/resources/binding.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -189,7 +189,6 @@
     <value name="priority" field="priority" usage="optional"/>
     <value name="creator" field="creator" usage="optional"/>
     <value name="modifier" field="modifier" usage="optional"/>
-    <value name="description" field="description" usage="optional"/>
     <collection name="page-nodes" field="pageNodes" usage="optional"
                 item-type="org.exoplatform.portal.config.model.PageNode"/>
   </mapping>

Modified: portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestLoadedPOM.java
===================================================================
--- portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestLoadedPOM.java	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestLoadedPOM.java	2010-02-08 19:54:59 UTC (rev 1562)
@@ -131,7 +131,6 @@
       assertEquals(1, nav.getPriority());
       assertEquals("navigation_creator", nav.getCreator());
       assertEquals("navigation_modifier", nav.getModifier());
-      assertEquals("navigation_description", nav.getDescription());
 
       //
       assertEquals(2, nav.getNodes().size());

Modified: portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestSavedPOM.java
===================================================================
--- portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestSavedPOM.java	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/java/org/exoplatform/portal/config/TestSavedPOM.java	2010-02-08 19:54:59 UTC (rev 1562)
@@ -96,7 +96,6 @@
       assertEquals(1, (int)defaultAttrs.getInteger("priority"));
       assertEquals("navigation_creator", defaultAttrs.getString("creator"));
       assertEquals("navigation_modifier", defaultAttrs.getString("modifier"));
-      assertEquals("navigation_description", defaultAttrs.getString("description"));
 
       //
       Collection<? extends Navigation> childrenNavigations = defaultNav.getChildren();

Modified: portal/trunk/component/portal/src/test/resources/portal/group/platform/guests/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/group/platform/guests/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/group/platform/guests/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>group</owner-type>  
 	<owner-id>platform/guests</owner-id>
 	<priority>9</priority>
-  <description>description for node navigation </description>
   
   <page-nodes>  		  	  
 	  <node>

Modified: portal/trunk/component/portal/src/test/resources/portal/group/platform/test/legacy/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/group/platform/test/legacy/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/group/platform/test/legacy/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>group</owner-type>  
 	<owner-id>platform/test/legacy</owner-id>
 	<priority>9</priority>
-  <description>description for node navigation </description>
   
   <page-nodes>  		  	  
 	  <node>

Modified: portal/trunk/component/portal/src/test/resources/portal/group/platform/test/normalized/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/group/platform/test/normalized/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/group/platform/test/normalized/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>group</owner-type>  
 	<owner-id>/platform/test/normalized</owner-id>
 	<priority>9</priority>
-  <description>description for node navigation </description>
   
   <page-nodes>  		  	  
 	  <node>

Modified: portal/trunk/component/portal/src/test/resources/portal/group/platform/users/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/group/platform/users/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/group/platform/users/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>group</owner-type>  
 	<owner-id>/platform/users</owner-id>
 	<priority>8</priority>
-  <description>description for node navigation </description>
     
   <page-nodes>
     <node>

Modified: portal/trunk/component/portal/src/test/resources/portal/portal/template/test/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/portal/template/test/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/portal/template/test/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -26,7 +26,6 @@
   <priority>1</priority>
   <creator>creator</creator>
   <modifier>modifier</modifier>
-  <description>description</description>
 
   <page-nodes>
     <node>

Modified: portal/trunk/component/portal/src/test/resources/portal/portal/test/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/portal/test/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/portal/test/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -26,7 +26,6 @@
   <priority>1</priority>
   <creator>navigation_creator</creator>
   <modifier>navigation_modifier</modifier>
-  <description>navigation_description</description>
 
   <page-nodes>
 	  <node>

Modified: portal/trunk/component/portal/src/test/resources/portal/user/demo/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/user/demo/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/user/demo/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>user</owner-type>  
 	<owner-id>demo</owner-id>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/component/portal/src/test/resources/portal/user/john/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/user/john/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/user/john/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>user</owner-type>  
 	<owner-id>john</owner-id>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/component/portal/src/test/resources/portal/user/mary/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/user/mary/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/user/mary/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>user</owner-type>  
 	<owner-id>mary</owner-id>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/component/portal/src/test/resources/portal/user/root/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/user/root/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/user/root/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>user</owner-type>  
 	<owner-id>root</owner-id>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/component/portal/src/test/resources/portal/user/template/user/navigation.xml
===================================================================
--- portal/trunk/component/portal/src/test/resources/portal/user/template/user/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/component/portal/src/test/resources/portal/user/template/user/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
   <owner-type>user</owner-type>  
 	<owner-id>@owner@</owner-id>
 	<priority>3</priority>
-  <description>description for node navigation </description>
-  
+
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/users/navigation.xml
===================================================================
--- portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/users/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/group/platform/users/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,8 +24,7 @@
   <owner-type>group</owner-type>  
 	<owner-id>/platform/users</owner-id>
 	<priority>8</priority>
-  <description>description for node navigation </description>
-    
+
   <page-nodes>	  
 	  <node>
 	    <uri>sample-group</uri>

Modified: portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/root/navigation.xml
===================================================================
--- portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/root/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/examples/extension/war/src/main/webapp/WEB-INF/conf/sample-ext/portal/user/root/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
 	<owner-type>user</owner-type>
 	<owner-id>root</owner-id>
 	<priority>3</priority>
-	<description>description for node navigation </description>
 
 	<page-nodes>
 		<node>

Modified: portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/users/navigation.xml
===================================================================
--- portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/users/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/group/platform/users/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,8 +24,7 @@
   <owner-type>group</owner-type>  
 	<owner-id>/platform/users</owner-id>
 	<priority>8</priority>
-  <description>description for node navigation </description>
-    
+
   <page-nodes>	  
 	  <node>
 	    <uri>sample-group</uri>

Modified: portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/root/navigation.xml
===================================================================
--- portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/root/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/examples/portal/war/src/main/webapp/WEB-INF/conf/sample-portal/portal/user/root/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -24,7 +24,6 @@
 	<owner-type>user</owner-type>
 	<owner-id>root</owner-id>
 	<priority>3</priority>
-	<description>description for node navigation </description>
 
 	<page-nodes>
 		<node>

Modified: portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIGroupNavigationManagement.java
===================================================================
--- portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIGroupNavigationManagement.java	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/portlet/exoadmin/src/main/java/org/exoplatform/navigation/webui/component/UIGroupNavigationManagement.java	2010-02-08 19:54:59 UTC (rev 1562)
@@ -239,7 +239,6 @@
          UIPageNavigationForm pageNavigation = popUp.createUIComponent(UIPageNavigationForm.class, null, null, popUp);
          pageNavigation.setOwnerId(navigation.getOwnerId());
          pageNavigation.setOwnerType(navigation.getOwnerType());
-         pageNavigation.setDescription(navigation.getDescription());
          pageNavigation.setPriority(String.valueOf(navigation.getPriority()));
          pageNavigation.addFormInput();
          pageNavigation.setPageNav(navigation);

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/guests/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/guests/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/guests/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>9</priority>
-  <description>description for node navigation </description>
   
   <page-nodes> 
   	<!-- 

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/users/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/users/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/group/platform/users/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>8</priority>
-  <description>description for node navigation </description>
     
   <page-nodes>
 	  <node>

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/demo/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/demo/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/demo/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/john/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/john/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/john/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/marry/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/marry/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/marry/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes />
 </node-navigation>

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/root/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>3</priority>
-  <description>description for node navigation </description>
   
   <page-nodes>
   <!--

Modified: portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/user/navigation.xml
===================================================================
--- portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/user/navigation.xml	2010-02-08 19:08:52 UTC (rev 1561)
+++ portal/trunk/web/portal/src/main/webapp/WEB-INF/conf/portal/user/template/user/navigation.xml	2010-02-08 19:54:59 UTC (rev 1562)
@@ -22,7 +22,6 @@
 
 <node-navigation>
 	<priority>3</priority>
-  <description>description for node navigation </description>
 
   <page-nodes>
   </page-nodes>



More information about the gatein-commits mailing list