You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2006/06/07 20:30:03 UTC

svn commit: r412480 - in /tapestry/tapestry4/trunk: ./ annotations/ contrib/ examples/ framework/ maven-skin/ maven-skin/src/ maven-skin/src/main/ maven-skin/src/main/resources/ maven-skin/src/main/resources/css/ maven-skin/src/main/resources/images/ p...

Author: jkuhnert
Date: Wed Jun  7 11:30:02 2006
New Revision: 412480

URL: http://svn.apache.org/viewvc?rev=412480&view=rev
Log:
Created the start of a custom tapestry maven skin theme, 
shouldn't need to do any image/css tweaks on anything now(for the most part) - unless it's
in the actual skin. 

Added:
    tapestry/tapestry4/trunk/maven-skin/
    tapestry/tapestry4/trunk/maven-skin/pom.xml   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/
    tapestry/tapestry4/trunk/maven-skin/src/main/
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/maven-theme.css   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/asf_logo_wide.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/banner.jpg   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/bg.jpg   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/breadcrumbs.jpg   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/collapsed.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/expanded.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h3.jpg   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h5.jpg   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_error_sml.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_info_sml.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_success_sml.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_warning_sml.gif   (with props)
    tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/tapestry_banner.gif   (with props)
Removed:
    tapestry/tapestry4/trunk/src/site/resources/images/
Modified:
    tapestry/tapestry4/trunk/annotations/pom.xml
    tapestry/tapestry4/trunk/contrib/pom.xml
    tapestry/tapestry4/trunk/examples/pom.xml
    tapestry/tapestry4/trunk/framework/pom.xml
    tapestry/tapestry4/trunk/pom.xml
    tapestry/tapestry4/trunk/portlet/pom.xml
    tapestry/tapestry4/trunk/src/site/site.xml

Modified: tapestry/tapestry4/trunk/annotations/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/annotations/pom.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/annotations/pom.xml (original)
+++ tapestry/tapestry4/trunk/annotations/pom.xml Wed Jun  7 11:30:02 2006
@@ -66,7 +66,7 @@
     <distributionManagement>
     <site>
       <id>tapestry</id>
-      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/annotations</url>
     </site>
     </distributionManagement>
 </project>

Modified: tapestry/tapestry4/trunk/contrib/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/contrib/pom.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/contrib/pom.xml (original)
+++ tapestry/tapestry4/trunk/contrib/pom.xml Wed Jun  7 11:30:02 2006
@@ -39,6 +39,7 @@
         </plugins>
     </build>
     <reporting>
+        <outputDirectory>../target/site/contrib</outputDirectory>
         <plugins>
             <!-- 
             <plugin>
@@ -63,6 +64,7 @@
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
                     <linksource>true</linksource>
+                    <destDir>../target/site/contrib/apidocs</destDir>
                 </configuration>
             </plugin>
         </plugins>
@@ -70,7 +72,7 @@
     <distributionManagement>
     <site>
       <id>tapestry</id>
-      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/contrib</url>
     </site>
     </distributionManagement>
 </project>

Modified: tapestry/tapestry4/trunk/examples/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/examples/pom.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/examples/pom.xml (original)
+++ tapestry/tapestry4/trunk/examples/pom.xml Wed Jun  7 11:30:02 2006
@@ -40,6 +40,7 @@
         </dependencies>
     </dependencyManagement>
     <reporting>
+        <outputDirectory>../target/site/examples</outputDirectory>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

Modified: tapestry/tapestry4/trunk/framework/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/framework/pom.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/framework/pom.xml (original)
+++ tapestry/tapestry4/trunk/framework/pom.xml Wed Jun  7 11:30:02 2006
@@ -108,6 +108,7 @@
         </plugins>
     </build>
     <reporting>
+        <outputDirectory>../target/site/framework</outputDirectory>
         <plugins>
             <!-- 
             <plugin>
@@ -132,6 +133,7 @@
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
                     <linksource>true</linksource>
+                    <destDir>../target/site/framework/apidocs</destDir>
                 </configuration>
             </plugin>
         </plugins>
@@ -139,7 +141,7 @@
     <distributionManagement>
     <site>
       <id>tapestry</id>
-      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/framework</url>
     </site>
     </distributionManagement>
 </project>

Added: tapestry/tapestry4/trunk/maven-skin/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/pom.xml?rev=412480&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/maven-skin/pom.xml (added)
+++ tapestry/tapestry4/trunk/maven-skin/pom.xml Wed Jun  7 11:30:02 2006
@@ -0,0 +1,14 @@
+<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">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.tapestry</groupId>
+    <artifactId>tapestry-project</artifactId>
+    <version>4.1.0-SNAPSHOT</version>
+  </parent>
+  <artifactId>maven-skin</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Maven Site Skin</name>
+  <description>Maven Site Skin</description>
+</project>
\ No newline at end of file

Propchange: tapestry/tapestry4/trunk/maven-skin/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/maven-theme.css
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/maven-theme.css?rev=412480&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/maven-theme.css (added)
+++ tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/maven-theme.css Wed Jun  7 11:30:02 2006
@@ -0,0 +1,197 @@
+body {
+        background-color: #fff;
+	font-family: Verdana, Helvetica, Arial, sans-serif;
+	margin-left: auto;
+	margin-right: auto;
+	background-repeat: repeat-y;
+	font-size: 13px;
+	padding: 0px;
+}
+td, select, input, li{
+	font-family: Verdana, Helvetica, Arial, sans-serif;
+	font-size: 12px;
+	color:#333333;
+}
+code{
+  font-size: 12px;
+}
+a {
+  text-decoration: none;
+}
+a:link {
+  color:#47a;
+}
+a:visited  {
+  color:#666666;
+}
+a:active, a:hover {
+  color:#990000;
+}
+#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 {
+	font-size: 17px;
+	color: #333333;  
+}
+h3 {
+	padding: 4px 4px 4px 24px;
+	color: #666;
+	background-color: #ccc;
+	font-weight: bold;
+	font-size: 14px;
+	background-image: url(../images/h3.jpg);
+	background-repeat: no-repeat;
+	background-position: left bottom;
+}
+p {
+  line-height: 1.3em;
+  font-size: 12px;
+  color: #000;
+}
+#breadcrumbs {
+	height: 13px;
+	background-image: url(../images/breadcrumbs.jpg);
+	padding: 5px 10px 14px 20px;
+}
+* html #breadcrumbs {
+	padding-bottom: 8px;
+}
+#leftColumn {
+	margin: 10px 0 10px 0;
+	border-top-color: #ccc;
+	border-top-style: solid;
+	border-top-width: 1px;
+	border-right-color: #ccc;
+	border-right-style: solid;
+	border-right-width: 1px;
+	border-bottom-color: #ccc;
+	border-bottom-style: solid;
+	border-bottom-width: 1px;
+	padding-right: 5px;
+	padding-left: 5px;
+}
+#navcolumn h5 {
+	font-size: smaller;
+	border-bottom: 1px solid #aaaaaa;
+	padding-top: 2px;
+	padding-left: 9px;
+	color: #49635a;
+	background-image: url(../images/h5.jpg);
+	background-repeat: no-repeat;
+	background-position: left bottom;
+}
+
+table.bodyTable th {
+  color: white;
+  background-color: #bbb;
+  text-align: left;
+  font-weight: bold;
+}
+
+table.bodyTable th, table.bodyTable td {
+  font-size: 11px;
+}
+
+table.bodyTable tr.a {
+  background-color: #ddd;
+}
+
+table.bodyTable tr.b {
+  background-color: #eee;
+}
+
+.source {
+  border: 1px solid #999;
+  overflow:auto
+}
+dt {
+	padding: 4px 4px 4px 24px;
+	color: #333333;
+	background-color: #ccc;
+	font-weight: bold;
+	font-size: 14px;
+	background-image: url(../images/h3.jpg);
+	background-repeat: no-repeat;
+	background-position: left bottom;
+}
+.subsectionTitle {
+	font-size: 13px;
+	font-weight: bold;
+	color: #666;
+
+}
+
+table {
+	font-size: 10px;
+}
+.xright a:link, .xright a:visited, .xright a:active {
+  color: #666;
+}
+.xright a:hover {
+  color: #003300;
+}
+/*
+#banner {
+	height: 93px;
+	background: url(../images/banner.jpg);
+}
+*/
+#navcolumn ul {
+	margin: 5px 0 15px -0em;
+}
+#navcolumn ul a {
+	color: #333333;
+}
+#navcolumn ul a:hover {
+	color: red;
+}
+#intro {
+	border: solid #ccc 1px;
+	margin: 6px 0px 0px 0px;
+	padding: 10px 40px 10px 40px;
+}
+.subsection {
+	margin-left: 3px;
+	color: #333333;
+}
+
+.subsection p {
+	font-size: 12px;
+}
+#footer {
+  padding: 10px;
+  margin: 20px 0px 20px 0px;
+  border-top: solid #ccc 1px; 
+  color: #333333;
+}
+
+.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);
+}
+

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/css/maven-theme.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/asf_logo_wide.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/asf_logo_wide.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/asf_logo_wide.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/banner.jpg
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/banner.jpg?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/banner.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/bg.jpg
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/bg.jpg?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/bg.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/breadcrumbs.jpg
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/breadcrumbs.jpg?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/breadcrumbs.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/collapsed.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/collapsed.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/expanded.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/expanded.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h3.jpg
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h3.jpg?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h3.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h5.jpg
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h5.jpg?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/h5.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_error_sml.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_error_sml.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_error_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_info_sml.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_info_sml.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_info_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_success_sml.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_success_sml.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_success_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_warning_sml.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_warning_sml.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/icon_warning_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/tapestry_banner.gif
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/tapestry_banner.gif?rev=412480&view=auto
==============================================================================
Binary file - no diff available.

Propchange: tapestry/tapestry4/trunk/maven-skin/src/main/resources/images/tapestry_banner.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: tapestry/tapestry4/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/pom.xml (original)
+++ tapestry/tapestry4/trunk/pom.xml Wed Jun  7 11:30:02 2006
@@ -78,6 +78,7 @@
         <module>annotations</module>
         <module>portlet</module>
         <module>examples</module>
+        <module>maven-skin</module>
     </modules>
     <dependencyManagement>
         <dependencies>
@@ -206,4 +207,10 @@
       <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
     </site>
     </distributionManagement>
+<repositories>
+ <repository>
+   <id>apache.snapshots</id>
+   <url>http://cvs.apache.org/maven-snapshot-repository</url>
+ </repository>
+</repositories>
 </project>

Modified: tapestry/tapestry4/trunk/portlet/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/portlet/pom.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/portlet/pom.xml (original)
+++ tapestry/tapestry4/trunk/portlet/pom.xml Wed Jun  7 11:30:02 2006
@@ -42,6 +42,7 @@
         </plugins>
     </build>
     <reporting>
+        <outputDirectory>../target/site/portlet</outputDirectory>
         <plugins>
             <!-- 
             <plugin>
@@ -66,6 +67,7 @@
                 <artifactId>maven-javadoc-plugin</artifactId>
                 <configuration>
                     <linksource>true</linksource>
+                    <destDir>../target/site/portlet/apidocs</destDir>
                 </configuration>
             </plugin>
         </plugins>
@@ -73,7 +75,7 @@
     <distributionManagement>
     <site>
       <id>tapestry</id>
-      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/</url>
+      <url>scp://minotaur.apache.org/www/tapestry.apache.org/tapestry4/portlet</url>
     </site>
     </distributionManagement>
 </project>

Modified: tapestry/tapestry4/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/site.xml?rev=412480&r1=412479&r2=412480&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/src/site/site.xml (original)
+++ tapestry/tapestry4/trunk/src/site/site.xml Wed Jun  7 11:30:02 2006
@@ -10,6 +10,11 @@
         <href>http://www.apache.org</href>
         <src>images/asf_logo_wide.gif</src>
     </bannerRight>
+    <skin>
+        <groupId>org.apache.tapestry</groupId>
+        <artifactId>maven-skin</artifactId>
+        <version>1.0-SNAPSHOT</version>
+    </skin>
     <body>
         <links>
             <item name="Apache" href="http://www.apache.org/"/>