Author: hlship
Date: Wed Mar 7 15:53:59 2007
New Revision: 515851
URL: http://svn.apache.org/viewvc?view=rev&rev=515851
Log:
Initial check-in of skeleton project.
Added:
tapestry/tapestry5/tapestry-hibernate/trunk/.classpath
tapestry/tapestry5/tapestry-hibernate/trunk/.project
tapestry/tapestry5/tapestry-hibernate/trunk/pom.xml
tapestry/tapestry5/tapestry-hibernate/trunk/src/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/hibernate/
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/hibernate/HibernateModule.java
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/jdstyle.css
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/site.css
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/site.xml
Added: tapestry/tapestry5/tapestry-hibernate/trunk/.classpath
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/.classpath?view=auto&rev=515851
==============================================================================
--- tapestry/tapestry5/tapestry-hibernate/trunk/.classpath (added)
+++ tapestry/tapestry5/tapestry-hibernate/trunk/.classpath Wed Mar 7 15:53:59
2007
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry kind="src" path="src/main/java"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="con"
path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Added: tapestry/tapestry5/tapestry-hibernate/trunk/.project
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/.project?view=auto&rev=515851
==============================================================================
--- tapestry/tapestry5/tapestry-hibernate/trunk/.project (added)
+++ tapestry/tapestry5/tapestry-hibernate/trunk/.project Wed Mar 7 15:53:59
2007
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>tapestry-hibernate</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.jdt.core.javabuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ <buildCommand>
+ <name>org.maven.ide.eclipse.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.jdt.core.javanature</nature>
+ <nature>org.maven.ide.eclipse.maven2Nature</nature>
+ </natures>
+</projectDescription>
Added: tapestry/tapestry5/tapestry-hibernate/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/pom.xml?view=auto&rev=515851
==============================================================================
--- tapestry/tapestry5/tapestry-hibernate/trunk/pom.xml (added)
+++ tapestry/tapestry5/tapestry-hibernate/trunk/pom.xml Wed Mar 7 15:53:59 2007
@@ -0,0 +1,125 @@
+<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>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-hibernate</artifactId>
+ <version>5.0.3-SNAPSHOT</version>
+ <name>Tapestry/Hibernate Integration Library</name>
+ <description>Provides support for simple CRUD applications built ontop of
Tapestry and Hibernate</description>
+ <packaging>jar</packaging>
+ <parent>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-project</artifactId>
+ <version>5.0.3-SNAPSHOT</version>
+ <relativePath>../tapestry-project/pom.xml</relativePath>
+ </parent>
+ <inceptionYear>2007</inceptionYear>
+ <!-- Due to Maven 2 bugs, this has to be copied into each module POM. -->
+ <url>http://tapestry.apache.org/tapestry5/${pom.artifactId}/</url>
+ <scm>
+
<connection>scm:svn:https://svn.apache.org/repos/asf/tapestry/tapestry5/${pom.artifactId}/trunk/</connection>
+
<url>http://svn.apache.org/viewvc/tapestry/tapestry5/${pom.artifactId}/trunk/</url>
+ </scm>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-ioc</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-test</artifactId>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-source-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ </plugin>
+ <!-- This gets the plugin to clean up the cobertura.ser file left
+ in the root directory. -->
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>${cobertura-plugin-version}</version>
+ <executions>
+ <execution>
+ <id>clean</id>
+ <goals>
+ <goal>clean</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <archive>
+ <manifestEntries>
+
<Tapestry-Module-Classes>org.apache.tapestry.hibernate.HibernateModule</Tapestry-Module-Classes>
+ </manifestEntries>
+ </archive>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <!--
+ <tags>
+ <tag>
+ <name>todo</name>
+ <!- - Should be a combination of the letters Xaoptcmf - ->
+ <placement>a</placement>
+ <head>To do something:</head>
+ </tag>
+ </tags> -->
+ <linksource>true</linksource>
+ <links>
+ <link>http://java.sun.com/j2se/1.5.0/docs/api/</link>
+ <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
+
<link>http://tapestry.apache.org/tapestry5/tapestry-ioc/apidocs/</link>
+
<link>http://tapestry.apache.org/tapestry5/tapestry-core/apidocs/</link>
+ </links>
+
<stylesheetfile>${basedir}/src/site/resources/css/jdstyle.css</stylesheetfile>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>cobertura-maven-plugin</artifactId>
+ <version>${cobertura-plugin-version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-report-plugin</artifactId>
+ </plugin>
+
+
+ <!-- <plugin>
+ <groupId>org.apache.tapestry</groupId>
+ <artifactId>tapestry-component-report</artifactId>
+ <version>5.0.2</version>
+ <configuration>
+ <rootPackage>org.apache.tapestry.corelib</rootPackage>
+ </configuration>
+ </plugin>-->
+ </plugins>
+ </reporting>
+</project>
Added:
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/hibernate/HibernateModule.java
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/hibernate/HibernateModule.java?view=auto&rev=515851
==============================================================================
---
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/hibernate/HibernateModule.java
(added)
+++
tapestry/tapestry5/tapestry-hibernate/trunk/src/main/java/org/apache/tapestry/hibernate/HibernateModule.java
Wed Mar 7 15:53:59 2007
@@ -0,0 +1,9 @@
+package org.apache.tapestry.hibernate;
+
+import org.apache.tapestry.ioc.annotations.Id;
+
[EMAIL PROTECTED]("tapestry.hibernate")
+public class HibernateModule
+{
+
+}
Added:
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/jdstyle.css
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/jdstyle.css?view=auto&rev=515851
==============================================================================
---
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/jdstyle.css
(added)
+++
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/jdstyle.css
Wed Mar 7 15:53:59 2007
@@ -0,0 +1,117 @@
+/* Javadoc style sheet */
+
+/* Define colors, fonts and other style attributes here to override the
defaults */
+
+/* Page background color */
+body { font-family: Arial;
+ background-color: white;
+ font-size: 10pt;
+ }
+td { font-family: Arial;
+ font-size: 10pt;
+ }
+/* Table colors */
+.TableHeadingColor { background: #F4F4F4 }
+.TableSubHeadingColor { background: #F4F4F4 }
+.TableRowColor { background: #FFFFFF }
+
+/* Font used in left-hand frame lists */
+.FrameTitleFont { font-size: normal; font-family: Arial }
+.FrameHeadingFont { font-size: normal; font-family: Arial }
+.FrameItemFont { font-size: normal; font-family: Arial }
+
+/* Example of smaller, sans-serif font in frames */
+/* .FrameItemFont { font-size: 10pt; font-family: Helvetica, Arial,
sans-serif } */
+
+/* Navigation bar fonts and colors */
+.NavBarCell1 { background-color:#F4F4F4;}
+.NavBarCell1Rev { background-color:silver;}
+
+.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;}
+.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;}
+
+.NavBarCell2 { font-family: Arial, Helvetica, sans-serif;
background-color:#FFFFFF;}
+.NavBarCell3 { font-family: Arial, Helvetica, sans-serif;
background-color:#FFFFFF;}
+
+A {
+ color: #003399;
+}
+
+A:active {
+ color: #003399;
+}
+
+A:visited {
+ color: #888888;
+}
+
+P, OL, UL, LI, DL, DT, DD, BLOCKQUOTE {
+ color: #000000;
+}
+
+TD, TH, SPAN {
+ color: #000000;
+}
+
+BLOCKQUOTE {
+ margin-right: 0px;
+}
+
+
+/*H1, H2, H3, H4, H5, H6 {
+ color: #000000;
+ font-weight:500;
+ margin-top:10px;
+ padding-top:15px;
+}
+
+H1 { font-size: 150%; }
+H2 { font-size: 140%; }
+H3 { font-size: 110%; font-weight: bold; }
+H4 { font-size: 110%; font-weight: bold;}
+H5 { font-size: 100%; font-style: italic; }
+H6 { font-size: 100%; font-style: italic; }*/
+
+TT {
+font-size: 90%;
+ font-family: "Courier New", Courier, monospace;
+ color: #000000;
+}
+
+PRE {
+font-size: 90%;
+ padding: 5px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #CCCCCC;
+ background-color: #F4F4F4;
+}
+
+UL, OL, LI {
+ list-style: disc;
+}
+
+HR {
+ width: 100%;
+ height: 1px;
+ background-color: #CCCCCC;
+ border-width: 0px;
+ padding: 0px;
+ color: #CCCCCC;
+}
+
+.variablelist {
+ padding-top: 10;
+ padding-bottom:10;
+ margin:0;
+}
+
+.itemizedlist, UL {
+ padding-top: 0;
+ padding-bottom:0;
+ margin:0;
+}
+
+.term {
+ font-weight:bold;
+}
Added:
tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/site.css
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/site.css?view=auto&rev=515851
==============================================================================
--- tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/site.css
(added)
+++ tapestry/tapestry5/tapestry-hibernate/trunk/src/site/resources/css/site.css
Wed Mar 7 15:53:59 2007
@@ -0,0 +1,40 @@
+a.externalLink, a.externalLink:link, a.externalLink:visited,
a.externalLink:active, a.externalLink:hover {
+ background: none;
+ padding-right: 0;
+}
+
+body ul {
+ list-style-type: square;
+}
+
+#downloadbox {
+ float: right;
+ margin: 0 1em 2em 2em;
+ padding: 1em;
+ border: 1px solid #999;
+ background-color: #eee;
+}
+
+#downloadbox h5 {
+ color: #000;
+ margin: 0;
+ border-bottom: 1px solid #aaaaaa;
+ font-size: smaller;
+ padding: 0;
+}
+
+#downloadbox p {
+ margin-top: 1em;
+ margin-bottom: 0;
+}
+
+#downloadbox ul {
+ margin-top: 0;
+ margin-bottom: 1em;
+ list-style-type: disc;
+}
+
+#downloadbox li {
+ font-size: smaller;
+}
+
Added: tapestry/tapestry5/tapestry-hibernate/trunk/src/site/site.xml
URL:
http://svn.apache.org/viewvc/tapestry/tapestry5/tapestry-hibernate/trunk/src/site/site.xml?view=auto&rev=515851
==============================================================================
--- tapestry/tapestry5/tapestry-hibernate/trunk/src/site/site.xml (added)
+++ tapestry/tapestry5/tapestry-hibernate/trunk/src/site/site.xml Wed Mar 7
15:53:59 2007
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ Copyright 2007 The Apache Software Foundation
+
+ Licensed 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="Tapestry Hibernate Integration">
+ <bannerLeft>
+ <name>Tapestry 5</name>
+ <href>http://tapestry.apache.org/tapestry5/</href>
+ <src>images/tapestry_banner.gif</src>
+ </bannerLeft>
+ <bannerRight>
+ <name>Apache</name>
+ <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>
+
+ <publishDate format="dd MMM yyyy" />
+
+ <body>
+ <links>
+ <item name="Tapestry" href="http://tapestry.apache.org/" />
+ <item name="Apache" href="http://www.apache.org/" />
+ </links>
+
+ <menu name="Quick Links">
+ <item name="Download" href="http://tapestry.apache.org/download.html"/>
+ </menu>
+
+ <menu ref="reports"/>
+
+ </body>
+</project>