basic site design for dist bundles

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@12794 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2007-07-21 07:15:20 +00:00
parent b681b210a0
commit a817fc659b
7 changed files with 109 additions and 0 deletions

51
src/site/apt/index.apt Normal file
View File

@ -0,0 +1,51 @@
------
Introduction
------
Steve Ebersole
------
20 July 2007
------
~~ Copyright © 2007 Red Hat Middleware, LLC. All rights reserved.
~~
~~ This copyrighted material is made available to anyone wishing to use, modify,
~~ copy, or redistribute it subject to the terms and conditions of the GNU
~~ Lesser General Public License, v. 2.1. This program is distributed in the
~~ hope that it will be useful, but WITHOUT A WARRANTY; without even the implied
~~ warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
~~ Lesser General Public License for more details. You should have received a
~~ copy of the GNU Lesser General Public License, v.2.1 along with this
~~ distribution; if not, write to the Free Software Foundation, Inc.,
~~ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
~~
~~ Red Hat Author(s): Steve Ebersole
Hibernate Core - Relational Persistence for Idiomatic Java
Hibernate is a powerful, high performance object/relational persistence and query
service. Hibernate lets you develop persistent classes following common object-oriented
idioms such as association, inheritance, polymorphism, composition, and collections.
Hibernate's goal is to relieve the developer from 95 percent of common data persistence related
programming tasks, compared to manual coding with SQL and the JDBC API. Hibernate Core for Java
generates SQL for you, relieves you from manual JDBC result set handling and object conversion,
and keeps your application portable to all SQL databases. However, unlike many other persistence
solutions, Hibernate does not hide the power of SQL from you and guarantees that your investment
in relational technology and knowledge is as valid as always.
Hibernate provides transparent persistence, the only requirement for a persistent class is a
no-argument constructor. You don't even need classes, you can also persist a model using Maps of
Maps, or just about anything else.
Hibernate offers sophisticated query options. You can write plain SQL, object-oriented
HQL (Hibernate Query Language), or create programatic Criteria and Example queries. Hibernate can
optimize object loading all the time, with various fetching and caching options.
Hibernate adapts to your development process, no matter if you start with a design from scratch or
work with an existing database, and it will support any application architecture. Combined with
Hibernate EntityManager and Hibernate Annotations you can use Hibernate as a certified Java Persistence
provider.
Please visit the {{{http://hibernate.org}website}} for more information.
Happpy Hibernating!

View File

@ -0,0 +1,23 @@
/**
* Copyright © 2007 Red Hat Middleware, LLC. All rights reserved.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, v. 2.1. This program is distributed in the
* hope that it will be useful, but WITHOUT A WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details. You should have received a
* copy of the GNU Lesser General Public License, v.2.1 along with this
* distribution; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* Red Hat Author(s): Steve Ebersole
*/
h2 {
color: #aea477;
/*color: #c2b585;*/
}
#navcolumn h5 {
color: #59666c;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

35
src/site/site.xml Normal file
View File

@ -0,0 +1,35 @@
<project name="Hibernate Core">
<bannerLeft>
<name>Hibernate Core Project</name>
<src>images/hibernate_logo.png</src>
<href>http://hibernate.org</href>
</bannerLeft>
<version position="left"/>
<publishDate position="navigation-bottom" format="yyyy-MM-dd"/>
<poweredBy>
<logo name="Maven" href="http://maven.apache.org/" img="images/maven-button-4.png"/>
</poweredBy>
<body>
<head>
<link rel="shortcut icon" href="images/favicon.ico"/>
</head>
<links>
<item name="Hibernate" href="http://hibernate.org"/>
<item name="JBoss" href="http://jboss.org"/>
<item name="Red Hat" href="http://redhat.com"/>
</links>
<menu name="Overview">
<item name="Introduction" href="index.html"/>
</menu>
<menu ref="reports"/>
</body>
</project>