Author: buildbot
Date: Thu Feb 16 10:41:02 2012
New Revision: 805054
Log:
Staging update by buildbot for stanbol
Modified:
websites/staging/stanbol/trunk/ (props changed)
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/graphchain.html
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/listchain.html
Propchange: websites/staging/stanbol/trunk/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Feb 16 10:41:02 2012
@@ -1 +1 @@
-1244922
+1244923
Modified:
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/graphchain.html
==============================================================================
---
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/graphchain.html
(original)
+++
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/graphchain.html
Thu Feb 16 10:41:02 2012
@@ -94,10 +94,15 @@ refactor;dependsOn=geonames,dbpedia-link
<p>Not that the internal oder of the list does not influence the resulting
ExecutionPlan. Only the "dependsOn" properties are used to determine the
execution order of the Engines and if Engines can be executed in parallel.</p>
<p>Within an osgi configuration file
(org.apache.stanbol.enhancer.chain.graph.impl.GraphChain-myGraphChain.config)
this would look like</p>
-<div class="codehilite"><pre><span
class="na">stanbol.enhancer.chain.graph.chainlist</span><span
class="o">=</span><span
class="s">["metaxa;optional","langId;dependsOn\=metaxa","ner;dependsOn\=langId","zemanta;optional","dbpedia-linking;dependsOn\=ner","geonames;optional;dependsOn\=ner","refactor;dependsOn\=geonames,dbpedia-linking,zemanta"]</span>
+<div class="codehilite"><pre><span
class="na">stanbol.enhancer.chain.graph.chainlist</span><span
class="o">=</span><span class="s">[</span>
+ <span
class="na">"metaxa;optional","langId;dependsOn\</span><span
class="o">=</span><span
class="s">metaxa","ner;dependsOn\=langId",</span>
+ <span
class="na">"zemanta;optional","dbpedia-linking;dependsOn\</span><span
class="o">=</span><span class="s">ner",</span>
+ <span class="na">"geonames;optional;dependsOn\</span><span
class="o">=</span><span class="s">ner",</span>
+ <span class="na">"refactor;dependsOn\</span><span
class="o">=</span><span class="s">geonames,dbpedia-linking,zemanta"]</span>
</pre></div>
+<p><em>NOTE:</em> the whole test MUST BE in a single line within the .config
file</p>
<p>A better visual expression provides this screenshot of the Apache Feilx
Webconsole showing the dialog for the same configuration</p>
<p><img alt="GraphChain configuration Dialog with configured ChainList"
src="enhancer-graphchain-config.png" title="A ChainList allows to define one
ExecutionNodes per line. The ExecutionPlan is calculated based on the dependsOn
properties. The ordering of the list element has no influence on the
ExecutionPlan." /></p>
<h3 id="execution">Execution</h3>
Modified:
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/listchain.html
==============================================================================
---
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/listchain.html
(original)
+++
websites/staging/stanbol/trunk/content/stanbol/docs/trunk/enhancer/chains/listchain.html
Thu Feb 16 10:41:02 2012
@@ -73,8 +73,8 @@
<p><img alt="Configuration Dialog for the ListChain"
src="enhancer-listchain-config.png" title="Sceenshot of the Configuration
Dialog for a ListChain with required and optional Engines" /></p>
<p>It is also possible to configure a ListChain by directly installing a
configuration with the name "{classname}-{configName}.config". Note that the
{configName} needs not to be the same as the name of the chain. The
{configName} is just used by the OSGI environment to distinguish different
configuration for {classname}.</p>
<p>To create the same configuration as in the above screenshot the file would
need to look like this:</p>
-<div class="codehilite"><pre>stanbol.enhancer.chain.name="list"
-stanbol.enhancer.chain.list.enginelist=["metaxa;optional","langid","ner","dbpediaLinking"]
+<div class="codehilite"><pre><span
class="na">stanbol.enhancer.chain.name</span><span class="o">=</span><span
class="s">"list"</span>
+<span class="na">stanbol.enhancer.chain.list.enginelist</span><span
class="o">=</span><span
class="s">["metaxa;optional","langid","ner","dbpediaLinking"]</span>
</pre></div>