You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by so...@apache.org on 2007/11/15 21:57:31 UTC

svn commit: r595456 - in /myfaces/portlet-bridge/trunk: ./ api/ impl/ src/ src/site/ src/site/apt/ src/site/resources/ src/site/resources/css/ src/site/resources/images/

Author: sobryan
Date: Thu Nov 15 12:57:29 2007
New Revision: 595456

URL: http://svn.apache.org/viewvc?rev=595456&view=rev
Log:
PORTLETBRIDGE-4 - Added site documentation

Added:
    myfaces/portlet-bridge/trunk/src/
    myfaces/portlet-bridge/trunk/src/site/
    myfaces/portlet-bridge/trunk/src/site/apt/
    myfaces/portlet-bridge/trunk/src/site/apt/documentation.apt
    myfaces/portlet-bridge/trunk/src/site/apt/index.apt
    myfaces/portlet-bridge/trunk/src/site/resources/
    myfaces/portlet-bridge/trunk/src/site/resources/css/
    myfaces/portlet-bridge/trunk/src/site/resources/css/png-fix.htc
    myfaces/portlet-bridge/trunk/src/site/resources/css/site.css
    myfaces/portlet-bridge/trunk/src/site/resources/images/
    myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.png   (with props)
    myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.psd   (with props)
    myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.png   (with props)
    myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.psd   (with props)
    myfaces/portlet-bridge/trunk/src/site/site.xml
Modified:
    myfaces/portlet-bridge/trunk/api/pom.xml
    myfaces/portlet-bridge/trunk/impl/pom.xml
    myfaces/portlet-bridge/trunk/pom.xml

Modified: myfaces/portlet-bridge/trunk/api/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/api/pom.xml?rev=595456&r1=595455&r2=595456&view=diff
==============================================================================
--- myfaces/portlet-bridge/trunk/api/pom.xml (original)
+++ myfaces/portlet-bridge/trunk/api/pom.xml Thu Nov 15 12:57:29 2007
@@ -18,7 +18,7 @@
   <parent>
     <!-- TODO: Is this the correct group id? -->
     <groupId>org.apache.myfaces.portlet-bridge</groupId>
-    <artifactId>jsf-portlet-bridge</artifactId>
+    <artifactId>portlet-bridge</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
   
@@ -27,9 +27,16 @@
   <name>Portlet Bridge for JavaServer Faces API</name>
   <description>Public API for the Portlet Bridge for JavaServer Faces.</description>
   
-  <artifactId>jsf-portlet-bridge-api</artifactId>
+  <artifactId>portlet-bridge-api</artifactId>
   <packaging>jar</packaging>
     
+  <distributionManagement>
+    <site>
+      <id>apache-site</id>
+      <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/api</url>
+    </site>
+  </distributionManagement>
+
   <build>
     <plugins>
       <plugin>
@@ -70,22 +77,24 @@
           </execution>
         </executions>
       </plugin>
-    </plugins>
-  </build>
-  
-  <reporting>
-    <plugins>
-    
-      <!-- Generate JavaDocs (http://maven.apache.org/plugins/maven-javadoc-plugin/) -->      
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-javadoc-plugin</artifactId>
         <configuration>
           <showPackage>false</showPackage>
           <showProtected>true</showProtected>
+          <linksource>true</linksource>
+          <breakiterator>true</breakiterator>
+          <quiet>true</quiet>
+          <verbose>false</verbose>
+          <source>1.5</source>
+          <charset>UTF-8</charset>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+            <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link>
+          </links>
         </configuration>
       </plugin>
-    </plugins>   
-  </reporting>
-  
+    </plugins>
+  </build>  
 </project> 

Modified: myfaces/portlet-bridge/trunk/impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/impl/pom.xml?rev=595456&r1=595455&r2=595456&view=diff
==============================================================================
--- myfaces/portlet-bridge/trunk/impl/pom.xml (original)
+++ myfaces/portlet-bridge/trunk/impl/pom.xml Thu Nov 15 12:57:29 2007
@@ -18,7 +18,7 @@
   <parent>
     <!-- TODO: Is this the correct group id? -->
     <groupId>org.apache.myfaces.portlet-bridge</groupId>
-    <artifactId>jsf-portlet-bridge</artifactId>
+    <artifactId>portlet-bridge</artifactId>
     <version>1.0.0-SNAPSHOT</version>
   </parent>
   
@@ -27,16 +27,23 @@
   <name>Portlet Bridge for JavaServer Faces Impl</name>
   <description>Implementation of the Portlet Bridge for JavaServer Faces.</description>
   
-  <artifactId>jsf-portlet-bridge-impl</artifactId>
+  <artifactId>portlet-bridge-impl</artifactId>
   <packaging>jar</packaging>
   
   <dependencies>    
     <dependency>
       <groupId>org.apache.myfaces.portlet-bridge</groupId>
-      <artifactId>jsf-portlet-bridge-api</artifactId>
+      <artifactId>portlet-bridge-api</artifactId>
     </dependency>
   </dependencies>
   
+  <distributionManagement>
+    <site>
+      <id>apache-site</id>
+      <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/impl</url>
+    </site>
+  </distributionManagement>
+
   <build>
     <plugins>
     
@@ -80,20 +87,4 @@
       </plugin>
     </plugins>
   </build>
-  
-  <reporting>
-    <plugins>
-    
-      <!-- Generate JavaDocs (http://maven.apache.org/plugins/maven-javadoc-plugin/) -->      
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-javadoc-plugin</artifactId>
-        <configuration>
-          <showPackage>false</showPackage>
-          <showProtected>true</showProtected>
-        </configuration>
-      </plugin>
-    </plugins>   
-  </reporting>
-  
-</project> 
+  </project> 

Modified: myfaces/portlet-bridge/trunk/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/pom.xml?rev=595456&r1=595455&r2=595456&view=diff
==============================================================================
--- myfaces/portlet-bridge/trunk/pom.xml (original)
+++ myfaces/portlet-bridge/trunk/pom.xml Thu Nov 15 12:57:29 2007
@@ -21,7 +21,6 @@
 
 <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>
     <artifactId>myfaces-master</artifactId>
     <groupId>org.apache.myfaces.maven</groupId>
@@ -29,11 +28,13 @@
   </parent>
 
   <groupId>org.apache.myfaces.portlet-bridge</groupId>
-  <artifactId>jsf-portlet-bridge</artifactId>
+  <artifactId>portlet-bridge</artifactId>
   <packaging>pom</packaging>
   <name>Portlet Bridge for JavaServer Faces</name>
-  <url>http://myfaces.apache.org/bridge</url>
+  <url>http://myfaces.apache.org/portlet-bridge</url>
+  <inceptionYear>2007</inceptionYear>
   <version>1.0.0-SNAPSHOT</version>	 
+  
   <description>
   Portlet Bridge for JavaServer Faces is a subproject of Apache MyFaces which provides an
   implementation of the standardized Portlet Bridge as outlined by JSR-301 and subsequent
@@ -41,19 +42,33 @@
   be used to develop the Portlet Bridge Reference Implementation.
   </description>
 
-  <!--TODO These should be filled out when we get know what goes here-->
-  <!--
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/portlet-bridge/trunk</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/portlet-bridge/trunk</developerConnection>
     <url>http://svn.apache.org/viewcvs.cgi/myfaces/portlet-bridge/trunk</url>
   </scm>
-
   <issueManagement>
     <system>jira</system>
-    <url>http://issues.apache.org/jira/browse/PORTLET-BRIDGE</url>
+    <url>http://issues.apache.org/jira/browse/PORTLETBRIDGE</url>
   </issueManagement>
-  -->
+
+  <distributionManagement>
+    <repository>
+      <id>apache-maven</id>
+      <name>Apache Maven Repository</name>
+      <url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+    </repository>
+    <snapshotRepository>
+      <uniqueVersion>false</uniqueVersion>
+      <id>apache-maven-snapshots</id>
+      <name>Apache Maven Snapshot Repository</name>
+      <url>scpexe://minotaur.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
+    </snapshotRepository>
+    <site>
+      <id>apache-site</id>
+      <url>scpexe://minotaur.apache.org/www/myfaces.apache.org/portlet-bridge/</url>
+    </site>
+  </distributionManagement>
 
   <modules>
     <module>api</module>
@@ -67,24 +82,34 @@
       <organization>Oracle Corporation, U.S.A.</organization>
       <organizationUrl>http://www.oracle.com/</organizationUrl>
       <email>sobryan@apache.org</email>
+      <roles>
+        <role>Expert Group Member</role>
+        <role>Project Lead</role>
+      </roles>
       <timezone>-7</timezone>
     </developer>
-        
-    <!-- Initial contributors -->
     <developer>
-      <name>Michael Freedman</name>
-      <organization>Oracle Corporation, U.S.A.</organization>
-      <email>michael.freedman@oracle.com</email>
-      <organizationUrl>http://www.oracle.com/</organizationUrl>
-      <timezone>-8</timezone>
+      <id>mmarinschek</id>
+      <name>Martin Marinschek</name>
+      <organization>Irian, Austria</organization>
+      <email>martin.marinschek@gmail.com</email>
+      <roles>
+        <role>Expert Group Member</role>
+        <role>Committer</role>
+      </roles>
+      <timezone>+1</timezone>
     </developer>
-    
     <developer>
-      <name>T. Lei Oh</name>
-      <organization>Oracle Corporation, U.S.A.</organization>
-      <organizationUrl>http://www.oracle.com/</organizationUrl>
-      <email>lei.oh@oracle.com</email>
-      <timezone>-8</timezone>
+      <id>ssilvert</id>
+      <name>Stan Silvert</name>
+      <email>ssilvert@apache.org</email>
+      <organization>JBoss/Blog/organization</organization>
+      <organizationUrl>http://jboss.org/jbossBlog/blog/Stan%20Silvert/</organizationUrl>
+      <roles>
+        <role>Expert Group Member</role>
+        <role>Committer</role>
+      </roles>
+      <timezone />
     </developer>
   </developers>
 
@@ -165,14 +190,14 @@
         <!-- JSF Portlet Bridge API -->
         <dependency>
           <groupId>org.apache.myfaces.portlet-bridge</groupId>
-          <artifactId>jsf-portlet-bridge-api</artifactId>
+          <artifactId>portlet-bridge-api</artifactId>
           <version>${pom.version}</version>
         </dependency>
 
         <!-- JSF Portlet Bridge Impl -->
         <dependency>
           <groupId>org.apache.myfaces.portlet-bridge</groupId>
-          <artifactId>jsf-portlet-bridge-api</artifactId>
+          <artifactId>portlet-bridge-api</artifactId>
           <version>${pom.version}</version>
         </dependency>
       </dependencies>
@@ -235,9 +260,75 @@
     </dependency>
   </dependencies>
 
+  <reporting>
+    <excludeDefaults>true</excludeDefaults>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-checkstyle-plugin</artifactId>
+        <configuration>
+          <configLocation>http://svn.apache.org/repos/asf/myfaces/maven/trunk/build-tools/src/main/resources/config/myfaces-checks.xml</configLocation>
+          <headerLocation>http://svn.apache.org/repos/asf/myfaces/maven/trunk/build-tools/src/main/resources/config/myfaces-header.txt</headerLocation>
+          <sourceEncoding>utf-8</sourceEncoding>
+          <minimumTokens>20</minimumTokens>
+          <targetJdk>1.5</targetJdk>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.2</version>
+        <configuration>
+          <aggregate>false</aggregate>
+          <linksource>true</linksource>
+          <breakiterator>true</breakiterator>
+          <quiet>true</quiet>
+          <verbose>false</verbose>
+          <source>1.5</source>
+          <charset>UTF-8</charset>
+          <links>
+            <link>http://java.sun.com/j2se/1.5.0/docs/api</link>
+            <link>http://java.sun.com/javaee/javaserverfaces/1.2_MR1/docs/api</link>
+            <link>http://portals.apache.org/pluto/multiproject/portlet-api/apidocs</link>
+          </links>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <configuration>
+          <linkXref>true</linkXref>
+          <sourceEncoding>utf-8</sourceEncoding>
+          <minimumTokens>100</minimumTokens>
+          <targetJdk>1.5</targetJdk>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </reporting>
+
   <build>
     <pluginManagement>
       <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-checkstyle-plugin</artifactId>
+          <configuration>
+            <configLocation>http://svn.apache.org/repos/asf/myfaces/maven/trunk/build-tools/src/main/resources/config/myfaces-checks.xml</configLocation>
+            <headerLocation>http://svn.apache.org/repos/asf/myfaces/maven/trunk/build-tools/src/main/resources/config/myfaces-header.txt</headerLocation>
+            <sourceEncoding>utf-8</sourceEncoding>
+            <minimumTokens>20</minimumTokens>
+            <targetJdk>1.5</targetJdk>
+          </configuration>
+        </plugin>
+
 
         <!-- Site generation tools (http://maven.apache.org/plugins/maven-site-plugin/index.html)-->
         <plugin>
@@ -246,6 +337,18 @@
           <configuration>
             <outputEncoding>UTF-8</outputEncoding>
           </configuration>
+          <executions>
+            <execution>
+              <phase>package</phase>
+              <id>package</id>
+              <configuration>
+                <generateReports>true</generateReports>
+              </configuration>
+              <goals>
+                <goal>site</goal>
+              </goals>
+            </execution>
+          </executions>
         </plugin>
 
         <!-- Compiler (http://maven.apache.org/plugins/maven-compiler-plugin/index.html)-->

Added: myfaces/portlet-bridge/trunk/src/site/apt/documentation.apt
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/apt/documentation.apt?rev=595456&view=auto
==============================================================================
--- myfaces/portlet-bridge/trunk/src/site/apt/documentation.apt (added)
+++ myfaces/portlet-bridge/trunk/src/site/apt/documentation.apt Thu Nov 15 12:57:29 2007
@@ -0,0 +1,24 @@
+~~ 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.
+ 
+ ~~ Note: See documentation on http://maven.apache.org/guides/mini/guide-apt-format.html
+
+  ----------------------------------------
+  MyFaces Portlet Bridge API Documentation
+  ----------------------------------------
+
+API JavaDocs
+
+  * {{{api/apidocs/index.html}Bridge 1.1.2 for Portlet 1.0 and JSF 1.2}}

Added: myfaces/portlet-bridge/trunk/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/apt/index.apt?rev=595456&view=auto
==============================================================================
--- myfaces/portlet-bridge/trunk/src/site/apt/index.apt (added)
+++ myfaces/portlet-bridge/trunk/src/site/apt/index.apt Thu Nov 15 12:57:29 2007
@@ -0,0 +1,38 @@
+ ~~ 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.
+ 
+ ~~ Note: See documentation on http://maven.apache.org/guides/mini/guide-apt-format.html
+
+ ----------------------
+ MyFaces Portlet Bridge
+ ----------------------
+
+Introduction
+
+  The MyFaces Portlet Bridge is a project which supports the standard 
+  {{{http://www.jcp.org/en/jsr/detail?id=301}JSR-301}}Portlet Bridge for JavaServer Faces.  
+  This project is developed by the OpenSource community and is designed to provide the 
+  JSR-301 Reference Implementation.
+
+* Project Deliverables
+
+  As this project is designed to bridge two different specifications, the Portlet and the JSF 
+  Specifications, there will need to be a seperate bridge release for each version of JSF and
+  Portlet specifications.  Initially JSR-301 will cover two bridges, both of which will be
+  based off of the JSF 1.2 specification.  One of these bridges will be for the Portlet 1.0
+  specification and the second will address the Portlet 2.0 specification.  Bridges based off
+  of the JSF 2.0 specification will need to be part of a future JSR.
+
+

Added: myfaces/portlet-bridge/trunk/src/site/resources/css/png-fix.htc
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/resources/css/png-fix.htc?rev=595456&view=auto
==============================================================================
--- myfaces/portlet-bridge/trunk/src/site/resources/css/png-fix.htc (added)
+++ myfaces/portlet-bridge/trunk/src/site/resources/css/png-fix.htc Thu Nov 15 12:57:29 2007
@@ -0,0 +1,57 @@
+<public:component lightWeight="true">
+<public:attach event="onpropertychange" onEvent="propertyChanged()" />
+<script>
+/*
+ * Based on
+ * http://www.mongus.net/pngInfo/
+ * and
+ * http://webfx.eae.net/dhtml/pngbehavior/pngbehavior.html
+ *
+ */
+
+       var gNeedFix = needFix();
+
+       var transparentImage = "transparent.gif";
+
+       pngFix();
+
+       function propertyChanged() {
+               if (event.propertyName == "src") {
+                       pngFix();
+         }
+       }
+
+       function pngFix() {
+               if (!gNeedFix) {
+                       return;
+               }
+
+               var src = element.src;
+
+               if (src.indexOf(transparentImage) != -1) {
+                       return;
+               }
+
+               if (src.indexOf(".png") == -1) {
+                       return;
+               }
+
+   var w = element.width;
+   var h = element.height;
+               element.src = src.substring(0, src.lastIndexOf('/') + 1)  + transparentImage;
+   element.width = w;
+   element.height = h;
+               element.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='scale')";
+       }
+
+       function needFix() {
+               var pos = navigator.userAgent.indexOf("MSIE ");
+               if (pos == -1) {
+                       return false;
+               }
+               var version = navigator.userAgent.substring(pos + 5);
+               return (((version.indexOf("5.5") == 0) || (version.indexOf("6") == 0)) && (navigator.platform == ("Win32")));
+       }
+
+</script>
+</public:component>
\ No newline at end of file

Added: myfaces/portlet-bridge/trunk/src/site/resources/css/site.css
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/resources/css/site.css?rev=595456&view=auto
==============================================================================
--- myfaces/portlet-bridge/trunk/src/site/resources/css/site.css (added)
+++ myfaces/portlet-bridge/trunk/src/site/resources/css/site.css Thu Nov 15 12:57:29 2007
@@ -0,0 +1,216 @@
+/*
+ * 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 {
+  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: #660000;
+}
+
+h3 {
+	padding: 4px 4px 4px 24px;
+	color: #660000;
+	background-color: #CECECE;
+	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 {
+	color: #DDDDDD;
+	padding: 5px 5px 5px 5px;
+}
+
+* html #breadcrumbs {
+	padding-bottom: 8px;
+}
+#leftColumn {
+  background-color: #B2C4E0;
+}
+#navcolumn h5 {
+	font-size: smaller;
+	border-bottom: 1px solid #aaaaaa;
+	padding-top: 2px;
+	padding-left: 9px;
+	color: #49635a;
+	background-image: url(../images/h5.gif);
+	background-repeat: no-repeat;
+	background-position: left bottom;
+}
+
+table.bodyTable th {
+  color: white;
+  background-color: #999999;
+  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 {
+	background-color: #B5C8CF;
+	border-bottom: 1px solid #B5C8CF;
+}
+#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;
+}
+
+
+dl {
+  padding: 0px 0px 5px 0px;
+  border: 0px;
+  background: url(../images/dl.jpg) left top no-repeat
+}
+
+dt {
+  padding: 0px 0px 0px 25px;
+  border: 0px;
+  background-color: #FFFFFF;
+}
+
+div#leftColumn {
+  background: #F0F0F0;
+  border-color: #999 #999 #999 #999;
+  border-width: 1px;
+  border-style: solid;
+}
+
+
+
+#breadcrumbs{
+  background: #F0F0F0;
+  color: #000000;
+}
+
+#banner img {
+ behavior: url(css/png-fix.htc);
+}

Added: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.png
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.png?rev=595456&view=auto
==============================================================================
Binary file - no diff available.

Propchange: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.psd
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.psd?rev=595456&view=auto
==============================================================================
Binary file - no diff available.

Propchange: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo.psd
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.png
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.png?rev=595456&view=auto
==============================================================================
Binary file - no diff available.

Propchange: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.psd
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.psd?rev=595456&view=auto
==============================================================================
Binary file - no diff available.

Propchange: myfaces/portlet-bridge/trunk/src/site/resources/images/bridgeLogo_small.psd
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: myfaces/portlet-bridge/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/myfaces/portlet-bridge/trunk/src/site/site.xml?rev=595456&view=auto
==============================================================================
--- myfaces/portlet-bridge/trunk/src/site/site.xml (added)
+++ myfaces/portlet-bridge/trunk/src/site/site.xml Thu Nov 15 12:57:29 2007
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ * 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.
+-->
+<project name="MyFaces Portlet Bridge">
+  <bannerLeft>
+    <name>MyFaces</name>
+    <src>http://myfaces.apache.org/images/myfaces-logo.png</src>
+    <href>http://myfaces.apache.org/</href>
+  </bannerLeft>
+  <bannerRight>
+    <name>Portlet Bridge</name>
+    <src>images/bridgeLogo_small.png</src>
+    <!--href>http://myfaces.apache.org/portletBridge</href-->       
+  </bannerRight>
+
+  <publishDate format="dd MMM yyyy" />
+
+  <body>
+    <links>
+      <item name="Apache"  href="http://www.apache.org/"/>
+      <item name="MyFaces" href="http://myfaces.apache.org/"/>
+      <item name="Portals" href="http://portals.apache.org/"/>
+      <item name="JSR-301" href="http://www.jcp.org/en/jsr/detail?id=301"/>
+    </links>
+    <menu name="Portlet Bridge">
+      <item name="Overview" href="index.html"/>
+      <!--item name="Download" href="download.html"/-->
+      <item name="Mailing Lists" href="mail-lists.html"/>
+    </menu>
+    <menu name="Documentation">
+      <!--item name="Getting Started" href="getting-started.html"/-->
+      <!--item name="Roadmap" href="roadmap.html" /-->
+      <!--item name="FAQ" href="faq.html" /-->
+      <item name="API Documentation" href="documentation.html" />
+      <item name="Wiki Homepage" href="http://wiki.apache.org/myfaces/PortletBridge" />
+      <!--item name="Release Checklist" href="release-checklist.html" /-->
+    </menu>
+    <menu ref="reports" name="Project"/>
+    <!-- TODO: Should probably add project pages for various releases.  Initially there will be a
+         release for Portlet 1.0 with JSF 1.2 and Portlet 2.0 with JSF 1.2.  Next bridge will likely 
+         be Portlet 2.0 with JSF 2.0. -->
+  </body>
+</project>