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:09:34 UTC

svn commit: r628420 - in /myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources: META-INF/ META-INF/maven-faces-plugin/validators/ META-INF/maven-faces-plugin/validators/javax/ META-INF/maven-faces-plugin/validators/javax/faces...

Author: lu4242
Date: Sat Feb 16 20:09:33 2008
New Revision: 628420

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

Added:
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/NOTICE
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/maven-faces-plugin/validators/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/maven-faces-plugin/validators/javax/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/maven-faces-plugin/validators/javax/faces/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/maven-faces-plugin/validators/trinidad/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/
    myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml   (with props)

Added: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/NOTICE
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/NOTICE?rev=628420&view=auto
==============================================================================
--- myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/NOTICE (added)
+++ myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/META-INF/NOTICE Sat Feb 16 20:09:33 2008
@@ -0,0 +1,16 @@
+=========================================================================
+==  NOTICE file corresponding to section 4(d) of the Apache License,   ==
+==  Version 2.0, in this case for the Apache Trinidad Podling Plugins  ==
+=========================================================================
+
+This product includes software developed by 
+The Apache Software Foundation (http://www.apache.org/).
+
+Portions of this software were originally based on the following:
+
+ - software copyright (c) 2000-2006, Oracle Corp, <http://www.oracle.com/>.
+and are licensed to the Apache Software Foundation under the 
+"Software Grant and Corporate Contribution License Agreement"
+
+See the LICENSE.txt file for information on all licenses 
+associated with this software.
\ No newline at end of file

Added: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml
URL: http://svn.apache.org/viewvc/myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml?rev=628420&view=auto
==============================================================================
--- myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml (added)
+++ myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml Sat Feb 16 20:09:33 2008
@@ -0,0 +1,48 @@
+<?xml version="1.0"?>
+<!--
+    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.
+	   
+-->
+<!DOCTYPE module PUBLIC
+    "-//Puppy Crawl//DTD Check Configuration 1.1//EN"
+    "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">
+<module name="Checker">
+   <module name="TreeWalker">
+     <module name="AvoidStarImport"/>
+     <module name="MemberName">
+       <property name="format"
+                value="^_[a-z][a-zA-Z0-9]*$"/>
+       <property name="applyToPublic" value="false"/>
+       <property name="applyToPackage" value="false"/>
+       <property name="applyToProtected" value="false"/>
+     </module>
+     <module name="ConstantName">
+       <property name="format"
+                value="^[_A-Z][A-Z0-9]*(_[A-Z0-9]+)*$"/>
+      </module>
+     <module name="IllegalImport">
+       <property name="illegalPkgs" value="com.sun"/>
+     </module>
+     <module name="RedundantImport"/>
+     <module name="UnusedImports"/>
+     <module name="LeftCurly">
+       <property name="option" value="nl"/>
+     </module>
+     <module name="AvoidNestedBlocks"/>
+  </module>
+</module>
\ No newline at end of file

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/trinidad/trunk_1.2.x/trinidad-sandbox/sandbox-build/src/main/resources/trinidad/checkstyle.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL