You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by tk...@apache.org on 2015/11/15 14:41:51 UTC

nifi git commit: NIFI-973: Updated main Help page to provide a link to the Getting Started Guide.

Repository: nifi
Updated Branches:
  refs/heads/master 528dab78d -> da9f40b3f


NIFI-973: Updated main Help page to provide a link to the Getting Started Guide.

Reviewed by Aldrin Piri (aldrin@apache.org)


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

Branch: refs/heads/master
Commit: da9f40b3f0aa29ba5e8ba4e257e953b52c6493e6
Parents: 528dab7
Author: Mark Payne <ma...@hotmail.com>
Authored: Sun Nov 15 08:38:51 2015 -0500
Committer: Tony Kurc <tr...@gmail.com>
Committed: Sun Nov 15 08:38:51 2015 -0500

----------------------------------------------------------------------
 .../nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp    | 1 +
 .../nifi-web/nifi-web-docs/src/main/webapp/js/application.js       | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/da9f40b3/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
index 9690def..31ed963 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
@@ -43,6 +43,7 @@
                 <div id="general-links" class="component-links">
                     <ul>
                         <li class="component-item"><a class="component-link overview" href="html/overview.html" target="component-usage">Overview</a></li>
+                        <li class="component-item"><a class="component-link getting-started" href="html/getting-started.html" target="component-usage">Getting Started</a></li>
                         <li class="component-item"><a class="component-link user-guide" href="html/user-guide.html" target="component-usage">User Guide</a></li>
                         <li class="component-item"><a class="component-link expression-language-guide" href="html/expression-language-guide.html" target="component-usage">Expression Language Guide</a></li>
                         <li class="component-item"><a class="component-link admin-guide" href="html/administration-guide.html" target="component-usage">Admin Guide</a></li>

http://git-wip-us.apache.org/repos/asf/nifi/blob/da9f40b3/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/js/application.js
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/js/application.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/js/application.js
index 1261810..cdc062e 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/js/application.js
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-docs/src/main/webapp/js/application.js
@@ -262,7 +262,7 @@ $(document).ready(function () {
         });
         
         // listen for on the rest api and user guide and developer guide and admin guide and overview
-        $('a.rest-api, a.user-guide, a.developer-guide, a.admin-guide, a.overview, a.expression-language-guide').on('click', function() {
+        $('a.rest-api, a.user-guide, a.developer-guide, a.admin-guide, a.overview, a.expression-language-guide, a.getting-started').on('click', function() {
             selectComponent($(this).text());
         });