You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ar...@apache.org on 2008/04/19 07:05:23 UTC

svn commit: r649758 [2/2] - in /myfaces/trinidad/branches/exhibition: ./ trinidad-examples/ trinidad-examples/trinidad-exhibition/ trinidad-examples/trinidad-exhibition/api/ trinidad-examples/trinidad-exhibition/build/ trinidad-examples/trinidad-exhibi...

Added: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/WEB-INF/web.xml?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/WEB-INF/web.xml (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/WEB-INF/web.xml Fri Apr 18 22:05:18 2008
@@ -0,0 +1,183 @@
+<?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.
+	   
+-->
+<web-app xmlns="http://java.sun.com/xml/ns/javaee"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
+         version="2.5">
+  <!-- Use client-side state saving.  In Trinidad, it is an
+     optimized, token-based mechanism that is almost always a
+     better choice than the standard JSF server-side state saving. -->
+  <context-param>
+    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
+    <param-value>client</param-value>
+  </context-param>
+
+  <context-param>
+    <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
+    <param-value>.xhtml</param-value>
+  </context-param>
+
+  <!-- Parameter to set the maximum number of client view state tokens.
+     Uncomment this to test low-token-count scenarios.
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.CLIENT_STATE_MAX_TOKENS</param-name>
+    <param-value>3</param-value>
+  </context-param>
+  -->
+
+  <!-- Trinidad by default uses an optimized client-side state saving
+     mechanism. To disable that, uncomment the following -->
+  <!--context-param>
+    <param-name>org.apache.myfaces.trinidad.CLIENT_STATE_METHOD</param-name>
+    <param-value>all</param-value>
+  </context-param-->
+
+  <!-- Trinidad also supports an optimized strategy for caching some
+   view state at an application level, which significantly improves
+   scalability.  However, it makes it harder to develop (updates to
+   pages will not be noticed until the server is restarted), and in
+   some rare cases cannot be used for some pages (see Trinidad
+   documentation for more information) -->
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.USE_APPLICATION_VIEW_CACHE</param-name>
+    <param-value>false</param-value>
+  </context-param>
+
+  <!-- Comment this if you are not debugging skinning and want the 
+    styleclasses to not be compressed -->
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION</param-name>
+    <param-value>true</param-value>
+  </context-param>
+
+  <!-- If this parameter is enabled, Trinidad will automatically
+    check the modification date of your JSPs, and discard saved
+    state when they change. Trinidad will also automatically check
+    if your skinning css files have changed without having to restart
+    the server; this makes development easier,
+    but adds overhead that should be avoided when your application
+    is deployed. -->
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
+    <param-value>true</param-value>
+  </context-param>
+
+  <!-- Enables Change Persistence at a session scope.  By default,
+    Change Persistence is entirely disabled. The ChangeManager is
+    an API, which can persist component modifications (like,
+    is a showDetail or tree expanded or collapsed). For providing
+    a custom Change Persistence implementation inherit from the 
+    Trinidad API's ChangeManager class. As the value you have 
+    to use the fullqualified class name. -->
+  <!--context-param>
+    <param-name>org.apache.myfaces.trinidad.CHANGE_PERSISTENCE</param-name>
+    <param-value>session</param-value>
+  </context-param-->
+  
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.resource.DEBUG</param-name>
+    <param-value>false</param-value>
+  </context-param>
+
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.DEBUG_JAVASCRIPT</param-name>
+    <param-value>true</param-value>
+  </context-param>
+
+  <!-- With setting this parameter you are able to specify the logical
+    outcome prefix to launch the dialog framework. If not set, the
+    default value (dialog:) is used. -->
+  <!--context-param>
+    <param-name>org.apache.myfaces.trinidad.DIALOG_NAVIGATION_PREFIX</param-name>
+    <param-value>userInputHere:</param-value>
+  </context-param--> 
+
+  <context-param>
+    <param-name>org.apache.myfaces.trinidad.ALTERNATE_VIEW_HANDLER</param-name>
+    <param-value>com.sun.facelets.FaceletViewHandler</param-value>
+  </context-param>
+
+  <context-param>
+    <param-name>facelets.VIEW_MAPPINGS</param-name>
+    <param-value>*.xhtml</param-value>
+  </context-param>     
+
+  <context-param>
+    <param-name>facelets.SKIP_COMMENTS</param-name>
+    <param-value>true</param-value>
+  </context-param>
+
+  <filter>
+    <filter-name>trinidad</filter-name>
+    <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
+  </filter>
+  
+  <filter-mapping>
+    <filter-name>trinidad</filter-name>
+    <servlet-name>faces</servlet-name>
+  </filter-mapping>
+
+  <!-- Faces Servlet -->
+  <servlet>
+    <servlet-name>faces</servlet-name>
+    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
+  </servlet>
+  
+  <!-- resource loader servlet -->
+  <servlet>
+    <servlet-name>resources</servlet-name>
+    <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
+  </servlet>
+
+  <!-- source code servlet -->
+  <servlet>
+    <servlet-name>source</servlet-name>
+    <servlet-class>
+      org.apache.myfaces.trinidadexhibition.webapp.SourceCodeServlet
+    </servlet-class>
+  </servlet>
+
+  <!-- Faces Servlet Mappings -->
+  <servlet-mapping>
+    <servlet-name>faces</servlet-name>
+    <url-pattern>/faces/*</url-pattern>
+  </servlet-mapping>
+
+  <servlet-mapping>
+    <servlet-name>faces</servlet-name>
+    <url-pattern>*.jsf</url-pattern>
+  </servlet-mapping>
+    
+  <servlet-mapping>
+    <servlet-name>resources</servlet-name>
+    <url-pattern>/adf/*</url-pattern>
+  </servlet-mapping>
+
+  <servlet-mapping>
+    <servlet-name>source</servlet-name>
+    <url-pattern>*.source</url-pattern>
+  </servlet-mapping>
+
+  <!-- Welcome Files -->
+  <welcome-file-list>
+    <welcome-file>index.jsf</welcome-file>
+  </welcome-file-list>
+</web-app>

Propchange: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/WEB-INF/web.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/index.xhtml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/index.xhtml?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/index.xhtml (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/index.xhtml Fri Apr 18 22:05:18 2008
@@ -0,0 +1,25 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html
+  xmlns="http://www.w3.org/1999/xhtml"
+  xmlns:c="http://java.sun.com/jstl/core"
+  xmlns:f="http://java.sun.com/jsf/core"
+  xmlns:fn="http://java.sun.com/jsp/jstl/functions"
+  xmlns:h="http://java.sun.com/jsf/html"
+  xmlns:ui="http://java.sun.com/jsf/facelets"
+  xmlns:tr="http://myfaces.apache.org/trinidad"
+  xmlns:trh="http://myfaces.apache.org/trinidad/html"
+  xmlns:tre="http://myfaces.apache.org/trinidad/exhibition">
+  <body>
+    <ui:composition template="/WEB-INF/facelets/templates/main.xhtml">
+      <ui:define name="body">
+        Tree: <tr:outputText value="#{metaData.tagLibraries['tr'].tags['tree'].description}" escape="false" /><br/>
+        Tree component:
+          <tr:outputText
+            value="#{metaData.facesConfigData.components['org.apache.myfaces.trinidad.CoreTree'].description}"
+            escape="false" /><br/>
+        forEach: <tr:outputText value="#{metaData.tagLibraries['tr'].tags['forEach'].description}" escape="false" /><br/>
+      </ui:define>
+    </ui:composition>
+  </body>
+</html>

Propchange: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/index.xhtml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/skins/test-myfaces/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr 18 22:05:18 2008
@@ -0,0 +1 @@
+test-myfaces.css

Added: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/skins/test-myfaces/README
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/skins/test-myfaces/README?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/skins/test-myfaces/README (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/skins/test-myfaces/README Fri Apr 18 22:05:18 2008
@@ -0,0 +1,9 @@
+This is not a real skin, but a way for developers to change and test the myfaces skin
+without having to re-deploy the skin jar over and over again.
+
+To use, execute this command from the trinidad-exhibition working copy directory on a Linux OS:
+(cd web/src/main/webapp/skins/test-myfaces/ && \
+ln -snf ../../../../../../../../trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-desktop.css \
+test-myfaces.css) 
+
+Now all changes to this test skin will be made to the real one.
\ No newline at end of file

Propchange: myfaces/trinidad/branches/exhibition/trinidad-examples/trinidad-exhibition/web/src/main/webapp/skins/test-myfaces/README
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr 18 22:05:18 2008
@@ -0,0 +1 @@
+target

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Fri Apr 18 22:05:18 2008
@@ -0,0 +1 @@
+target

Added: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/pom.xml?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/pom.xml (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/pom.xml Fri Apr 18 22:05:18 2008
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+<!--
+    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.
+-->
+  
+  <modelVersion>4.0.0</modelVersion>
+  
+  <artifactId>trinidad-myfaces-skin</artifactId>
+
+  <name>Apache MyFaces Trinidad MyFaces Skin</name>
+  <description>
+    Skin to make Trinidad resemble the look and feel of the MyFaces site
+  </description>
+
+  <parent>
+    <groupId>org.apache.myfaces.trinidad</groupId>
+    <artifactId>trinidad</artifactId>
+    <version>1.2.8-SNAPSHOT</version>
+  </parent>
+  
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>trinidad-api</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>trinidad-impl</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+  </dependencies>
+
+</project>
+

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/java/org/apache/myfaces/trinidad/skins/MyFacesSkinLoader.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/java/org/apache/myfaces/trinidad/skins/MyFacesSkinLoader.java?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/java/org/apache/myfaces/trinidad/skins/MyFacesSkinLoader.java (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/java/org/apache/myfaces/trinidad/skins/MyFacesSkinLoader.java Fri Apr 18 22:05:18 2008
@@ -0,0 +1,45 @@
+package org.apache.myfaces.trinidad.skins;
+
+import javax.faces.context.ExternalContext;
+
+import org.apache.myfaces.trinidad.config.Configurator;
+import org.apache.myfaces.trinidad.skin.SkinFactory;
+import org.apache.myfaces.trinidadinternal.skin.SkinExtension;
+
+/**
+ * Loads the skins into the skin factory
+ *
+ * @author Andrew Robinson
+ */
+public class MyFacesSkinLoader
+  extends Configurator
+{
+  /**
+   * @see org.apache.myfaces.trinidad.config.Configurator#init(javax.faces.context.ExternalContext)
+   */
+  @Override
+  public void init(ExternalContext externalContext)
+  {
+    super.init(externalContext);
+    
+    SkinFactory skinFactory = SkinFactory.getFactory();
+    
+    SkinExtension skin = new SkinExtension(
+      skinFactory.getSkin(null, "simple.desktop"),
+      "myfaces.desktop",
+      "myfaces",
+      "org.apache.myfaces.trinidad.desktop",
+      "META-INF/style/myfaces-desktop.css");
+    
+    skinFactory.addSkin(skin.getId(), skin);
+    
+    skin = new SkinExtension(
+      skinFactory.getSkin(null, "simple.pda"),
+      "myfaces.pda",
+      "myfaces",
+      "org.apache.myfaces.trinidad.pda",
+      "META-INF/style/myfaces-pda.css");
+    
+    skinFactory.addSkin(skin.getId(), skin);
+  }
+}

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/java/org/apache/myfaces/trinidad/skins/MyFacesSkinLoader.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/services/org.apache.myfaces.trinidad.config.Configurator
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/services/org.apache.myfaces.trinidad.config.Configurator?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/services/org.apache.myfaces.trinidad.config.Configurator (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/services/org.apache.myfaces.trinidad.config.Configurator Fri Apr 18 22:05:18 2008
@@ -0,0 +1 @@
+org.apache.myfaces.trinidad.skins.MyFacesSkinLoader

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/services/org.apache.myfaces.trinidad.config.Configurator
------------------------------------------------------------------------------
    svn:eol-style = native

Added: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-desktop.css
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-desktop.css?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-desktop.css (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-desktop.css Fri Apr 18 22:05:18 2008
@@ -0,0 +1,93 @@
+/*
+  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.
+*/
+.AFBackgroundLightGradientStart:alias {
+  background-color: #ecf2e4;
+}
+.AFBackgroundLightGradientEnd:alias {
+  background-color: #dae5cb;
+}
+.AFLightTextColor:alias {
+  color: #669900;
+}
+.AFLightTextDisabledColor:alias {
+  color: #8c9973
+}
+.AFDarkTextColor:alias {
+  color: #705F38;
+}
+.AFDarkTextDisabledColor:alias {
+  color: #706b5f;
+}
+.AFTextColorHover:alias {
+  color: #FF9900;
+}
+.AFLightElementBorder:alias {
+  border: 1px solid #669900;
+}
+
+.AFDefaultLink:alias {
+  text-decoration: none;
+  -tr-rule-ref:selector(".AFLightTextColor:alias");
+}
+.AFDefaultLinkHover:alias {
+  text-decoration: none;
+  -tr-rule-ref:selector(".AFTextColorHover:alias");
+}
+.AFDefaultLinkDisabled:alias {
+  text-decoration: none;
+  -tr-rule-ref:selector(".AFLightTextDisabledColor:alias");
+}
+
+.AFLinkAccessKeyStyle:alias {
+  text-decoration: underline;
+}
+.OraLink,
+.OraLink:link,
+.OraLinkText,
+.OraLink:visited,
+.p_OraTreeRow A,
+.p_OraTreeRow A:link,
+.p_OraTreeRow A:visited,
+.OraNavBarActiveLink {
+  -tr-rule-ref:selector(".AFDefaultLink:alias");
+}
+.OraLink:hover,
+.p_OraTreeRow A:hover,
+.OraNavBarActiveLink:hover {
+  -tr-rule-ref:selector(".AFDefaultLinkHover:alias");
+}
+.OraLinkDisabled,
+.OraLinkDisabled:hover {
+  -tr-rule-ref:selector(".AFDefaultLinkDisabled:alias");
+}
+
+.AFFormControlContent {
+  width: 150px;
+  background-position: top;
+  background-repeat: repeat-x;
+}
+af|inputText::content {
+  -tr-rule-ref:selector(".AFFormControlContent:alias");
+  -tr-rule-ref:selector(".AFLightElementBorder:alias");
+  /*background-image: TODO */
+}
+
+.AFRequiredIcon:alias {
+  content: '*';
+}

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-desktop.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-pda.css
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-pda.css?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-pda.css (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-pda.css Fri Apr 18 22:05:18 2008
@@ -0,0 +1 @@
+/* TODO */
\ No newline at end of file

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/myfaces-skin/src/main/resources/META-INF/style/myfaces-pda.css
------------------------------------------------------------------------------
    svn:eol-style = native

Added: myfaces/trinidad/branches/exhibition/trinidad-skins/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/branches/exhibition/trinidad-skins/pom.xml?rev=649758&view=auto
==============================================================================
--- myfaces/trinidad/branches/exhibition/trinidad-skins/pom.xml (added)
+++ myfaces/trinidad/branches/exhibition/trinidad-skins/pom.xml Fri Apr 18 22:05:18 2008
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+
+<!--
+    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.
+-->
+  
+  <modelVersion>4.0.0</modelVersion>
+  
+  <artifactId>trinidad-skins</artifactId>
+
+  <packaging>pom</packaging>
+  <name>Apache MyFaces Trinidad Skins</name>
+  <description>
+    The parent maven project for the Apache MyFaces Trinidad Skins
+  </description>
+
+  <parent>
+    <groupId>org.apache.myfaces.trinidad</groupId>
+    <artifactId>trinidad</artifactId>
+    <version>1.2.8-SNAPSHOT</version>
+  </parent>
+
+  <modules>
+    <module>myfaces-skin</module>
+    <!-- TODO: move the others out of the demo -->
+  </modules>
+
+</project>
+

Propchange: myfaces/trinidad/branches/exhibition/trinidad-skins/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native