You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2015/02/09 15:48:42 UTC

[09/18] incubator-nifi git commit: NIFI-152 - rewording with respect to Processor/ControllerService/ReportingTask

NIFI-152 - rewording with respect to
Processor/ControllerService/ReportingTask

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

Branch: refs/heads/NIFI-250
Commit: d016c643f32a9b5d40a498731cabe50e08d418f6
Parents: 488085b
Author: danbress <db...@onyxconsults.com>
Authored: Sun Feb 8 11:23:43 2015 -0500
Committer: danbress <db...@onyxconsults.com>
Committed: Sun Feb 8 11:23:43 2015 -0500

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


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/d016c643/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 ac9291a..d8b5d50 100644
--- a/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc
+++ b/nifi/nifi-docs/src/main/asciidoc/developer-guide.adoc
@@ -666,18 +666,19 @@ 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 component is provided as an HTML file named `additionalDetails.html`.
+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
+name of the Processor, and this directory's parent should be named
 `docs` and exist in the root of the Processor's jar.
 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.  This is a place 
-to provide a rich explanation of what this component is doing, what kind of 
+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 describe this component.
+to best describe this component.  The same methods can be used to provide advanced
+documentation for Processors, ControllerServices and ReportingTasks.