You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by ma...@apache.org on 2015/02/10 02:43:06 UTC

[10/21] incubator-nifi git commit: NIFI-152 - Fixing broken link, adding info about Documentation

NIFI-152 - Fixing broken link, adding info about Documentation


Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/34625796
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/34625796
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/34625796

Branch: refs/heads/nifi-site-to-site-client
Commit: 34625796880e39a0a453eeb346b15d6ca9d25a7a
Parents: 4977673
Author: danbress <db...@onyxconsults.com>
Authored: Sun Feb 1 09:10:47 2015 -0500
Committer: danbress <db...@onyxconsults.com>
Committed: Sat Feb 7 16:52:27 2015 -0500

----------------------------------------------------------------------
 nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/34625796/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc
----------------------------------------------------------------------
diff --git a/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc b/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc
index faa10e3..99092da 100644
--- a/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc
+++ b/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc
@@ -70,7 +70,7 @@ high-level description of the most common extension points:
       many different Processors to load the dataset themselves.
 
 - FlowFilePrioritizer
-    * The FlowFilePrioritizer interface provides a mechanism by which <<flowfile>s
+    * The FlowFilePrioritizer interface provides a mechanism by which <<flowfile>>s
       in a queue can be prioritized, or sorted, so that the FlowFiles can be processed in an order
       that is most effective for a particular use case.
 
@@ -666,14 +666,18 @@ provides a "Usage" menu item in the context menu. Additionally, the
 UI exposes a "Help" link in the top-right corner, from which the same
 Usage information can be found.
 
-The advanced documentation of a Processor is provided as an HTML file.
+The advanced documentation of a Processor is provided as an HTML file named `additionalDetails.html`.
 This file should exist within a directory whose name is the
 fully-qualified
 name of the component, and this directory's parent should be named
 `docs` and exist in the root of the Processor's jar.
-The mechanism provided for this will be changing as of the 0.1.0
-release. At that time, this section will be updated to reflect
-the new procedures for providing this advanced documentation.
+This file will be linked from a generated HTML file that will contain
+all the Capability, Keyword, PropertyDescription and Relationship information,
+so it will not be necessary to duplicate that information.  This is a place 
+to provide a rich explanation of what this processor is doing, what kind of 
+data it expects and produces, and what FlowFile attributes it expects and produces.
+Because this documentation is in an HTML format, you may include images and tables
+to best document this component.