Changeset be2f974
- Timestamp:
- 21/04/2012 22:51:58 (10 years ago)
- Branches:
- master
- Children:
- 57daa70
- Parents:
- c4c4108
- git-author:
- Eric van der Vlist <vdv@dyomedea.com> (21/04/2012 22:51:58)
- git-committer:
- Eric van der Vlist <vdv@dyomedea.com> (21/04/2012 22:51:58)
- Location:
- archiver/pipelines
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
archiver/pipelines/actions/heritrix-archive-set.xpl
rc4c4108 rbe2f974 97 97 <p:processor name="oxf:xforms-submission"> 98 98 <p:input name="submission" transform="oxf:xslt" href="oxf:/config.xml"> 99 <xforms:submission xsl:version="2.0" method="urlencoded-post" replace="none" action="{/config/heritrix/rest-api}" xxforms:authentication-scheme="digest"> 100 <xforms:header combine="replace"> 101 <xforms:name>Accept</xforms:name> 102 <xforms:value>application/xml</xforms:value> 103 </xforms:header> 104 </xforms:submission> 99 <xforms:submission xsl:version="2.0" method="urlencoded-post" action="{/config/heritrix/rest-api}" xxforms:username="{/config/heritrix/username}" 100 xxforms:password="{/config/heritrix/password}" xxforms:preemptive_authentication="no"> 101 <xforms:header combine="replace"> 102 <xforms:name>Accept</xforms:name> 103 <xforms:value>application/xml</xforms:value> 104 </xforms:header> 105 </xforms:submission> 105 106 </p:input> 106 107 <p:input name="request" transform="oxf:xslt" href="#data"> -
archiver/pipelines/config.xml
rc4c4108 rbe2f974 8 8 9 9 <heritrix> 10 <rest-api>https://admin:envierse@localhost:8443/engine</rest-api> 10 <rest-api>https://localhost:8443/engine</rest-api> 11 <username>admin</username> 12 <password>envierse</password> 11 13 </heritrix> 12 14 -
archiver/pipelines/data-access.xpl
rc71d5b2 rbe2f974 4 4 5 5 --> 6 <p:config xmlns:p="http://www.orbeon.com/oxf/pipeline" xmlns:oxf="http://www.orbeon.com/oxf/processors" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:x sl="http://www.w3.org/1999/XSL/Transform"6 <p:config xmlns:p="http://www.orbeon.com/oxf/pipeline" xmlns:oxf="http://www.orbeon.com/oxf/processors" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:xxforms="http://orbeon.org/oxf/xml/xforms" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 7 7 xmlns:exist="http://exist.sourceforge.net/NS/exist" xmlns:saxon="http://saxon.sf.net/"> 8 8 -
archiver/pipelines/default-log4j.xml
rc4c4108 rbe2f974 21 21 </layout> 22 22 <filter class="org.apache.log4j.varia.LevelRangeFilter"> 23 <param name="LevelMin" value="INFO" 23 <param name="LevelMin" value="INFO"/> 24 24 </filter> 25 25 </appender> 26 <!-- XForms engine activity -->27 <category name="org.orbeon.oxf.xforms.processor.XFormsServer">28 <priority value="debug"/>29 </category>26 <!-- XForms engine activity --> 27 <category name="org.orbeon.oxf.xforms.processor.XFormsServer"> 28 <priority value="debug"/> 29 </category> 30 30 31 31 <!-- This is the root logger --> -
archiver/pipelines/properties.xml
rc4c4108 rbe2f974 12 12 The full text of the license is available at http://www.gnu.org/copyleft/lesser.html 13 13 --> 14 <properties xmlns:xs="http://www.w3.org/2001/XMLSchema" 15 xmlns:oxf="http://www.orbeon.com/oxf/processors"> 14 <properties xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:oxf="http://www.orbeon.com/oxf/processors"> 16 15 17 <property as="xs:anyURI" name="oxf.log4j-config"value="oxf:/default-log4j.xml"/>18 <property as="xs:integer" name="oxf.cache.size" 16 <property as="xs:anyURI" name="oxf.log4j-config" value="oxf:/default-log4j.xml"/> 17 <property as="xs:integer" name="oxf.cache.size" value="200"/> 19 18 20 19 21 <property as="xs:anyURI" 22 name="oxf.http.ssl.keystore.uri" 23 value="file:/var/local/heritrix-3.1.0/heritrix.keystore"/> 24 <property as="xs:string" 25 name="oxf.http.ssl.keystore.password" 26 value="heritrix"/> 27 <property as="xs:string" 28 name="oxf.http.ssl.hostname-verifier" 29 value="allow-all"/> 20 <property as="xs:anyURI" name="oxf.http.ssl.keystore.uri" value="file:/var/local/heritrix-3.1.0/heritrix.keystore"/> 21 <property as="xs:string" name="oxf.http.ssl.keystore.password" value="heritrix"/> 22 <property as="xs:string" name="oxf.http.ssl.hostname-verifier" value="allow-all"/> 30 23 31 <!--<property as="xs:NMTOKENS" name="oxf.xforms.logging.debug"24 <!--<property as="xs:NMTOKENS" name="oxf.xforms.logging.debug" 32 25 value="document model submission control event action analysis server server-body html resolver utils 33 26 submission-details submission-body"/>-->
Note: See TracChangeset
for help on using the changeset viewer.