Update to follow changes to Orbeon Forms experimental features...
This commit is contained in:
parent
c4c4108025
commit
be2f974a4c
|
@ -96,7 +96,8 @@ for $a in /queue/action where $a/@uuid = $(uuid) return
|
||||||
<!-- Create a new Heritrix job-->
|
<!-- Create a new Heritrix job-->
|
||||||
<p:processor name="oxf:xforms-submission">
|
<p:processor name="oxf:xforms-submission">
|
||||||
<p:input name="submission" transform="oxf:xslt" href="oxf:/config.xml">
|
<p:input name="submission" transform="oxf:xslt" href="oxf:/config.xml">
|
||||||
<xforms:submission xsl:version="2.0" method="urlencoded-post" replace="none" action="{/config/heritrix/rest-api}" xxforms:authentication-scheme="digest">
|
<xforms:submission xsl:version="2.0" method="urlencoded-post" action="{/config/heritrix/rest-api}" xxforms:username="{/config/heritrix/username}"
|
||||||
|
xxforms:password="{/config/heritrix/password}" xxforms:preemptive_authentication="no">
|
||||||
<xforms:header combine="replace">
|
<xforms:header combine="replace">
|
||||||
<xforms:name>Accept</xforms:name>
|
<xforms:name>Accept</xforms:name>
|
||||||
<xforms:value>application/xml</xforms:value>
|
<xforms:value>application/xml</xforms:value>
|
||||||
|
|
|
@ -7,7 +7,9 @@
|
||||||
<user-agent>Mozilla/5.0 (compatible; owark/0.3; http://owark.org/)</user-agent>
|
<user-agent>Mozilla/5.0 (compatible; owark/0.3; http://owark.org/)</user-agent>
|
||||||
|
|
||||||
<heritrix>
|
<heritrix>
|
||||||
<rest-api>https://admin:envierse@localhost:8443/engine</rest-api>
|
<rest-api>https://localhost:8443/engine</rest-api>
|
||||||
|
<username>admin</username>
|
||||||
|
<password>envierse</password>
|
||||||
</heritrix>
|
</heritrix>
|
||||||
|
|
||||||
</config>
|
</config>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Database access
|
Database access
|
||||||
|
|
||||||
-->
|
-->
|
||||||
<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:xsl="http://www.w3.org/1999/XSL/Transform"
|
<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"
|
||||||
xmlns:exist="http://exist.sourceforge.net/NS/exist" xmlns:saxon="http://saxon.sf.net/">
|
xmlns:exist="http://exist.sourceforge.net/NS/exist" xmlns:saxon="http://saxon.sf.net/">
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,22 +11,15 @@
|
||||||
|
|
||||||
The full text of the license is available at http://www.gnu.org/copyleft/lesser.html
|
The full text of the license is available at http://www.gnu.org/copyleft/lesser.html
|
||||||
-->
|
-->
|
||||||
<properties xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
<properties xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:oxf="http://www.orbeon.com/oxf/processors">
|
||||||
xmlns:oxf="http://www.orbeon.com/oxf/processors">
|
|
||||||
|
|
||||||
<property as="xs:anyURI" name="oxf.log4j-config" value="oxf:/default-log4j.xml"/>
|
<property as="xs:anyURI" name="oxf.log4j-config" value="oxf:/default-log4j.xml"/>
|
||||||
<property as="xs:integer" name="oxf.cache.size" value="200"/>
|
<property as="xs:integer" name="oxf.cache.size" value="200"/>
|
||||||
|
|
||||||
|
|
||||||
<property as="xs:anyURI"
|
<property as="xs:anyURI" name="oxf.http.ssl.keystore.uri" value="file:/var/local/heritrix-3.1.0/heritrix.keystore"/>
|
||||||
name="oxf.http.ssl.keystore.uri"
|
<property as="xs:string" name="oxf.http.ssl.keystore.password" value="heritrix"/>
|
||||||
value="file:/var/local/heritrix-3.1.0/heritrix.keystore"/>
|
<property as="xs:string" name="oxf.http.ssl.hostname-verifier" value="allow-all"/>
|
||||||
<property as="xs:string"
|
|
||||||
name="oxf.http.ssl.keystore.password"
|
|
||||||
value="heritrix"/>
|
|
||||||
<property as="xs:string"
|
|
||||||
name="oxf.http.ssl.hostname-verifier"
|
|
||||||
value="allow-all"/>
|
|
||||||
|
|
||||||
<!--<property as="xs:NMTOKENS" name="oxf.xforms.logging.debug"
|
<!--<property as="xs:NMTOKENS" name="oxf.xforms.logging.debug"
|
||||||
value="document model submission control event action analysis server server-body html resolver utils
|
value="document model submission control event action analysis server server-body html resolver utils
|
||||||
|
|
Loading…
Reference in New Issue