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 at...@apache.org on 2007/03/11 11:56:17 UTC

svn commit: r516884 - in /portals/jetspeed-2/trunk: src/webapp/decorations/layout/blueocean/templates/ src/webapp/decorations/layout/tigris/templates/ src/webapp/decorations/portlet/blueocean/templates/ src/webapp/decorations/portlet/tigris/templates/ ...

Author: ate
Date: Sun Mar 11 03:56:16 2007
New Revision: 516884

URL: http://svn.apache.org/viewvc?view=rev&rev=516884
Log:
JIRA issue JS2-659: Compliance with http://www.apache.org/legal/src-headers.html

Dojo widget templates need special care for adding license headers
Just adding the license headers as a (xml) comment, breaks the widget definition as dojo doesn't properly find the right content anymore.
Solution:
  Wrap the intended widget content in a <body></body> tag.
  Dojo checks for a <body> tag and when found uses only the <body> tag content.

Modified:
    portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbContainer.html
    portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbLinkSeparator.html
    portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbContainer.html
    portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbLinkSeparator.html
    portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainer.html
    portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainerItemTemplate.html
    portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainer.html
    portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainerItemTemplate.html
    portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlFloatingPane.html
    portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlTaskBarItemTemplate.html
    portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/LayoutEditPane.html
    portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditPane.html
    portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditor.html
    portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/TitlePane.html
    portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbContainer.html
    portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbLinkSeparator.html

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbContainer.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbContainer.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbContainer.html Sun Mar 11 03:56:16 2007
@@ -1 +1,21 @@
-<div id="breadcrumbs"><div dojoAttachPoint="containerNode" id="portalBreadcrumbList"></div><div id="jetspeedPageControls"></div></div>
+<!--
+  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

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbLinkSeparator.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbLinkSeparator.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbLinkSeparator.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/layout/blueocean/templates/PortalBreadcrumbLinkSeparator.html Sun Mar 11 03:56:16 2007
@@ -1 +1,21 @@
-<span dojoAttachPoint="containerNode">&nbsp;&gt;&gt;&nbsp;</span>
+<!--
+  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>
+<span dojoAttachPoint="containerNode">&nbsp;&gt;&gt;&nbsp;</span>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbContainer.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbContainer.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbContainer.html Sun Mar 11 03:56:16 2007
@@ -1 +1,21 @@
-<div id="breadcrumbs"><div dojoAttachPoint="containerNode" id="portalBreadcrumbList"></div><div id="jetspeedPageControls"></div></div>
+<!--
+  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

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbLinkSeparator.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbLinkSeparator.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbLinkSeparator.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/layout/tigris/templates/PortalBreadcrumbLinkSeparator.html Sun Mar 11 03:56:16 2007
@@ -1 +1,21 @@
-<span dojoAttachPoint="containerNode">&nbsp;&gt;&gt;&nbsp;</span>
+<!--
+  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>
+<span dojoAttachPoint="containerNode">&nbsp;&gt;&gt;&nbsp;</span>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainer.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainer.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainer.html Sun Mar 11 03:56:16 2007
@@ -1,4 +1,22 @@
+<!--
+  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.
+-->
+<body>
 <div id="${this.widgetId}" class="portletDefContainer">
     Drag Portlet Definitions
 	<div id="${this.widgetId}_container" dojoAttachPoint="containerNode" class="portletDefContainerClient"></div>
-</div>
+</div>
+</body>

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainerItemTemplate.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainerItemTemplate.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainerItemTemplate.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/portlet/blueocean/templates/PortletDefContainerItemTemplate.html Sun Mar 11 03:56:16 2007
@@ -1 +1,19 @@
+<!--
+  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.
+-->
+<body>
 <table class="portletDefItemTable" cellspacing="0"><tr dojoAttachEvent="onClick"><td class="portletDefItem"><span class="portletDefItemText"><img dojoAttachPoint="itemIcon" class="portletDefItemIcon"><span dojoAttachPoint="itemText"></span></span></td><td class="portletDefItemEndCap"></td></tr></table>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainer.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainer.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainer.html Sun Mar 11 03:56:16 2007
@@ -1,4 +1,22 @@
+<!--
+  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.
+-->
+<body>
 <div id="${this.widgetId}" class="portletDefContainer">
     Drag Portlet Definitions
 	<div id="${this.widgetId}_container" dojoAttachPoint="containerNode" class="portletDefContainerClient"></div>
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainerItemTemplate.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainerItemTemplate.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainerItemTemplate.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/decorations/portlet/tigris/templates/PortletDefContainerItemTemplate.html Sun Mar 11 03:56:16 2007
@@ -1,3 +1,20 @@
+<!--
+  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.
+-->
+<body>
 <div class="portletSelectorFloatingPane">
   <div class="portletSelectorTitleBar">
     <img class="portletSelectorTitleBarIcon" dojoAttachPoint="itemIcon">
@@ -12,3 +29,4 @@
     <div class="portletSelectorResizeHandle"></div>
   </div>
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlFloatingPane.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlFloatingPane.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlFloatingPane.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlFloatingPane.html Sun Mar 11 03:56:16 2007
@@ -1,3 +1,22 @@
+<!--
+  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="${this.widgetId}" class="dojoFloatingPane" >  <!-- dojoAttachEvent="onMouseDown" -->
 	<div id="${this.widgetId}_titleBar" dojoAttachPoint="titleBar" class="dojoFloatingPaneTitleBar"  dojoAttachEvent="onMouseDown;onMouseOver:titleMouseOver;onMouseOut:titleMouseOut" style="display:none">
 	  	<img dojoAttachPoint="titleBarIcon" class="dojoFloatingPaneTitleBarIcon">
@@ -17,3 +36,4 @@
 
 	<div dojoAttachPoint="resizeBar" class="dojoFloatingPaneResizebar"></div>
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlTaskBarItemTemplate.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlTaskBarItemTemplate.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlTaskBarItemTemplate.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/HtmlTaskBarItemTemplate.html Sun Mar 11 03:56:16 2007
@@ -1 +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>
 <table class="portalTaskBarItemTable" cellspacing="0"><tr dojoAttachEvent="onClick"><td class="dojoTaskBarItem"></td><td class="portalTaskBarItemEndCap"></td></tr></table>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/LayoutEditPane.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/LayoutEditPane.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/LayoutEditPane.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/LayoutEditPane.html Sun Mar 11 03:56:16 2007
@@ -1,3 +1,22 @@
+<!--
+  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 class="layoutEditPane">
     <div dojoAttachPoint="containerNode" class="container"></div>
 
@@ -31,3 +50,4 @@
     </fieldset>
 
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditPane.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditPane.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditPane.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditPane.html Sun Mar 11 03:56:16 2007
@@ -1,3 +1,22 @@
+<!--
+  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 class="pageEditPane">
     <div dojoAttachPoint="containerNode" class="container"></div>
 
@@ -67,3 +86,4 @@
 	</div>
 
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditor.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditor.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditor.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/PageEditor.html Sun Mar 11 03:56:16 2007
@@ -1,3 +1,22 @@
+<!--
+  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 class="pageEditorPane">
     <div dojoAttachPoint="containerNode" class="container"></div>
 
@@ -57,3 +76,4 @@
 	</div>
 
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/TitlePane.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/TitlePane.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/TitlePane.html (original)
+++ portals/jetspeed-2/trunk/src/webapp/javascript/jetspeed/widget/TitlePane.html Sun Mar 11 03:56:16 2007
@@ -1,4 +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.
+-->
+<!--  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 dojoAttachPoint="domNode">
 <div dojoAttachPoint="labelNode" dojoAttachEvent="onclick: onLabelClick" class="${this.labelNodeClass}">${this.label}</div>
 <div class="body"><div dojoAttachPoint="containerNode" style="overflow: hidden;" class="${this.containerNodeClass}"></div></div>
 </div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbContainer.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbContainer.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbContainer.html (original)
+++ portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbContainer.html Sun Mar 11 03:56:16 2007
@@ -1 +1,19 @@
+<!--
+  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.
+-->
+<body>
 <div id="breadcrumbs"><div dojoAttachPoint="containerNode" id="portalBreadcrumbList"></div><div id="jetspeedPageControls"></div></div>
+</body>
\ No newline at end of file

Modified: portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbLinkSeparator.html
URL: http://svn.apache.org/viewvc/portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbLinkSeparator.html?view=diff&rev=516884&r1=516883&r2=516884
==============================================================================
--- portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbLinkSeparator.html (original)
+++ portals/jetspeed-2/trunk/tutorial/portal/src/webapp/themes/express/templates/PortalBreadcrumbLinkSeparator.html Sun Mar 11 03:56:16 2007
@@ -1 +1,19 @@
+<!--
+  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.
+-->
+<body>
 <span dojoAttachPoint="containerNode">&nbsp;&gt;&gt;&nbsp;</span>
+</body>
\ No newline at end of file



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