You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2008/02/17 05:08:06 UTC

svn commit: r628418 [1/3] - in /myfaces/trinidad/trunk_1.2.x/trinidad-sandbox: sandbox-demo/ sandbox-impl/ sandbox-impl/src/ sandbox-impl/src/main/ sandbox-impl/src/main/conf/ sandbox-impl/src/main/java/ sandbox-impl/src/main/java/org/ sandbox-impl/src...

Author: lu4242
Date: Sat Feb 16 20:08:04 2008
New Revision: 628418

URL: http://svn.apache.org/viewvc?rev=628418&view=rev
Log:
create trinidad sandbox and add trs:tableFormLayout component

Added:
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml   (with props)
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml   (with props)
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/conf/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java   (with props)
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/xhtml/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/xhtml/TableFormLayoutRenderer.java   (with props)
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/resources/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/resources/META-INF/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/resources/META-INF/tableFormLayout.xss
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/resources/META-INF/trinidad-skins.xml   (with props)

Added: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml?rev=628418&view=auto
==============================================================================
--- myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml (added)
+++ myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml Sat Feb 16 20:08:04 2008
@@ -0,0 +1,223 @@
+<?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.
+	   
+-->
+  <parent>
+    <groupId>org.apache.myfaces.trinidad</groupId>
+    <artifactId>trinidad-sandbox</artifactId>
+    <version>1.2.7-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <name>Apache MyFaces Trinidad Sandbox Demo</name>
+  <description>Apache MyFaces Trinidad Sandbox Demo</description>
+
+  <artifactId>sandbox-demo</artifactId>
+  <packaging>war</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.myfaces.trinidadbuild</groupId>
+        <artifactId>maven-jdev-plugin</artifactId>
+        <version>1.2.3</version>
+        <configuration>
+          <libraries>
+            <library>JSP Runtime</library>
+          </libraries>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <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>
+
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>sandbox-api</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>${pom.groupId}</groupId>
+      <artifactId>sandbox-impl</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+
+
+
+    <dependency>
+      <groupId>javax.mail</groupId>
+      <artifactId>mail</artifactId>
+      <version>1.4</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>javax.activation</groupId>
+      <artifactId>activation</artifactId>
+      <version>1.1</version>
+    </dependency>
+
+    <dependency>
+      <groupId>jstl</groupId>
+      <artifactId>jstl</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+
+<!-- Dependencies pulled in via myfaces/ri pom
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+      <version>1.6</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-digester</groupId>
+      <artifactId>commons-digester</artifactId>
+      <version>1.5</version>
+      <scope>runtime</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>1.0.4</version>
+      <scope>runtime</scope>
+    </dependency>
+    
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>2.1</version>
+      <scope>runtime</scope>
+    </dependency>
+-->
+
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>javax.servlet.jsp</groupId>
+      <artifactId>jsp-api</artifactId>
+    </dependency>
+
+    <!-- For SourceCodeServlet -->
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.1</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+  <profiles>
+     <profile>
+       <id>jettyConfig</id>
+       <build>
+         <plugins>
+           <plugin>
+             <groupId>org.mortbay.jetty</groupId>
+             <artifactId>maven-jetty-plugin</artifactId>
+             <version>6.1.2rc0</version>
+             <configuration>
+               <scanIntervalSeconds>10</scanIntervalSeconds>
+             </configuration>
+           </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <!-- By default the war examples use myfaces! :) -->
+    <profile>
+      <id>myfaces</id>
+      <activation>
+        <property>
+          <name>!jsf</name>
+        </property>
+      </activation>
+      <dependencies>
+
+        <dependency>
+          <groupId>org.apache.myfaces.core</groupId>
+          <artifactId>myfaces-api</artifactId>
+          <scope>compile</scope>
+        </dependency>
+
+        <dependency>
+          <groupId>org.apache.myfaces.core</groupId>
+          <artifactId>myfaces-impl</artifactId>
+          <scope>runtime</scope>
+        </dependency>
+      </dependencies>
+    </profile>
+
+    <!-- To use the examples using the Sun's JSF Reference Implementation: -Djsf=ri -->
+    <profile>
+      <id>jsfri</id>
+      <activation>
+        <property>
+          <name>jsf</name>
+          <value>ri</value>
+        </property>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>javax.faces</groupId>
+          <artifactId>jsf-api</artifactId>
+          <version>1.2_04</version>
+        </dependency>
+        <dependency>
+          <groupId>javax.faces</groupId>
+          <artifactId>jsf-impl</artifactId>
+          <version>1.2_04</version>
+        </dependency>
+      </dependencies>
+
+      <repositories>
+        <repository>
+          <id>java.net</id>
+          <name>java.net Maven 1 Repository</name>
+          <url>https://maven-repository.dev.java.net/nonav/repository</url>
+          <layout>legacy</layout>
+        </repository>
+      </repositories>
+
+      <properties>
+        <jsf_implementation>JSF-RI</jsf_implementation>
+      </properties>
+    </profile>
+  </profiles>
+
+</project>

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-demo/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml?rev=628418&view=auto
==============================================================================
--- myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml (added)
+++ myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml Sat Feb 16 20:08:04 2008
@@ -0,0 +1,305 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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 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>
+    <groupId>org.apache.myfaces.trinidad</groupId>
+    <artifactId>trinidad-sandbox</artifactId>
+    <version>1.2.7-SNAPSHOT</version>
+  </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <name>Apache MyFaces Trinidad Sandbox Impl</name>
+  <description>Private implementation of the Apache MyFaces Trinidad project</description>
+
+  <artifactId>sandbox-impl</artifactId>
+  <packaging>jar</packaging>
+
+  <build>
+    <plugins>
+    <!-- 
+      <plugin>
+        <groupId>org.apache.myfaces.trinidadbuild</groupId>
+        <artifactId>maven-jdev-plugin</artifactId>
+        <version>1.2.3</version>
+        <configuration>
+          <sourceRoots>
+            <sourceRoot>src/main/java-templates/</sourceRoot>
+          </sourceRoots>
+          <resourceRoots>
+            <resourceRoot>src/main/javascript/</resourceRoot>
+          </resourceRoots>
+        </configuration>
+      </plugin>
+       -->
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+<!-- Uncomment the following to run with assertions;  however,
+     do not do so with maven 2.0.6, as you get a LinkageError
+          <argLine>-enableassertions</argLine>
+          <forkMode>once</forkMode>
+-->
+          <systemProperties>
+            <!-- Trinidad currently fails proper HTML ID validity,
+		 and rather badly - so turn that test off -->
+            <property>
+              <name>org.apache.myfaces.trinidad.TestIdValidity</name>
+              <value>false</value>
+            </property>
+            <!-- Trinidad currently puts a lot of block-elements inside
+		 of inline elements - so turn that test off too -->
+            <property>
+              <name>org.apache.myfaces.trinidad.TestBlockElementNesting</name>
+              <value>false</value>
+            </property>
+            <property>
+              <name>trinidad.renderkit.fulltests</name>
+              <value>lenient</value>
+            </property>
+            <property>
+              <name>trinidad.renderkit.scripts</name>
+              <value>${project.basedir}/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/testScripts/</value>
+            </property>
+            <property>
+              <name>trinidad.renderkit.golden</name>
+              <value>${project.basedir}/src/test/resources/org/apache/myfaces/trinidadinternal/renderkit/golden/</value>
+            </property>
+            <property>
+              <name>trinidad.renderkit.failures</name>
+              <value>${project.basedir}/target/test-failures/</value>
+            </property>
+            <property>
+              <name>java.awt.headless</name>
+              <value>true</value>
+            </property>
+          </systemProperties>
+          <includes implementation="java.util.ArrayList">
+            <include implementation="java.lang.String">**/*Test.java</include>
+          </includes>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+         <archive>
+           <manifest>
+             <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
+             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+           </manifest>
+         </archive>
+       </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.myfaces.trinidadbuild</groupId>
+        <artifactId>maven-faces-plugin</artifactId>
+        <configuration>
+          <taglibs>
+            <trs>http://myfaces.apache.org/trinidad/sandbox</trs>
+          </taglibs>
+          <faceletHandlerClass>org.apache.myfaces.trinidadinternal.facelets.TrinidadComponentHandler</faceletHandlerClass>
+          <typePrefix>org.apache.myfaces.trinidad.sandbox</typePrefix>
+          <renderKitPrefix>org.apache</renderKitPrefix>
+          <packageContains>org.apache.myfaces.trinidadinternal.sandbox</packageContains>
+          <removeRenderers>false</removeRenderers>
+          <jsfVersion>1.2</jsfVersion>
+          <force>true</force>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>generate-faces-config</goal>
+              <goal>generate-jsp-taglibs</goal>
+              <goal>generate-facelets-taglibs</goal>
+              <goal>generate-renderer-map</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <!-- 
+      <plugin>
+        <groupId>org.apache.myfaces.trinidadbuild</groupId>
+        <artifactId>maven-i18n-plugin</artifactId>
+        <configuration>
+          <force>true</force>
+          <targetPath>META-INF/adf/jsLibs/resources</targetPath>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>generate-locale-elements</goal>
+              <goal>generate-javascript-locales</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+       -->
+      <plugin>
+        <groupId>org.apache.myfaces.trinidadbuild</groupId>
+        <artifactId>maven-javascript-plugin</artifactId>
+        <configuration>
+          <sourcePath>META-INF/adf/jsLibs</sourcePath>
+          <targetPath>META-INF/adf/jsLibsDebug</targetPath>
+          <optimizeTargetPath>META-INF/adf/jsLibs</optimizeTargetPath>
+          <force>true</force>
+        </configuration>
+        <executions>
+          <execution>
+            <goals>
+              <goal>reduce-javascript</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.myfaces.trinidadbuild</groupId>
+        <artifactId>maven-xrts-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>generate-sources</goal>
+              <goal>generate-test-sources</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>javax.servlet.jsp</groupId>
+      <artifactId>jsp-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>portlet-api</groupId>
+      <artifactId>portlet-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>jstl</groupId>
+      <artifactId>jstl</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+      <version>2.1</version>
+      <scope>compile</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.trinidad</groupId>
+      <artifactId>sandbox-build</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.trinidad</groupId>
+      <artifactId>trinidad-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.trinidad</groupId>
+      <artifactId>trinidad-impl</artifactId>
+    </dependency>
+
+
+    <dependency>
+      <groupId>org.apache.myfaces.trinidad</groupId>
+      <artifactId>sandbox-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.myfaces.core</groupId>
+      <artifactId>myfaces-api</artifactId>
+    </dependency>
+
+    <!-- "test" scope dependencies -->
+    <dependency>
+      <groupId>org.apache.myfaces.trinidad</groupId>
+      <artifactId>sandbox-api</artifactId>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.shale</groupId>
+      <artifactId>shale-test</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>jmock</groupId>
+      <artifactId>jmock-cglib</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>com.sun.facelets</groupId>
+      <artifactId>jsf-facelets</artifactId>
+    </dependency>
+
+  </dependencies>
+
+  <reporting>
+    <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-pmd-plugin</artifactId>
+        <configuration>
+          <targetJdk>1.5</targetJdk>
+        </configuration>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Added: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java?rev=628418&view=auto
==============================================================================
--- myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java (added)
+++ myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java Sat Feb 16 20:08:04 2008
@@ -0,0 +1,18 @@
+package org.apache.myfaces.trinidadinternal.sandbox.renderkit.core;
+
+import org.apache.myfaces.trinidadinternal.renderkit.RenderKitDecorator;
+import org.apache.myfaces.trinidadinternal.renderkit.core.CoreRenderKit;
+
+public class CoreSandboxRenderKit extends RenderKitDecorator
+{
+
+    public CoreSandboxRenderKit(){
+        
+    }
+    
+    @Override
+    protected String getDecoratedRenderKitId()
+    {
+      return CoreRenderKit.BASE_RENDER_KIT_ID;
+    }
+}

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-impl/src/main/java/org/apache/myfaces/trinidadinternal/sandbox/renderkit/core/CoreSandboxRenderKit.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL