[seam-commits] Seam SVN: r7736 - branches/Seam_2_0/examples/portal and 1 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Fri Mar 28 12:27:14 EDT 2008


Author: pete.muir at jboss.org
Date: 2008-03-28 12:27:14 -0400 (Fri, 28 Mar 2008)
New Revision: 7736

Removed:
   branches/Seam_2_0/examples/portal/build.xml
   branches/Seam_2_0/examples/portal/resources/
   branches/Seam_2_0/examples/portal/src/
   branches/Seam_2_0/examples/portal/view/
   trunk/examples/portal/build.xml
   trunk/examples/portal/resources/
   trunk/examples/portal/src/
   trunk/examples/portal/view/
Modified:
   branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml
   branches/Seam_2_0/examples/portal/readme.txt
   trunk/examples/portal/readme.txt
Log:
JBSEAM-2790

Modified: branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml
===================================================================
--- branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml	2008-03-28 13:28:31 UTC (rev 7735)
+++ branches/Seam_2_0/doc/Seam_Reference_Guide/en/Configuration.xml	2008-03-28 16:27:14 UTC (rev 7736)
@@ -946,5 +946,18 @@
                 <literal>web.xml</literal>. </para>
 
     </sect1>
+    
+    <sect1>
+        <title>Running Seam in a Portlet</title>
 
+        <para>
+           If you want to run your Seam application in a portlet, take a look at
+           the JBoss Portlet Bridge, an implementation of JSR-301 that supports
+           JSF within a portlet, with extensions for Seam and RichFaces. See
+           <ulink url="http://labs.jboss.com/portletbridge">http://labs.jboss.com/portletbridge</ulink>
+           for more.
+        </para>
+
+    </sect1>
+
 </chapter>

Deleted: branches/Seam_2_0/examples/portal/build.xml
===================================================================
--- branches/Seam_2_0/examples/portal/build.xml	2008-03-28 13:28:31 UTC (rev 7735)
+++ branches/Seam_2_0/examples/portal/build.xml	2008-03-28 16:27:14 UTC (rev 7736)
@@ -1,68 +0,0 @@
-<?xml version="1.0"?>
-
-<project name="Portal Booking" default="deploy" basedir=".">
-
-    <!-- Naming -->
-    <property name="Name"                   value="Seam on JBoss Portal/Hibernate3 Example"/>
-    <property name="example.name"           value="jboss-seam-portal"/>
-    
-    <!-- Overrides -->
-    <property name="unit.ext"                value="war" />
-    <property name="example.seam.ui.lib"     value="yes"/>
-    <property name="example.seam.debug.lib"  value="yes"/>
-    <property name="example.facelets.lib"    value="yes"/>
-    <property name="example.ds"              value="portal-ds.xml"/>
-    <property name="src.java.dir"            value="src"/>
-    <property name="src.test.dir"            value="src"/>
-    <property name="test.classpath"          value="test.eejb.classpath"/>
-    <property name="tomcat.conf"             value="eejb.conf"/>
-
-    <property name="example.webinf.lib.dir" value="" />
-
-    <import file="../../build.xml"/>
-
-    <target name="ear" depends="ejb3, war" />
-
-
-
-    <target name="war" depends="compile">
-        <jar jarfile="${build.dir}/${example.name}.jar">
-            <fileset refid="example.classes"/>
-            <fileset dir="resources">
-                <include name="seam.properties"/>
-                <include name="import.sql"/>
-                <include name="hibernate.cfg.xml"/>
-            </fileset>
-        </jar>
-        
-
-        <copy todir="${build.dir}/resources/WEB-INF">
-            <fileset refid="example.war.webinf"/>
-            <filterset>
-                <filter token="jndiPattern" value="${example.name}/#{ejbName}/local"/>
-                <filter token="embeddedEjb" value="false"/>
-                <filter token="microcontainer" value="false"/>
-            </filterset>
-        </copy>
-
-
-        <jar destfile="${build.dir}/${example.name}.war">
-            <zipfileset refid="example.tomcat.seam.jar"/>
-            <zipfileset refid="example.war.docroot"/>
-            <zipfileset refid="example.war.webinf.lib"/>
-            <zipfileset refid="example.facelets.jar"/>
-            <zipfileset refid="example.extra.jar"/>
-            <zipfileset dir="${lib.dir}" prefix="WEB-INF/lib">
-                <include name="el-*.jar"/>
-            </zipfileset>
-            <zipfileset dir="${build.dir}/resources">
-                <include name="WEB-INF/**/*.*"/>
-            </zipfileset>
-            <zipfileset dir="${build.dir}" prefix="WEB-INF/lib">
-                <include name="${example.name}.jar"/>
-            </zipfileset>
-        </jar>
-
-    </target>
-
-</project>

Modified: branches/Seam_2_0/examples/portal/readme.txt
===================================================================
--- branches/Seam_2_0/examples/portal/readme.txt	2008-03-28 13:28:31 UTC (rev 7735)
+++ branches/Seam_2_0/examples/portal/readme.txt	2008-03-28 16:27:14 UTC (rev 7736)
@@ -1,7 +1,6 @@
-Seam Hibernate Portlet Example
-==============================
-This is a port of the Booking example to Hibernate3 with JavaBeans
-for the actions. This example is preconfigured to work as a portlet 
-in JBoss Portal 2.4+
+Using Seam with Portal
+----------------------
 
-THIS EXAMPLE IS CURRENTLY UNMAINTAINED
\ No newline at end of file
+Seam is compatible with the portlet environment through the use of the JBoss 
+Portlet Bridge. More information can be found at
+http://labs.jboss.com/portletbridge</ulink>
\ No newline at end of file

Deleted: trunk/examples/portal/build.xml
===================================================================
--- trunk/examples/portal/build.xml	2008-03-28 13:28:31 UTC (rev 7735)
+++ trunk/examples/portal/build.xml	2008-03-28 16:27:14 UTC (rev 7736)
@@ -1,68 +0,0 @@
-<?xml version="1.0"?>
-
-<project name="Portal Booking" default="deploy" basedir=".">
-
-    <!-- Naming -->
-    <property name="Name"                   value="Seam on JBoss Portal/Hibernate3 Example"/>
-    <property name="example.name"           value="jboss-seam-portal"/>
-    
-    <!-- Overrides -->
-    <property name="unit.ext"                value="war" />
-    <property name="example.seam.ui.lib"     value="yes"/>
-    <property name="example.seam.debug.lib"  value="yes"/>
-    <property name="example.facelets.lib"    value="yes"/>
-    <property name="example.ds"              value="portal-ds.xml"/>
-    <property name="src.java.dir"            value="src"/>
-    <property name="src.test.dir"            value="src"/>
-    <property name="test.classpath"          value="test.eejb.classpath"/>
-    <property name="tomcat.conf"             value="eejb.conf"/>
-
-    <property name="example.webinf.lib.dir" value="" />
-
-    <import file="../../build.xml"/>
-
-    <target name="ear" depends="ejb3, war" />
-
-
-
-    <target name="war" depends="compile">
-        <jar jarfile="${build.dir}/${example.name}.jar">
-            <fileset refid="example.classes"/>
-            <fileset dir="resources">
-                <include name="seam.properties"/>
-                <include name="import.sql"/>
-                <include name="hibernate.cfg.xml"/>
-            </fileset>
-        </jar>
-        
-
-        <copy todir="${build.dir}/resources/WEB-INF">
-            <fileset refid="example.war.webinf"/>
-            <filterset>
-                <filter token="jndiPattern" value="${example.name}/#{ejbName}/local"/>
-                <filter token="embeddedEjb" value="false"/>
-                <filter token="microcontainer" value="false"/>
-            </filterset>
-        </copy>
-
-
-        <jar destfile="${build.dir}/${example.name}.war">
-            <zipfileset refid="example.tomcat.seam.jar"/>
-            <zipfileset refid="example.war.docroot"/>
-            <zipfileset refid="example.war.webinf.lib"/>
-            <zipfileset refid="example.facelets.jar"/>
-            <zipfileset refid="example.extra.jar"/>
-            <zipfileset dir="${lib.dir}" prefix="WEB-INF/lib">
-                <include name="el-*.jar"/>
-            </zipfileset>
-            <zipfileset dir="${build.dir}/resources">
-                <include name="WEB-INF/**/*.*"/>
-            </zipfileset>
-            <zipfileset dir="${build.dir}" prefix="WEB-INF/lib">
-                <include name="${example.name}.jar"/>
-            </zipfileset>
-        </jar>
-
-    </target>
-
-</project>

Modified: trunk/examples/portal/readme.txt
===================================================================
--- trunk/examples/portal/readme.txt	2008-03-28 13:28:31 UTC (rev 7735)
+++ trunk/examples/portal/readme.txt	2008-03-28 16:27:14 UTC (rev 7736)
@@ -1,7 +1,6 @@
-Seam Hibernate Portlet Example
-==============================
-This is a port of the Booking example to Hibernate3 with JavaBeans
-for the actions. This example is preconfigured to work as a portlet 
-in JBoss Portal 2.4+
+Using Seam with Portal
+----------------------
 
-THIS EXAMPLE IS CURRENTLY UNMAINTAINED
\ No newline at end of file
+Seam is compatible with the portlet environment through the use of the JBoss 
+Portlet Bridge. More information can be found at
+http://labs.jboss.com/portletbridge</ulink>
\ No newline at end of file




More information about the seam-commits mailing list