[jboss-svn-commits] JBL Code SVN: r16599 - in labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views: myforums and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Nov 14 11:44:59 EST 2007


Author: unibrew
Date: 2007-11-14 11:44:59 -0500 (Wed, 14 Nov 2007)
New Revision: 16599

Modified:
   labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/admin/index.xhtml
   labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/myforums/myforums_editforums.xhtml
Log:
[JBFORUMS] I removed f:subView tags as they are not supported in libs that are available for this deployment.

Modified: labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/admin/index.xhtml
===================================================================
--- labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/admin/index.xhtml	2007-11-14 16:44:04 UTC (rev 16598)
+++ labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/admin/index.xhtml	2007-11-14 16:44:59 UTC (rev 16599)
@@ -69,8 +69,6 @@
         <c:forEach items="#{adminPanel.categories}" var="category" varStatus="categoryIdx" >
         <forums:isAllowed fragment="acl://viewCategory" contextData="#{category}">
         
-        <f:subview>
-        
         <c:choose>
         
             <c:when test="${ ( (adminController.editCategoryMode or forums:message('form:Category') ne null) 
@@ -202,15 +200,11 @@
             </c:otherwise>
             
         </c:choose>
-
-        </f:subview>
         
         <!-- display the forums in this category -->
         <c:forEach items="#{category.forums}" var="forum" varStatus="forumIdx" >
         <forums:isAllowed fragment="acl://viewForum" contextData="#{forum}">
         
-        <f:subview>
-        
         <c:choose>
         
             <c:when test="${( (adminController.editForumMode or forums:message('forumForm:Forum') ne null)
@@ -355,8 +349,6 @@
             
         </c:choose>
         
-        </f:subview>
-        
         </forums:isAllowed>
         </c:forEach>
         

Modified: labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/myforums/myforums_editforums.xhtml
===================================================================
--- labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/myforums/myforums_editforums.xhtml	2007-11-14 16:44:04 UTC (rev 16598)
+++ labs/jbossforums/branches/forums101P22/forums/src/resources/portal-forums-war/views/myforums/myforums_editforums.xhtml	2007-11-14 16:44:59 UTC (rev 16599)
@@ -53,14 +53,10 @@
     <c:if test="${forums:collectionSize(myForumsEdit.watchedForums) gt 0}">
     <c:forEach items="#{myForumsEdit.watchedForums}" var="forumrow" varStatus="status" >
     
-    <f:subview>
-    
     <c:choose>
     
         <c:when test="${forumWatch.selectedForum ne forumrow.id || forumWatch.editMode eq false}">
         
-        <f:subview>
-        
         <tr>
             <td class="forumlisticon">
             <img src="#{myForumsEdit.forumImages[forumrow.id]}" width="11" height="14"
@@ -168,13 +164,10 @@
             </td>
         </tr>
         
-        </f:subview>
-
         </c:when>
         
         <c:otherwise>
-
-        <f:subview>
+        
         <tr class="editRow">
             <td class="forumlisticon">
                 <img src="#{myForumsEdit.forumImages[forumrow.id]}" width="11" height="14"
@@ -242,14 +235,11 @@
                 </div>
             </td>
         </tr>
-        </f:subview>
-
+        
         </c:otherwise>
     
     </c:choose>
-
-    </f:subview>
-
+    
     </c:forEach>
     </c:if>
     




More information about the jboss-svn-commits mailing list