mpoeschl    01/08/17 18:56:24

  Modified:    src/java/org/apache/turbine/services/intake
                        TurbineIntakeService.java
               conf     TurbineResources.properties
               conf/master TurbineResources.master
  Log:
  TurbineIntakeService *was* never initialized. I changed it to extend
  TurbineBaseService instead of BaseService and it seems to work now. Also
  added the Intake xml.path properties to TurbineResources.properties.
  thanx to Johnny Cass <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.2       +3 -3      
jakarta-turbine-2/src/java/org/apache/turbine/services/intake/TurbineIntakeService.java
  
  Index: TurbineIntakeService.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/intake/TurbineIntakeService.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TurbineIntakeService.java 2001/08/16 05:08:55     1.1
  +++ TurbineIntakeService.java 2001/08/18 01:56:24     1.2
  @@ -83,7 +83,7 @@
   import org.apache.turbine.util.TurbineException;
   import org.apache.turbine.util.pool.BoundedBuffer;
   import org.apache.turbine.util.pool.Recyclable;
  -import org.apache.turbine.services.BaseService;
  +import org.apache.turbine.services.TurbineBaseService;
   import org.apache.turbine.services.InitializationException;
   
   /**
  @@ -91,10 +91,10 @@
    * on an XML specification.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>John McNally</a>
  - * @version $Id: TurbineIntakeService.java,v 1.1 2001/08/16 05:08:55 jvanzyl Exp $
  + * @version $Id: TurbineIntakeService.java,v 1.2 2001/08/18 01:56:24 mpoeschl Exp $
    */
   public class TurbineIntakeService
  -    extends BaseService
  +    extends TurbineBaseService
       implements IntakeService
   {
       /** Array of group names. */
  
  
  
  1.2       +13 -1     jakarta-turbine-2/conf/TurbineResources.properties
  
  Index: TurbineResources.properties
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/conf/TurbineResources.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TurbineResources.properties       2001/08/16 05:06:56     1.1
  +++ TurbineResources.properties       2001/08/18 01:56:24     1.2
  @@ -1,5 +1,5 @@
   # -------------------------------------------------------------------
  -# $Id: TurbineResources.properties,v 1.1 2001/08/16 05:06:56 jvanzyl Exp $
  +# $Id: TurbineResources.properties,v 1.2 2001/08/18 01:56:24 mpoeschl Exp $
   #
   # This is the configuration file for Turbine.
   #
  @@ -966,6 +966,18 @@
   
   services.XSLTService.path = /path/to/stylesheets
   services.XSLTService.cache = false
  +
  +# -------------------------------------------------------------------
  +#
  +#  I N T A K E   S E R V I C E
  +#
  +# -------------------------------------------------------------------
  +
  +# The location of the xml file specifying valid inputs
  +#
  +# Example: org.foo.bar.MyClassLoader, org.ack.joe.YourClassLoader
  +#
  +services.IntakeService.xml.path=WEB-INF/conf/intake.xml
   
   #--------------------------------------------------------------------
   #
  
  
  
  1.2       +13 -1     jakarta-turbine-2/conf/master/TurbineResources.master
  
  Index: TurbineResources.master
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/conf/master/TurbineResources.master,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TurbineResources.master   2001/08/16 05:06:57     1.1
  +++ TurbineResources.master   2001/08/18 01:56:24     1.2
  @@ -1,5 +1,5 @@
   # -------------------------------------------------------------------
  -# $Id: TurbineResources.master,v 1.1 2001/08/16 05:06:57 jvanzyl Exp $
  +# $Id: TurbineResources.master,v 1.2 2001/08/18 01:56:24 mpoeschl Exp $
   #
   # This is the configuration file for Turbine.
   #
  @@ -966,6 +966,18 @@
   
   services.XSLTService.path = /path/to/stylesheets
   services.XSLTService.cache = false
  +
  +# -------------------------------------------------------------------
  +#
  +#  I N T A K E   S E R V I C E
  +#
  +# -------------------------------------------------------------------
  +
  +# The location of the xml file specifying valid inputs
  +#
  +# Example: org.foo.bar.MyClassLoader, org.ack.joe.YourClassLoader
  +#
  +services.IntakeService.xml.path=WEB-INF/conf/intake.xml
   
   #--------------------------------------------------------------------
   #
  
  
  

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

Reply via email to