You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by dl...@apache.org on 2001/07/24 04:38:25 UTC

cvs commit: jakarta-turbine/src/java/org/apache/turbine/services/jsp TurbineJspService.java

dlr         01/07/23 19:38:25

  Modified:    src/java/org/apache/turbine/services/jsp
                        TurbineJspService.java
  Log:
  Moved lame implementation from BaseTemplateEngine service into here.
  
  Revision  Changes    Path
  1.21      +25 -1     jakarta-turbine/src/java/org/apache/turbine/services/jsp/TurbineJspService.java
  
  Index: TurbineJspService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine/src/java/org/apache/turbine/services/jsp/TurbineJspService.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -u -r1.20 -r1.21
  --- TurbineJspService.java	2001/07/20 21:32:47	1.20
  +++ TurbineJspService.java	2001/07/24 02:38:25	1.21
  @@ -154,7 +154,7 @@
        */
       public void handleRequest(RunData data, String filename, boolean isForward) 
           throws ServiceException
  -    {                                
  +    {
           /** template name with relative path */
           String relativeTemplateName = getRelativeTemplateName(filename);
           
  @@ -202,6 +202,30 @@
           }
       }
      
  +    /**
  +     * Currently a no-op.  This method must be implemented so that the
  +     * the JSP service comformith to the TemplateEngineService
  +     * interface.
  +     */
  +    public String handleRequest(TemplateContext context, String template)
  +        throws ServiceException
  +    {
  +        // TODO: Implement me!
  +        return "";
  +    }
  +
  +    /**
  +     * Currently a no-op.  This method must be implemented so that the
  +     * the JSP service comformith to the TemplateEngineService
  +     * interface.
  +     */
  +    public void handleRequest(TemplateContext context, String template,
  +                              OutputStream outputStream)
  +        throws ServiceException
  +    {
  +        // TODO: Implement me!
  +    }
  +
       /**
        * This method sets up the template cache.
        */
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org