Return-Path: Delivered-To: apmail-xmlgraphics-commits-archive@www.apache.org Received: (qmail 549 invoked from network); 28 Feb 2006 16:37:43 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 28 Feb 2006 16:37:43 -0000 Received: (qmail 59572 invoked by uid 500); 28 Feb 2006 16:37:39 -0000 Mailing-List: contact commits-help@xmlgraphics.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@xmlgraphics.apache.org Delivered-To: mailing list commits@xmlgraphics.apache.org Received: (qmail 59301 invoked by uid 500); 28 Feb 2006 16:37:36 -0000 Delivered-To: apmail-xmlgraphics-site-commits@xmlgraphics.apache.org Received: (qmail 58990 invoked by uid 99); 28 Feb 2006 16:37:34 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Feb 2006 08:37:34 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 28 Feb 2006 08:37:18 -0800 Received: (qmail 176 invoked by uid 65534); 28 Feb 2006 16:36:57 -0000 Message-ID: <20060228163657.175.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r381695 [3/4] - in /xmlgraphics/site/deploy: ./ images/ skin/ skin/css/ skin/images/ skin/scripts/ skin/translations/ Date: Tue, 28 Feb 2006 16:35:23 -0000 To: site-commits@xmlgraphics.apache.org From: clay@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Added: xmlgraphics/site/deploy/skin/breadcrumbs.js URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/breadcrumbs.js?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/breadcrumbs.js (added) +++ xmlgraphics/site/deploy/skin/breadcrumbs.js Tue Feb 28 08:35:02 2006 @@ -0,0 +1,237 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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, builds a neat breadcrumb trail + * based on its url. That is, if it doesn't contains bugs (I'm relatively + * sure it does). + * + * Typical usage: + * + */ + +/** + * IE 5 on Mac doesn't know Array.push. + * + * Implement it - courtesy to fritz. + */ +var abc = new Array(); +if (!abc.push) { + Array.prototype.push = function(what){this[this.length]=what} +} + +/* ======================================================================== + CONSTANTS + ======================================================================== */ + +/** + * Two-dimensional array containing extra crumbs to place at the front of + * the trail. Specify first the name of the crumb, then the URI that belongs + * to it. You'll need to modify this for every domain or subdomain where + * you use this script (you can leave it as an empty array if you wish) + */ +var PREPREND_CRUMBS = new Array(); + +var link1 = "@skinconfig.trail.link1.name@"; +var link2 = "@skinconfig.trail.link2.name@"; +var link3 = "@skinconfig.trail.link3.name@"; + +var href1 = "@skinconfig.trail.link1.href@"; +var href2 = "@skinconfig.trail.link2.href@"; +var href3 = "@skinconfig.trail.link3.href@"; + + if(!(link1=="")&&!link1.indexOf( "@" ) == 0){ + PREPREND_CRUMBS.push( new Array( link1, href1 ) ); + } + if(!(link2=="")&&!link2.indexOf( "@" ) == 0){ + PREPREND_CRUMBS.push( new Array( link2, href2 ) ); + } + if(!(link3=="")&&!link3.indexOf( "@" ) == 0){ + PREPREND_CRUMBS.push( new Array( link3, href3 ) ); + } + +/** + * String to include between crumbs: + */ +var DISPLAY_SEPARATOR = " > "; +/** + * String to include at the beginning of the trail + */ +var DISPLAY_PREPREND = " > "; +/** + * String to include at the end of the trail + */ +var DISPLAY_POSTPREND = ""; + +/** + * CSS Class to use for a single crumb: + */ +var CSS_CLASS_CRUMB = "breadcrumb"; + +/** + * CSS Class to use for the complete trail: + */ +var CSS_CLASS_TRAIL = "breadcrumbTrail"; + +/** + * CSS Class to use for crumb separator: + */ +var CSS_CLASS_SEPARATOR = "crumbSeparator"; + +/** + * Array of strings containing common file extensions. We use this to + * determine what part of the url to ignore (if it contains one of the + * string specified here, we ignore it). + */ +var FILE_EXTENSIONS = new Array( ".html", ".htm", ".jsp", ".php", ".php3", ".php4" ); + +/** + * String that separates parts of the breadcrumb trail from each other. + * When this is no longer a slash, I'm sure I'll be old and grey. + */ +var PATH_SEPARATOR = "/"; + +/* ======================================================================== + UTILITY FUNCTIONS + ======================================================================== */ +/** + * Capitalize first letter of the provided string and return the modified + * string. + */ +function sentenceCase( string ) +{ return string; + //var lower = string.toLowerCase(); + //return lower.substr(0,1).toUpperCase() + lower.substr(1); +} + +/** + * Returns an array containing the names of all the directories in the + * current document URL + */ +function getDirectoriesInURL() +{ + var trail = document.location.pathname.split( PATH_SEPARATOR ); + + // check whether last section is a file or a directory + var lastcrumb = trail[trail.length-1]; + for( var i = 0; i < FILE_EXTENSIONS.length; i++ ) + { + if( lastcrumb.indexOf( FILE_EXTENSIONS[i] ) ) + { + // it is, remove it and send results + return trail.slice( 1, trail.length-1 ); + } + } + + // it's not; send the trail unmodified + return trail.slice( 1, trail.length ); +} + +/* ======================================================================== + BREADCRUMB FUNCTIONALITY + ======================================================================== */ +/** + * Return a two-dimensional array describing the breadcrumbs based on the + * array of directories passed in. + */ +function getBreadcrumbs( dirs ) +{ + var prefix = "/"; + var postfix = "/"; + + // the array we will return + var crumbs = new Array(); + + if( dirs != null ) + { + for( var i = 0; i < dirs.length; i++ ) + { + prefix += dirs[i] + postfix; + crumbs.push( new Array( dirs[i], prefix ) ); + } + } + + // preprend the PREPREND_CRUMBS + if(PREPREND_CRUMBS.length > 0 ) + { + return PREPREND_CRUMBS.concat( crumbs ); + } + + return crumbs; +} + +/** + * Return a string containing a simple text breadcrumb trail based on the + * two-dimensional array passed in. + */ +function getCrumbTrail( crumbs ) +{ + var xhtml = DISPLAY_PREPREND; + + for( var i = 0; i < crumbs.length; i++ ) + { + xhtml += ''; + xhtml += unescape( crumbs[i][0] ) + ''; + if( i != (crumbs.length-1) ) + { + xhtml += DISPLAY_SEPARATOR; + } + } + + xhtml += DISPLAY_POSTPREND; + + return xhtml; +} + +/** + * Return a string containing an XHTML breadcrumb trail based on the + * two-dimensional array passed in. + */ +function getCrumbTrailXHTML( crumbs ) +{ + var xhtml = ''; + xhtml += DISPLAY_PREPREND; + + for( var i = 0; i < crumbs.length; i++ ) + { + xhtml += ''; + xhtml += unescape( crumbs[i][0] ) + ''; + if( i != (crumbs.length-1) ) + { + xhtml += '' + DISPLAY_SEPARATOR + ''; + } + } + + xhtml += DISPLAY_POSTPREND; + xhtml += ''; + + return xhtml; +} + +/* ======================================================================== + PRINT BREADCRUMB TRAIL + ======================================================================== */ + +// check if we're local; if so, only print the PREPREND_CRUMBS +if( document.location.href.toLowerCase().indexOf( "http://" ) == -1 ) +{ + document.write( getCrumbTrail( getBreadcrumbs() ) ); +} +else +{ + document.write( getCrumbTrail( getBreadcrumbs( getDirectoriesInURL() ) ) ); +} + Added: xmlgraphics/site/deploy/skin/fontsize.js URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/fontsize.js?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/fontsize.js (added) +++ xmlgraphics/site/deploy/skin/fontsize.js Tue Feb 28 08:35:02 2006 @@ -0,0 +1,166 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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. +*/ +function init() +{ //embedded in the doc + //ndeSetTextSize(); +} + +function checkBrowser(){ + if (!document.getElementsByTagName){ + return true; + } + else{ + return false; + } +} + + +function ndeSetTextSize(chgsize,rs) +{ + var startSize; + var newSize; + + if (!checkBrowser) + { + return; + } + + startSize = parseInt(ndeGetDocTextSize()); + + if (!startSize) + { + startSize = 16; + } + + switch (chgsize) + { + case 'incr': + newSize = startSize + 2; + break; + + case 'decr': + newSize = startSize - 2; + break; + + case 'reset': + if (rs) {newSize = rs;} else {newSize = 16;} + break; + + default: + try{ + newSize = parseInt(ndeReadCookie("nde-textsize")); + } + catch(e){ + alert(e); + } + + if (!newSize || newSize == 'NaN') + { + newSize = startSize; + } + break; + + } + + if (newSize < 10) + { + newSize = 10; + } + + newSize += 'px'; + + document.getElementsByTagName('html')[0].style.fontSize = newSize; + document.getElementsByTagName('body')[0].style.fontSize = newSize; + + ndeCreateCookie("nde-textsize", newSize, 365); +} + +function ndeGetDocTextSize() +{ + if (!checkBrowser) + { + return 0; + } + + var size = 0; + var body = document.getElementsByTagName('body')[0]; + + if (body.style && body.style.fontSize) + { + size = body.style.fontSize; + } + else if (typeof(getComputedStyle) != 'undefined') + { + size = getComputedStyle(body,'').getPropertyValue('font-size'); + } + else if (body.currentStyle) + { + size = body.currentStyle.fontSize; + } + + //fix IE bug + if( isNaN(size)){ + if(size.substring(size.length-1)=="%"){ + return + } + + } + + return size; + +} + + + +function ndeCreateCookie(name,value,days) +{ + var cookie = name + "=" + value + ";"; + + if (days) + { + var date = new Date(); + date.setTime(date.getTime()+(days*24*60*60*1000)); + cookie += " expires=" + date.toGMTString() + ";"; + } + cookie += " path=/"; + + document.cookie = cookie; + +} + +function ndeReadCookie(name) +{ + var nameEQ = name + "="; + var ca = document.cookie.split(';'); + + + for(var i = 0; i < ca.length; i++) + { + var c = ca[i]; + while (c.charAt(0) == ' ') + { + c = c.substring(1, c.length); + } + + ctest = c.substring(0,name.length); + + if(ctest == name){ + return c.substring(nameEQ.length,c.length); + } + } + return null; +} Added: xmlgraphics/site/deploy/skin/forrest.css.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/forrest.css.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/forrest.css.xslt (added) +++ xmlgraphics/site/deploy/skin/forrest.css.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + +/* ==================== aural ============================ */ + +@media aural { + h1, h2, h3, h4, h5, h6 { voice-family: paul, male; stress: 20; richness: 90 } + h1 { pitch: x-low; pitch-range: 90 } + h2 { pitch: x-low; pitch-range: 80 } + h3 { pitch: low; pitch-range: 70 } + h4 { pitch: medium; pitch-range: 60 } + h5 { pitch: medium; pitch-range: 50 } + h6 { pitch: medium; pitch-range: 40 } + li, dt, dd { pitch: medium; richness: 60 } + dt { stress: 80 } + pre, code, tt { pitch: medium; pitch-range: 0; stress: 0; richness: 80 } + em { pitch: medium; pitch-range: 60; stress: 60; richness: 50 } + strong { pitch: medium; pitch-range: 60; stress: 90; richness: 90 } + dfn { pitch: high; pitch-range: 60; stress: 60 } + s, strike { richness: 0 } + i { pitch: medium; pitch-range: 60; stress: 60; richness: 50 } + b { pitch: medium; pitch-range: 60; stress: 90; richness: 90 } + u { richness: 0 } + + :link { voice-family: harry, male } + :visited { voice-family: betty, female } + :active { voice-family: betty, female; pitch-range: 80; pitch: x-high } +} + + + +a.external { + padding: 0 20px 0px 0px; + display:inline; + background-repeat: no-repeat; + background-position: center right; + background-image: url(images/external-link.gif); +} + + + + /* extra-css */ + + + + + + + Added: xmlgraphics/site/deploy/skin/getBlank.js URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/getBlank.js?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/getBlank.js (added) +++ xmlgraphics/site/deploy/skin/getBlank.js Tue Feb 28 08:35:02 2006 @@ -0,0 +1,32 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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 and called from a form text field, will set the value of this field to "" + * if the text value is still the standard value. + * + * Typical usage: + * + * + */ + Added: xmlgraphics/site/deploy/skin/getMenu.js URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/getMenu.js?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/getMenu.js (added) +++ xmlgraphics/site/deploy/skin/getMenu.js Tue Feb 28 08:35:02 2006 @@ -0,0 +1,45 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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/chapter_open.gif")'; +var close = 'url("'+thePath + 'images/chapter.gif")'; + if(document.getElementById) { + var el = document.getElementById(obj); + 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) Added: xmlgraphics/site/deploy/skin/images/README.txt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/README.txt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/images/README.txt (added) +++ xmlgraphics/site/deploy/skin/images/README.txt Tue Feb 28 08:35:02 2006 @@ -0,0 +1 @@ +The images in this directory are used if the current skin lacks them. Added: xmlgraphics/site/deploy/skin/images/add.jpg URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/add.jpg?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/add.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/built-with-forrest-button.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/built-with-forrest-button.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/built-with-forrest-button.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/chapter.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/chapter.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/chapter.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/chapter_open.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/chapter_open.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/chapter_open.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/corner-imports.svg.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/corner-imports.svg.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/images/corner-imports.svg.xslt (added) +++ xmlgraphics/site/deploy/skin/images/corner-imports.svg.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + 0 + + + + fill:; + fill:; + stroke:; + + + + + + + + + + + + + 1 + -1 + + + + + + 1 + -1 + + + + + + 0 + - + + + + + + 0 + - + + + + + + + + + + + + + + + + + + + + + + + + Added: xmlgraphics/site/deploy/skin/images/current.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/current.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/current.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/dc.svg.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/dc.svg.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/images/dc.svg.xslt (added) +++ xmlgraphics/site/deploy/skin/images/dc.svg.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + Added: xmlgraphics/site/deploy/skin/images/error.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/error.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/error.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/external-link.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/external-link.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/external-link.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/fix.jpg URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/fix.jpg?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/fix.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/forrest-credit-logo.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/forrest-credit-logo.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/forrest-credit-logo.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/hack.jpg URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/hack.jpg?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/hack.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/header_white_line.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/header_white_line.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/header_white_line.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/info.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/info.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/info.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/instruction_arrow.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/instruction_arrow.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/instruction_arrow.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/label.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/label.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/label.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/page.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/page.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/page.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/pdfdoc.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/pdfdoc.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/pdfdoc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/poddoc.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/poddoc.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/poddoc.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/poddoc.svg.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/poddoc.svg.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/images/poddoc.svg.xslt (added) +++ xmlgraphics/site/deploy/skin/images/poddoc.svg.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + POD + + + Added: xmlgraphics/site/deploy/skin/images/printer.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/printer.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/printer.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-b-l-15-1body-2menu-3menu.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-b-l-15-1body-2menu-3menu.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-b-l-15-1body-2menu-3menu.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-b-r-15-1body-2menu-3menu.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-b-r-15-1body-2menu-3menu.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-b-r-15-1body-2menu-3menu.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-b-r-5-1header-2tab-selected-3tab-selected.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2searchbox-3searchbox.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2tab-selected-3tab-selected.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-r-15-1body-2menu-3menu.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-r-15-1body-2menu-3menu.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-r-15-1body-2menu-3menu.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2searchbox-3searchbox.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2tab-selected-3tab-selected.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rc.svg.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rc.svg.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/images/rc.svg.xslt (added) +++ xmlgraphics/site/deploy/skin/images/rc.svg.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + Added: xmlgraphics/site/deploy/skin/images/remove.jpg URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/remove.jpg?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/remove.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/rss.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/rss.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/rss.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/spacer.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/spacer.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/spacer.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/success.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/success.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/success.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/txtdoc.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/txtdoc.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/txtdoc.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/txtdoc.svg.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/txtdoc.svg.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/images/txtdoc.svg.xslt (added) +++ xmlgraphics/site/deploy/skin/images/txtdoc.svg.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + TXT + + + Added: xmlgraphics/site/deploy/skin/images/update.jpg URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/update.jpg?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/update.jpg ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/valid-html401.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/valid-html401.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/valid-html401.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/vcss.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/vcss.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/vcss.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/warning.png URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/warning.png?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/warning.png ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/images/xmldoc.gif URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/images/xmldoc.gif?rev=381695&view=auto ============================================================================== Binary file - no diff available. Propchange: xmlgraphics/site/deploy/skin/images/xmldoc.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: xmlgraphics/site/deploy/skin/menu.js URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/menu.js?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/menu.js (added) +++ xmlgraphics/site/deploy/skin/menu.js Tue Feb 28 08:35:02 2006 @@ -0,0 +1,50 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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) +{ + if(document.getElementById) { + var el = document.getElementById(obj); + var title = document.getElementById(obj+'Title'); + + if(obj.indexOf("_selected_")==0&&el.style.display == ""){ + //nicolaken: doesn't work :-( + //title.style.backgroundImage = "url('images/chapter_open.gif')"; + el.style.display = "block"; + } + + if(el.style.display != "block"){ + //nicolaken: doesn't work :-( + //title.style.backgroundImage = 'url([url]images/chapter_open.gif[/url])'; + el.style.display = "block"; + }else{ + //nicolaken: doesn't work :-( + //title.style.backgroundImage = "url('images/chapter.gif')"; + el.style.display = "none"; + } + }// end - if(document.getElementById) +}//end - function SwitchMenu(obj) Added: xmlgraphics/site/deploy/skin/note.txt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/note.txt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/note.txt (added) +++ xmlgraphics/site/deploy/skin/note.txt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,50 @@ +Notes for developer: + +--Legend------------------- +TODO -> blocker +DONE -> blocker +ToDo -> enhancement bug +done -> enhancement bug + +--Issues------------------- +- the corner images should be rendered through svg with the header color. +-> DONE +-> ToDo: get rid of the images and use only divs! + +- the menu points should be displayed "better". +-> DONE +-- Use the krysalis-site menu approach for the overall menu display. +-> DONE +-- Use the old lenya innermenu approch to further enhance the menu . +-> DONE + +- the content area needs some attention. +-> DONE +-- introduce the heading scheme from krysalis () +-> DONE +-> ToDo: make box with round corners +-> done: make underlined with variable border height +-> ToDo: make underline with bottom round corner +-- introduce the toc for each html-page +-> DONE +-- introduce the external-link-images. +-> DONE + +- the publish note should be where now only a border is. +Like
+-> DONE +, but make it configurable. +-> DONE +- footer needs some attention +-> DONE +-- the footer do not have the color profile! Enable it! +-> DONE +-- the footer should as well contain a feedback link. +See http://issues.apache.org/eyebrowse/ReadMsg?listName=forrest-user@xml.apache.org&msgNo=71 +-> DONE + +- introduce credits alternativ location +-> DONE + +- border for published / breadtrail / menu /tab divs +-> ToDo \ No newline at end of file Added: xmlgraphics/site/deploy/skin/print.css URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/print.css?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/print.css (added) +++ xmlgraphics/site/deploy/skin/print.css Tue Feb 28 08:35:02 2006 @@ -0,0 +1,54 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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 { + font-family: Georgia, Palatino, serif; + font-size: 12pt; + background: white; +} + +#tabs, +#menu, +#content .toc { + display: none; +} + +#content { + width: auto; + padding: 0; + float: none !important; + color: black; + background: transparent; +} + +a:link, a:visited { + color: #336699; + background: transparent; + text-decoration: underline; +} + +#top .logo { + padding: 0; + margin: 0 0 2em 0; +} + +#footer { + margin-top: 4em; +} + +acronym { + border: 0; +} \ No newline at end of file Added: xmlgraphics/site/deploy/skin/profile.css URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/profile.css?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/profile.css (added) +++ xmlgraphics/site/deploy/skin/profile.css Tue Feb 28 08:35:02 2006 @@ -0,0 +1,153 @@ + + +/* ==================== aural ============================ */ + +@media aural { + h1, h2, h3, h4, h5, h6 { voice-family: paul, male; stress: 20; richness: 90 } + h1 { pitch: x-low; pitch-range: 90 } + h2 { pitch: x-low; pitch-range: 80 } + h3 { pitch: low; pitch-range: 70 } + h4 { pitch: medium; pitch-range: 60 } + h5 { pitch: medium; pitch-range: 50 } + h6 { pitch: medium; pitch-range: 40 } + li, dt, dd { pitch: medium; richness: 60 } + dt { stress: 80 } + pre, code, tt { pitch: medium; pitch-range: 0; stress: 0; richness: 80 } + em { pitch: medium; pitch-range: 60; stress: 60; richness: 50 } + strong { pitch: medium; pitch-range: 60; stress: 90; richness: 90 } + dfn { pitch: high; pitch-range: 60; stress: 60 } + s, strike { richness: 0 } + i { pitch: medium; pitch-range: 60; stress: 60; richness: 50 } + b { pitch: medium; pitch-range: 60; stress: 90; richness: 90 } + u { richness: 0 } + + :link { voice-family: harry, male } + :visited { voice-family: betty, female } + :active { voice-family: betty, female; pitch-range: 80; pitch: x-high } +} + +a.external { + padding: 0 20px 0px 0px; + display:inline; + background-repeat: no-repeat; + background-position: center right; + background-image: url(images/external-link.gif); +} + +#top { background-color: #FFFFFF;} + +#top .header .current { background-color: #a5b6c6;} +#top .header .current a:link { color: #000000; } +#top .header .current a:visited { color: #000000; } +#top .header .current a:hover { color: #000000; } + +#tabs li { background-color: #F7F7F7 ;} +#tabs li a:link { color: #000000; } +#tabs li a:visited { color: #000000; } +#tabs li a:hover { color: #000000; } + +#level2tabs { background-color: #a5b6c6 ;} +#level2tabs a:link { color: #000000; } +#level2tabs a:visited { color: #000000; } +#level2tabs a:hover { color: #000000; } + +.heading { background-color: #a5b6c6;} + +.boxed { background-color: #CFDCED;} +.underlined_5 {border-bottom: solid 5px #CFDCED;} +.underlined_10 {border-bottom: solid 10px #CFDCED;} +table caption { +background-color: #CFDCED; +color: #000000; +} + +#top .searchbox { +background-color: #FFFFFF ; +color: #000000; +} + +#publishedStrip { +color: #000000; +background: #CFDCED; +} + +#menu .menupagetitle { background-color: #a5b6c6} + +#menu { border-color: #a5b6c6;} +#menu .menupagetitle { border-color: #a5b6c6;} +#menu .menupageitemgroup { border-color: #a5b6c6;} + +#menu { background-color: #F7F7F7;} +#menu { color: #000000;} +#menu a:link { color: #000000;} +#menu a:visited { color: #000000;} +#menu a:hover { +background-color: #F7F7F7; +color: #000000;} + +#menu .menupagetitle { color: #000000;} +#menu .menupageitemgroup { +background-color: #F7F7F7; +} +#menu .menupageitem { +color: #000000; +} +#menu .menupageitem a:link { color: #0000ff;} +#menu .menupageitem a:visited { color: #0000ff;} +#menu .menupageitem a:hover { +background-color: #F7F7F7; +color: #0000ff; +} + +body{ +background-color: #ffffff; +color: #000000; +} +a:link { color:#0F3660} +a:visited { color:#009999} +a:hover { color:#000066} + + +.ForrestTable { background-color: #a5b6c6;} + +.ForrestTable td { background-color: #ffffff;} + +.highlight { background-color: #ffff00;} + +.fixme { border-color: #cc6600;} + +.note { border-color: #006699;} + +.warning { border-color: #990000;} + +.code { border-color: #a5b6c6;} + +#footer { background-color: #a5b6c6;} + +#feedback { +color: #FFFFFF; +background: #4C6C8F; +text-align: center; +} +#feedback #feedbackto { +color: #FFFFFF; +} + +#publishedStrip { +color: #FFFFFF; +background: #4C6C8F; +} + +#menu h1 { +color: #000000; +background-color: #cfdced; +} +/* extra-css */ + + p.quote { + margin-left: 2em; + padding: .5em; + background-color: #f0f0f0; + font-family: monospace; + } + \ No newline at end of file Added: xmlgraphics/site/deploy/skin/profile.css.xslt URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/profile.css.xslt?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/profile.css.xslt (added) +++ xmlgraphics/site/deploy/skin/profile.css.xslt Tue Feb 28 08:35:02 2006 @@ -0,0 +1,208 @@ + + + + + + + + + + + + +#top { background-color: ;} + + + +#top .header .current { background-color: ;} +#top .header .current a:link { color: ; } +#top .header .current a:visited { color: ; } +#top .header .current a:hover { color: ; } + + + +#tabs li { background-color: ;} +#tabs li a:link { color: ; } +#tabs li a:visited { color: ; } +#tabs li a:hover { color: ; } + + + +#level2tabs { background-color: ;} +#level2tabs a:link { color: ; } +#level2tabs a:visited { color: ; } +#level2tabs a:hover { color: ; } + + + + + +.heading { background-color: ;} + + + +.boxed { background-color: ;} +.underlined_5 {border-bottom: solid 5px ;} +.underlined_10 {border-bottom: solid 10px ;} +table caption { +background-color: ; +color: ; +} + + +#feedback { +color: ; +background: ; +text-align: ; +} +#feedback #feedbackto { +color: ; +} + + + +#main .breadtrail { +background: ; +color: ; +} +#main .breadtrail a:link { color: ; } +#main .breadtrail a:visited { color: ; } +#main .breadtrail a:hover { color: ; } +#top .breadtrail { +background: ; +color: ; +} +#top .breadtrail a:link { color: ; } +#top .breadtrail a:visited { color: ; } +#top .breadtrail a:hover { color: ; } + + + +#publishedStrip { +color: ; +background: ; +} + + + +#publishedStrip { +color: ; +background: ; +} + + +#menu .menupagetitle { background-color: } + + + +#menu { border-color: ;} +#menu .menupagetitle { border-color: ;} +#menu .menupageitemgroup { border-color: ;} + + + +#menu { background-color: ;} +#menu { color: ;} +#menu a:link { color: ;} +#menu a:visited { color: ;} +#menu a:hover { +background-color: ; +color: ;} + + +#menu .menupagetitle { color: ;} +#menu .menupageitemgroup { +background-color: ; +} +#menu .menupageitem { +color: ; +} +#menu .menupageitem a:link { color: ;} +#menu .menupageitem a:visited { color: ;} +#menu .menupageitem a:hover { +background-color: ; +color: ; +} + + +#menu h1 { +color: ; +background-color: ; +} + + +#top .searchbox { +background-color: ; +color: ; +} + + + +body{ +background-color: ; +color: ; +} +a:link { color:} +a:visited { color:} +a:hover { color:} + + + + +#footer { background-color: ;} + + + + + +.highlight { background-color: ;} + + + +.fixme { border-color: ;} + + + +.note { border-color: ;} + + + +.warning { border-color: ;} + + + +.code { border-color: ;} + + + +.ForrestTable { background-color: ;} + + + +.ForrestTable td { background-color: ;} + + + + Added: xmlgraphics/site/deploy/skin/screen.css URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/screen.css?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/screen.css (added) +++ xmlgraphics/site/deploy/skin/screen.css Tue Feb 28 08:35:02 2006 @@ -0,0 +1,550 @@ +/* +* Copyright 2002-2004 The Apache Software Foundation or its licensors, +* as applicable. +* +* Licensed 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 { margin: 0px 0px 0px 0px; font-family: Verdana, Helvetica, sans-serif; } + +h1 { font-size : 160%; margin: 0px 0px 0px 0px; padding: 0px; } +h2 { font-size : 140%; margin: 0.9em 0px 0px 0px; padding: 0px; font-weight : bold;} +h3 { font-size : 130%; margin: 0.8em 0px 0px 0px; padding: 0px; font-weight : bold; } +.h3 { margin: 22px 0px 3px 0px; } +h4 { font-size : 120%; margin: 0.7em 0px 0px 0px; padding: 0px; font-weight : normal; text-align: left; } +.h4 { margin: 18px 0px 0px 0px; } +h4.faq { font-size : 120%; margin: 18px 0px 0px 0px; padding: 0px; font-weight : bold; text-align: left; } +h5 { font-size : 100%; margin: 14px 0px 0px 0px; padding: 0px; font-weight : normal; text-align: left; } + +/** +* table +*/ +table .title { background-color: #000000; } +.ForrestTable { + color: #ffffff; + background-color: #7099C5; + width: 100%; + font-size : 100%; + empty-cells: show; +} +table caption { + padding-left: 5px; + color: white; + text-align: left; + font-weight: bold; + background-color: #000000; +} +.ForrestTable td { + color: black; + background-color: #f0f0ff; +} +.ForrestTable th { text-align: center; } +/** + * Page Header + */ + +#top { + position: relative; + float: left; + width: 100%; + background: #294563; /* if you want a background in the header, put it here */ +} + +#top .breadtrail { + background: #CFDCED; + color: black; + border-bottom: solid 1px white; + padding: 3px 10px; + font-size: 75%; +} +#top .breadtrail a { color: black; } + +#top .header { + float: left; + width: 100%; + background: url("images/header_white_line.gif") repeat-x bottom; +} + +#top .grouplogo { + padding: 7px 0 10px 10px; + float: left; + text-align: left; +} +#top .projectlogo { + padding: 7px 0 10px 10px; + float: left; + width: 33%; + text-align: right; +} +#top .projectlogoA1 { + padding: 7px 0 10px 10px; + float: right; +} +html>body #top .searchbox { + bottom: 0px; +} +#top .searchbox { + position: absolute; + right: 10px; + height: 42px; + font-size: 70%; + white-space: nowrap; + text-align: right; + color: white; + background-color: #000000; + z-index:0; + background-image: url(images/rc-t-l-5-1header-2searchbox-3searchbox.png); + background-repeat: no-repeat; + background-position: top left; + bottom: -1px; /* compensate for IE rendering issue */ +} + +#top .searchbox form { + padding: 5px 10px; + margin: 0; +} +#top .searchbox p { + padding: 0 0 2px 0; + margin: 0; +} +#top .searchbox input { + font-size: 100%; +} + +#tabs { + clear: both; + padding-left: 10px; + margin: 0; + list-style: none; +} +/* background: #CFDCED url("images/tab-right.gif") no-repeat right top;*/ +#tabs li { + float: left; + background-image: url(images/rc-t-r-5-1header-2tab-unselected-3tab-unselected.png); + background-repeat: no-repeat; + background-position: top right; + background-color: #000000; + margin: 0 3px 0 0; + padding: 0; +} + +/*background: url("images/tab-left.gif") no-repeat left top;*/ +#tabs li a { + float: left; + display: block; + font-family: verdana, arial, sans-serif; + text-decoration: none; + color: black; + white-space: nowrap; + background-image: url(images/rc-t-l-5-1header-2tab-unselected-3tab-unselected.png); + background-repeat: no-repeat; + background-position: top left; + padding: 5px 15px 4px; + width: .1em; /* IE/Win fix */ +} + +#tabs > li a { width: auto; } /* Rest of IE/Win fix */ + +/* Commented Backslash Hack hides rule from IE5-Mac \*/ +#tabs a { float: none; } +/* End IE5-Mac hack */ + +#top .header .current { + background-color: #4C6C8F; + background-image: url(images/rc-t-r-5-1header-2tab-selected-3tab-selected.png); + background-repeat: no-repeat; + background-position: top right; +} +#top .header .current a { + font-weight: bold; + padding-bottom: 5px; + color: white; + background-image: url(images/rc-t-l-5-1header-2tab-selected-3tab-selected.png); + background-repeat: no-repeat; + background-position: top left; +} +#publishedStrip { + padding-right: 10px; + padding-left: 20px; + padding-top: 3px; + padding-bottom:3px; + color: #ffffff; + font-size : 60%; + font-weight: bold; + background-color: #4C6C8F; + text-align:right; +} + +#level2tabs { +margin: 0; +float:left; +position:relative; +} + +/* +* border-top: solid #4C6C8F 15px; +*/ +#main { + position: relative; + background: white; + clear:both; +} +#main .breadtrail { + clear:both; + position: relative; + background: #CFDCED; + color: black; + border-bottom: solid 1px black; + border-top: solid 1px black; + padding: 0px 180px; + font-size: 75%; + z-index:10; +} +/** +* Round corner +*/ +#roundtop { + background-image: url(images/rc-t-r-15-1body-2menu-3menu.png); + background-repeat: no-repeat; + background-position: top right; +} + +#roundbottom { + background-image: url(images/rc-b-r-15-1body-2menu-3menu.png); + background-repeat: no-repeat; + background-position: top right; +} + +img.corner { + width: 15px; + height: 15px; + border: none; + display: block !important; +} + +.roundtopsmall { + background-image: url(images/rc-t-r-5-1header-2searchbox-3searchbox.png); + background-repeat: no-repeat; + background-position: top right; +} + +#roundbottomsmall { + background-image: url(images/rc-b-r-5-1header-2tab-selected-3tab-selected.png); + background-repeat: no-repeat; + background-position: top right; +} + +img.cornersmall { + width: 5px; + height: 5px; + border: none; + display: block !important; +} +/** + * Side menu + */ +#menu a { font-weight: normal;} +#menu a:visited { font-weight: normal; } +#menu a:active { font-weight: normal; } +#menu a:hover { font-weight: normal; } + +#menuarea { width:10em;} +#menu { + position: relative; + float: left; + width: 160px; + padding-top: 0px; + top:-18px; + left:10px; + z-index: 20; + background-color: #f90; + font-size : 70%; +} + +.menutitle { + cursor:pointer; + padding: 3px 12px; + margin-left: 10px; + background-image: url('images/chapter.gif'); + background-repeat: no-repeat; + background-position: center left; + font-weight : bold; +} + +#menu .menuitemgroup { + margin: 0px 0px 6px 8px; + padding: 0px; + font-weight : bold; } + +#menu .selectedmenuitemgroup{ + margin: 0px 0px 6px 8px; + padding: 0px; + font-weight : bold; } + +#menu .menuitem { + padding: 0px 0px 2px 12px; + background-image: url('images/page.gif'); + background-repeat: no-repeat; + background-position: center left; + font-weight : normal; + margin-left: 10px; +} + +#menu .menupage { + margin: 5px 0px 5px 10px; + padding: 0px 3px 0px 12px; + background-image: url('images/current.gif'); + background-repeat: no-repeat; + background-position: top left; + font-style : normal; +} +#menu .menupagetitle { + padding: 0px 0px 0px 6px; + font-style : normal; + border-style: solid; + border-width: 1px; + margin-right: 10px; +} +#menu .menupageitemgroup { + padding: 3px 0px 4px 6px; + font-style : normal; + border-bottom: 1px solid ; + border-left: 1px solid ; + border-right: 1px solid ; + margin-right: 10px; +} +#menu .menupageitem { + font-style : normal; + font-weight : normal; + border-width: 0px; + font-size : 90%; +} +#menu #credit { + text-align: center; +} +#menu #credit2 { + text-align: center; + padding: 3px 3px 3px 3px; + background-color: #ffffff; +} +#menu .searchbox { + text-align: center; +} +#menu .searchbox form { + padding: 3px 3px; + margin: 0; +} +#menu .searchbox input { + font-size: 100%; +} + +#content { + padding: 20px 20px 20px 180px; + margin: 0; + font : small Verdana, Helvetica, sans-serif; + font-size : 80%; +} + +#content ul { + margin: 0; + padding: 0 25px; +} +#content li { + padding: 0 5px; +} +#feedback { + color: black; + background: #CFDCED; + text-align:center; + margin-top: 5px; +} +#feedback #feedbackto { + font-size: 90%; + color: black; +} +#footer { + clear: both; + position: relative; /* IE bugfix (http://www.dracos.co.uk/web/css/ie6floatbug/) */ + width: 100%; + background: #CFDCED; + border-top: solid 1px #4C6C8F; + color: black; +} +#footer .copyright { + position: relative; /* IE bugfix cont'd */ + padding: 5px; + margin: 0; + width: 45%; +} +#footer .lastmodified { + position: relative; /* IE bugfix cont'd */ + float: right; + width: 45%; + padding: 5px; + margin: 0; + text-align: right; +} +#footer a { color: white; } + +#footer #logos { + text-align: left; +} + + +/** + * Misc Styles + */ + +acronym { cursor: help; } +.boxed { background-color: #a5b6c6;} +.underlined_5 {border-bottom: solid 5px #4C6C8F;} +.underlined_10 {border-bottom: solid 10px #4C6C8F;} +/* ==================== snail trail ============================ */ + +.trail { + position: relative; /* IE bugfix cont'd */ + font-size: 70%; + text-align: right; + float: right; + margin: -10px 5px 0px 5px; + padding: 0; +} + +#motd-area { + position: relative; /* IE bugfix cont'd */ + float: right; + width: 35%; + background-color: #f0f0ff; + border-top: solid 1px #4C6C8F; + border-bottom: solid 1px #4C6C8F; + margin-bottom: 15px; + margin-left: 15px; + margin-right: 10%; + padding-bottom: 5px; + padding-top: 5px; +} + +#minitoc-area { + border-top: solid 1px #4C6C8F; + border-bottom: solid 1px #4C6C8F; + margin-bottom: 15px; + margin-left: 15px; + margin-right: 10%; + padding-bottom: 5px; + padding-top: 5px; +} +.minitoc { + list-style-image: url('images/current.gif'); + font-weight: normal; +} + +li p { + margin: 0; + padding: 0; +} + +.pdflink { + position: relative; /* IE bugfix cont'd */ + float: right; + margin: 0px 5px; + padding: 0; +} +.pdflink br { + margin-top: -10px; + padding-left: 1px; +} +.pdflink a { + display: block; + font-size: 70%; + text-align: center; + margin: 0; + padding: 0; +} + +.pdflink img { + display: block; + height: 16px; + width: 16px; +} +.xmllink { + position: relative; /* IE bugfix cont'd */ + float: right; + margin: 0px 5px; + padding: 0; +} +.xmllink br { + margin-top: -10px; + padding-left: 1px; +} +.xmllink a { + display: block; + font-size: 70%; + text-align: center; + margin: 0; + padding: 0; +} + +.xmllink img { + display: block; + height: 16px; + width: 16px; +} +.podlink { + position: relative; /* IE bugfix cont'd */ + float: right; + margin: 0px 5px; + padding: 0; +} +.podlink br { + margin-top: -10px; + padding-left: 1px; +} +.podlink a { + display: block; + font-size: 70%; + text-align: center; + margin: 0; + padding: 0; +} + +.podlink img { + display: block; + height: 16px; + width: 16px; +} + +.printlink { + float: right; +} +.printlink br { + margin-top: -10px; + padding-left: 1px; +} +.printlink a { + display: block; + font-size: 70%; + text-align: center; + margin: 0; + padding: 0; +} +.printlink img { + display: block; + height: 16px; + width: 16px; +} + +p.instruction { + display: list-item; + list-style-image: url('../images/instruction_arrow.png'); + list-style-position: outside; + margin-left: 2em; +} \ No newline at end of file Added: xmlgraphics/site/deploy/skin/skinconf.xsl URL: http://svn.apache.org/viewcvs/xmlgraphics/site/deploy/skin/skinconf.xsl?rev=381695&view=auto ============================================================================== --- xmlgraphics/site/deploy/skin/skinconf.xsl (added) +++ xmlgraphics/site/deploy/skin/skinconf.xsl Tue Feb 28 08:35:02 2006 @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --------------------------------------------------------------------- Apache XML Graphics Project URL: http://xmlgraphics.apache.org/ To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org For additional commands, e-mail: commits-help@xmlgraphics.apache.org