Author: ktlili
Date: Tue Jan 15 17:57:24 2008
New Revision: 56

URL: https://svndev.jahia.net/websvn/listing.php?sc=3D1&rev=3D56&repname=3D=
corporate_portal_templates_v3
Log:
- commit layoutmanager template.

Added:
    trunk/src/jsp/common/box/box_layoutmanager_dispatcher.jsp
    trunk/src/jsp/layoutmanager.jsp
    trunk/src/jsp/shared/css/base.css.bak
Modified:
    trunk/src/jsp/shared/css/base.css
    trunk/src/jsp/templates.xml

Added: trunk/src/jsp/common/box/box_layoutmanager_dispatcher.jsp
URL: https://svndev.jahia.net/websvn/filedetails.php?path=3D/trunk/src/jsp/=
common/box/box_layoutmanager_dispatcher.jsp&rev=3D56&repname=3Dcorporate_po=
rtal_templates_v3
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/src/jsp/common/box/box_layoutmanager_dispatcher.jsp (added)
+++ trunk/src/jsp/common/box/box_layoutmanager_dispatcher.jsp Tue Jan 15 17=
:57:24 2008
@@ -0,0 +1,65 @@
+<%--
+Copyright 2002-2008 Jahia Ltd
+
+Licensed under the JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDD=
L),
+Version 1.0 (the "License"), or (at your option) any later version; you may
+not use this file except in compliance with the License. You should have
+received a copy of the License along with this program; if not, you may ob=
tain
+a copy of the License at
+
+ http://www.jahia.org/license/
+
+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.
+--%>
+<%@ include file=3D"../declarations.jspf" %>
+
+<!-- Set up a variable to store the boxID value. This value will be used b=
y the JSP files displaying the boxes -->
+<c:set var=3D"boxID" scope=3D"request" value=3D"${param.name}_${param.id}"=
/>
+
+<!-- Let us declare the default Jahia boxes so we can use them -->
+<jahia-components:declare-default-boxes id=3D"${param.name}_${param.id}"/>
+
+<!-- Let us declare a custom box that is not part of the Jahia default box=
es -->
+<jahia-components:declare-box type=3D"rss" id=3D"${param.name}_${param.id}=
" view=3D"common/box/rssBoxDisplay.jsp"
+                              title=3D"RSS box">
+    <content:declareContainer>
+        <content:declareField name=3D"title"
+                              title=3D"Title"
+                              type=3D"SmallText"
+                />
+        <content:declareField name=3D"rssUrl"
+                              title=3D"RSS Url"
+                              type=3D"SmallText"
+                />
+    </content:declareContainer>
+</jahia-components:declare-box>
+
+<!-- Let us declare the main box list that will contain all the different =
boxes we want -->
+<jahia-components:declare-box-list name=3D"${param.name}_${param.id}"
+                                   title=3D"${param.name}_${param.id}"
+                                   authorizedTypes=3D"<jahia_default_boxes=
>,rss"
+                                   excludedTypes=3D"webapps">
+</jahia-components:declare-box-list>
+
+<!-- Let us now display the main box list with all the different boxes it =
has -->
+<jahia-components:box-list name=3D"${param.name}_${param.id}" id=3D"${para=
m.name}_${param.id}">
+    <jahiaHtml:actionMenu name=3D"${param.name}_${param.id}" resourceBundl=
e=3D"jahiatemplates.default_v3_lang" useFieldSet=3D"true" namePostFix=3D".b=
oxContainerList">
+        <!-- Let us define the layout manager area. This should be compose=
d only by layout manager boxes -->
+        <ajax:layout-manager-area>
+            <content:container id=3D"boxContainer">
+                <content:textField valueId=3D"boxTitle" name=3D"boxTitle" =
defaultValue=3D"" display=3D"" diffActive=3D"true"/>
+                 <!-- Let us define the current box as a layout-manager bo=
x.-->
+                <ajax:layout-manager-box id=3D"lm_box_${boxContainer.id}" =
title=3D"${boxTitle}">
+                    <jahiaHtml:actionMenu name=3D"boxContainer" resourceBu=
ndle=3D"jahiatemplates.default_v3_lang" useFieldSet=3D"true" namePostFix=3D=
".boxContainerList">
+                        <!-- Let us invoke the box tag so it will dispatch=
 the request to the correct JSP file used for box display -->
+                        <p><jahia-components:box id=3D"${param.name}_${par=
am.id}"/></p>
+                    </jahiaHtml:actionMenu>
+                </ajax:layout-manager-box>
+            </content:container>
+        </ajax:layout-manager-area>
+    </jahiaHtml:actionMenu>
+</jahia-components:box-list>
\ No newline at end of file

Added: trunk/src/jsp/layoutmanager.jsp
URL: https://svndev.jahia.net/websvn/filedetails.php?path=3D/trunk/src/jsp/=
layoutmanager.jsp&rev=3D56&repname=3Dcorporate_portal_templates_v3
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/src/jsp/layoutmanager.jsp (added)
+++ trunk/src/jsp/layoutmanager.jsp Tue Jan 15 17:57:24 2008
@@ -0,0 +1,45 @@
+<%--
+Copyright 2002-2008 Jahia Ltd
+
+Licensed under the JAHIA COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (JCDD=
L),
+Version 1.0 (the "License"), or (at your option) any later version; you may
+not use this file except in compliance with the License. You should have
+received a copy of the License along with this program; if not, you may ob=
tain
+a copy of the License at
+
+ http://www.jahia.org/license/
+
+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.
+--%>
+<%@ include file=3D"common/declarations.jspf" %>
+<%@ include file=3D"common/common_vars.jspf" %>
+<%@ include file=3D"common/header.jspf" %>
+<ajax:gwt-init/>
+<ajax:gwt-import module=3D"org.jahia.ajax.gwt.layoutManager.JahiaLayoutMan=
ager"/>
+
+<div id=3D"main">
+       <jahia-components:navMenu bundleKey=3D"jahiatemplates.default_v3_lang" =
kind=3D"topTabs"/>
+    =

+<div id=3D"column-left" style=3D"display:none">      =

+        <!-- left box (start) -->
+        <jsp:include page=3D"common/box/box.jsp" flush=3D"true">
+            <jsp:param name=3D"name" value=3D"left_box_list"/>
+            <jsp:param name=3D"id" value=3D"1"/>
+        </jsp:include>
+        <!-- left box (end) -->
+    </div>
+    <div id=3D"column-full">
+        <!-- main column (start) -->
+        <jsp:include page=3D"common/box/box_layoutmanager_dispatcher.jsp" =
flush=3D"true">
+            <jsp:param name=3D"name" value=3D"main_box_list"/>
+            <jsp:param name=3D"id" value=3D"1"/>
+        </jsp:include>
+        <!-- main column (end) -->
+    </div>
+    <div id=3D"main-bottom"></div>
+</div>
+<%@ include file=3D"common/footer.jspf" %>
\ No newline at end of file

Modified: trunk/src/jsp/shared/css/base.css
URL: https://svndev.jahia.net/websvn/diff.php?path=3D/trunk/src/jsp/shared/=
css/base.css&rev=3D56&repname=3Dcorporate_portal_templates_v3
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/src/jsp/shared/css/base.css (original)
+++ trunk/src/jsp/shared/css/base.css Tue Jan 15 17:57:24 2008
@@ -599,6 +599,16 @@
   padding-bottom: 30px;
 }
 =

+#column-full{
+  width: 920px;
+  float: left;
+  overflow: hidden;
+  padding-bottom: 30px;
+  background: none;
+}
+
+
+
 div.home h1, #column-left h1 {
   font-size: 16px;
   font-weight: bold;
@@ -893,3 +903,5 @@
 a.zip{background:url(../../images/files/zip.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
 a.xls,a.csv{background:url(../../images/files/xls.gif) no-repeat;padding-l=
eft:20px;height:20px;display:block; }
 /* ------- File types  (end) ------- */
+
+

Added: trunk/src/jsp/shared/css/base.css.bak
URL: https://svndev.jahia.net/websvn/filedetails.php?path=3D/trunk/src/jsp/=
shared/css/base.css.bak&rev=3D56&repname=3Dcorporate_portal_templates_v3
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/src/jsp/shared/css/base.css.bak (added)
+++ trunk/src/jsp/shared/css/base.css.bak Tue Jan 15 17:57:24 2008
@@ -0,0 +1,907 @@
+/* ------- Global (start) ------- */
+body {
+  padding: 0px;
+  margin: 0px;
+  font-family: Arial;
+  font-size: 12px;
+}
+
+ul,td,ol,ul,p,blockquote,div {
+  font-family: Arial;
+  font-size: 12px;
+}
+
+p {
+  font-size: 12px;
+  padding: 0px 0px 10px 0px;
+  margin: 0px;
+}
+
+h1{
+  font-size: 24px;
+  font-weight: normal;
+  padding: 0px 0px 15px 0px;
+  margin: 0px 0px 20px 0px;
+  background-image: url(../images/h1-bkg.gif);
+  background-repeat: repeat-x;
+  background-position: bottom;
+}
+
+h2{
+  font-size: 15px;
+  padding: 0px 0px 20px 0px;
+  margin: 0px 0px 0px 0px;
+  font-weight: bold;
+}
+
+h3{
+  font-size: 13px;
+  padding: 0px 0px 20px 0px;
+  margin: 0px;
+  font-weight: bold;
+}
+h4{
+  font-size: 14px;
+  margin: 4px 0px 8px 0px;
+  padding: 0px;
+}
+
+h4 a:link, h4 a:visited{
+  font-size: 14px;
+}
+
+h4 a:hover{
+  font-size: 14px;
+}
+
+h5{
+  font-size: 12px;
+  font-weight: bold;
+  margin: 0px 0px 5px 0px;
+  padding: 0px;
+}
+
+h6{
+  font-size: 11px;
+  margin: 0px 0px 20px 0px;
+}
+
+div, form {
+  padding: 0px;
+  margin: 0px;
+}
+
+#header,#mainmenu,#pub,#main,#bottom-nav,#footer {
+  width: 920px;
+  text-align: left;
+  margin: 0 auto;
+}
+
+#header,#pub,#main,#bottom-nav,#footer {
+  overflow: hidden;
+}
+
+#container {
+  margin: 15px 0px 0px 0px;
+  position: relative;
+}
+
+
+
+
+
+.topTabs ul {
+       margin: 0 0 0 210px;
+}
+
+.topTabs li {
+       margin: 1px 0 0 5px;
+       padding: 0 0 0 0 ;
+       float:left;
+       list-style-type:none ;
+       text-align:center; =

+}
+
+
+.topTabs div div a {
+       font-size:13px ;
+       color:black;
+}
+
+.topTabs div div a:hover{
+       color:grey;
+}
+
+.topTabs li div {
+       height:20px ;
+       padding: 0 ;
+}
+
+.topTabs .standard div {
+       =

+       background:#9EC8F4 url(../images/tabs/tab-left9EC8F4.gif) no-repeat top 
l=
eft;
+}
+
+.topTabs .standard div div {
+       padding:1px 10px 1px 10px ;
+       background:transparent url(../images/tabs/tab-right9EC8F4.gif) 
no-repeat =
top right;
+}
+
+.topTabs .selected div {
+       background:#709DCE url(../images/tabs/tab-left709DCE.gif) no-repeat top 
l=
eft;
+}
+
+.topTabs .selected div div {
+       padding:1px 10px 1px 10px ;
+       background:transparent url(../images/tabs/tab-right709DCE.gif) 
no-repeat =
top right;
+}
+
+.topTabs .inpath div {
+       background:#709DCE url(../images/tabs/tab-left709DCE.gif) no-repeat top 
l=
eft;
+}
+
+.topTabs .inpath div div {
+       padding:1px 10px 1px 10px ;
+       background:transparent url(../images/tabs/tab-right709DCE.gif) 
no-repeat =
top right;
+}
+
+#column-left {
+  width: 210px;
+  clear:left;
+  float: left;
+  overflow: hidden;
+  padding: 30px 0px 30px 0px ;
+}
+
+#column-left a {
+  color:black;
+}
+
+#column-left p{
+  font-size: 11px;
+}
+
+#column-left p a:link, #column-left p a:visited, #column-left p a:hover{
+  font-size: 11px;
+}
+
+.sideMenu ul li {
+       margin:0px 0px 0px 0px;
+       padding : 0 0 0 0px ;
+       background-image:none ;
+}
+
+.sideMenu ul li ul li {
+       padding:0px 0px 0px 10px;
+       =

+}
+
+.sideMenu div {
+       margin:2px 0px 2px 2px ;
+       background:transparent url(../images/button-body-left.png) no-repeat 
left=
 top ;
+}
+
+.sideMenu div.inpath {
+       background-position:0 -18px ;
+}
+
+.sideMenu div.selected {
+       background-position:0 -36px ;
+}
+
+.sideMenu div:hover {
+       background-position:0 -54px ;
+}
+
+.sideMenu div div {
+       height:11px;
+       padding:2px 2px 5px 4px ;
+       background:transparent ;
+}
+
+/*.sideMenu div.inpath div.inpath {
+       background-position:100% -18px ;
+}
+
+.sideMenu div.selected div.selected {
+       background-position:100% -36px ;
+}
+
+.sideMenu div div.hover {
+       background-position:100% -54px ;
+}
+*/
+
+
+.sideMenu li ul {
+       background-color:#EDF2F5;
+}
+
+/*.sideMenu li.standard {
+       font-weight:normal;
+       font-style:normal;
+}
+
+.sideMenu li.inpath {
+       font-weight:normal;
+       font-style:italic;
+}
+
+.sideMenu li.selected {
+       font-weight:bold;
+       font-style:normal;
+}
+
+.sideMenu li.navmenu li.selected {
+       font-weight:bold;
+       font-style:normal;
+}
+
+.sideMenu li.inpath li.standard {
+       font-weight:normal;
+       font-style:normal;
+}
+
+.sideMenu li.selected li.standard {
+       font-weight:normal;
+       font-style:normal;
+}*/
+
+
+
+
+
+
+a:link, a:visited{
+  font-size: 11px;
+  text-decoration: none;
+}
+
+a:hover{
+  font-size: 11px;
+  text-decoration: none;
+}
+
+p a:link, p a:visited, p a:hover{
+  font-size: 12px;
+}
+
+input[type=3D"text"] {
+  font-size: 11px;
+  padding: 3px 3px 4px 3px;
+}
+
+input[type=3D"submit"] {
+  font-size: 11px;
+  color: #3399CC;
+  border: 1px solid #B1BFC5;
+  padding: 5px 20px 5px 20px;
+  background-image: url(../images/btn-bkg.jpg);
+  background-repeat: repeat-x;
+}
+
+input[type=3D"submit"]:hover {
+  color: #006699;
+  cursor: pointer;
+}
+
+ul{
+  padding: 0px;
+  margin: 0px;
+  list-style: none;
+}
+
+ul li{
+  padding: 3px 3px 3px 15px;
+  margin: 0px;
+  list-style: none;
+  background-image: url(../images/li-bullet.gif);
+  background-repeat: no-repeat;
+  background-position: 2px 8px;
+}
+
+hr{
+  margin: 10px 0px 10px 0px;
+  padding: 0px;
+  background-color: #E3EAED;
+  height: 0px;
+  line-height: 0px;
+  color: #E3EAED;
+  border-top: 1px solid #E3EAED;
+  border-bottom: none;
+}
+
+a.red:link, a.red:visited{
+  color: #CC0000;
+}
+
+a.red:hover{
+  color: #990000;
+}
+
+.fleft{
+  float: left;
+}
+
+.fright{
+  float: right;
+}
+/* ------- Global (end) ------- */
+
+/* ------- Shared (start) ------- */
+
+h3.download{
+  background-image: url(../images/icons/icon-download-color.gif);
+  background-position: right 0px;
+  background-repeat: no-repeat;
+  padding: 5px 20px 20px 0px;
+}
+
+a.icon:link, a.icon:visited, a.icon:hover{
+  padding: 0px 0px 2px 22px;
+  background-repeat: no-repeat;
+  background-position: 0px 0px;
+}
+
+a.home:link, a.home:visited, a.home:hover{
+  background-image: url(../images/icons/icon-home.gif);
+  background-position: 0px 2px;
+}
+
+a.sitemap:link, a.sitemap:visited, a.sitemap:hover{
+  background-image: url(../images/icons/icon-sitemap.gif);
+  background-position: 0px 0px;
+}
+
+a.email:link, a.email:visited, a.email:hover{
+  background-image: url(../images/icons/icon-email.gif);
+  background-position: 0px 1px;
+}
+
+a.key:link, a.key:visited, a.key:hover{
+  background-image: url(../images/icons/icon-key.gif);
+  background-position: 0px 2px;
+}
+
+a.briefcase:link, a.briefcase:visited, a.briefcase:hover{
+  background-image: url(../images/icons/icon-briefcase.gif);
+}
+
+a.download:link, a.download:visited, a.download:hover{
+  background-image: url(../images/icons/icon-download.gif);
+}
+
+a.wallet:link, a.wallet:visited, a.wallet:hover{
+  background-image: url(../images/icons/icon-wallet.gif);
+}
+
+a.sheet:link, a.sheet:visited, a.sheet:hover{
+  background-image: url(../images/icons/icon-sheet.gif);
+}
+
+li.icon{
+  padding: 2px 0px 2px 20px;
+  background-repeat: no-repeat;
+  background-position: 0px 3px;
+}
+
+li.key{
+  background-image: url(../images/icons/icon-key-color.gif);
+}
+
+li.briefcase{
+  background-image: url(../images/icons/icon-briefcase-color.gif);
+}
+
+li.download{
+  background-image: url(../images/icons/icon-download-color.gif);
+}
+
+li.wallet{
+  background-image: url(../images/icons/icon-wallet-color.gif);
+}
+
+li.sheet{
+  background-image: url(../images/icons/icon-sheet-color.gif);
+  background-position: 4px 5px;
+}
+
+/* ------- Shared (end) ------- */
+
+/* ------- Header (start) ------- */
+#header {
+    clear:both;
+}
+
+#top-tab {
+  float: left;
+  width: 500px;
+  overflow: hidden;
+  padding: 0px;
+  margin: 0px;
+}
+
+#top-tab ul{
+  margin: 0px;
+  padding: 0px;
+  overflow: hidden;
+}
+
+#top-tab ul li {
+  float: left;
+  padding: 0px 0px 0px 0px;
+  margin: 0px;
+  list-style: none;
+}
+
+#top-tab ul li a:link, #top-tab ul li a:visited, #top-tab ul li a:hover{
+  display: block;
+  padding: 12px 20px 12px 20px;
+  margin: 0px;
+}
+
+#top-tab ul li.current a:link, #top-tab ul li.current a:visited, #top-tab =
ul li.current a:hover{
+  color: #333333;
+  border-bottom: 1px solid #FFFFFF;
+  background-color: #FFFFFF;
+  font-weight: bold;
+}
+
+#top-tab ul li.first a:link, #top-tab ul li.first a:visited, #top-tab ul l=
i.first a:hover{
+  background-position: top left;
+  background-repeat: no-repeat;
+  border-left: none;
+}
+
+#top-tab ul li.last a:link, #top-tab ul li.last a:visited, #top-tab ul li.=
last a:hover{
+  background-position: top right;
+  background-repeat: no-repeat;
+}
+
+#top-nav {
+  float: left;
+  width: 420px;
+  text-align: right;
+  height: 37px;
+  padding: 0px;
+  margin: 0px;
+}
+
+#top-nav div{
+  margin: 8px 0px 0px 0px;
+  float: left;
+  padding: 0px 12px 0px 0px;
+  background-image: url(../images/top-nav-dotted-bkg.gif);
+  background-position: right 4px;
+  background-repeat: no-repeat;
+}
+
+#top-nav div input[type=3D"text"]{
+  width: 190px;
+}
+
+#top-nav ul {
+  float: left;
+  margin: 12px 0px 0px 12px;
+  padding: 0px;
+}
+
+#top-nav ul li {
+  float: left;
+  padding: 0px 15px 0px 0px;
+  margin: 0px;
+  list-style: none;
+}
+
+#banner {
+  width: 920px;
+  float: left;
+  background-color: #FFFFFF;
+  background-position: top right;
+  background-repeat: no-repeat;
+}
+
+#banner .logo {
+  float: left;
+}
+
+#banner ul {
+  float: right;
+  margin: 50px 0px 0px 0px;
+  padding: 0px;
+}
+
+#banner ul li {
+  float: left;
+  padding: 0px 15px 0px 0px;
+  margin: 0px;
+  list-style: none;
+}
+
+#banner ul li a:link, #banner ul li a:visited, #banner ul li a:hover{
+  text-decoration: none;
+  font-size: 11px;
+}
+/* ------- Header (end) ------- */
+
+/* ------- PagePath (Start) ------- */
+#pagePath{
+  float: left;
+  width: 710px;
+  padding: 5px 20px 0px 20px;
+  margin: 0px;
+}
+
+#pagePath ul{
+  margin: 0px;
+  padding: 0px;
+  list-style: none;
+}
+
+#pagePath ul li{
+  margin: 0px 5px 0px 0px;
+  padding: 0px 8px 0px 0px;
+  list-style: none;
+  float: left;
+  display: block;
+  background-image: url(../images/page-path-separator.gif);
+  background-repeat: no-repeat;
+  background-position: right 6px;
+}
+
+#pagePath ul li a:link, #pagePath ul li a:visited, #pagePath ul li a:hover{
+  font-size: 10px;
+}
+/* ------- PagePath (end) ------- */
+
+/* ------- Main content (start) ------- */
+#pub {
+  background-color: #FFFFFF;
+  border: 1px solid #FFFFFF;
+}
+
+#pub div.button{
+  position: absolute;
+  z-index: 100;
+  margin: -74px 0px 0px 735px;
+}
+
+#main {
+  background-color: #FFFFFF;
+  background-repeat: repeat-y;
+  background-position: top left;
+}
+
+#main-box {
+       clear:left;
+}
+
+#main-bottom {
+  float: left;
+  background-repeat: no-repeat;
+  background-position: bottom left;
+  width: 920px;
+  height: 7px;
+}
+
+#column-left {
+  width: 210px;
+  float: left;
+  overflow: hidden;
+  padding-bottom: 30px;
+}
+
+
+#column-main {
+  width: 710px;
+  float: left;
+  overflow: hidden;
+  padding-bottom: 30px;
+}
+
+#column-full{
+  width: 920px;
+  float: left;
+  overflow: hidden;
+  padding-bottom: 30px;
+  background: none;
+}
+
+
+
+div.home h1, #column-left h1 {
+  font-size: 16px;
+  font-weight: bold;
+}
+
+div.home h3, #column-left h3 {
+  font-size: 16px;
+  font-weight: normal;
+  padding: 0px;
+}
+
+#column-left h2{
+  font-size: 14px;
+  padding: 0px 0px 15px 0px;
+  margin: 0px 0px 20px 0px;
+  font-weight: normal;
+  background-repeat: repeat-x;
+  background-position: bottom;
+}
+
+.boxTitle {
+  display: block;
+       font-weight: bold;
+       font-size: 13px;
+       padding-bottom: 10px;
+}
+
+.small{
+  /* width: 190px; */
+}
+
+.medium{
+  /* width: 440px; */
+}
+
+.large{
+  /* width: 650px; */
+}
+
+div.colored{
+  /* width: 168px; */
+  padding: 20px;
+  margin-bottom: 20px;
+}
+
+div.colored .low{
+  font-size: 12px;
+}
+
+.small div.colored{
+  /* width: 168px; */
+}
+
+.large div.colored{
+  /* width: 628px; */
+}
+
+.light{
+  background-repeat: repeat-y;
+  background-position: right;
+  border-bottom: 1px solid #FFFFFF;
+}
+
+ul.featured-links{
+  margin: 0px;
+  padding: 0px;
+  overflow: hidden;
+}
+
+ul.featured-links li{
+  padding: 0px 0px 10px 28px;
+  margin: 0px;
+  list-style: none;
+}
+
+ul.featured-links li a.item:link, ul.featured-links li a.item:visited, ul.=
featured-links li a.item:hover{
+  display: block;
+  background-position: top left;
+  background-repeat: no-repeat;
+  padding: 7px 10px 7px 10px;
+  text-decoration: none;
+  font-weight: bold;
+}
+
+ul.carrers{
+  margin: 0px;
+  padding: 0px;
+  overflow: hidden;
+}
+
+ul.carrers li{
+  padding: 0px 0px 10px 28px;
+  margin: 0px;
+  list-style: none;
+  background-image: url(../images/icons/icon-life-preserver.gif);
+  background-position: top left;
+  background-repeat: no-repeat;
+}
+
+ul.carrers li a:link, ul.carrers li a:visited, ul.carrers li a:hover{
+  font-size: 12px;
+}
+
+div.low{
+  font-size: 11px;
+  color: #999999;
+  margin: 0px;
+  padding: 0px;
+  font-weight: normal;
+}
+
+div.title-link{
+  overflow: hidden;
+  padding: 0px 0px 15px 0px;
+  margin: 0px 0px 20px 0px;
+  background-image: url(../images/h1-bkg.gif);
+  background-repeat: repeat-x;
+  background-position: 0px 30px;
+}
+
+div.title-link h1{
+  float: left;
+  background-image: none;
+  padding: 0px;
+  margin: 0px;
+}
+
+div.title-link a:link, div.title-link a:visited, div.title-link a:hover{
+  margin: 5px 0px 0px 0px;
+  float: right;
+  font-size: 12px;
+}
+
+/* ------- Main content (end) ------- */
+
+/* ------- Promo (start) ------- */
+.promo{
+  overflow: hidden;
+}
+
+.promo h2{
+  color: #CC0000;
+  font-weight: bold;
+  border: none;
+  background: none;
+  font-size: 16px;
+  padding: 0px;
+  margin: 0px 0px 20px 0px;
+  font-weight: normal;
+}
+
+.promo dl{
+  width: 220px;
+  float: left;
+  padding: 0px;
+  margin: 0px 0px 0px 0px;
+  height: auto;
+}
+
+.promo dl dt{
+  width: 72px;
+  float: left;
+  padding: 0px;
+  margin: 0px;
+}
+
+.promo dl dd{
+  width: 120px;
+  float: left;
+  padding: 0px 22px 20px 0px;
+  margin: 0px;
+}
+/* ------- Promo (end) ------- */
+
+/* ------- News (start) ------- */
+dl.news{
+  padding: 0px;
+  margin: 0px;
+  overflow: hidden;
+  width: 440px;
+}
+
+dl.news dt{
+  float: left;
+  width: 50px;
+  padding: 0px;
+  margin: 0px;
+}
+
+dl.news dt div.month{
+  background-repeat: no-repeat;
+  background-position: top;
+  font-size: 11px;
+  font-weight: normal;
+  margin: 0px;
+  padding: 3px 0px 4px 0px;
+  width: 33px;
+  text-align: center;
+  text-transform: uppercase;
+}
+
+dl.news dt div.day{
+  background-repeat: no-repeat;
+  background-position: top;
+  font-size: 20px;
+  font-family: Georgia,Arial;
+  font-weight: normal;
+  padding: 0px 0px 10px 0px;
+  margin: 0px;
+  width: 33px;
+  text-align: center;
+}
+
+dl.news dd{
+  float: left;
+  width: 390px;
+  padding: 0px 0px 20px 0px;
+  margin: 0px;
+}
+
+dl.news dd .low{
+  margin: 0px 0px 5px 0px;
+}
+
+dl.news dd p{
+  padding: 0px 0px 10px 0px;
+  margin: 0px;
+}
+/* ------- News (end) ------- */
+
+/* ------- Bottom nav (start) ------- */
+#bottom-nav{
+  padding: 10px 0px 20px 0px;
+}
+
+#bottom-nav ul {
+  float: left;
+  padding: 0px;
+}
+
+#bottom-nav ul li {
+  float: left;
+  padding: 0px 20px 0px 0px;
+  margin: 0px;
+  list-style: none;
+}
+
+#bottom-nav ul.fleft {
+  float: left;
+  margin: 10px 0px 0px 20px;
+}
+
+#bottom-nav ul.fright {
+  float: right;
+  margin: 10px 0px 0px 0px;
+}
+/* ------- Bottom nav (end) ------- */
+
+/* ------- Footer (start) ------- */
+#footer {
+  padding: 0px 0px 30px 0px;
+}
+
+#footer #copyright{
+  float: left;
+  font-size: 11px;
+  padding: 10px 0px 0px 20px;
+}
+#footer #key{
+  float: left;
+  padding: 10px 0px 0px 10px;
+}
+
+#footer .logo{
+  float: right;
+  padding: 0px 20px 0px 0px;
+}
+/* ------- Footer (end) ------- */
+
+/* ------- File types  (start) ------- */
+a.file{background:url(../../images/files/file.gif) no-repeat;padding-left:=
20px;height:20px;display:block; }
+a.video{background:url(../../images/files/video.gif) no-repeat;padding-lef=
t:20px;height:20px;display:block; }
+a.ppt{background:url(../../images/files/ppt.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
+a.exe{background:url(../../images/files/exe.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
+a.doc{background:url(../../images/files/doc.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
+a.dir{background:url(../../images/files/folder_close.gif) no-repeat;paddin=
g-left:20px;height:20px;display:block; }
+a.html{background:url(../../images/files/html.gif) no-repeat;padding-left:=
20px;height:20px;display:block;}
+a.img{background:url(../../images/files/img.gif) no-repeat;padding-left:20=
px;height:20px;display:block;}
+a.pdf{background:url(../../images/files/pdf.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
+a.sound{background:url(../../images/files/sound.gif) no-repeat;padding-lef=
t:20px;height:20px;display:block; }
+a.txt{background:url(../../images/files/txt.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
+a.zip{background:url(../../images/files/zip.gif) no-repeat;padding-left:20=
px;height:20px;display:block; }
+a.xls,a.csv{background:url(../../images/files/xls.gif) no-repeat;padding-l=
eft:20px;height:20px;display:block; }
+/* ------- File types  (end) ------- */
+
+

Modified: trunk/src/jsp/templates.xml
URL: https://svndev.jahia.net/websvn/diff.php?path=3D/trunk/src/jsp/templat=
es.xml&rev=3D56&repname=3Dcorporate_portal_templates_v3
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
--- trunk/src/jsp/templates.xml (original)
+++ trunk/src/jsp/templates.xml Tue Jan 15 17:57:24 2008
@@ -4,11 +4,12 @@
     <root-folder>default_v3</root-folder>
     <classes-file>default_v3_jahiatemplates.jar</classes-file>
     <provider>http://www.jahia.com</provider>
-    <thumbnail>images/default_v3_tn.gif</thumbnail>
+    <thumbnail>images/default_v3_tn.gif</thumbnail>
     <resource-bundle>jahiatemplates.default_v3_lang</resource-bundle>
     <templates default=3D"Content" homepage=3D"Home">
         <template name=3D"Content" display-name=3D"Content" filename=3D"co=
ntent.jsp"/>
         <template name=3D"Home" display-name=3D"Home" filename=3D"home.jsp=
"/>
+        <template name=3D"Layoutmanager" display-name=3D"Layout manager" f=
ilename=3D"layoutmanager.jsp"/>
     </templates>
 </template-set>
 =


_______________________________________________
cvs_list mailing list
[email protected]
http://lists.jahia.org/cgi-bin/mailman/listinfo/cvs_list

Reply via email to