Return-Path: Delivered-To: apmail-incubator-aries-commits-archive@minotaur.apache.org Received: (qmail 13528 invoked from network); 20 Dec 2010 17:47:40 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 20 Dec 2010 17:47:40 -0000 Received: (qmail 63193 invoked by uid 500); 20 Dec 2010 17:47:40 -0000 Delivered-To: apmail-incubator-aries-commits-archive@incubator.apache.org Received: (qmail 63140 invoked by uid 500); 20 Dec 2010 17:47:40 -0000 Mailing-List: contact aries-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: aries-dev@incubator.apache.org Delivered-To: mailing list aries-commits@incubator.apache.org Received: (qmail 63094 invoked by uid 99); 20 Dec 2010 17:47:40 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Dec 2010 17:47:40 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Dec 2010 17:47:29 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CD2952388A77; Mon, 20 Dec 2010 17:47:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r781136 [5/6] - in /websites/staging/aries/trunk/content: ./ images/ resources/ Date: Mon, 20 Dec 2010 17:47:05 -0000 To: aries-commits@incubator.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101220174706.CD2952388A77@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: websites/staging/aries/trunk/content/pointerstoosgispecifications.html ============================================================================== --- websites/staging/aries/trunk/content/pointerstoosgispecifications.html (original) +++ websites/staging/aries/trunk/content/pointerstoosgispecifications.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - PointersToOSGiSpecifications @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/releasenotes.html ============================================================================== --- websites/staging/aries/trunk/content/releasenotes.html (original) +++ websites/staging/aries/trunk/content/releasenotes.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - ReleaseNotes @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/releasingaries.html ============================================================================== --- websites/staging/aries/trunk/content/releasingaries.html (original) +++ websites/staging/aries/trunk/content/releasingaries.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - ReleasingAries @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Added: websites/staging/aries/trunk/content/resources/getMenu.js ============================================================================== --- websites/staging/aries/trunk/content/resources/getMenu.js (added) +++ websites/staging/aries/trunk/content/resources/getMenu.js Mon Dec 20 17:47:04 2010 @@ -0,0 +1,47 @@ +/* +* 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. +*/ +/** + * This script, when included in a html file, can be used to make collapsible menus + * + * Typical usage: + * + */ + +if (document.getElementById){ + document.write('') +} + + +function SwitchMenu(obj, thePath) +{ +var open = 'url("'+thePath + 'images/BigBulletOpen.png")'; +var close = 'url("'+thePath + 'images/BigBullet.png")'; + if(document.getElementById) { + console.log(document); + var el = document.getElementById(obj); + console.log(el); + var title = document.getElementById(obj+'Title'); + + if(el.style.display != "block"){ + title.style.backgroundImage = open; + el.style.display = "block"; + }else{ + title.style.backgroundImage = close; + el.style.display = "none"; + } + }// end - if(document.getElementById) +}//end - function SwitchMenu(obj) Modified: websites/staging/aries/trunk/content/resources/site.css ============================================================================== --- websites/staging/aries/trunk/content/resources/site.css (original) +++ websites/staging/aries/trunk/content/resources/site.css Mon Dec 20 17:47:04 2010 @@ -100,68 +100,51 @@ body { line-height: 1em; } -#menu-page ul { - margin: 0; - padding: 0; - list-style: none; - width: 200px; -} - -#menu-page ul li { - position: relative; -} - -#menu-page li ul { - /*position: relative;*/ - position: absolute; - left: 170px; - top: 0; - outline-style: groove; - outline-color: #bfaecd; - background-color: #ffffff; - display: none; -} -#menu-page li:hover ul { - display: block; +.menutitle { + cursor:pointer; + text-transform: lowercase; + color: #7b5d94; + padding: 10px 22px; + margin-left: 5px; + letter-spacing: 0.15em; + background-image: url('../images/BigBullet.png'); + background-repeat: no-repeat; + background-position: center left; + font-family: Verdana, arial, sans-serif; + font-weight : bold; + font-size: 70%; +} + +.menutitle:hover{text-decoration:underline;cursor: pointer;} + +#menu-page .menuitemgroup { + margin: 0px 0px 6px 8px; + padding: 0px; + font-weight : bold; + } + +#menu-page .selectedmenuitemgroup{ + margin: 0px 0px 0px 8px; + padding: 0px; + font-weight : normal; + } + +#menu-page .menuitem { + padding: 2px 0px 1px 13px; + background-image: url('../images/LittleBullet.png'); + background-repeat: no-repeat; + background-position: center left; + font-weight : normal; + margin-left: 10px; } -#menu-page h3 { - font-size: 75%; - text-transform: lowercase; - margin: 1em 0 0.3em 0; - color: #bfaecd; - letter-spacing: 0.15em; - background: url('../images/BigBullet.png') no-repeat 0pt; - background-position:left center; - margin-left:15px; - padding-left: 20px; - font-family: Verdana, arial, sans-serif; - font-weight: bold; - line-height: 250%; -} -#menu-page ul li h4 a:link, #menu-page ul li h4 a:visited { - color: #380b61; -} -#menu-page li h4 { - line-height: 10%; -} -#menu-page h4 { - font-size: 60%; - text-transform: lowercase; - margin: 1em 0 0.3em 0; - font-weight: normal; - letter-spacing: 0.15em; - background: url('../images/LittleBullet.png') no-repeat 0pt; - background-position:left center; - margin-left:15px; - padding-left: 20px; - font-family: Verdana, arial, sans-serif; -} #menu-page a:link, #menu-page a:visited { + font-size: 60%; color: #7b5d94; } #menu-page a:hover { + font-size: 60%; color: #bfaecd; } @@ -1579,4 +1562,3 @@ div.auto_complete ul strong.highlight { .leftnav li a:active {color:white;} .leftnav li a:visited {color:white;} .leftnav li a:hover {background-color: #3c4672; color:white;} - Modified: websites/staging/aries/trunk/content/resources/space.js ============================================================================== --- websites/staging/aries/trunk/content/resources/space.js (original) +++ websites/staging/aries/trunk/content/resources/space.js Mon Dec 20 17:47:04 2010 @@ -4,6 +4,7 @@ var show = null; var children = null; function init() { + console.log("here I am"); /* Search form initialization */ var form = document.forms['search']; if (form != null) { Modified: websites/staging/aries/trunk/content/samples.html ============================================================================== --- websites/staging/aries/trunk/content/samples.html (original) +++ websites/staging/aries/trunk/content/samples.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - Samples @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/september-2010.html ============================================================================== --- websites/staging/aries/trunk/content/september-2010.html (original) +++ websites/staging/aries/trunk/content/september-2010.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - September 2010 @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/site.html ============================================================================== --- websites/staging/aries/trunk/content/site.html (original) +++ websites/staging/aries/trunk/content/site.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - Site @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/sitemap.html ============================================================================== --- websites/staging/aries/trunk/content/sitemap.html (original) +++ websites/staging/aries/trunk/content/sitemap.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/spi-fly.html ============================================================================== --- websites/staging/aries/trunk/content/spi-fly.html (original) +++ websites/staging/aries/trunk/content/spi-fly.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - SPI Fly @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript"> Modified: websites/staging/aries/trunk/content/testresults.html ============================================================================== --- websites/staging/aries/trunk/content/testresults.html (original) +++ websites/staging/aries/trunk/content/testresults.html Mon Dec 20 17:47:04 2010 @@ -18,12 +18,11 @@ --> - - - - + + + + + Apache Aries - TestResults @@ -46,10 +45,10 @@ type="text/javascript">
- + - +
@@ -100,52 +99,120 @@ type="text/javascript">