svn commit: r700771 - in /lenya/sandbox/design: ./ docupub-redesign/ docupub-redesign/css/ docupub-redesign/js/ docupub-redesign/themes/ docupub-redesign/themes/original/ docupub-redesign/themes/original/css/ docupub-redesign/themes/theme1/ docupub-red...

[email protected]
Newsgroups gmane.comp.cms.lenya.cvs
Message-ID <[email protected]>
Author: ragaller
Date: Wed Oct  1 07:05:58 2008
New Revision: 700771

URL: http://svn.apache.org/viewvc?rev=700771&view=rev
Log:
setup a place for design resources; 
docupub-redesign: webdeveloper resources for the (css only) redesign of the docu publication

Added:
    lenya/sandbox/design/
    lenya/sandbox/design/docupub-redesign/
    lenya/sandbox/design/docupub-redesign/css/
    lenya/sandbox/design/docupub-redesign/css/print.css   (with props)
    lenya/sandbox/design/docupub-redesign/index.html   (with props)
    lenya/sandbox/design/docupub-redesign/js/
    lenya/sandbox/design/docupub-redesign/js/styleswitcher.js   (with props)
    lenya/sandbox/design/docupub-redesign/readme.txt   (with props)
    lenya/sandbox/design/docupub-redesign/themes/
    lenya/sandbox/design/docupub-redesign/themes/original/
    lenya/sandbox/design/docupub-redesign/themes/original/css/
    lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css   (with props)
    lenya/sandbox/design/docupub-redesign/themes/theme1/
    lenya/sandbox/design/docupub-redesign/themes/theme1/css/
    lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css   (with props)
    lenya/sandbox/design/docupub-redesign/themes/theme1/images/
    lenya/sandbox/design/docupub-redesign/themes/theme1/images/list-item-marker-red.gif   (with props)
    lenya/sandbox/design/docupub-redesign/themes/theme2/
    lenya/sandbox/design/docupub-redesign/themes/theme2/css/
    lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css   (with props)
    lenya/sandbox/design/docupub-redesign/themes/theme2/images/
    lenya/sandbox/design/docupub-redesign/themes/theme2/images/list-item-marker-green.gif   (with props)
    lenya/sandbox/design/docupub-redesign/themes/yourtheme/
    lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/
    lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css   (with props)
    lenya/sandbox/design/docupub-redesign/themes/yourtheme/images/
    lenya/sandbox/design/docupub-redesign/themes/yourtheme/readme.txt   (with props)

Added: lenya/sandbox/design/docupub-redesign/css/print.css
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/css/print.css?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/css/print.css (added)
+++ lenya/sandbox/design/docupub-redesign/css/print.css Wed Oct  1 07:05:58 2008
@@ -0,0 +1,27 @@
+/*
+* 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.
+*/
+
+@import url('screen.css');
+
+#logo, #tabs, #apacheBreadcrumb, #search, #menu, #banners {
+  display: none;
+}
+
+#body {
+  padding: 0;
+  margin: 0;
+}

Propchange: lenya/sandbox/design/docupub-redesign/css/print.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/css/print.css
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/index.html
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/index.html?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/index.html (added)
+++ lenya/sandbox/design/docupub-redesign/index.html Wed Oct  1 07:05:58 2008
@@ -0,0 +1,187 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+
+<link rel="alternate stylesheet" type="text/css" href="themes/original/css/unstyled.css" title="unstyled" />
+<link rel="alternate stylesheet" type="text/css" href="themes/original/css/lenya-default.css" title="lenya-default" />
+<link rel="alternate stylesheet" type="text/css" href="themes/theme1/css/screen.css" title="theme-red" />
+<link rel="alternate stylesheet" type="text/css" href="themes/theme2/css/screen.css" title="theme-green" />
+<link rel="alternate stylesheet" type="text/css" href="themes/yourtheme/css/screen.css" title="yourtheme />
+
+<link type="text/css" media="print" href="css/print.css" rel="stylesheet" />
+<meta name="generator" content="Apache Lenya" />
+<title>Apache Lenya - Contributing</title>
+<meta content="application/xhtml+xml; charset=UTF-8" http-equiv="Content-Type" />
+<script type="text/javascript" src="js/styleswitcher.js"></script>
+<script type="text/javascript">
+  function toggleMenu(id) {
+    var element = document.getElementById(id);
+    if (element.className == 'open') {
+      element.className = 'closed';
+    }
+    else if (element.className == 'closed') {
+      element.className = 'open';
+    }
+  }
+
+  function selectStyle(id) {
+    var element = document.getElementById(id).selectedIndex;    
+    var value   = document.getElementById(id).options[element].value;
+    
+    setActiveStyleSheet(value);
+	}
+  
+</script>
+</head>
+
+<body>
+
+<div id="page">
+
+  <div id="styleswitcher">
+    <h2>Styleswitcher</h2>
+    <select id="styleSelector" onchange="selectStyle('styleSelector');">
+      <option value="no-style">Unstyled</option>
+      <option value="lenya-default">Lenya docu default</option>
+      <option value="theme-red">Theme red</option>
+      <option value="theme-green">Theme green</option>
+      <option value="yourtheme">Your Theme</option>
+    </select>
+  </div>
+
+  <div id="search">
+  
+    <form id="form-search" method="get" action="http://www.google.com/search">
+      <p>Search: 
+        <input value="lenya.apache.org" name="sitesearch" type="hidden" />
+        <input alt="Search field" name="q" type="text" class="searchfield" />
+        <input src="http://lenya.apache.org/docustyle/images/search.png" type="image" class="searchsubmit" />
+      </p>
+    </form>
+    
+  </div><!-- #search -->
+
+  <div id="header">
+  
+    <div id="logo">
+    
+      <div id="apacheBreadcrumb">
+      
+        <a href="http://www.apache.org">Apache</a> » 
+        <a href="http://lenya.apache.org">Lenya</a>
+        
+      </div><!-- #apacheBreadcrumb -->
+      
+      <div id="projectLogo">
+      
+        <a href="http://lenya.apache.org/index.html">
+          <img alt="project logo" src="http://lenya.apache.org/docustyle/images/project-logo-small.png" />
+        </a>
+        
+      </div><!-- #projectLogo -->
+      
+    </div><!-- #logo -->
+    
+    <ul id="tabs">
+    	<li class="tab"><a href="#"><span>Project</span></a></li>
+    	<li class="tab"><a href="#"><span>Developer</span></a></li>
+    	<li class="tab-selected"><a><span>Community</span></a></li>
+    	<li class="tab"><a href="#"><span>Version 2.0</span></a></li>
+    	<li class="tab"><a href="#"><span>Version 1.2</span></a></li>
+    </ul>
+    <div id="tabsSeparator" />
+  
+  </div><!-- #header -->
+
+  <div id="main">
+  
+    <ul id="menu">
+      <li id="menuitem-1" class="selected open"><span>Community</span>
+        <ul id="menu-1">
+        	<li id="menuitem-1.1" class="">
+            <a href="http://wiki.apache.org/">Lenya Wiki</a>
+          </li>
+        	<li id="menuitem-1.2" class="">
+            <a href="translating.html">Translations</a>
+          </li>
+        	<li id="menuitem-1.3" class="">
+            <a href="http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;email1=&amp;emailtype1=substring&amp;emailassigned_to1=1&amp;email2=&amp;emailtype2=substring&amp;emailreporter2=1&amp;bugidtype=include&amp;bug_id=&amp;changedin=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;product=Lenya&amp;short_desc=&amp;short_desc_type=allwordssubstr&amp;long_desc=&amp;long_desc_type=allwordssubstr&amp;bug_file_loc=&amp;bug_file_loc_type=allwordssubstr&amp;keywords=&amp;keywords_type=anywords&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;cmdtype=doit&amp;order=Importance">Bug Tracker</a>
+          </li>
+        	<li id="menuitem-1.4" class="">
+            <a href="ml.html">Mailing Lists</a>
+          </li>
+        	<li id="menuitem-1.5" class="">
+            <a href="irc.html">IRC</a>
+          </li>
+        	<li id="menuitem-1.6" class="">
+            <a href="live-sites.html">Live Sites</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    
+    <div id="banners">
+    
+      <div class="include">
+        <p>
+          <a href="http://www.us.apachecon.com/us2008/"> 
+            <img alt="ApacheCon US 2008" height="125"
+        	     src="http://www.apache.org/ads/ApacheCon/2008-usa-125x125.png?lenya.module=svg&amp;height=125&amp;width=125"
+        	     width="125" /> 
+          </a>
+        </p>
+        <p>
+          <img alt="Built with Apache Lenya" src="http://lenya.apache.org/index/banners/builtWithApacheLenya.png" />
+        </p>
+      </div>
+      
+    </div><!-- #banners -->
+  
+    <div id="body">
+          
+      <h1>heading 1</h1>
+      <div class="tocTitle">
+        <div>Table of Contents</div>
+      </div>
+      
+      <ul class="toc">
+      	<li><a href="community.html#N10013">Anchor Link</a></li>
+      </ul>
+      
+      <h2>heading 2</h2>
+      <h3>heading 3</h3>
+      <h4>heading 5</h4>
+      <h5>heading 5</h5>
+      <p>
+        Normal Paragraph
+      </p>
+      
+      
+      
+      <ul>
+        <li>ul List Item 1</li>
+        <li>ul List Item 2</li>
+      </ul>
+      
+      <ol>
+        <li>ol List Item 1</li>
+        <li>ol List Item 2</li>
+      </ol>
+    
+      <div id="footer">
+      
+        <p>
+           Copyright © 1999-2008 <a href="http://www.apache.org/">The
+           Apache Software Foundation</a>. All rights reserved.
+        </p>
+        
+      </div><!-- #footer -->
+      
+    </div><!-- #body -->
+    
+  </div><!-- #main -->
+  
+</div><!-- #page -->
+
+</body>
+</html>
\ No newline at end of file

Propchange: lenya/sandbox/design/docupub-redesign/index.html
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/index.html
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/js/styleswitcher.js
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/js/styleswitcher.js?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/js/styleswitcher.js (added)
+++ lenya/sandbox/design/docupub-redesign/js/styleswitcher.js Wed Oct  1 07:05:58 2008
@@ -0,0 +1,64 @@
+function setActiveStyleSheet(title) {
+  var i, a, main;
+  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
+      a.disabled = true;
+      if(a.getAttribute("title") == title) a.disabled = false;
+    }
+  }
+}
+
+function getActiveStyleSheet() {
+  var i, a;
+  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title");
+  }
+  return null;
+}
+
+function getPreferredStyleSheet() {
+  var i, a;
+  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
+    if(a.getAttribute("rel").indexOf("style") != -1
+       && a.getAttribute("rel").indexOf("alt") == -1
+       && a.getAttribute("title")
+       ) return a.getAttribute("title");
+  }
+  return null;
+}
+
+function createCookie(name,value,days) {
+  if (days) {
+    var date = new Date();
+    date.setTime(date.getTime()+(days*24*60*60*1000));
+    var expires = "; expires="+date.toGMTString();
+  }
+  else expires = "";
+  document.cookie = name+"="+value+expires+"; path=/";
+}
+
+function readCookie(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);
+    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
+  }
+  return null;
+}
+
+window.onload = function(e) {
+  var cookie = readCookie("style");
+  var title = cookie ? cookie : getPreferredStyleSheet();
+  setActiveStyleSheet(title);
+}
+
+window.onunload = function(e) {
+  var title = getActiveStyleSheet();
+  createCookie("style", title, 365);
+}
+
+var cookie = readCookie("style");
+var title = cookie ? cookie : getPreferredStyleSheet();
+setActiveStyleSheet(title);

Propchange: lenya/sandbox/design/docupub-redesign/js/styleswitcher.js
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/js/styleswitcher.js
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/readme.txt
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/readme.txt?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/readme.txt (added)
+++ lenya/sandbox/design/docupub-redesign/readme.txt Wed Oct  1 07:05:58 2008
@@ -0,0 +1,50 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+
+redesign of the docu publication, web developer resources
+---------------------------------------------------------
+
+before you start:
+
+lenya docu: lenya.apache.org
+
+structure
+---------
+css/print.css     > the original print.css
+js/styleswitcher  > a cookie based styleswitcher (taken from http://www.alistapart.com/articles/alternate/)
+themes
+  /original       > the original css
+  /theme1         > demo green color with green list bgr image
+  /theme2         > demo red color with red list bgr image
+  /yourtheme      > placeholder for your theme
+index.html        > (original) html with all html elements (work in progress)
+readme.txt        > this file.
+
+Usage
+-----
+
+- Rename yourtheme to something more meaningful
+
+
+- Optional: use browser menu to switch styles
+
+- Todo / discuss: add the style switcher to the default publication
+  > maybe export the whole publication with the switcher and an empty 
+    yourtheme folder?
+  - Licence of js/styleswitcher.js taken from http://www.alistapart.com/articles/alternate/  
+    
\ No newline at end of file

Propchange: lenya/sandbox/design/docupub-redesign/readme.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Added: lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css (added)
+++ lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css Wed Oct  1 07:05:58 2008
@@ -0,0 +1,461 @@
+/*
+* 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.
+*/
+
+/* basic */
+
+img {
+  border: none;
+}
+
+/* page */
+
+#page {
+  padding: 0px;
+  margin: 0px;
+  font-family: 'Lucida Grande', Verdana, Arial, Sans-serif;
+}
+
+#header {
+  font-size: 11pt;
+  background-color: #EEEEF3;
+}
+
+#styleswitcher {
+  position: absolute;
+  right: 30px;
+  top: 118px;
+  width: 230px;
+  height: 20px;
+}
+
+#styleswitcher h2 {
+  font-size: 0.5em;
+  position: absolute;
+  left: 0;
+  bottom: 0;
+}
+
+#styleswitcher select {
+  position: absolute;
+  right: 0;
+  bottom: 5px;
+}
+
+#logo {
+  background-color: #FFFFFF;
+}
+
+#projectLogo {
+  background-color: #FFFFFF;
+  padding: 2em 0 0 250px;
+}
+
+img {
+  border: none;
+}
+
+#projectLogo img {
+  margin-bottom: .5em;
+}
+
+#projectLogo, #tagline {
+  vertical-align: bottom;
+}
+
+#tagline {
+    font-weight: bold;
+    padding-bottom: 15px;
+}
+
+/* tabs */
+
+ul#tabs {
+  font-weight: bold;
+  font-size: 11pt;
+  margin: 0;
+  padding: 0 0 0 250px;
+  list-style-type: none;
+}
+
+#tabs a {
+  text-decoration: none;
+  color: #888899;
+}
+
+#tabs li {
+  float: left;
+  margin-right: 3px;
+}
+
+.tab a, .tab-selected a {
+  display: block;
+}
+
+.tab-selected a {
+}
+
+.tab a span, .tab-selected a span {
+  padding: .5em 2em .5em 0;
+  display: block;
+}
+  
+.tab a:hover span {
+  color: #666666;
+}
+
+.tab-selected a span {
+  color: #000000;
+}
+
+#tabsSeparator {
+  clear: left;
+}
+
+/* menu */
+
+#menu, #banners {
+  float: left;
+  width: 220px;
+  list-style-type: none;
+  padding: 3em 10px .5em 20px;
+  margin: 0;
+  font-size: 10pt;
+}
+
+#banners {
+  clear: left;
+}
+
+#menu ul {
+  list-style-type: none;
+  margin: 0;
+  padding: 0 0 0 0;
+}
+
+#menu li {
+  font-size: 11pt;
+  font-weight: bold;
+  padding-left: 0;
+  background: none;
+}
+
+#menu li span {
+  margin-left: 0;
+  padding-left: 0;
+}
+
+#menu li ul li {
+  font-size: 10pt;
+  font-weight: normal;
+  padding-left: 1em;
+}
+
+#menu ul li.open {
+  background: url('../images/bullet-open.png') left .3em no-repeat;
+}
+
+#menu ul li.closed {
+  background: url('../images/bullet-closed.png') left .3em no-repeat;
+}
+
+#menu li.closed ul {
+  display: none;
+}
+
+#menu span, #menu a {
+  display: block;
+  margin: 0 0 3px 0;
+}
+
+#menu a {
+    text-decoration: none;
+    color: #555588;
+    cursor: pointer;
+}
+
+#menu a:hover {
+  color: black;
+}
+
+#menu li.selected span {
+  color: black;
+  font-weight: bold;
+}
+
+#search {
+  float: right;
+}
+
+#search form, #search p {
+  padding: 0;
+  margin: 0;
+  font-size: 10pt;
+  font-weight: bold;
+}
+  
+#search p {
+  padding: .5em 2em;
+}
+
+input.searchfield {
+  background-color: #ffffff;
+  border: solid 1px #BBBBCC;
+}
+
+input.searchsubmit {
+  margin-left: .3em;
+  vertical-align: top;
+}
+
+/* body */
+
+body {
+  margin: 0;
+  padding: 0;
+}
+
+#body {
+  border: none;
+  padding: 1em 2em 1em 0;
+  margin: 0 0 0 250px;
+  font-size: 10pt;
+}
+
+#footer {
+  font-size: 10pt;
+  margin-top: 2em;
+  border-top: 1px solid #DDDDDD;
+  color: #999999;
+}
+
+#main {
+  background-color: #FFFFFF;
+}
+
+.crossheading {
+  font-weight: bold;
+}
+
+table.simple {
+    border-collapse: collapse;
+    width: auto;
+}
+
+div#body td {
+}
+
+td.simple {
+    padding: 3px;
+    background-color: White;
+    border: solid 1px Navy;
+    vertical-align: top;
+}
+
+th.vertical {
+  font-weight: normal;
+  text-align: right;
+  padding-right: 1em;
+  color: #666666;
+}
+  
+img.simple {
+}
+
+#apacheBreadcrumb {
+  font-size: 10pt;
+  padding: .3em 1em;
+  float: left;
+}
+
+.media {
+    text-align: center;
+    padding: 10px;
+}
+
+.caption {
+    padding: 5px;
+    text-align: center;
+    font-style: italic;
+}
+
+.abstract {
+    font-weight: bold;
+}
+
+h1 {
+    font-size: 15pt;
+}
+
+h2 {
+  font-size: 12pt;
+  margin-top: 1.5em;
+}
+
+h3 {
+  font-size: 11pt;
+}
+
+.asset { 
+    display: block;
+    color: #000;
+    margin: 10px 10px 10px 5px;
+}
+
+.asset img {
+    vertical-align: middle;
+}
+
+div.search-box {
+  border: solid 1px #CCCCCC;
+  width: auto;
+  max-width: 100%;
+  margin-bottom: 10px;
+}
+
+div.search-box-title {
+    background-color: #DDDCCF;
+  border-bottom: solid 1px #CCCCCC;
+  color: Black;
+  font-weight: bold;
+  padding: 3px 10px;
+}
+
+div.search-box-body {
+    padding: 10px;
+    background-color: #F5F4E9;
+  color: Black;
+}
+
+/* Broken Internal Links in Authoring area */
+a.brokenlink {
+    background-color: yellow;
+    border: 1px dashed #000000;
+    text-decoration: none;
+}
+
+pre {
+  padding: .5em 1em;
+  background-color: #EEEEEE;
+}
+
+div.tocTitle {
+  font-size: 11pt;
+  font-weight: bold;
+  margin-bottom: .2em;
+}
+
+ul.toc {
+  padding: 0 0 0.5em 0;
+}
+
+div.warningTitle, div.noteTitle, div.fixmeTitle {
+  font-weight: bold;
+  color: Navy;
+  text-transform: capitalize;
+  white-space: nowrap;
+  padding: .5em .7em 0 .7em;
+  background-color: #EEEEEE;
+}
+
+p.warning, p.note, p.fixme {
+  background-color: #EEEEEE;
+  padding: 0 .7em .5em .7em;
+  margin-top: 0;
+}
+
+dl {
+}
+
+dt {
+  font-weight: bold;
+}
+
+dd {
+  margin: 0 0 .5em 1em;
+}
+
+/* --- TOC --- */
+
+ul.toc a {
+  text-decoration: none;
+}
+
+ul.toc {
+  margin: 0 0 1em 0;
+  list-style-type: none;
+}
+
+ul.toc ul.toc {
+  padding: 0;
+  border: none;
+  margin-bottom: .5em;
+}
+
+ul.toc ul.toc li {
+  padding: 0 0 0 16px;
+}
+
+div#tocBottom {
+  background: url('../../svg/tab-bottomLeft-5-FFEEEE-BB9999.png') left bottom no-repeat;
+}
+
+div#tocBottom div {
+  height: 5px;
+  background: url('../../svg/tab-bottomRight-5-FFEEEE-BB9999.png') right bottom no-repeat;
+}
+
+ul, ol {
+  padding-left: 1.5em;
+}
+
+
+#apacheBreadcrumb a {
+  text-decoration: none;
+}
+
+table.properties,
+table.list {
+  border-collapse: collapse;
+}
+
+table.properties th, table.properties td,
+table.list th, table.list td {
+  text-align: left;
+  vertical-align: top;
+  padding: .2em 2em .2em .5em;
+  border: none;
+}
+
+table.properties th,
+table.list th {
+  background-color: #DDDDDD;
+  white-space: nowrap;
+}
+
+table.properties tr.row1,
+table.list tr.row1 {
+  background-color: #EEEEEE;
+}
+
+table.properties tr.row2,
+table.list tr.row2 {
+  background-color: #FFFFFF;
+}
+
+tr.minorChange {
+  color: #999999;
+}

Propchange: lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/themes/original/css/lenya-default.css
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css (added)
+++ lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css Wed Oct  1 07:05:58 2008
@@ -0,0 +1,30 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+body,
+#body,
+#main {
+    color: red;
+}
+
+ul li {
+    padding-left: 1em;    
+    list-style-type: none;
+    background-image: url(images/list-item-marker-red.gif);
+    background-position: 0 0;
+    background-repeat: no-repeat;
+}
\ No newline at end of file

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme1/css/screen.css
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/themes/theme1/images/list-item-marker-red.gif
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/theme1/images/list-item-marker-red.gif?rev=700771&view=auto
==============================================================================
Binary file - no diff available.

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme1/images/list-item-marker-red.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme1/images/list-item-marker-red.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css (added)
+++ lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css Wed Oct  1 07:05:58 2008
@@ -0,0 +1,30 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+body,
+#body,
+#main {
+    color: green;
+}
+
+#body ul li {
+    padding-left: 1em;
+    list-style-type: none;
+    background-image: url(images/list-item-marker-green.gif);
+    background-position: 0 0;
+    background-repeat: no-repeat;
+}
\ No newline at end of file

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme2/css/screen.css
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/themes/theme2/images/list-item-marker-green.gif
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/theme2/images/list-item-marker-green.gif?rev=700771&view=auto
==============================================================================
Binary file - no diff available.

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme2/images/list-item-marker-green.gif
------------------------------------------------------------------------------
    svn:executable = *

Propchange: lenya/sandbox/design/docupub-redesign/themes/theme2/images/list-item-marker-green.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css (added)
+++ lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css Wed Oct  1 07:05:58 2008
@@ -0,0 +1,22 @@
+/*
+* Licensed to the Apache Software Foundation (ASF) under one or more
+* contributor license agreements.  See the NOTICE file distributed with
+* this work for additional information regarding copyright ownership.
+* The ASF licenses this file to You under the Apache License, Version 2.0
+* (the "License"); you may not use this file except in compliance with
+* the License.  You may obtain a copy of the License at
+*
+*     http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+/* your css goes here */
+
+body {
+    background-color: brown; 
+}
\ No newline at end of file

Propchange: lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: lenya/sandbox/design/docupub-redesign/themes/yourtheme/css/screen.css
------------------------------------------------------------------------------
    svn:executable = *

Added: lenya/sandbox/design/docupub-redesign/themes/yourtheme/readme.txt
URL: http://svn.apache.org/viewvc/lenya/sandbox/design/docupub-redesign/themes/yourtheme/readme.txt?rev=700771&view=auto
==============================================================================
--- lenya/sandbox/design/docupub-redesign/themes/yourtheme/readme.txt (added)
+++ lenya/sandbox/design/docupub-redesign/themes/yourtheme/readme.txt Wed Oct  1 07:05:58 2008
@@ -0,0 +1,35 @@
+/*
+* 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.
+*/
+
+I agree to put my files under the apache license see above
+----------------------------------------------------------
+put a cross (X) here ->
+
+About You
+---------
+Firstname:
+Name:
+Email:
+
+
+About Your theme:
+-----------------
+Goals:
+Features:
+Motivation:
+Tested Platforms / Browser:
+General Remarks:
\ No newline at end of file

Propchange: lenya/sandbox/design/docupub-redesign/themes/yourtheme/readme.txt
------------------------------------------------------------------------------
    svn:eol-style = native
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.