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/01/06 16:21:28 UTC

[02/12] incubator-nifi git commit: NIFI-218 integrated expression-language-guide into web app

NIFI-218 integrated expression-language-guide into web app


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

Branch: refs/heads/NIFI-221
Commit: e35c997436dbce95a2128a86d9321514d69790e9
Parents: 68b7ad7
Author: joewitt <jo...@apache.org>
Authored: Fri Jan 2 00:59:41 2015 -0500
Committer: joewitt <jo...@apache.org>
Committed: Fri Jan 2 00:59:41 2015 -0500

----------------------------------------------------------------------
 .../nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp    | 1 +
 .../framework/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/incubator-nifi/blob/e35c9974/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp b/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
index 9b2d6df..d2397de 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/WEB-INF/jsp/documentation.jsp
@@ -44,6 +44,7 @@
                     <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 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>
                     </ul>
                     <span class="no-matching no-components hidden">No matching guides</span>

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/e35c9974/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/js/application.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/js/application.js b/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/js/application.js
index 6983f01..3efdbcc 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/js/application.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-docs/src/main/webapp/js/application.js
@@ -259,7 +259,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').on('click', function() {
+        $('a.rest-api, a.user-guide, a.developer-guide, a.admin-guide, a.overview, a.expression-language-guide').on('click', function() {
             selectComponent($(this).text());
         });