You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by es...@apache.org on 2007/07/09 15:50:44 UTC

svn commit: r554653 - in /portals/pluto/trunk/pluto-site-skin: ./ pom.xml src/ src/main/ src/main/resources/ src/main/resources/css/ src/main/resources/css/maven-base.css src/main/resources/css/maven-theme.css src/main/resources/css/site.css

Author: esm
Date: Mon Jul  9 06:50:43 2007
New Revision: 554653

URL: http://svn.apache.org/viewvc?view=rev&rev=554653
Log:
Adding pluto-site-skin module (forgot to add it when committing r554464)

Added:
    portals/pluto/trunk/pluto-site-skin/
    portals/pluto/trunk/pluto-site-skin/pom.xml
    portals/pluto/trunk/pluto-site-skin/src/
    portals/pluto/trunk/pluto-site-skin/src/main/
    portals/pluto/trunk/pluto-site-skin/src/main/resources/
    portals/pluto/trunk/pluto-site-skin/src/main/resources/css/
    portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-base.css
    portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-theme.css
    portals/pluto/trunk/pluto-site-skin/src/main/resources/css/site.css

Added: portals/pluto/trunk/pluto-site-skin/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-site-skin/pom.xml?view=auto&rev=554653
==============================================================================
--- portals/pluto/trunk/pluto-site-skin/pom.xml (added)
+++ portals/pluto/trunk/pluto-site-skin/pom.xml Mon Jul  9 06:50:43 2007
@@ -0,0 +1,42 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+    <parent>
+        <artifactId>pluto</artifactId>
+        <groupId>org.apache.pluto</groupId>
+        <version>1.2.0-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>pluto-site-skin</artifactId>
+    <name>Pluto Website Skin</name>
+    <packaging>jar</packaging>
+    <description>Pluto Website Resources (CSS, images)</description>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.1</version>
+                <configuration>
+                    <descriptors>
+                        <descriptor>${basedir}/src/assembly/bin.xml</descriptor>
+                    </descriptors>
+                </configuration>
+            </plugin>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-remote-resources-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>${junit.version}</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+</project>

Added: portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-base.css
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-base.css?view=auto&rev=554653
==============================================================================
--- portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-base.css (added)
+++ portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-base.css Mon Jul  9 06:50:43 2007
@@ -0,0 +1,148 @@
+body {
+  margin: 0px;
+  padding: 0px;
+}
+img {
+  border:none;
+}
+table {
+  padding:0px;
+  width: 100%;
+  margin-left: -2px;
+  margin-right: -2px;
+}
+acronym {
+  cursor: help;
+  border-bottom: 1px dotted #feb;
+}
+table.bodyTable th, table.bodyTable td {
+  padding: 2px 4px 2px 4px;
+  vertical-align: top;
+}
+div.clear{
+  clear:both;
+  visibility: hidden;
+}
+div.clear hr{
+  display: none;
+}
+#bannerLeft, #bannerRight {
+  font-size: xx-large;
+  font-weight: bold;
+}
+#bannerLeft img, #bannerRight img {
+  margin: 0px;
+}
+.xleft, #bannerLeft img {
+  float:left;
+  text-shadow: #7CFC00;
+}
+.xright, #bannerRight img {
+  float:right;
+  text-shadow: #7CFC00;
+}
+#banner {
+  padding: 0px;
+}
+#banner img {
+  border: none;
+}
+#breadcrumbs {
+  padding: 3px 10px 3px 10px;
+}
+#leftColumn {
+ width: 170px;
+ float:left;
+ overflow: auto;
+}
+#bodyColumn {
+  margin-right: 1.5em;
+  margin-left: 197px;
+}
+#legend {
+  padding: 8px 0 8px 0;
+}
+#navcolumn {
+  padding: 8px 4px 0 8px;
+}
+#navcolumn h5 {
+  margin: 0;
+  padding: 0;
+  font-size: small;
+}
+#navcolumn ul {
+  margin: 0;
+  padding: 0;
+  font-size: small;
+}
+#navcolumn li {
+  list-style-type: none;
+  background-image: none;
+  background-repeat: no-repeat;
+  background-position: 0 0.4em;
+  padding-left: 16px;
+  list-style-position: outside;
+  line-height: 1.2em;
+  font-size: smaller;
+}
+#navcolumn li.expanded {
+  background-image: url(../images/expanded.gif);
+}
+#navcolumn li.collapsed {
+  background-image: url(../images/collapsed.gif);
+}
+#poweredBy {
+  text-align: center;
+}
+#navcolumn img {
+  margin-top: 10px;
+  margin-bottom: 3px;
+}
+#poweredBy img {
+  display:block;
+  margin: 20px 0 20px 17px;
+  border: 1px solid black;
+  width: 90px;
+  height: 30px;
+}
+#search img {
+    margin: 0px;
+    display: block;
+}
+#search #q, #search #btnG {
+    border: 1px solid #999;
+    margin-bottom:10px;
+}
+#search form {
+    margin: 0px;
+}
+#lastPublished {
+  font-size: x-small;
+}
+.navSection {
+  margin-bottom: 2px;
+  padding: 8px;
+}
+.navSectionHead {
+  font-weight: bold;
+  font-size: x-small;
+}
+.section {
+  padding: 4px;
+}
+#footer {
+  padding: 3px 10px 3px 10px;
+  font-size: x-small;
+}
+#breadcrumbs {
+  font-size: x-small;
+  margin: 0pt;
+}
+.source {
+  padding: 12px;
+  margin: 1em 7px 1em 7px;
+}
+.source pre {
+  margin: 0px;
+  padding: 0px;
+}

Added: portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-theme.css
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-theme.css?view=auto&rev=554653
==============================================================================
--- portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-theme.css (added)
+++ portals/pluto/trunk/pluto-site-skin/src/main/resources/css/maven-theme.css Mon Jul  9 06:50:43 2007
@@ -0,0 +1,140 @@
+body {
+  padding: 0px 0px 10px 0px;
+}
+body, td, select, input, li{
+  font-family: Verdana, Helvetica, Arial, sans-serif;
+  font-size: 13px;
+}
+code{
+  font-family: Courier, monospace;
+  font-size: 13px;
+}
+a {
+  text-decoration: none;
+}
+a:link {
+  color:#36a;
+}
+a:visited  {
+  color:#47a;
+}
+a:active, a:hover {
+  color:#69c;
+}
+#legend li.externalLink {
+  background: url(../images/external.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.externalLink, a.externalLink:link, a.externalLink:visited, a.externalLink:active, a.externalLink:hover {
+  background: url(../images/external.png) right center no-repeat;
+  padding-right: 18px;
+}
+#legend li.newWindow {
+  background: url(../images/newwindow.png) left top no-repeat;
+  padding-left: 18px;
+}
+a.newWindow, a.newWindow:link, a.newWindow:visited, a.newWindow:active, a.newWindow:hover {
+  background: url(../images/newwindow.png) right center no-repeat;
+  padding-right: 18px;
+}
+h2 {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #999;
+  color: #900;
+  background-color: #ddd;
+  font-weight:900;
+  font-size: x-large;
+}
+h3 {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #aaa;
+  color: #900;
+  background-color: #eee;
+  font-weight: normal;
+  font-size: large;
+}
+h4 {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #bbb;
+  color: #900;
+  background-color: #fff;
+  font-weight: normal;
+  font-size: large;
+}
+h5 {
+  padding: 4px 4px 4px 6px;
+  color: #900;
+  font-size: normal;
+}
+p {
+  line-height: 1.3em;
+  font-size: small;
+}
+#breadcrumbs {
+  border-top: 1px solid #aaa;
+  border-bottom: 1px solid #aaa;
+  background-color: #ccc;
+}
+#leftColumn {
+  margin: 10px 0 0 5px;
+  border: 1px solid #999;
+  background-color: #eee;
+}
+#navcolumn h5 {
+  font-size: smaller;
+  border-bottom: 1px solid #aaaaaa;
+  padding-top: 2px;
+  color: #000;
+}
+
+table.bodyTable th {
+  color: white;
+  background-color: #bbb;
+  text-align: left;
+  font-weight: bold;
+}
+
+table.bodyTable th, table.bodyTable td {
+  font-size: 1em;
+}
+
+table.bodyTable tr.a {
+  background-color: #ddd;
+}
+
+table.bodyTable tr.b {
+  background-color: #eee;
+}
+
+.source {
+  border: 1px solid #999;
+}
+dl {
+  padding: 4px 4px 4px 6px;
+  border: 1px solid #aaa;
+  background-color: #ffc;
+}
+dt {
+  color: #900;
+}
+#organizationLogo img, #projectLogo img, #projectLogo span{
+  margin: 8px;
+}
+#banner {
+  border-bottom: 1px solid #fff;
+}
+.errormark, .warningmark, .donemark, .infomark {
+  background: url(../images/icon_error_sml.gif) no-repeat;
+}
+
+.warningmark {
+  background-image: url(../images/icon_warning_sml.gif);
+}
+
+.donemark {
+  background-image: url(../images/icon_success_sml.gif);
+}
+
+.infomark {
+  background-image: url(../images/icon_info_sml.gif);
+}

Added: portals/pluto/trunk/pluto-site-skin/src/main/resources/css/site.css
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-site-skin/src/main/resources/css/site.css?view=auto&rev=554653
==============================================================================
--- portals/pluto/trunk/pluto-site-skin/src/main/resources/css/site.css (added)
+++ portals/pluto/trunk/pluto-site-skin/src/main/resources/css/site.css Mon Jul  9 06:50:43 2007
@@ -0,0 +1,208 @@
+/*
+* 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.
+*/
+/**
+ * =============================================================================
+ * Customized stylesheet for maven-generated site.
+ * =============================================================================
+ */
+
+
+html {
+    border-width: 10px;
+    border-style: solid;
+    border-color: #2E6794;
+}
+
+body {
+    
+}
+
+.composite {
+    background-color: #FFFFFF;
+    border-width: 1px;
+    border-style: solid;
+    border-color: #000000;
+}
+
+/**
+ * The top banner, which contains the apache portals logo and pluto logo.
+ */
+#banner {
+    background-color: #8DB7DF;
+    border-bottom-width: 1px;
+    border-bottom-style: solid;
+    border-bottom-color: #000000;
+    vertical-align: top;
+}
+
+/**
+ * The left part of the top banner, which is the apache portals logo.
+ */
+#bannerLeft {
+    display: none;
+}
+
+/**
+ * The right part of the top banner.
+ */
+#bannerRight {
+    width: 450px;
+    margin: 0px;
+    float: left;
+}
+
+/**
+ * Breadcrumbs under the top banner: last published date and quick links.
+ */
+#breadcrumbs {
+    background-color: #F0F0F0;
+}
+
+.highlightBox {
+    width: 240px;
+    float: right;
+    clear: right;
+    background-color: #EEEEEE;
+    margin: 0px 0px 20px 20px;
+    padding: 5px;
+    border-width: 1px;
+    border-style: solid;
+    border-color: #909090;
+}
+
+.highlightBox h5 {
+    margin: 0;
+    padding: 0;
+    color: #000000;
+    font-size: smaller;
+    border-width: 0px 0px 1px 0px;
+    border-style: solid;
+    border-color: #909090;
+}
+
+.highlightBox p {
+    margin: 1em 0 0.5em 0;
+    padding: 0;
+    font-size: smaller;
+}
+
+.highlightBox ul {
+    margin-top: 0;
+    margin-bottom: 1em;
+    list-style-type: square;
+}
+
+.highlightBox li {  
+    margin: 0;
+    padding: 0;
+    font-size: smaller;
+}
+
+#leftColumn {
+    background-color: #FFFFFF;
+    border-width: 1px;
+    border-style: solid;
+    border-color: #CCCCCC;
+}
+
+
+#bodyColumn {
+    
+}
+
+/**
+ * The section title.
+ */
+.section h2 {
+    padding: 0em;
+    margin: 0.25em 0em 0.25em 0em;
+    background-color: #FFFFFF;
+    color: #6D97BF;
+    font-family: "Trebuchet MS", Trebuchet, Arial, Verdana, Sans-serif;
+    font-weight: bold;
+    white-space: nowrap;
+    border-width: 0px 0px 1px 0px;
+    border-style: solid;
+    border-color: #8DB7DF;
+}
+
+/**
+ * The subsection title.
+ */
+.section h3 {
+    padding: 0em;
+    margin: 0.25em 0em 0.25em 0em;
+    background-color: #FFFFFF;
+    color: #000000;
+    font-family: "Trebuchet MS", Trebuchet, Arial, Verdana, Sans-serif;
+    font-weight: bold;
+    white-space: nowrap;
+    border-width: 0px;
+}
+
+/**
+ * The subsection title.
+ */
+.section h4 {
+    padding: 0em;
+    margin: 0.25em 0em 0.25em 0em;
+    background-color: #FFFFFF;
+    color: #000000;
+    font-family: "Trebuchet MS", Trebuchet, Arial, Verdana, Sans-serif;
+    font-size: 120%;
+    font-weight: bold;
+    border-width: 0px;
+}
+
+/**
+ * The FAQ.
+ */
+
+.section dl {
+    background-color: #FFFFFF;
+    border-width: 0px;
+}
+
+.section dt {
+    padding: 10px 0px 5px 0px;
+}
+
+.section dt b {
+    font-family: "Trebuchet MS", Trebuchet, Arial, Verdana, Sans-serif;
+    font-size: 120%;
+}
+
+.section dd {
+    border-width: 0px 0px 1px 0px;
+    border-color: #808080;
+    border-style: dotted;
+}
+
+.section dd hr {
+    visibility: hidden;
+}
+
+/**
+ * The footer.
+ */
+
+#footer {
+    border-top-width: 1px;
+    border-top-style: solid;
+    border-top-color: #2E6794;
+}
+