You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by ni...@apache.org on 2003/10/16 17:21:49 UTC

cvs commit: xml-forrest/src/resources/conf raw.xmap

nicolaken    2003/10/16 08:21:49

  Modified:    src/resources/conf raw.xmap
  Log:
  Oops.
  {project:content}//  ->  {project:content}/
  
  Revision  Changes    Path
  1.12      +16 -16    xml-forrest/src/resources/conf/raw.xmap
  
  Index: raw.xmap
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/conf/raw.xmap,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- raw.xmap	16 Oct 2003 15:16:09 -0000	1.11
  +++ raw.xmap	16 Oct 2003 15:21:49 -0000	1.12
  @@ -6,10 +6,10 @@
   This pipeline *relies* on the caller checking if the {project:content}/ actually exists!
   If the caller doesn't do this, this sitemap's '**' pipeline will match everything.
   
  -Generates  :  Exact bytes read from {project:content}//**
  +Generates  :  Exact bytes read from {project:content}/**
   Example URL:  http://localhost:8888/blah.doc
   Used by    :  sitemap.xmap
  -Uses       :  {project:content}//**
  +Uses       :  {project:content}/**
   
   $Revision$
   ==================================================== -->
  @@ -36,55 +36,55 @@
           <map:match pattern="**.html">
             <!--
             Use this instead if you want JTidy to clean up your HTML
  -          <map:generate type="html" src="{project:content}//{0}" />
  +          <map:generate type="html" src="{project:content}/{0}" />
             <map:serialize type="html"/>
             -->
  -          <map:read src="{project:content}//{0}" mime-type="text/html"/>
  +          <map:read src="{project:content}/{0}" mime-type="text/html"/>
           </map:match>
   
           <map:match pattern="**.xml">
  -          <map:generate type="file" src="{project:content}//{0}" />
  +          <map:generate type="file" src="{project:content}/{0}" />
             <map:serialize type="xml" />
           </map:match>
   
           <map:match pattern="skin/**.css">
  -          <map:read src="{project:content}//{1}.css" mime-type="text/css" />
  +          <map:read src="{project:content}/{1}.css" mime-type="text/css" />
           </map:match>
   
           <map:match pattern="**.js">
  -          <map:read src="{project:content}//{0}" mime-type="application/javascript" />
  +          <map:read src="{project:content}/{0}" mime-type="application/javascript" />
           </map:match>
   
           <map:match pattern="**.gif">
  -          <map:read src="{project:content}//{0}" mime-type="image/gif" />
  +          <map:read src="{project:content}/{0}" mime-type="image/gif" />
           </map:match>
   
           <map:match pattern="**.png">
  -          <map:read src="{project:content}//{0}" mime-type="image/png" />
  +          <map:read src="{project:content}/{0}" mime-type="image/png" />
           </map:match>
   
           <map:match pattern="**.jpg">
  -          <map:read src="{project:content}//{0}" mime-type="image/jpeg" />
  +          <map:read src="{project:content}/{0}" mime-type="image/jpeg" />
           </map:match>
   
           <map:match pattern="**.jpeg">
  -          <map:read src="{project:content}//{0}" mime-type="image/jpeg" />
  +          <map:read src="{project:content}/{0}" mime-type="image/jpeg" />
           </map:match>
   
           <map:match pattern="**.pdf">
  -          <map:read src="{project:content}//{0}" mime-type="application/pdf" />
  +          <map:read src="{project:content}/{0}" mime-type="application/pdf" />
           </map:match>
   
           <map:match pattern="**.swf">
  -          <map:read src="{project:content}//{0}" mime-type="application/x-shockwave-flash" />
  +          <map:read src="{project:content}/{0}" mime-type="application/x-shockwave-flash" />
           </map:match>
   
           <map:match pattern="**.txt">
  -          <map:read src="{project:content}//{0}" mime-type="text/plain" />
  +          <map:read src="{project:content}/{0}" mime-type="text/plain" />
           </map:match>
   
           <map:match pattern="**">
  -          <map:read src="{project:content}//{1}"/>
  +          <map:read src="{project:content}/{1}"/>
           </map:match>
   
         </map:match>