[jboss-cvs] jboss-seam/examples/wiki ...

Christian Bauer christian at hibernate.org
Tue Jun 12 08:30:01 EDT 2007


  User: cbauer  
  Date: 07/06/12 08:30:01

  Modified:    examples/wiki    build.xml build.properties README.txt
  Log:
  Completed first iteration of search engine
  
  Revision  Changes    Path
  1.24      +6 -1      jboss-seam/examples/wiki/build.xml
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/build.xml,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -b -r1.23 -r1.24
  --- build.xml	3 May 2007 14:10:48 -0000	1.23
  +++ build.xml	12 Jun 2007 12:30:01 -0000	1.24
  @@ -245,7 +245,12 @@
           </copy>
           <copy tofile="${exploded.war.dir}/WEB-INF/classes/META-INF/persistence.xml"
                   file="${src.etc.dir}/META-INF/persistence-${profile}-war.xml"
  -                overwrite="true"/>
  +                overwrite="true">
  +        </copy>
  +        <!--
  +        <replace file="${exploded.war.dir}/WEB-INF/classes/META-INF/persistence.xml"
  +                 token="@LuceneIndexDir@" value="${lucene.indexDir}"/>
  +         -->
   
       </target>
   
  
  
  
  1.11      +4 -4      jboss-seam/examples/wiki/build.properties
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: build.properties
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/build.properties,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- build.properties	30 May 2007 00:38:40 -0000	1.10
  +++ build.properties	12 Jun 2007 12:30:01 -0000	1.11
  @@ -1,7 +1,7 @@
  -jboss.home /Applications/jboss-4.2.0.CR2
  +jboss.home = /Users/turin/work/local/jboss/jboss-4.2.0.GA
   # That stuff doesn't really work for me, PAGE scoped components can't be hot-deployed (CNFE on deserialization of component state)
   #hotdeploy.classes = **/wiki/core/action/** **/wiki/core/dao/** **/wiki/core/links/** **/wiki/plugin/lastmodified/** **/wiki/plugin/blogdirectory/BlogDirectory*
  -javac.debug true
  -javac.deprecation false
  -javac.nowarn on
  +javac.debug = true
  +javac.deprecation = false
  +javac.nowarn = on
   
  
  
  
  1.8       +6 -0      jboss-seam/examples/wiki/README.txt
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: README.txt
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/examples/wiki/README.txt,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -b -r1.7 -r1.8
  --- README.txt	4 May 2007 16:30:05 -0000	1.7
  +++ README.txt	12 Jun 2007 12:30:01 -0000	1.8
  @@ -14,3 +14,9 @@
   
   - Access http://localhost:8080/wiki/
   
  +NOTE: The lucene index directory is named "lacewikiIndex" and located in the current directory. This
  +is the current directory from which you started the application server! If you want to change this setting,
  +unpack the WAR and change the META-INF/persistence.xml configuration file.
  +
  +WARNING: Do not use this software in production! The database schema is not final and will change!
  +No migration scripts for existing data will be provided until the software is production ready.
  
  
  



More information about the jboss-cvs-commits mailing list