ajack       2003/09/09 07:18:08

  Modified:    template forrest.properties
               python/gump document.py
  Log:
  1) Oppps --- it wasn't forrest, it was me, filtering out project pages.
  2) I tweaked some forrest.properties, just to see the effect.
  
  Revision  Changes    Path
  1.2       +7 -7      jakarta-gump/template/forrest.properties
  
  Index: forrest.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/template/forrest.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- forrest.properties        5 Sep 2003 23:08:48 -0000       1.1
  +++ forrest.properties        9 Sep 2003 14:18:08 -0000       1.2
  @@ -29,7 +29,7 @@
   # project.content-dir if any other property using it is uncommented
   
   #project.status=status.xml
  -project.content-dir=forrest
  +#project.content-dir=forrest
   #project.conf-dir=${project.content-dir}/conf
   #project.sitemap-dir=${project.content-dir}
   #project.xdocs-dir=${project.content-dir}/content/xdocs
  @@ -73,14 +73,14 @@
   # *.includes=(pattern)         Comma-separated list of path patterns to validate
   # *.excludes=(pattern)         Comma-separated list of path patterns to not validate
   
  -#forrest.validate.failonerror=true
  -#forrest.validate.includes=**/*
  +forrest.validate.failonerror=false
  +forrest.validate.includes=**/*
   #forrest.validate.excludes=
   #
  -#forrest.validate.xdocs.failonerror=${forrest.validate.failonerror}
  +forrest.validate.xdocs.failonerror=${forrest.validate.failonerror}
   #
  -#forrest.validate.xdocs.includes=**/*.x*
  -#forrest.validate.xdocs.excludes=site.xml
  +forrest.validate.xdocs.includes=**/*.x*
  +forrest.validate.xdocs.excludes=site.xml
   #
   #forrest.validate.skinconf.includes=${skinconf-file}
   #forrest.validate.skinconf.excludes=
  @@ -113,4 +113,4 @@
   #forrest.maxmemory=64m
   # Any other arguments to pass to the JVM. For example, to run on an X-less
   # server, set to -Djava.awt.headless=true
  -#forrest.jvmargs=
  +forrest.jvmargs=Djava.awt.headless=true
  
  
  
  1.11      +4 -2      jakarta-gump/python/gump/document.py
  
  Index: document.py
  ===================================================================
  RCS file: /home/cvs/jakarta-gump/python/gump/document.py,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- document.py       8 Sep 2003 18:13:11 -0000       1.10
  +++ document.py       9 Sep 2003 14:18:08 -0000       1.11
  @@ -353,7 +353,9 @@
       startListXDoc(x)
       addItemXDoc(x,"Status: " + stateName(modulecontext.status))
       if modulecontext.cause:
  -        addItemXDoc(x, "Cause:", "<link href='%s'>%s</link>" % 
(getContextUrl(modulecontext.cause), modulecontext.cause.name))    
  +        addItemXDoc(x, "Cause:", "<link href='%s'>%s</link>" % \
  +            (getContextUrl(modulecontext.cause), \
  +                modulecontext.cause.name))    
       endListXDoc(x)
       endSectionXDoc(x)
          
  @@ -364,7 +366,7 @@
     
       # Document Projects
       for pctxt in modulecontext:
  -        if projectFilterList and not pctxt.name in projectFilterList: continue      
  +        if projectFilterList and not pctxt.project in projectFilterList: continue   
   
           documentProject(workspace,modulename,mdir,pctxt.name,pctxt,db)
      
   def documentProject(workspace,modulename,mdir,projectname,projectcontext,db): 
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to