Changeset 11027c0
- Timestamp:
- 13/04/2012 10:53:25 (10 years ago)
- Branches:
- master
- Children:
- 16cc943
- Parents:
- a0bd1a5
- git-author:
- Eric van der Vlist <vdv@dyomedea.com> (13/04/2012 10:53:25)
- git-committer:
- Eric van der Vlist <vdv@dyomedea.com> (13/04/2012 10:53:25)
- Location:
- archiver/pipelines
- Files:
-
- 1 added
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
archiver/pipelines/actions/archive-resource.xpl
ra0bd1a5 r11027c0 25 25 <!-- Store the archive in the database --> 26 26 <p:processor name="oxf:pipeline"> 27 <p:input name="config" href="data-access.xpl"/> 27 <p:input name="config" href="/data-access.xpl 28 "/> 28 29 <p:input name="data" transform="oxf:xslt" href="#data"> 29 30 <config xsl:version="2.0"> … … 150 151 <!-- Store the rewritten document in the database --> 151 152 <p:processor name="oxf:pipeline"> 152 <p:input name="config" href="data-access.xpl"/> 153 <p:input name="config" href="/data-access.xpl 154 "/> 153 155 <p:input name="data" transform="oxf:xslt" href="#data"> 154 156 <config xsl:version="2.0"> … … 173 175 <!-- Update the archive index --> 174 176 <p:processor name="oxf:pipeline"> 175 <p:input name="config" href="data-access.xpl"/> 177 <p:input name="config" href="/data-access.xpl 178 "/> 176 179 <p:input name="data" transform="oxf:xslt" href="#data"> 177 180 <config xsl:version="2.0"> … … 211 214 <!-- Update the queue --> 212 215 <p:processor name="oxf:pipeline"> 213 <p:input name="config" href="data-access.xpl"/> 216 <p:input name="config" href="/data-access.xpl 217 "/> 214 218 <p:input name="data" transform="oxf:xslt" href="aggregate('root', #data, #links)"> 215 219 <config xsl:version="2.0"> … … 263 267 <!-- Update the archive index --> 264 268 <p:processor name="oxf:pipeline"> 265 <p:input name="config" href="data-access.xpl"/> 269 <p:input name="config" href="/data-access.xpl 270 "/> 266 271 <p:input name="data" transform="oxf:xslt" href="#data"> 267 272 <config xsl:version="2.0"> … … 297 302 <!-- Update the queue --> 298 303 <p:processor name="oxf:pipeline"> 299 <p:input name="config" href="data-access.xpl"/> 304 <p:input name="config" href="/data-access.xpl 305 "/> 300 306 <p:input name="data" transform="oxf:xslt" href="#data"> 301 307 <config xsl:version="2.0"> -
archiver/pipelines/actions/archive-set.xpl
ra0bd1a5 r11027c0 41 41 42 42 <p:processor name="oxf:pipeline"> 43 <p:input name="config" href="data-access.xpl"/> 43 <p:input name="config" href="/data-access.xpl 44 "/> 44 45 <p:input name="data" href="#data-access-data"/> 45 46 <p:input name="param"> … … 66 67 67 68 <p:processor name="oxf:pipeline"> 68 <p:input name="config" href="data-access.xpl"/> 69 <p:input name="config" href="/data-access.xpl 70 "/> 69 71 <p:input name="data" transform="oxf:xslt" href="#data-access-data"> 70 72 <config xsl:version="2.0"> -
archiver/pipelines/scheduler.xpl
ra0bd1a5 r11027c0 34 34 <config xsl:version="2.0"> 35 35 <url> 36 <xsl:text>oxf:/</xsl:text> 37 <xsl:value-of select="/action/@type"/> 36 <xsl:text>oxf:/actions/</xsl:text> 37 <!-- Remove / and \ for security reasons --> 38 <xsl:value-of select="translate(/action/@type, '/\', '')"/> 38 39 <xsl:text>.xpl</xsl:text> 39 40 </url>
Note: See TracChangeset
for help on using the changeset viewer.