You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2012/12/31 11:05:59 UTC

svn commit: r1427065 - in /ode/site/trunk/content/extensions: activity-failure-and-recovery.mdtext extension-activities-extensible-assign-operations.mdtext implicit-correlations.mdtext xpath-extensions.mdtext

Author: vanto
Date: Mon Dec 31 10:05:59 2012
New Revision: 1427065

URL: http://svn.apache.org/viewvc?rev=1427065&view=rev
Log:
fix formatting.

Modified:
    ode/site/trunk/content/extensions/activity-failure-and-recovery.mdtext
    ode/site/trunk/content/extensions/extension-activities-extensible-assign-operations.mdtext
    ode/site/trunk/content/extensions/implicit-correlations.mdtext
    ode/site/trunk/content/extensions/xpath-extensions.mdtext

Modified: ode/site/trunk/content/extensions/activity-failure-and-recovery.mdtext
URL: http://svn.apache.org/viewvc/ode/site/trunk/content/extensions/activity-failure-and-recovery.mdtext?rev=1427065&r1=1427064&r2=1427065&view=diff
==============================================================================
--- ode/site/trunk/content/extensions/activity-failure-and-recovery.mdtext (original)
+++ ode/site/trunk/content/extensions/activity-failure-and-recovery.mdtext Mon Dec 31 10:05:59 2012
@@ -1,4 +1,7 @@
 Title: Activity Failure and Recovery
+Category: documentation
+
+## Overview
 There are several types of error conditions. In this document we introduce a class of error condition called _failures_, distinct from _faults_, and describe how failures are caught and handled by the process engine.
  
 A service returns a fault in response to a request it cannot process. A process may also raise a fault internally when it encounters a terminal error condition, e.g. a faulty expression or false join condition. In addition, processes may raise faults in order to terminate normal processing.

Modified: ode/site/trunk/content/extensions/extension-activities-extensible-assign-operations.mdtext
URL: http://svn.apache.org/viewvc/ode/site/trunk/content/extensions/extension-activities-extensible-assign-operations.mdtext?rev=1427065&r1=1427064&r2=1427065&view=diff
==============================================================================
--- ode/site/trunk/content/extensions/extension-activities-extensible-assign-operations.mdtext (original)
+++ ode/site/trunk/content/extensions/extension-activities-extensible-assign-operations.mdtext Mon Dec 31 10:05:59 2012
@@ -1,4 +1,5 @@
 Title: Extension Activities & Extensible Assign Operations
+Category: documentation
 
 ## BPEL Extensibility
 

Modified: ode/site/trunk/content/extensions/implicit-correlations.mdtext
URL: http://svn.apache.org/viewvc/ode/site/trunk/content/extensions/implicit-correlations.mdtext?rev=1427065&r1=1427064&r2=1427065&view=diff
==============================================================================
--- ode/site/trunk/content/extensions/implicit-correlations.mdtext (original)
+++ ode/site/trunk/content/extensions/implicit-correlations.mdtext Mon Dec 31 10:05:59 2012
@@ -1,4 +1,5 @@
 Title: Implicit Correlations
+Category: documentation
 
 * [Introduction](#ImplicitCorrelations-Introduction)
 * [Process to Process Interaction Use Case](#ImplicitCorrelations-ProcesstoProcessInteractionUseCase)

Modified: ode/site/trunk/content/extensions/xpath-extensions.mdtext
URL: http://svn.apache.org/viewvc/ode/site/trunk/content/extensions/xpath-extensions.mdtext?rev=1427065&r1=1427064&r2=1427065&view=diff
==============================================================================
--- ode/site/trunk/content/extensions/xpath-extensions.mdtext (original)
+++ ode/site/trunk/content/extensions/xpath-extensions.mdtext Mon Dec 31 10:05:59 2012
@@ -1,4 +1,7 @@
 Title: XPath Extensions
+Category: documentation
+
+## Overview
 Apache ODE extends the default XPath coverage provided by the [WS-BPEL](/ws-bpel-20.html) specification mostly by adding support for [XPath 2.0](http://www.w3.org/TR/xpath20/) and by offering a few utility extension functions to make some assignments easier.
 
 <a name="XPathExtensions-XPath2.0"></a>
@@ -23,7 +26,7 @@ All extension functions are defined in t
 
 This is a function that allows you to insert one or more siblings (specified by the $siblings argument in the signature below) before the first node of children (specified by the $children argument), all of whose nodes must have the same parent (specified by the $context argument).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Insert Before</B></DIV><DIV class="codeContent panelContent">
+<span class="caption">Insert Before</span>
     ode:insert-before($context as node(), $children as node()*, $siblings as node()*) as node() 
 
 
@@ -40,7 +43,7 @@ By design, this function is non-updating
 
 For those familiar with the [XQuery Update Facility](http://www.w3.org/TR/2008/CR-xquery-update-10-20080801/), the above example is semantically equivalent to the expression shown below:
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>XQuery Equivalent</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>XQuery Equivalent</b></div><div class="codeContent panelContent">
     insert nodes $siblings before $parent/child::node[position()=last()] 
 
 
@@ -49,7 +52,7 @@ For those familiar with the [XQuery Upda
 
 This is a function that allows you to insert one or more siblings (specified by the $siblings argument in the signature below) after the last node of children (specified by the $children argument), all of whose nodes must have the same parent (specified by the $context argument).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Insert After</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Insert After</b></div><div class="codeContent panelContent">
     ode:insert-after($context as node(), $children as node()*, $siblings as node()*) as node() 
 
 
@@ -66,7 +69,7 @@ By design, this function is non-updating
 
 For those familiar with the [XQuery Update Facility](http://www.w3.org/TR/2008/CR-xquery-update-10-20080801/), the above example is semantically equivalent to the expression shown below:
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>XQuery Equivalent</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>XQuery Equivalent</b></div><div class="codeContent panelContent">
     insert nodes $siblings after $parent/child::node()
 
 
@@ -76,7 +79,7 @@ For those familiar with the [XQuery Upda
 
 This is a function that allows you to insert the node(s) (specified by the $children argument in the signature below) as the first child(ren) of a given context node (specified by the $context argument).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Insert As First Into</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Insert As First Into</b></div><div class="codeContent panelContent">
     ode:insert-as-first-into($context as node(), $children as node()*) as node() 
 
 
@@ -93,7 +96,7 @@ By design, this function is non-updating
 
 For those familiar with the [XQuery Update Facility](http://www.w3.org/TR/2008/CR-xquery-update-10-20080801/), the above example is semantically equivalent to the expression shown below:
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>XQuery Equivalent</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>XQuery Equivalent</b></div><div class="codeContent panelContent">
     insert nodes $children as first into $parent 
 
 
@@ -102,7 +105,7 @@ For those familiar with the [XQuery Upda
 
 This is a function that allows you to insert the node(s) (specified by the $children argument in the signature below) as the last child(ren) of a given context node (specified by the $context argument).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Insert As Last Into</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Insert As Last Into</b></div><div class="codeContent panelContent">
     ode:insert-as-last-into($context as node(), $children as node()*) as node() 
 
 
@@ -119,7 +122,7 @@ By design, this function is non-updating
 
 For those familiar with the [XQuery Update Facility](http://www.w3.org/TR/2008/CR-xquery-update-10-20080801/), the above example is semantically equivalent to the expression shown below:
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>XQuery Equivalent</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>XQuery Equivalent</b></div><div class="codeContent panelContent">
     insert nodes $children as last into $parent 
 
 
@@ -129,7 +132,7 @@ For those familiar with the [XQuery Upda
 
 This is a function that allows you to delete one or more node(s) (specified by the $children argument in the signature below) from its parent (specified by the $context argument).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Delete</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Delete</b></div><div class="codeContent panelContent">
     ode:delete($context as node(), $children as node()*) as node() 
 
 
@@ -146,7 +149,7 @@ By design, this function is non-updating
 
 For those familiar with the [XQuery Update Facility](http://www.w3.org/TR/2008/CR-xquery-update-10-20080801/), the above example is semantically equivalent to the expression shown below:
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>XQuery Equivalent</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>XQuery Equivalent</b></div><div class="codeContent panelContent">
     delete nodes $children 
 
 
@@ -155,7 +158,7 @@ For those familiar with the [XQuery Upda
 
 This is a function that allows you to rename the context node (specified by the $context argument in the signature below) as per the given name (specified by $item, which is either a QName, Element or String).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Rename</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Rename</b></div><div class="codeContent panelContent">
     ode:rename($context as node(), $name as item()) as node() 
 
 
@@ -172,7 +175,7 @@ By design, this function is non-updating
 
 For those familiar with the [XQuery Update Facility](http://www.w3.org/TR/2008/CR-xquery-update-10-20080801/), the above example is semantically equivalent to the expression shown below:
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>XQuery Equivalent</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>XQuery Equivalent</b></div><div class="codeContent panelContent">
     rename $person as fn:QName("http://www.example.com/example", "manager")
 
 
@@ -235,7 +238,7 @@ Similar to `composeURL` but undefined va
 
 This is a function that serializes a DOM node (specified by the $node argument in the signature below) into a string.
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Dom To String</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Dom To String</b></div><div class="codeContent panelContent">
     ode:dom-to-string($node as node()) as xs:string
 
 
@@ -244,7 +247,7 @@ This is a function that serializes a DOM
 
 This is a function that allows you to retrieve the value of a property, defined in deploy.xml for the current process, with the given name (specified by the $name argument in the signature below, which is either a QName, String, Element or Single-Valued List).
 
-<DIV class="code panel" style="border-style: solid;border-width: 1px;"><DIV class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><B>Process Property</B></DIV><DIV class="codeContent panelContent">
+<div class="code panel" style="border-style: solid;border-width: 1px;"><div class="codeHeader panelHeader" style="border-bottom-width: 1px;border-bottom-style: solid;"><b>Process Property</b></div><div class="codeContent panelContent">
     ode:process-property($name as item()) as node()