You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by ta...@apache.org on 2009/09/02 02:43:13 UTC

svn commit: r810322 [2/10] - in /portals/jetspeed-2/portal/attic/decorators: layout/ layout/blueocean/ layout/blueocean/css/ layout/blueocean/images/ layout/blueocean/images/desktop/ layout/blueocean/images/desktop/loading/ layout/blueocean/images/desk...

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator-macros.vm
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator-macros.vm?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator-macros.vm (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator-macros.vm Wed Sep  2 00:42:59 2009
@@ -0,0 +1,245 @@
+#*
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+*#
+#* define navigation constants *#
+#macro (defineNavigationConstants)
+  #set($LEFT_TO_RIGHT = "LeftToRight")
+  #set($RIGHT_TO_LEFT = "RightToLeft")
+  #set($TOP_TO_BOTTOM = "TopToBottom")
+  #set($BOTTOM_TO_TOP = "BottomToTop")
+  #set($TITLE_FIRST = "TitleFirst")
+  #set($TITLE_LAST = "TitleLast")
+  #set($BREADCRUMBS_STYLE = "BreadcrumbsStyle")
+#end
+
+#* include tabs navigation component *#
+#macro (includeTabsNavigation $_menu $_orientation)
+        <table border="0" cellpadding="0" cellspacing="0">
+          <tr>
+    #foreach($element in $_menu.elements.iterator())
+      #if($element.elementType == "option")
+        #set($tabTitle = $element.getTitle($preferedLocale))
+        #set($tabName = $element.getShortTitle($preferedLocale))
+        #if($_orientation == $LEFT_TO_RIGHT)
+          #if($element.isSelected($site))
+            <td class="LTabLeft" nowrap="true">&nbsp;</td>
+            <td class="LTab" align="center" valign="middle" nowrap="true" title="$!tabTitle">${tabName}</td>
+            <td class="LTabRight"  nowrap="true">&nbsp;</td>
+          #else
+            #set($tabUrl = $jetspeed.getAbsoluteUrl($element.url))
+            <td class="LTabLeftLow"  nowrap="true">&nbsp;</td>
+            <td class="LTabLow" align="center" valign="middle" nowrap="true" title="$!tabTitle"><a href="$tabUrl">${tabName}</a></td>
+            <td class="LTabRightLow"  nowrap="true">&nbsp;</td>
+          #end
+        #end
+      #end
+    #end
+          </tr>
+        </table>
+#end
+
+#* include links navigation component *#
+#macro (includeLinksNavigation $_menu $_orientation $_title $_style $_delimiter)
+  #set($__delimiter = $_delimiter)
+  #if(!$_delimiter || $_delimiter == "")
+    #if($_style != $BREADCRUMBS_STYLE)
+      #set($__delimiter = "&nbsp;")
+    #else
+      #set($__delimiter = "&nbsp;&gt;&gt;&nbsp;")
+    #end
+  #end
+  #set($menuTitle = $_menu.getTitle($preferedLocale))
+  #set($menuName = $_menu.getShortTitle($preferedLocale))
+  
+      <div class="FolderList">
+  #if($_title == $TITLE_FIRST)
+    #if($_orientation == $LEFT_TO_RIGHT)
+		
+        <span title="$!menuTitle">${menuName}&nbsp;</span>
+    #elseif($_orientation == $TOP_TO_BOTTOM)
+		
+        <div class="pagetitle" title="$!menuTitle">${menuName}</div>
+    #end
+  #end
+  #foreach($element in $_menu.elements.iterator())
+    #if($element.elementType == "option")
+      #set($linkTitle = $element.getTitle($preferedLocale))
+      #set($linkName = $element.getShortTitle($preferedLocale))
+      #set($linkUrl = $jetspeed.getAbsoluteUrl($element.url))
+      #if($_style != $BREADCRUMBS_STYLE || $element.type != "page" || $velocityCount < $_menu.elements.size())
+        #if($_orientation == $LEFT_TO_RIGHT)
+			
+        <span>
+        #elseif($_orientation == $TOP_TO_BOTTOM)
+			
+        <div>
+        #end
+        #if($element.type == "page")
+			
+          <a href="$linkUrl" class="LinkPage" title="$!linkTitle">${linkName}</a>
+        #elseif($element.type == "link")
+			
+          <a href="$linkUrl" class="Link" title="$!linkTitle">${linkName}</a>
+        #elseif($element.type == "folder")
+			
+          <a href="$linkUrl" class="LinkFolder" title="$!linkTitle">${linkName}</a>
+        #else
+			
+          <a href="$linkUrl" title="$!linkTitle">${linkName}</a>
+        #end
+        #if($_orientation == $LEFT_TO_RIGHT)
+        ${__delimiter}</span>
+        #elseif($_orientation == $TOP_TO_BOTTOM)
+			
+        </div>
+        #end
+      #else
+        #if($_orientation == $LEFT_TO_RIGHT)
+			
+        <span title="$!linkTitle">${linkName}&nbsp;</span>		
+        #elseif($_orientation == $TOP_TO_BOTTOM)
+			
+        <div title="$!linkTitle">${linkName}</div>
+        #end
+      #end
+    #elseif($element.elementType == "separator")
+      #set($separatorTitle = $element.getTitle($preferedLocale))
+      #set($separatorText = $element.getText($preferedLocale))
+      #if($_orientation == $LEFT_TO_RIGHT)
+		
+        <span title="$!separatorTitle">${separatorText}${__delimiter}</span>              
+      #elseif($_orientation == $TOP_TO_BOTTOM)
+		
+        <div class="pagetitle" title="$!separatorTitle">${separatorText}</div>              
+      #end
+    #end
+  #end
+  #if($_title == $TITLE_LAST)
+    #if($_orientation == $LEFT_TO_RIGHT)
+		
+        <span title="$!menuTitle">${menuName}&nbsp;</span>
+    #elseif($_orientation == $TOP_TO_BOTTOM)
+		
+        <div class="pagetitle" title="$!menuTitle">${menuName}</div>
+    #end
+  #end
+  
+      </div>
+#end
+
+#* include nested menu links navigation component *#
+#macro (includeNestedLinksWithIconNavigation $_menu $_orientation)
+  #set($menuTitle = $_menu.getTitle($preferedLocale))
+  #set($menuName = $_menu.getShortTitle($preferedLocale))
+  #if($menuName)
+              <div class="pagetitle" title="$!menuTitle">${menuName}</div>
+  #end
+              <div>
+  #foreach($element in $_menu.elements.iterator())
+    #if($element.elementType == "option")
+      #set($linkTitle = $element.getTitle($preferedLocale))
+      #set($linkName = $element.getShortTitle($preferedLocale))
+      #set($linkUrl = $jetspeed.getAbsoluteUrl($element.url))
+      #if($element.type == "page")
+                <div><a href="$linkUrl" class="LinkPage" title="$!linkTitle">${linkName}</a></div>
+      #elseif($element.type == "link")
+        #set($linkTarget = $element.target)
+                <div><a href="$linkUrl" target="$linkTarget" class="Link" title="$!linkTitle">${linkName}</a></div>	
+      #elseif($element.type == "folder")
+                <div><a href="$linkUrl" class="LinkFolder" title="$!linkTitle">$linkName</a></div>
+      #end
+    #elseif($element.elementType == "menu")
+      #includeNestedLinksWithIconNavigation($element $_orientation)
+    #elseif($element.elementType == "separator")
+      #set($separatorTitle = $element.getTitle($preferedLocale))
+      #set($separatorText = $element.getText($preferedLocale))
+                  <div class="pagetitle" title="$!separatorTitle">${separatorText}</div>              
+    #end
+  #end
+              </div>
+#end
+
+#* include top level menu links navigation component *#
+#macro (includeLinksWithIconNavigation $_menu $_orientation)
+  #set($rowStarted = false)
+  #set($elementsStarted = false)
+  #foreach($element in $_menu.elements.iterator())
+    #if($element.elementType == "option")
+      #if(!$rowStarted)
+        <tr>
+          <td>
+            <div class="toolgroup">
+              <div class="body">
+                <div class="FolderList">
+      #elseif(!$elementsStarted)
+              <div class="body">
+                <div class="FolderList">
+      #end
+      #set($linkTitle = $element.getTitle($preferedLocale))
+      #set($linkName = $element.getShortTitle($preferedLocale))
+      #set($linkUrl = $jetspeed.getAbsoluteUrl($element.url))
+      #if($element.type == "page")
+                  <div><a href="$linkUrl" class="LinkPage" title="$!linkTitle">${linkName}</a></div>
+      #elseif($element.type == "link")
+        #set($linkTarget = $element.target)
+                  <div><a href="$linkUrl" target="$!linkTarget" class="Link" title="$!linkTitle">${linkName}</a></div>	
+      #elseif($element.type == "folder")
+                  <div><a href="$linkUrl" class="LinkFolder" title="$!linkTitle">$linkName</a></div>
+      #end
+      #set($rowStarted = true)
+      #set($elementsStarted = true)
+    #elseif($element.elementType == "menu")
+      #if(!$rowStarted)
+        <tr>
+          <td>
+            <div class="toolgroup">
+              <div class="body">
+                <div class="FolderList">
+      #elseif(!$elementsStarted)
+              <div class="body">
+                <div class="FolderList">
+      #end
+      #includeNestedLinksWithIconNavigation($element $_orientation)
+      #set($rowStarted = true)
+      #set($elementsStarted = true)
+    #elseif($element.elementType == "separator")
+      #if(!$rowStarted)
+        <tr>
+          <td>
+            <div class="toolgroup">
+      #elseif($elementsStarted)
+                </div>
+              </div>
+      #end
+      #set($separatorTitle = $element.getTitle($preferedLocale))
+      #set($separatorText = $element.getText($preferedLocale))
+              <div class="label">
+                ${separatorText}
+              </div>
+      #set($rowStarted = true)
+      #set($elementsStarted = false)
+    #end
+  #end
+  #if($elementsStarted)
+                </div>
+              </div>
+  #end
+  #if($rowStarted)
+            </div>
+          </td>
+        </tr>
+  #end
+#end

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator-macros.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator-macros.vm
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator.properties?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator.properties (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator.properties Wed Sep  2 00:42:59 2009
@@ -0,0 +1,29 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+# 
+#     http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+id=blueocean
+template.type=velocity
+template.extension=.vm
+template.macros=-macros
+decorates=layout
+base.css.class=layout-blueocean
+
+##following are defaults
+#allow.change.page.theme=true
+#allow.change.layout=true
+#max.layout.nesting=2
+#allow.add.page=true
+#allow.add.portlet=true
+#allow.change.portlet.decorator=true

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decorator.properties
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decoratordesktop.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decoratordesktop.properties?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decoratordesktop.properties (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decoratordesktop.properties Wed Sep  2 00:42:59 2009
@@ -0,0 +1,44 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+# 
+#     http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+desktop.template.extension=.vm
+resource.file=Messages
+
+template.print.id=desktop_print
+
+#
+# desktop page editor options
+#   many of these options have a directly equivalent property for portal customizer
+#
+desktop.pageeditor.movemode.isdefault=true
+
+desktop.pageeditor.page.layout.decorator.editable=true
+desktop.pageeditor.page.portlet.decorator.editable=true
+desktop.pageeditor.page.add.enabled=true
+desktop.pageeditor.page.layout.depth.max=3
+
+desktop.pageeditor.portlet.add.enabled=true
+desktop.pageeditor.portlet.decorator.editable=true
+
+desktop.pageeditor.layout.name.editable=true
+desktop.pageeditor.layout.columnsize.editable=true
+
+desktop.pageeditor.layout.noactions.editable=false
+#  if layout.noactions.editable=true, the below layout.noactions.* properties are ignored
+#     and also, in page editor noaction layouts are fully editable
+#     (i.e. the noaction editing restrictions are enforced only in regular page view, not in page editor)
+desktop.pageeditor.layout.noactions.toplevel.moveable=false
+desktop.pageeditor.layout.noactions.columnsize.editable=false
+desktop.pageeditor.layout.noactions.editor.role=admin

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decoratordesktop.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/decoratordesktop.properties
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.jsp
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.jsp?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.jsp (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.jsp Wed Sep  2 00:42:59 2009
@@ -0,0 +1,104 @@
+<%--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+--%>
+<%@ page language="java" import="org.apache.jetspeed.desktop.JetspeedDesktopContext" session="true" %>
+<%@ page import="java.util.Enumeration"%>
+<%@ page import="org.apache.jetspeed.request.RequestContext"%>
+<%@ page import="org.apache.jetspeed.Jetspeed" %>
+<%@ page import="org.apache.jetspeed.PortalReservedParameters" %>
+<%@ page import="org.apache.jetspeed.om.page.Fragment" %>
+<%@ page import="org.apache.jetspeed.decoration.Theme" %>
+<%@ page import="org.apache.jetspeed.decoration.Decoration" %>
+<% 
+    JetspeedDesktopContext desktop = (JetspeedDesktopContext)request.getAttribute(JetspeedDesktopContext.DESKTOP_CONTEXT_ATTRIBUTE);
+    RequestContext requestContext = (RequestContext)request.getAttribute(RequestContext.REQUEST_PORTALENV);
+
+    String layoutStyleClass = "layout-" + desktop.getLayoutDecorationName();
+%>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html> <!-- .jsp --> <!-- NOTE: do not use strict doctype - see dojo svn log for FloatingPane.js -->
+<head>
+<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
+<meta http-equiv="Content-style-type" content="text/css" />
+
+<%= desktop.getHeaderResource().getNamedContentForPrefix( "header.dojo" )%>
+
+<%= desktop.getHeaderResource().getContent()%>
+
+</head>
+
+<body class="<%= layoutStyleClass %>">
+<!-- Start Jetspeed Page -->
+<div class="<%= layoutStyleClass %>" id="jetspeedPage">
+<div id="banner" style="position: static">    <!-- BOZO: set to absolute in stylesheet - don't know why - no apparent reason -->
+  <table>
+    <tr>
+      <td>
+        <div class="logo">
+        <img src='<%= desktop.getLayoutBaseUrl("images/Jetspeed_white_med.png") %>' alt="Logo" border="0"/>
+        </div>
+      </td>
+      <td>
+        <div align="right" id="login">
+          &nbsp;
+        </div>
+      </td>
+    </tr>
+  </table>
+</div>
+<div widgetId="jetspeed-menu-pages" dojoType="jetspeed:PortalTabContainer" style="width: 100%; margin-top: 2px; margin-left: -1px"></div>
+<div widgetId="jetspeed-menu-breadcrumbs" dojoType="jetspeed:PortalBreadcrumbContainer" style="width: 100%; margin-top: 2px; margin-left: -1px"></div>
+<table cellpadding="0" cellspacing="0" border="0" width="100%" id="main">
+<tr>
+<td id="leftcol">
+<div widgetId="jetspeed-menu-navigations" dojoType="jetspeed:PortalAccordionContainer"></div>
+</td>
+<td id="jetspeedDesktopCell">
+<!-- Start Jetspeed Desktop -->
+<div class="<%= layoutStyleClass %>" id="jetspeedDesktop"></div>
+<!-- End Jetspeed Desktop -->
+</td>
+</tr>
+</table>
+<!-- Start Taskbar -->
+<!-- (when we don't want a taskbar - set windowState to "minimized", otherwise omit windowState) -->
+<!-- <div dojoType="jetspeed:PortalTaskBar" id="jetspeedTaskbar" style="background-color: #666; width: 98%; bottom: 5px; height: 110px" windowState="minimized" resizable="false"></div> -->
+<!-- End Taskbar -->
+</div>
+<!-- End Jetspeed Page -->
+  <p>
+     <img src='<%= desktop.getLayoutBaseUrl("images/Jetspeed_blue_sm.png") %>' alt="Jetspeed 2 Powered" border="0" />
+    </p>
+<!-- page level loading indicator (associated with layout decoration resource: desktop.action.loadpage) -->
+<!-- js-showloading-img is controlled by desktop.loading.img* properties, but src still needs to be set in content due to IE quirks -->
+<div id="js-showloading" class="js-showloading" style="display: none">
+    <table cellpadding="0" cellspacing="0" border="0">
+        <tbody>
+            <tr>
+                <td class="js-showloading-left"></td>
+                <td class="js-showloading-middle">
+                    <div>
+                        <div class="js-showloading-content" id="js-showloading-content">Loading&#133;</div>
+                        <div class="js-showloading-imgcontainer"><img id="js-showloading-img" src='<%= desktop.getLayoutBaseUrl("images/desktop/loading/loaddots.gif") %>' border="0"/></div>
+                    </div>
+                </td>
+                <td class="js-showloading-right"></td>
+            </tr>
+        </tbody>
+    </table>
+</div>
+</body>
+</html>

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.jsp
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.vm
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.vm?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.vm (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.vm Wed Sep  2 00:42:59 2009
@@ -0,0 +1,90 @@
+#*
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*#
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html> <!-- .vm --> <!-- NOTE: do not use strict doctype - see dojo svn log for FloatingPane.js -->
+<head>
+<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
+<meta http-equiv="Content-style-type" content="text/css" />
+
+#desktopIncludeDojoHeaderContent()
+
+#desktopIncludeHeaderContent()
+
+</head>
+
+<body class="layout-${jetspeedDesktop.getLayoutDecorationName()}">
+<!-- Start Jetspeed Page -->
+<div class="layout-${jetspeedDesktop.getLayoutDecorationName()}" id="jetspeedPage">
+<div id="banner" style="position: static">    <!-- BOZO: set to absolute in stylesheet - don't know why - no apparent reason -->
+  <table>
+    <tr>
+      <td>
+        <div class="logo">
+        <img src="$jetspeedDesktop.getLayoutBaseUrl('images/Jetspeed_white_med.png')" alt="Logo" border="0"/>
+        </div>
+      </td>
+      <td>
+        <div align="right" id="login">
+          &nbsp;
+        </div>
+      </td>
+    </tr>
+  </table>
+</div>
+<div widgetId="jetspeed-menu-pages" dojoType="jetspeed:PortalTabContainer" style="width: 100%; margin-top: 2px; margin-left: -1px"></div>
+<div widgetId="jetspeed-menu-breadcrumbs" dojoType="jetspeed:PortalBreadcrumbContainer" style="width: 100%; margin-top: 2px; margin-left: -1px"></div>
+<table cellpadding="0" cellspacing="0" border="0" width="100%" id="main">
+<tr>
+<td id="leftcol" >
+<div widgetId="jetspeed-menu-navigations" dojoType="jetspeed:PortalAccordionContainer"></div>
+</td>
+<td id="jetspeedDesktopCell">
+<!-- Start Jetspeed Desktop -->
+<div class="layout-${jetspeedDesktop.getLayoutDecorationName()}" id="jetspeedDesktop"></div>
+<!-- End Jetspeed Desktop -->
+</td>
+</tr>
+</table>
+<!-- Start Taskbar -->
+<!-- (when we don't want a taskbar - set windowState to "minimized", otherwise omit windowState) -->
+<!-- <div dojoType="jetspeed:PortalTaskBar" id="jetspeedTaskbar" style="background-color: #666; width: 98%; bottom: 5px; height: 110px" windowState="minimized" resizable="false"></div> -->
+<!-- End Taskbar -->
+</div>
+<!-- End Jetspeed Page -->
+  <p>
+     <img src="$jetspeedDesktop.getLayoutBaseUrl('images/Jetspeed_blue_sm.png')" alt="Jetspeed 2 Powered" border="0" />
+    </p>
+<!-- page level loading indicator (associated with layout decoration resource: desktop.action.loadpage) -->
+<!-- js-showloading-img is controlled by desktop.loading.img* properties, but src still needs to be set in content due to IE quirks -->
+<div id="js-showloading" class="js-showloading" style="display: none">
+    <table cellpadding="0" cellspacing="0" border="0">
+        <tbody>
+            <tr>
+                <td class="js-showloading-left"></td>
+                <td class="js-showloading-middle">
+                    <div>
+                        <div class="js-showloading-content" id="js-showloading-content">Loading&#133;</div>
+                        <div class="js-showloading-imgcontainer"><img id="js-showloading-img" src="$jetspeedDesktop.getLayoutBaseUrl('images/desktop/loading/loaddots.gif')" border="0" /></div>
+                    </div>
+                </td>
+                <td class="js-showloading-right"></td>
+            </tr>
+        </tbody>
+    </table>
+</div>
+</body>
+</html>

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop.vm
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.jsp
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.jsp?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.jsp (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.jsp Wed Sep  2 00:42:59 2009
@@ -0,0 +1,64 @@
+<%--
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+--%>
+<%@ page language="java" import="org.apache.jetspeed.desktop.JetspeedDesktopContext" session="true" %>
+<%@ page import="java.util.Enumeration"%>
+<%@ page import="org.apache.jetspeed.request.RequestContext"%>
+<%@ page import="org.apache.jetspeed.Jetspeed" %>
+<%@ page import="org.apache.jetspeed.PortalReservedParameters" %>
+<%@ page import="org.apache.jetspeed.om.page.Fragment" %>
+<%@ page import="org.apache.jetspeed.decoration.Theme" %>
+<%@ page import="org.apache.jetspeed.decoration.Decoration" %>
+<% 
+    JetspeedDesktopContext desktop = (JetspeedDesktopContext)request.getAttribute(JetspeedDesktopContext.DESKTOP_CONTEXT_ATTRIBUTE);
+    RequestContext requestContext = (RequestContext)request.getAttribute(RequestContext.REQUEST_PORTALENV);
+
+    String layoutStyleClass = "layout-" + desktop.getLayoutDecorationName();
+%>
+<html> <!-- .jsp --> <!-- NOTE: do not use strict doctype - see dojo svn log for FloatingPane.js -->
+<head>
+<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
+<meta http-equiv="Content-style-type" content="text/css" />
+
+<%= desktop.getHeaderResource().getNamedContentForPrefix( "header.dojo" )%>
+
+<%= desktop.getHeaderResource().getContent()%>
+
+<script language="JavaScript" type="text/javascript">
+    function notifyRetrieveAllMenusFinished()
+    {
+        dojo.debug( "window.notifyRetrieveAllMenusFinished" );
+    }
+    dojo.event.connect( jetspeed, "notifyRetrieveAllMenusFinished", "notifyRetrieveAllMenusFinished" );
+</script>
+</head>
+
+<body class="<%= layoutStyleClass %>">
+<!-- Start Jetspeed Page -->
+<div class="<%= layoutStyleClass %>" id="jetspeedPage">
+<table cellpadding="0" cellspacing="0" border="0" width="100%" id="main">
+<tr>
+<td id="jetspeedDesktopCell">
+<!-- Start Jetspeed Desktop -->
+<div class="<%= layoutStyleClass %>" id="jetspeedDesktop"></div>
+<!-- End Jetspeed Desktop -->
+</td>
+</tr>
+</table>
+</div>
+<!-- End Jetspeed Page -->
+</body>
+</html>

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.jsp
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.jsp
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.vm
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.vm?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.vm (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.vm Wed Sep  2 00:42:59 2009
@@ -0,0 +1,50 @@
+#*
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*#
+<html> <!-- .vm --> <!-- NOTE: do not use strict doctype - see dojo svn log for FloatingPane.js -->
+<head>
+<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
+<meta http-equiv="Content-style-type" content="text/css" />
+
+#desktopIncludeDojoHeaderContent()
+
+#desktopIncludeHeaderContent()
+
+<script language="JavaScript" type="text/javascript">
+    function notifyRetrieveAllMenusFinished()
+    {
+        dojo.debug( "window.notifyRetrieveAllMenusFinished" );
+    }
+    dojo.event.connect( jetspeed, "notifyRetrieveAllMenusFinished", "notifyRetrieveAllMenusFinished" );
+</script>
+</head>
+
+<body class="layout-${jetspeedDesktop.getLayoutDecorationName()}">
+<!-- Start Jetspeed Page -->
+<div class="layout-${jetspeedDesktop.getLayoutDecorationName()}" id="jetspeedPage">
+<table cellpadding="0" cellspacing="0" border="0" width="100%" id="main">
+<tr>
+<td id="jetspeedDesktopCell">
+<!-- Start Jetspeed Desktop -->
+<div class="layout-${jetspeedDesktop.getLayoutDecorationName()}" id="jetspeedDesktop"></div>
+<!-- End Jetspeed Desktop -->
+</td>
+</tr>
+</table>
+</div>
+<!-- End Jetspeed Page -->
+</body>
+</html>

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/desktop_print.vm
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/footer.vm
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/footer.vm?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/footer.vm (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/footer.vm Wed Sep  2 00:42:59 2009
@@ -0,0 +1,26 @@
+#*
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*#
+
+          </td>
+        </tr>
+      </table> 
+    </div>
+     <p>
+      <img src="#GetPageResource('images/Jetspeed_WhiteOnBlue_pb.jpg')" alt="Jetspeed 2 Powered" border="0" />
+    </p>   
+  </body>
+</html>

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/footer.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/footer.vm
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/header.vm
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/header.vm?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/header.vm (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/header.vm Wed Sep  2 00:42:59 2009
@@ -0,0 +1,162 @@
+#*
+Licensed to the Apache Software Foundation (ASF) under one or more
+contributor license agreements.  See the NOTICE file distributed with
+this work for additional information regarding copyright ownership.
+The ASF licenses this file to You under the Apache License, Version 2.0
+(the "License"); you may not use this file except in compliance with
+the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*#
+
+#* Add the current layouts configuration values to the context *#
+#defineLayoutObjects()
+
+#* Loads our custom macros *#
+#parse($layoutDecoration.getResource("decorator-macros.vm"))
+
+#* Add all template constants to the current context *#
+#defineNavigationConstants()
+
+#* Username *#
+#set($username = $JS2RequestContext.request.remoteUser)
+
+#* Login Error Code *#
+#set($errorcode = $JS2RequestContext.getSessionAttribute("org.apache.jetspeed.login.errorcode"))
+
+#* check Portal Filter *#
+#set($portalFilter = $JS2RequestContext.getRequestAttribute("org.apache.jetspeed.login.filter.PortalFilter"))
+
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+  <head>
+    #includeHeaderResource()
+
+    <meta http-equiv="Content-type" content="#ContentType()" />
+    <meta http-equiv="Content-style-type" content="text/css" />   
+    <meta http-equiv="Content-Script-Type" content="text/javascript" />
+
+    #includeJavaScriptForHead()
+    #IncludeStylesheets()
+	
+    <title>#PageTitle()</title>
+
+    <meta name="keywords" content="" />
+    <meta name="description" content="#PageDescription()" />
+  </head>
+  <body class="#PageBaseCSSClass()">
+<!--  BEGIN: layout/html/blueocean/decorator.vm -->
+    <div class="#PageBaseCSSClass()">
+
+      <div id="masthead">
+<!-- Banner Content -->
+      <div id="banner">
+        <table>
+          <tr>
+            <td>
+              <div>
+              <img src="#GetPageResource('images/Jetspeed_white_med.png')" alt="Logo" border="0" />
+              </div>
+            </td>
+            <td>
+              <div class="info">
+## For PortalFilter
+#if($portalFilter)
+#if($username)
+                <div>$messages.getString("portal.loginform.username") $username</div>
+                <div class="action">
+                  <span class="button"><a href="#BaseHref()portal/my-account.psml">$messages.getString("portal.loginform.change_password")</a></span>
+                  <span class="button"><a href="#BaseHref()login/logout">$messages.getString("portal.loginform.logout")</a></span>
+                </div>
+#else
+                <form name="loginform" method="post">
+                  <div>$messages.getString("portal.loginform.username") <input type="text" size="10" name="org.apache.jetspeed.login.username" value="" /></div>
+                  <div>$messages.getString("portal.loginform.password") <input type="password" size="10" name="org.apache.jetspeed.login.password" /></div>
+                  <div class="action"><span class="button"><a href="#" onclick="document.loginform.submit();return false;" onkeypress="document.loginform.submit();return false;">$messages.getString("portal.loginform.login")</a></span></div>
+  #if($errorcode == 2) ## ERROR_INVALID_PASSWORD
+                  <div>$messages.getString("portal.loginform.error.invalid_password")</div>
+  #end
+                </form>
+#end
+#end
+              </div>
+            </td>
+          </tr>
+        </table>
+      </div>
+
+<!-- Powered By -->
+      <div id="poweredby">
+        <img src="#GetPageResource('images/poweredby.gif')" alt="Powerd by" border="0" />
+      </div>
+
+<!-- Top Tabs Menu -->
+#set($pagesStandardMenu = $site.getMenu("pages"))
+#if(!$pagesStandardMenu.empty)
+      <div class="tabs">
+#includeTabsNavigation($pagesStandardMenu $LEFT_TO_RIGHT)
+      </div>
+#end
+
+## <!-- Back Navigation -->
+##       <div id="breadcrumbs">
+## #set($backStandardMenu = $site.getMenu("back"))
+## #if(!$backStandardMenu.empty)
+## #includeLinksNavigation($backStandardMenu $LEFT_TO_RIGHT $TITLE_FIRST "" "")
+## #else
+##         &nbsp;
+## #end
+##       </div>
+
+<!-- Breadcrumbs Back Navigation -->
+      <div id="breadcrumbs">
+#set($breadcrumbsStandardMenu = $site.getMenu("breadcrumbs"))
+#if(!$breadcrumbsStandardMenu.empty)
+#includeLinksNavigation($breadcrumbsStandardMenu $LEFT_TO_RIGHT "" $BREADCRUMBS_STYLE "")
+#else
+        &nbsp;
+#end
+     <!-- Page Action Bar -->
+##    <span style="position:absolute;right:5em">$jetspeed.renderPortletWindow("theClock", "j2-admin::DateTimePortlet")</span>
+#if($portalFilter)
+<span style="position:absolute;right:5em"></span>   
+#else
+#if ($request.getUserPrincipal())
+<span style="position:absolute;right:5em"><a href="#BaseHref()login/logout">Logout</a></span>   
+#end 
+#end
+     #PageActionBar()
+
+      </div>
+      </div>
+
+<!-- Content Table -->
+      <table cellpadding="0" cellspacing="0" border="0" width="100%" id="main">
+        <tr>
+
+<!-- Left Navigations Menu Table Data -->
+#set($navigationsStandardMenu = $site.getMenu("navigations"))
+
+#if(!$navigationsStandardMenu.empty)
+          <td valign="top" id="leftcol" >
+            <div id="navcolumn">
+              <table cellpadding="0" cellspacing="4" border="0" width="100%">
+#includeLinksWithIconNavigation($navigationsStandardMenu $TOP_TO_BOTTOM)
+              </table>
+            </div>
+          </td>
+#end
+
+<!-- Content Table Data -->
+          <td nowrap valign="top">
+  
+## $jetspeed.include($jetspeed.currentFragment)
+
+<!--  END: layout/html/blueocean/decorator.vm -->

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/header.vm
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/header.vm
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_WhiteOnBlue_pb.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_WhiteOnBlue_pb.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_WhiteOnBlue_pb.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_med.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_med.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_med.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm-1.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm-1.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm-1.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_blue_sm.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_med.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_med.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_med.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm-1.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm-1.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm-1.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm.jpg
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm.jpg?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm.jpg
------------------------------------------------------------------------------
    svn:mime-type = image/jpeg

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/Jetspeed_white_sm.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/banner_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/banner_background.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/banner_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/button_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/button_background.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/button_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/addportlet.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/addportlet.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/addportlet.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/button_cancel.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/button_cancel.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/button_cancel.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/button_ok.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/button_ok.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/button_ok.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/column_resize.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/column_resize.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/column_resize.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/customizer.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/customizer.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/customizer.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit_mode_layout_move.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit_mode_layout_move.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit_mode_layout_move.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit_mode_normal.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit_mode_normal.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/edit_mode_normal.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/help.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/help.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/help.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/layout_delete.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/layout_delete.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/layout_delete.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/layout_new.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/layout_new.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/layout_new.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_E.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_E.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_E.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L2.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L2.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L2.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L4.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L4.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L4.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L6.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L6.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L6.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L8.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L8.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_L8.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R1.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R1.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R1.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R3.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R3.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R3.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R5.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R5.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R5.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R7.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R7.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loaddots_R7.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadleft.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadleft.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadleft.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadmiddle.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadmiddle.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadmiddle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadright.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadright.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/loading/loadright.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/page_delete.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/page_delete.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/page_delete.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/page_new.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/page_new.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/page_new.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/portlet_add.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/portlet_add.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/portlet_add.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/portlet_delete.png
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/portlet_delete.png?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/portlet_delete.png
------------------------------------------------------------------------------
    svn:mime-type = image/png

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_left.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_left.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_left.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_left_curr.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_left_curr.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_left_curr.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_right.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_right.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_right_curr.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_right_curr.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_bot_right_curr.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_close.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_close.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_close_h.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_close_h.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_close_h.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_left.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_left.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_left.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_top_left.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_top_left.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_top_left.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_top_right.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_top_right.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/tabs/tab_top_right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/view.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/view.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/desktop/view.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/logo.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/logo.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/poweredby.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/poweredby.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/poweredby.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/poweredby_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/poweredby_background.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/poweredby_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/selected_tab_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/selected_tab_background.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/selected_tab_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/tab_background.gif
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/tab_background.gif?rev=810322&view=auto
==============================================================================
Binary file - no diff available.

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/images/tab_background.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages.properties?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages.properties (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages.properties Wed Sep  2 00:42:59 2009
@@ -0,0 +1,88 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+desktop.action.labels.menu=Window Menu
+desktop.action.labels.tile=Tile Window
+desktop.action.labels.untile=Untile Window
+desktop.action.labels.heightexpand=Height - Fit Content
+desktop.action.labels.heightnormal=Height - Variable
+desktop.action.labels.restore=Restore Window
+desktop.action.labels.removeportlet=Delete Portlet
+desktop.action.labels.minimized=Minimize Window
+desktop.action.labels.maximized=Maximize Window
+desktop.action.labels.normal=Restore Window
+desktop.action.labels.edit=Edit
+desktop.action.labels.print=Print
+desktop.action.labels.about=About
+desktop.action.labels.config=Configure
+desktop.action.labels.edit_defaults=Edit Defaults
+
+desktop.action.labels.movetiled=Drag to move window - Ctrl-Drag to untile and move window
+desktop.action.labels.moveuntiled=Drag to move window - Ctrl-Drag to tile and move window
+
+# if empty string, portlet title bar will not change during ajax calls for portlet render
+desktop.action.labels.loadportletrender=Loading&#133;
+
+# if empty string, portlet title bar will not change during ajax calls for portlet action submits
+desktop.action.labels.loadportletaction=Updating&#133;
+
+# if empty string, portlet title bar will not change during ajax calls for get-portlet-action, change-portlet-action, move-portlet
+desktop.action.labels.loadportletupdate=
+
+desktop.action.labels.addportlet=Add Portlet
+desktop.action.labels.editpage=Edit Page
+
+# if empty string, HTMLNode id="js-showloading" will not get its inner element text changed during ajax calls
+desktop.action.labels.loadpage=
+
+# if empty string, HTMLNode id="js-showloading" will not get its inner element text changed during loading of customizer
+desktop.action.labels.loadpageeditor=Loading Page Editor&#133;
+
+# Page Editor / Customizer
+desktop.pageeditor.labels.title=Jetspeed Page Editor
+desktop.pageeditor.labels.changepagelayouttheme=Change Layout Theme
+desktop.pageeditor.labels.changepageportlettheme=Change Portlet Theme
+desktop.pageeditor.labels.changeportlettheme=Change Portlet Theme
+desktop.pageeditor.labels.changelayout=Change Layout
+desktop.pageeditor.labels.newpage=Create New Page&#133;
+desktop.pageeditor.labels.deletepage=Delete Page&#133;
+desktop.pageeditor.labels.addlayout=Add Layout
+desktop.pageeditor.labels.addportlet=Add Portlet&#133;
+desktop.pageeditor.labels.columnsizes=Column Sizes&#133;
+desktop.pageeditor.labels.deletelayout=Delete Layout&#133;
+
+desktop.pageeditor.labels.movemode=Mode Mode
+desktop.pageeditor.labels.movemode_exit=Full Mode
+
+desktop.pageeditor.dialog.labels.columnsizes=Change Column Sizes
+desktop.pageeditor.dialog.labels.columnsizes_column1=Column 1
+desktop.pageeditor.dialog.labels.columnsizes_column2=Column 2
+desktop.pageeditor.dialog.labels.columnsizes_column3=Column 3
+desktop.pageeditor.dialog.labels.columnsizes_column4=Column 4
+desktop.pageeditor.dialog.labels.columnsizes_column5=Column 5
+
+desktop.pageeditor.dialog.labels.newpage=Create New Page
+desktop.pageeditor.dialog.labels.newpage_name=Name
+desktop.pageeditor.dialog.labels.newpage_title=Title
+desktop.pageeditor.dialog.labels.newpage_titleshort=Short Title
+
+desktop.pageeditor.dialog.labels.deletepage=Are you sure you want to delete this page?
+desktop.pageeditor.dialog.labels.deletelayout=Are you sure you want to delete this layout?
+desktop.pageeditor.dialog.labels.removeportlet=Are you sure you want to delete this portlet?
+
+desktop.pageeditor.dialog.labels.ok=OK
+desktop.pageeditor.dialog.labels.cancel=Cancel
+desktop.pageeditor.dialog.labels.yes=Yes
+desktop.pageeditor.dialog.labels.no=No

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages.properties
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_en.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_en.properties?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_en.properties (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_en.properties Wed Sep  2 00:42:59 2009
@@ -0,0 +1,24 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+desktop.action.menu=Window Menu
+desktop.action.tile=Tile Window
+desktop.action.untile=Untile Window
+desktop.action.heightexpand=Height - Fit Content
+desktop.action.heightnormal=Height - Variable
+desktop.action.restore=Restore
+desktop.action.removeportlet=Delete Portlet
+desktop.action.addportlet=Add Portlet
+desktop.action.editpage=Edit Page

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_en.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_en.properties
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ko.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ko.properties?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ko.properties (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ko.properties Wed Sep  2 00:42:59 2009
@@ -0,0 +1,40 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+desktop.action.menu=\uc708\ub3c4\uc6b0 \uba54\ub274
+desktop.action.tile=\ud0c0\uc77c \ubd99\uc774\uae30
+desktop.action.untile=\ud0c0\uc77c \ub5bc\uae30
+desktop.action.heightexpand=\ub192\uc774 \ud655\ub300
+desktop.action.heightnormal=\ub192\uc774 \ubcf5\uc6d0
+desktop.action.restore=\ubcf5\uc6d0
+desktop.action.removeportlet=\ud3ec\ud2c0\ub9bf \uc0ad\uc81c
+
+# if empty string, portlet title bar will not change during ajax calls for portlet render
+desktop.action.loadportletrender=\uc5ec\ub294 \uc911 ...
+
+# if empty string, portlet title bar will not change during ajax calls for portlet action submits
+desktop.action.loadportletaction=\ubcc0\uacbd \uc911 ...
+
+# if empty string, portlet title bar will not change during ajax calls for get-portlet-action, change-portlet-action, move-portlet
+desktop.action.loadportletupdate=
+
+desktop.action.addportlet=\ud3ec\ud2c0\ub9bf \ucd94\uac00
+desktop.action.editpage=\ud398\uc774\uc9c0 \ud3b8\uc9d1
+
+# if empty string, HTMLNode id="js-showloading" will not get its inner element text changed during ajax calls
+desktop.action.loadpage=
+
+# if empty string, HTMLNode id="js-showloading" will not get its inner element text changed during loading of customizer
+desktop.action.loadpageeditor=\ud398\uc774\uc9c0 \ud3b8\uc9d1\uae30 \uc5ec\ub294 \uc911 ...

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ko.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ko.properties
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ua.properties
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ua.properties?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ua.properties (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ua.properties Wed Sep  2 00:42:59 2009
@@ -0,0 +1,24 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+desktop.action.menu=\u041c\u0435\u043d\u044e \u0432\u0456\u043a\u043d\u0430
+desktop.action.tile=\u0420\u043e\u0437\u043c\u0456\u0441\u0442\u0438\u0442\u0438 \u043c\u043e\u0437\u0430\u0457\u043a\u043e\u044e
+desktop.action.untile=\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0440\u043e\u0437\u043c\u0456\u0449\u0435\u043d\u043d\u044f \u043c\u043e\u0437\u0430\u0457\u043a\u043e\u044e
+desktop.action.heightexpand=\u0412\u0438\u0441\u043e\u0442\u0430 - \u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438
+desktop.action.heightnormal=\u0412\u0438\u0441\u043e\u0442\u0430 - \u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0430
+desktop.action.restore=\u0412\u0456\u0434\u043d\u043e\u0432\u0438\u0442\u0438
+desktop.action.removeportlet=\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u043f\u043e\u0440\u0442\u043b\u0435\u0442
+desktop.action.addportlet=\u0414\u043e\u0434\u0430\u0442\u0438 \u043f\u043e\u0440\u0442\u043b\u0435\u0442
+desktop.action.editpage=\u0420\u0435\u0434\u0430\u0433\u0443\u0432\u0430\u0442\u0438 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0443

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ua.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/resources/Messages_ua.properties
------------------------------------------------------------------------------
    svn:keywords = Id

Added: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/templates/PortalBreadcrumbContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/portal/attic/decorators/layout/blueocean/templates/PortalBreadcrumbContainer.html?rev=810322&view=auto
==============================================================================
--- portals/jetspeed-2/portal/attic/decorators/layout/blueocean/templates/PortalBreadcrumbContainer.html (added)
+++ portals/jetspeed-2/portal/attic/decorators/layout/blueocean/templates/PortalBreadcrumbContainer.html Wed Sep  2 00:42:59 2009
@@ -0,0 +1,21 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!--  need to wrap inside a body tag to allow the above license header
+      dojo will look for a body tag and use its content -->
+<body>
+<div id="breadcrumbs"><div dojoAttachPoint="containerNode" id="portalBreadcrumbList"></div><div id="jetspeedPageControls"></div></div>
+</body>
\ No newline at end of file

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/templates/PortalBreadcrumbContainer.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: portals/jetspeed-2/portal/attic/decorators/layout/blueocean/templates/PortalBreadcrumbContainer.html
------------------------------------------------------------------------------
    svn:keywords = Id



---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@portals.apache.org
For additional commands, e-mail: jetspeed-dev-help@portals.apache.org