[jira] [Commented] (NIFI-1319) ExecuteSQL error when table uses unsigned int

2015-12-22 Thread Bryan Bende (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-1319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068245#comment-15068245
 ] 

Bryan Bende commented on NIFI-1319:
---

Also tested this against Postgres and SQLServer, both don't support unsigned 
ints, but calling isSigned appears to be safe and both return true so int 
fields works as they did before.

> ExecuteSQL error when table uses unsigned int
> -
>
> Key: NIFI-1319
> URL: https://issues.apache.org/jira/browse/NIFI-1319
> Project: Apache NiFi
>  Issue Type: Bug
>Affects Versions: 0.4.0
>Reporter: Bryan Bende
>Assignee: Bryan Bende
>Priority: Minor
> Fix For: 0.5.0
>
> Attachments: NIFI-1319.patch
>
>
> When a table has a column of type "unsigned int", the JDBC type of this 
> column is 4 which is INTEGER. When we create the Avro schema for the result 
> set, we end up creating UNION:["int","null"] for this field.
> When we process a row from the result set, the Java type for the value of 
> this column is Long, and when trying to write that Avro record it expects and 
> int and produces the following exception:
> ExecuteSQL[id=e7cc632a-4d8f-4362-b5e0-68faefd01c23] 
> ExecuteSQL[id=e7cc632a-4d8f-4362-b5e0-68faefd01c23] failed to process session 
> due to org.apache.avro.file.DataFileWriter$AppendWriteException: 
> org.apache.avro.UnresolvedUnionException: Not in union ["null","int"]: 1: 
> org.apache.avro.file.DataFileWriter$AppendWriteException: 
> org.apache.avro.UnresolvedUnionException: Not in union ["null","int"]: 1
> This problem was observed with MySQL and NiFi 0.4.0. To reproduce, create 
> table:
> {code}
> CREATE TABLE SALARIES (
> ID int(10) unsigned primary key AUTO_INCREMENT,
> ZIPCODE int,
> SALARY double,
> AGE int,
> GENDER varchar(255)
> );
> INSERT INTO SALARIES (ZIPCODE, SALARY, AGE, GENDER) VALUES (12345, 100, 30, 
> 'M');
> INSERT INTO SALARIES (ZIPCODE, SALARY, AGE, GENDER) VALUES (12345, 200, 31, 
> 'M');
> I
> {code}
> Then create a flow with ExecuteSql -> ConvertAvroToJson -> LogAttribute and 
> use a query of "select * from salaries;".
> The problem did not happen testing against 0.3.0. At first glance it appears 
> that fixes in NIFI-972 may have introduced this regression problem. Prior to 
> that we were not using the union approach in the Avro schema which may have 
> allowed this to work.
> We most likely need to factor in ResultSetMetadata.isSigned() when 
> determining the type to use in the Avro schema.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (NIFI-958) Support appending to files for PutHDFS and PutFile

2015-12-22 Thread Joseph Witt (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-958?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Witt updated NIFI-958:
-
Fix Version/s: 0.5.0

> Support appending to files for PutHDFS and PutFile
> --
>
> Key: NIFI-958
> URL: https://issues.apache.org/jira/browse/NIFI-958
> Project: Apache NiFi
>  Issue Type: Improvement
>  Components: Extensions
>Reporter: Randy Gelhausen
> Fix For: 0.5.0
>
> Attachments: putfile_append.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[4/4] nifi git commit: NIFI-1312-RC1 prepare for next development iteration

2015-12-22 Thread joewitt
NIFI-1312-RC1 prepare for next development iteration


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

Branch: refs/heads/master
Commit: f4ac8d75c5f1d2bb6789d0ef0761a88cc9108596
Parents: d624ea4
Author: joewitt 
Authored: Sat Dec 19 00:41:04 2015 -0500
Committer: joewitt 
Committed: Sat Dec 19 00:41:04 2015 -0500

--
 nifi-api/pom.xml|   2 +-
 nifi-assembly/pom.xml   |   2 +-
 nifi-bootstrap/pom.xml  |   2 +-
 nifi-commons/nifi-data-provenance-utils/pom.xml |   2 +-
 nifi-commons/nifi-expression-language/pom.xml   |   2 +-
 nifi-commons/nifi-flowfile-packager/pom.xml |   2 +-
 nifi-commons/nifi-hl7-query-language/pom.xml|   2 +-
 nifi-commons/nifi-logging-utils/pom.xml |   2 +-
 nifi-commons/nifi-processor-utilities/pom.xml   |   2 +-
 nifi-commons/nifi-properties/pom.xml|   2 +-
 nifi-commons/nifi-security-utils/pom.xml|   2 +-
 nifi-commons/nifi-site-to-site-client/pom.xml   |   4 +-
 nifi-commons/nifi-socket-utils/pom.xml  |   2 +-
 nifi-commons/nifi-utils/pom.xml |   4 +-
 nifi-commons/nifi-web-utils/pom.xml |   2 +-
 nifi-commons/nifi-write-ahead-log/pom.xml   |   2 +-
 nifi-commons/pom.xml|   2 +-
 nifi-docs/pom.xml   |   2 +-
 .../nifi-nifi-example-nar/pom.xml   |   2 +-
 .../nifi-nifi-example-processors/pom.xml|   2 +-
 nifi-external/nifi-example-bundle/pom.xml   |   4 +-
 nifi-external/nifi-spark-receiver/pom.xml   |   2 +-
 nifi-external/nifi-storm-spout/pom.xml  |   2 +-
 nifi-external/pom.xml   |   2 +-
 .../nifi-processor-bundle-archetype/pom.xml |   2 +-
 .../nifi-service-bundle-archetype/pom.xml   |   2 +-
 nifi-maven-archetypes/pom.xml   |   2 +-
 nifi-mock/pom.xml   |   2 +-
 .../nifi-ambari-bundle/nifi-ambari-nar/pom.xml  |   4 +-
 .../nifi-ambari-reporting-task/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-ambari-bundle/pom.xml |   2 +-
 .../nifi-avro-bundle/nifi-avro-nar/pom.xml  |   6 +-
 .../nifi-avro-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-avro-bundle/pom.xml   |   4 +-
 .../nifi-aws-bundle/nifi-aws-nar/pom.xml|   4 +-
 .../nifi-aws-bundle/nifi-aws-processors/pom.xml |   2 +-
 nifi-nar-bundles/nifi-aws-bundle/pom.xml|   2 +-
 .../nifi-azure-bundle/nifi-azure-nar/pom.xml|   6 +-
 .../nifi-azure-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  |   4 +-
 .../nifi-couchbase-nar/pom.xml  |   6 +-
 .../nifi-couchbase-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-couchbase-bundle/pom.xml  |   4 +-
 .../nifi-flume-bundle/nifi-flume-nar/pom.xml|   4 +-
 .../nifi-flume-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-flume-bundle/pom.xml  |   6 +-
 .../nifi-framework-nar/pom.xml  |   2 +-
 .../nifi-framework/nifi-administration/pom.xml  |   2 +-
 .../nifi-framework/nifi-client-dto/pom.xml  |   2 +-
 .../nifi-cluster-authorization-provider/pom.xml |   2 +-
 .../nifi-framework/nifi-documentation/pom.xml   |   2 +-
 .../nifi-file-authorization-provider/pom.xml|   2 +-
 .../nifi-framework-cluster-protocol/pom.xml |   2 +-
 .../nifi-framework-cluster-web/pom.xml  |   2 +-
 .../nifi-framework-cluster/pom.xml  |   2 +-
 .../nifi-framework-core-api/pom.xml |   2 +-
 .../nifi-framework/nifi-framework-core/pom.xml  |   2 +-
 .../nifi-framework/nifi-nar-utils/pom.xml   |   2 +-
 .../nifi-framework/nifi-resources/pom.xml   |   2 +-
 .../nifi-framework/nifi-runtime/pom.xml |   2 +-
 .../nifi-framework/nifi-security/pom.xml|   2 +-
 .../nifi-framework/nifi-site-to-site/pom.xml|   2 +-
 .../nifi-framework/nifi-user-actions/pom.xml|   2 +-
 .../nifi-web/nifi-custom-ui-utilities/pom.xml   |   2 +-
 .../nifi-framework/nifi-web/nifi-jetty/pom.xml  |   2 +-
 .../nifi-web/nifi-ui-extension/pom.xml  |   2 +-
 .../nifi-web/nifi-web-api/pom.xml   |   2 +-
 .../nifi-web/nifi-web-content-access/pom.xml|   2 +-
 .../nifi-web/nifi-web-content-viewer/pom.xml|   2 +-
 .../nifi-web/nifi-web-docs/pom.xml  |   2 +-
 .../nifi-web/nifi-web-error/pom.xml |   2 +-
 .../nifi-web-optimistic-locking/pom.xml |   2 +-
 .../nifi-web/nifi-web-security/pom.xml  |   2 +-
 .../nifi-framework/nifi-web/nifi-web-ui/pom.xml |   2 +-
 .../nifi-framework/nifi-web/pom.xml |  12 +-
 

[2/4] nifi git commit: NIFI-1312-RC1 prepare release nifi-0.4.1-RC1

2015-12-22 Thread joewitt
NIFI-1312-RC1 prepare release nifi-0.4.1-RC1


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

Branch: refs/heads/master
Commit: d624ea48665041ffd9aa4f246b374bde10cfc878
Parents: fb51483
Author: joewitt 
Authored: Sat Dec 19 00:40:53 2015 -0500
Committer: joewitt 
Committed: Sat Dec 19 00:40:53 2015 -0500

--
 nifi-api/pom.xml|   2 +-
 nifi-assembly/pom.xml   |   2 +-
 nifi-bootstrap/pom.xml  |   2 +-
 nifi-commons/nifi-data-provenance-utils/pom.xml |   2 +-
 nifi-commons/nifi-expression-language/pom.xml   |   2 +-
 nifi-commons/nifi-flowfile-packager/pom.xml |   2 +-
 nifi-commons/nifi-hl7-query-language/pom.xml|   2 +-
 nifi-commons/nifi-logging-utils/pom.xml |   2 +-
 nifi-commons/nifi-processor-utilities/pom.xml   |   2 +-
 nifi-commons/nifi-properties/pom.xml|   2 +-
 nifi-commons/nifi-security-utils/pom.xml|   2 +-
 nifi-commons/nifi-site-to-site-client/pom.xml   |   4 +-
 nifi-commons/nifi-socket-utils/pom.xml  |   2 +-
 nifi-commons/nifi-utils/pom.xml |   4 +-
 nifi-commons/nifi-web-utils/pom.xml |   2 +-
 nifi-commons/nifi-write-ahead-log/pom.xml   |   2 +-
 nifi-commons/pom.xml|   2 +-
 nifi-docs/pom.xml   |   2 +-
 .../nifi-nifi-example-nar/pom.xml   |   2 +-
 .../nifi-nifi-example-processors/pom.xml|   2 +-
 nifi-external/nifi-example-bundle/pom.xml   |   4 +-
 nifi-external/nifi-spark-receiver/pom.xml   |   2 +-
 nifi-external/nifi-storm-spout/pom.xml  |   2 +-
 nifi-external/pom.xml   |   2 +-
 .../nifi-processor-bundle-archetype/pom.xml |   2 +-
 .../nifi-service-bundle-archetype/pom.xml   |   2 +-
 nifi-maven-archetypes/pom.xml   |   2 +-
 nifi-mock/pom.xml   |   2 +-
 .../nifi-ambari-bundle/nifi-ambari-nar/pom.xml  |   4 +-
 .../nifi-ambari-reporting-task/pom.xml  |   2 +-
 nifi-nar-bundles/nifi-ambari-bundle/pom.xml |   2 +-
 .../nifi-avro-bundle/nifi-avro-nar/pom.xml  |   6 +-
 .../nifi-avro-processors/pom.xml|   2 +-
 nifi-nar-bundles/nifi-avro-bundle/pom.xml   |   4 +-
 .../nifi-aws-bundle/nifi-aws-nar/pom.xml|   4 +-
 .../nifi-aws-bundle/nifi-aws-processors/pom.xml |   2 +-
 nifi-nar-bundles/nifi-aws-bundle/pom.xml|   2 +-
 .../nifi-azure-bundle/nifi-azure-nar/pom.xml|   6 +-
 .../nifi-azure-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-azure-bundle/pom.xml  |   4 +-
 .../nifi-couchbase-nar/pom.xml  |   6 +-
 .../nifi-couchbase-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-couchbase-bundle/pom.xml  |   4 +-
 .../nifi-flume-bundle/nifi-flume-nar/pom.xml|   4 +-
 .../nifi-flume-processors/pom.xml   |   2 +-
 nifi-nar-bundles/nifi-flume-bundle/pom.xml  |   6 +-
 .../nifi-framework-nar/pom.xml  |   2 +-
 .../nifi-framework/nifi-administration/pom.xml  |   2 +-
 .../nifi-framework/nifi-client-dto/pom.xml  |   2 +-
 .../nifi-cluster-authorization-provider/pom.xml |   2 +-
 .../nifi-framework/nifi-documentation/pom.xml   |   2 +-
 .../nifi-file-authorization-provider/pom.xml|   2 +-
 .../nifi-framework-cluster-protocol/pom.xml |   2 +-
 .../nifi-framework-cluster-web/pom.xml  |   2 +-
 .../nifi-framework-cluster/pom.xml  |   2 +-
 .../nifi-framework-core-api/pom.xml |   2 +-
 .../nifi-framework/nifi-framework-core/pom.xml  |   2 +-
 .../nifi-framework/nifi-nar-utils/pom.xml   |   2 +-
 .../nifi-framework/nifi-resources/pom.xml   |   2 +-
 .../nifi-framework/nifi-runtime/pom.xml |   2 +-
 .../nifi-framework/nifi-security/pom.xml|   2 +-
 .../nifi-framework/nifi-site-to-site/pom.xml|   2 +-
 .../nifi-framework/nifi-user-actions/pom.xml|   2 +-
 .../nifi-web/nifi-custom-ui-utilities/pom.xml   |   2 +-
 .../nifi-framework/nifi-web/nifi-jetty/pom.xml  |   2 +-
 .../nifi-web/nifi-ui-extension/pom.xml  |   2 +-
 .../nifi-web/nifi-web-api/pom.xml   |   2 +-
 .../nifi-web/nifi-web-content-access/pom.xml|   2 +-
 .../nifi-web/nifi-web-content-viewer/pom.xml|   2 +-
 .../nifi-web/nifi-web-docs/pom.xml  |   2 +-
 .../nifi-web/nifi-web-error/pom.xml |   2 +-
 .../nifi-web-optimistic-locking/pom.xml |   2 +-
 .../nifi-web/nifi-web-security/pom.xml  |   2 +-
 .../nifi-framework/nifi-web/nifi-web-ui/pom.xml |   2 +-
 .../nifi-framework/nifi-web/pom.xml |  12 +-
 

[jira] [Commented] (NIFI-1312) Create 0.4.1 release

2015-12-22 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-1312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068533#comment-15068533
 ] 

ASF subversion and git services commented on NIFI-1312:
---

Commit f4ac8d75c5f1d2bb6789d0ef0761a88cc9108596 in nifi's branch 
refs/heads/master from [~joewitt]
[ https://git-wip-us.apache.org/repos/asf?p=nifi.git;h=f4ac8d7 ]

NIFI-1312-RC1 prepare for next development iteration


> Create 0.4.1 release
> 
>
> Key: NIFI-1312
> URL: https://issues.apache.org/jira/browse/NIFI-1312
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Tools and Build
>Reporter: Joseph Witt
>Assignee: Joseph Witt
>Priority: Trivial
> Fix For: 0.4.1
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (NIFI-1312) Create 0.4.1 release

2015-12-22 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-1312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068532#comment-15068532
 ] 

ASF subversion and git services commented on NIFI-1312:
---

Commit d624ea48665041ffd9aa4f246b374bde10cfc878 in nifi's branch 
refs/heads/master from [~joewitt]
[ https://git-wip-us.apache.org/repos/asf?p=nifi.git;h=d624ea4 ]

NIFI-1312-RC1 prepare release nifi-0.4.1-RC1


> Create 0.4.1 release
> 
>
> Key: NIFI-1312
> URL: https://issues.apache.org/jira/browse/NIFI-1312
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Tools and Build
>Reporter: Joseph Witt
>Assignee: Joseph Witt
>Priority: Trivial
> Fix For: 0.4.1
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (NIFI-810) Create Annotation that indicates that a Processor cannot be scheduled to run without an incoming connection

2015-12-22 Thread Joseph Witt (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-810?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068538#comment-15068538
 ] 

Joseph Witt commented on NIFI-810:
--

...this looks like it needs the FixVersion set.

> Create Annotation that indicates that a Processor cannot be scheduled to run 
> without an incoming connection
> ---
>
> Key: NIFI-810
> URL: https://issues.apache.org/jira/browse/NIFI-810
> Project: Apache NiFi
>  Issue Type: Improvement
>  Components: Extensions
>Reporter: Mark Payne
>Assignee: Mark Payne
>
> Currently, if a Processor has no incoming connections but is started, it will 
> continually without ever accomplishing anything. We should have an 
> annotation, perhaps @RequiresInput, that indicates that the Processor should 
> not be scheduled to run unless it has an incoming connection.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1721455 - in /nifi/site/trunk: assets/js/foundation.js download.html

2015-12-22 Thread joewitt
Author: joewitt
Date: Tue Dec 22 19:45:06 2015
New Revision: 1721455

URL: http://svn.apache.org/viewvc?rev=1721455=rev
Log:
NIFI-1312

Modified:
nifi/site/trunk/assets/js/foundation.js
nifi/site/trunk/download.html

Modified: nifi/site/trunk/assets/js/foundation.js
URL: 
http://svn.apache.org/viewvc/nifi/site/trunk/assets/js/foundation.js?rev=1721455=1721454=1721455=diff
==
--- nifi/site/trunk/assets/js/foundation.js (original)
+++ nifi/site/trunk/assets/js/foundation.js Tue Dec 22 19:45:06 2015
@@ -1,7 +1,7 @@
 /*
  * Foundation Responsive Library
  * http://foundation.zurb.com
- * Copyright 2015, ZURB
+ * Copyright 2014, ZURB
  * Free to use under the MIT license.
  * http://www.opensource.org/licenses/mit-license.php
 */
@@ -10,12 +10,14 @@
   'use strict';
 
   var header_helpers = function (class_array) {
+var i = class_array.length;
 var head = $('head');
-head.prepend($.map(class_array, function (class_name) {
-  if (head.has('.' + class_name).length === 0) {
-return '';
+
+while (i--) {
+  if (head.has('.' + class_array[i]).length === 0) {
+head.append('');
   }
-}));
+}
   };
 
   header_helpers([
@@ -288,30 +290,21 @@
 return string;
   }
 
-  function MediaQuery(selector) {
-this.selector = selector;
-this.query = '';
-  }
-
-  MediaQuery.prototype.toString = function () {
-return this.query || (this.query = 
S(this.selector).css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g, 
''));
-  };
-
   window.Foundation = {
 name : 'Foundation',
 
-version : '5.5.3',
+version : '5.5.2',
 
 media_queries : {
-  'small'   : new MediaQuery('.foundation-mq-small'),
-  'small-only'  : new MediaQuery('.foundation-mq-small-only'),
-  'medium'  : new MediaQuery('.foundation-mq-medium'),
-  'medium-only' : new MediaQuery('.foundation-mq-medium-only'),
-  'large'   : new MediaQuery('.foundation-mq-large'),
-  'large-only'  : new MediaQuery('.foundation-mq-large-only'),
-  'xlarge'  : new MediaQuery('.foundation-mq-xlarge'),
-  'xlarge-only' : new MediaQuery('.foundation-mq-xlarge-only'),
-  'xxlarge' : new MediaQuery('.foundation-mq-xxlarge')
+  'small'   : 
S('.foundation-mq-small').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'small-only'  : 
S('.foundation-mq-small-only').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'medium'  : 
S('.foundation-mq-medium').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'medium-only' : 
S('.foundation-mq-medium-only').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'large'   : 
S('.foundation-mq-large').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'large-only'  : 
S('.foundation-mq-large-only').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'xlarge'  : 
S('.foundation-mq-xlarge').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'xlarge-only' : 
S('.foundation-mq-xlarge-only').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 ''),
+  'xxlarge' : 
S('.foundation-mq-xxlarge').css('font-family').replace(/^[\/\\'"]+|(;\s?})+|[\/\\'"]+$/g,
 '')
 },
 
 stylesheet : $('').appendTo('head')[0].sheet,
@@ -736,7 +729,7 @@
   Foundation.libs.topbar = {
 name : 'topbar',
 
-version : '5.5.3',
+version : '5.5.2',
 
 settings : {
   index : 0,
@@ -897,17 +890,17 @@
   self.toggle(this);
 })
 .on('click.fndtn.topbar contextmenu.fndtn.topbar', '.top-bar 
.top-bar-section li a[href^="#"],[' + this.attr_name() + '] .top-bar-section li 
a[href^="#"]', function (e) {
-  var li = $(this).closest('li'),
-  topbar = li.closest('[' + self.attr_name() + ']'),
-  settings = topbar.data(self.attr_name(true) + '-init');
-
-  if (settings.dropdown_autoclose && settings.is_hover) {
-var hoverLi = $(this).closest('.hover');
-hoverLi.removeClass('hover');
-  }
-  if (self.breakpoint() && !li.hasClass('back') && 
!li.hasClass('has-dropdown')) {
-self.toggle();
-  }
+var li = $(this).closest('li'),
+topbar = li.closest('[' + self.attr_name() + ']'),
+settings = topbar.data(self.attr_name(true) + '-init');
+
+if (settings.dropdown_autoclose && settings.is_hover) {
+  var hoverLi = $(this).closest('.hover');
+  hoverLi.removeClass('hover');
+}
+if (self.breakpoint() && !li.hasClass('back') && 
!li.hasClass('has-dropdown')) {
+  self.toggle();
+}
 
 })
 .on('click.fndtn.topbar', '[' + this.attr_name() + '] 
li.has-dropdown', function (e) {
@@ -1191,12 +1184,10 

[jira] [Commented] (NIFI-1312) Create 0.4.1 release

2015-12-22 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-1312?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068631#comment-15068631
 ] 

ASF subversion and git services commented on NIFI-1312:
---

Commit 1721455 from [~joewitt] in branch 'site/trunk'
[ https://svn.apache.org/r1721455 ]

NIFI-1312

> Create 0.4.1 release
> 
>
> Key: NIFI-1312
> URL: https://issues.apache.org/jira/browse/NIFI-1312
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Tools and Build
>Reporter: Joseph Witt
>Assignee: Joseph Witt
>Priority: Trivial
> Fix For: 0.4.1
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[1/4] nifi git commit: NIFI-1312-RC1 prepare release nifi-0.4.1-RC1

2015-12-22 Thread joewitt
Repository: nifi
Updated Branches:
  refs/heads/master fb5148377 -> f4ac8d75c


http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hbase-bundle/pom.xml 
b/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
index 6aa84e8..f616279 100644
--- a/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.4.1-SNAPSHOT
+0.4.1
 
 
 nifi-hbase-bundle
@@ -35,7 +35,7 @@
 
 org.apache.nifi
 nifi-hbase-processors
-0.4.1-SNAPSHOT
+0.4.1
 
 
 org.apache.hbase

http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml 
b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
index d90a92d..3c3fb9f 100644
--- a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
+++ b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-hl7-bundle
-0.4.1-SNAPSHOT
+0.4.1
 
 
 nifi-hl7-nar
@@ -29,7 +29,7 @@
 
 org.apache.nifi
 nifi-hl7-processors
-0.4.1-SNAPSHOT
+0.4.1
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml 
b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
index 3437775..6e2bf63 100644
--- a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-hl7-bundle
-0.4.1-SNAPSHOT
+0.4.1
 
 
 nifi-hl7-processors
@@ -52,7 +52,7 @@
 
 org.apache.nifi
 nifi-hl7-query-language
-0.4.1-SNAPSHOT
+0.4.1
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hl7-bundle/pom.xml 
b/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
index 22dea28..2d3207a 100644
--- a/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.4.1-SNAPSHOT
+0.4.1
 
 
 nifi-hl7-bundle

http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml 
b/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
index 79dde7c..22a8265 100644
--- a/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
+++ b/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
@@ -19,23 +19,23 @@
 
 org.apache.nifi
 nifi-image-bundle
-0.4.1-SNAPSHOT
+0.4.1
 
 
 nifi-image-nar
-0.4.1-SNAPSHOT
+0.4.1
 nar
 
 
 
 org.apache.nifi
 nifi-image-processors
-0.4.1-SNAPSHOT
+0.4.1
 
 
 org.apache.nifi
 nifi-image-viewer
-0.4.1-SNAPSHOT
+0.4.1
 war
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml 
b/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
index c4bb9d2..5c2b1da 100644
--- a/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-image-bundle
-0.4.1-SNAPSHOT
+0.4.1
 
 
 nifi-image-processors

http://git-wip-us.apache.org/repos/asf/nifi/blob/d624ea48/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml 
b/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
index 5d28fca..59060b5 100755
--- a/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
+++ 

[3/4] nifi git commit: NIFI-1312-RC1 prepare for next development iteration

2015-12-22 Thread joewitt
http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hbase-bundle/pom.xml 
b/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
index f616279..958c8b0 100644
--- a/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-hbase-bundle/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.4.1
+0.4.2-SNAPSHOT
 
 
 nifi-hbase-bundle
@@ -35,7 +35,7 @@
 
 org.apache.nifi
 nifi-hbase-processors
-0.4.1
+0.4.2-SNAPSHOT
 
 
 org.apache.hbase

http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml 
b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
index 3c3fb9f..7c06588 100644
--- a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
+++ b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-nar/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-hl7-bundle
-0.4.1
+0.4.2-SNAPSHOT
 
 
 nifi-hl7-nar
@@ -29,7 +29,7 @@
 
 org.apache.nifi
 nifi-hl7-processors
-0.4.1
+0.4.2-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml 
b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
index 6e2bf63..e768be3 100644
--- a/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-hl7-bundle/nifi-hl7-processors/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-hl7-bundle
-0.4.1
+0.4.2-SNAPSHOT
 
 
 nifi-hl7-processors
@@ -52,7 +52,7 @@
 
 org.apache.nifi
 nifi-hl7-query-language
-0.4.1
+0.4.2-SNAPSHOT
 
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-hl7-bundle/pom.xml 
b/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
index 2d3207a..e2a23b8 100644
--- a/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
+++ b/nifi-nar-bundles/nifi-hl7-bundle/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-nar-bundles
-0.4.1
+0.4.2-SNAPSHOT
 
 
 nifi-hl7-bundle

http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml 
b/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
index 22a8265..cc1449a 100644
--- a/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
+++ b/nifi-nar-bundles/nifi-image-bundle/nifi-image-nar/pom.xml
@@ -19,23 +19,23 @@
 
 org.apache.nifi
 nifi-image-bundle
-0.4.1
+0.4.2-SNAPSHOT
 
 
 nifi-image-nar
-0.4.1
+0.4.2-SNAPSHOT
 nar
 
 
 
 org.apache.nifi
 nifi-image-processors
-0.4.1
+0.4.2-SNAPSHOT
 
 
 org.apache.nifi
 nifi-image-viewer
-0.4.1
+0.4.2-SNAPSHOT
 war
 
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml 
b/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
index 5c2b1da..9d1120b 100644
--- a/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
+++ b/nifi-nar-bundles/nifi-image-bundle/nifi-image-processors/pom.xml
@@ -19,7 +19,7 @@
 
 org.apache.nifi
 nifi-image-bundle
-0.4.1
+0.4.2-SNAPSHOT
 
 
 nifi-image-processors

http://git-wip-us.apache.org/repos/asf/nifi/blob/f4ac8d75/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
--
diff --git a/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml 
b/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
index 59060b5..8a8111f 100755
--- a/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
+++ b/nifi-nar-bundles/nifi-image-bundle/nifi-image-viewer/pom.xml
@@ -18,7 +18,7 @@
 
 

[jira] [Updated] (NIFI-1324) Upgrade to correct version of BouncyCastle

2015-12-22 Thread Andy LoPresto (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-1324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy LoPresto updated NIFI-1324:

Description: 
The existing Maven dependencies are for {{org.bouncycastle:bcprov-jdk16:1.43}} 
and {{org.bouncycastle:bcpg-jdk16:1.43}}. While {{jdk16}} looks "newer" than 
{{jdk15on}}, this was actually a legacy mistake on the part of BouncyCastle 
versioning. The correct and current version of BouncyCastle is {{jdk15on}}, as 
evidenced by the age of the releases:

* jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 
1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
* jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
(http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)

  was:
The existing Maven dependencies are for org.bouncycastle:bcprov-jdk16:1.43 and 
org.bouncycastle:bcpg-jdk16:1.43. While jdk16 looks "newer" than 
jdk15on, this was actually a legacy mistake on the part of 
BouncyCastle versioning. The correct and current version of BouncyCastle is 
jdk15on, as evidenced by the age of the releases:

* jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 
1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
* jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
(http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)


> Upgrade to correct version of BouncyCastle
> --
>
> Key: NIFI-1324
> URL: https://issues.apache.org/jira/browse/NIFI-1324
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Core Framework
>Affects Versions: 0.4.1
>Reporter: Andy LoPresto
>Assignee: Andy LoPresto
>  Labels: dependencies, security
> Fix For: 0.5.0
>
>
> The existing Maven dependencies are for 
> {{org.bouncycastle:bcprov-jdk16:1.43}} and 
> {{org.bouncycastle:bcpg-jdk16:1.43}}. While {{jdk16}} looks "newer" than 
> {{jdk15on}}, this was actually a legacy mistake on the part of BouncyCastle 
> versioning. The correct and current version of BouncyCastle is {{jdk15on}}, 
> as evidenced by the age of the releases:
> * jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
> implementation of cryptographic algorithms. This jar contains JCE provider 
> and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to 
> JDK 1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
> * jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
> implementation of cryptographic algorithms. This jar contains JCE provider 
> and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
> (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (NIFI-1324) Upgrade to correct version of BouncyCastle

2015-12-22 Thread Andy LoPresto (JIRA)
Andy LoPresto created NIFI-1324:
---

 Summary: Upgrade to correct version of BouncyCastle
 Key: NIFI-1324
 URL: https://issues.apache.org/jira/browse/NIFI-1324
 Project: Apache NiFi
  Issue Type: Task
  Components: Core Framework
Affects Versions: 0.4.1
Reporter: Andy LoPresto
Assignee: Andy LoPresto
 Fix For: 0.5.0


The existing Maven dependencies are for org.bouncycastle:bcprov-jdk16:1.43 and 
org.bouncycastle:bcpg-jdk16:1.43. While jdk16 looks "newer" than 
jdk15on, this was actually a legacy mistake on the part of 
BouncyCastle versioning. The correct and current version of BouncyCastle is 
jdk15on, as evidenced by the age of the releases:

* jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 
1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
* jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
(http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (NIFI-1325) Enhance AWS S3 fetch to access bucket across accounts

2015-12-22 Thread Mans Singh (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-1325?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068937#comment-15068937
 ] 

Mans Singh commented on NIFI-1325:
--

I am working on a fix for this issue.  Can you please assign this to me ?
Thanks

> Enhance AWS S3 fetch to access bucket across accounts
> -
>
> Key: NIFI-1325
> URL: https://issues.apache.org/jira/browse/NIFI-1325
> Project: Apache NiFi
>  Issue Type: Improvement
>  Components: Core Framework
>Affects Versions: 0.4.1
> Environment: All
>Reporter: Mans Singh
>Priority: Minor
>  Labels: easyfix
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> The AWS S3 Fetch Object component does not allow access to bucket across 
> accounts. AWS  S3 Fetch Object with can be enhanced to provide this 
> functionality by using assume role session/credentials 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (NIFI-810) Create Annotation that indicates that a Processor cannot be scheduled to run without an incoming connection

2015-12-22 Thread Mark Payne (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-810?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mark Payne updated NIFI-810:

Fix Version/s: 0.4.0

> Create Annotation that indicates that a Processor cannot be scheduled to run 
> without an incoming connection
> ---
>
> Key: NIFI-810
> URL: https://issues.apache.org/jira/browse/NIFI-810
> Project: Apache NiFi
>  Issue Type: Improvement
>  Components: Extensions
>Reporter: Mark Payne
>Assignee: Mark Payne
> Fix For: 0.4.0
>
>
> Currently, if a Processor has no incoming connections but is started, it will 
> continually without ever accomplishing anything. We should have an 
> annotation, perhaps @RequiresInput, that indicates that the Processor should 
> not be scheduled to run unless it has an incoming connection.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


nifi-site git commit: NIFI-1312 updating download links

2015-12-22 Thread joewitt
Repository: nifi-site
Updated Branches:
  refs/heads/master 849e0666d -> bfe85eae6


NIFI-1312 updating download links


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

Branch: refs/heads/master
Commit: bfe85eae670c063bdcb7e043df61d7b2b94516d5
Parents: 849e066
Author: joewitt 
Authored: Tue Dec 22 14:44:24 2015 -0500
Committer: joewitt 
Committed: Tue Dec 22 14:44:24 2015 -0500

--
 src/pages/html/download.hbs | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/nifi-site/blob/bfe85eae/src/pages/html/download.hbs
--
diff --git a/src/pages/html/download.hbs b/src/pages/html/download.hbs
index 5e34041..27eedaf 100644
--- a/src/pages/html/download.hbs
+++ b/src/pages/html/download.hbs
@@ -23,42 +23,42 @@ title: Apache NiFi Downloads
 
 Releases
 
-0.4.0
+0.4.1
 
 
 Sources:
 
-https://www.apache.org/dyn/closer.lua?path=/nifi/0.4.0/nifi-0.4.0-source-release.zip;>nifi-0.4.0-source-release.zip
 ( https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip.asc;>asc,
 https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip.md5;>md5,
 https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip.sha1;>sha1
 )
+https://www.apache.org/dyn/closer.lua?path=/nifi/0.4.1/nifi-0.4.1-source-release.zip;>nifi-0.4.1-source-release.zip
 ( https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-source-release.zip.asc;>asc,
 https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-source-release.zip.md5;>md5,
 https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-source-release.zip.sha1;>sha1
 )
 
 
 
 Binaries
 
-https://www.apache.org/dyn/closer.lua?path=/nifi/0.4.0/nifi-0.4.0-bin.tar.gz;>nifi-0.4.0-bin.tar.gz
 ( https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-bin.tar.gz.asc;>asc,
 https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-bin.tar.gz.md5;>md5,
 https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-bin.tar.gz.sha1;>sha1
 )
+https://www.apache.org/dyn/closer.lua?path=/nifi/0.4.1/nifi-0.4.1-bin.tar.gz;>nifi-0.4.1-bin.tar.gz
 ( https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-bin.tar.gz.asc;>asc,
 https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-bin.tar.gz.md5;>md5,
 https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-bin.tar.gz.sha1;>sha1
 )
 
-https://www.apache.org/dyn/closer.lua?path=/nifi/0.4.0/nifi-0.4.0-bin.zip;>nifi-0.4.0-bin.zip
 ( https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-bin.zip.asc;>asc, 
https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-bin.zip.md5;>md5, 
https://www.apache.org/dist/nifi/0.4.0/nifi-0.4.0-bin.zip.sha1;>sha1 
)
+https://www.apache.org/dyn/closer.lua?path=/nifi/0.4.1/nifi-0.4.1-bin.zip;>nifi-0.4.1-bin.zip
 ( https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-bin.zip.asc;>asc, 
https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-bin.zip.md5;>md5, 
https://www.apache.org/dist/nifi/0.4.1/nifi-0.4.1-bin.zip.sha1;>sha1 
)
 
 
-   https://cwiki.apache.org/confluence/display/NIFI/Release+Notes#ReleaseNotes-Version0.4.0;>Release
 Notes
+   https://cwiki.apache.org/confluence/display/NIFI/Release+Notes#ReleaseNotes-Version0.4.1;>Release
 Notes

  
-0.3.0
+0.4.0
 
 
 Sources:
 
-https://archive.apache.org/dist/nifi/0.3.0/nifi-0.3.0-source-release.zip;>nifi-0.3.0-source-release.zip
 ( https://archive.apache.org/dist/nifi/0.3.0/nifi-0.3.0-source-release.zip.asc;>asc,
 https://archive.apache.org/dist/nifi/0.3.0/nifi-0.3.0-source-release.zip.md5;>md5,
 https://archive.apache.org/dist/nifi/0.3.0/nifi-0.3.0-source-release.zip.sha1;>sha1
 )
+https://archive.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip;>nifi-0.4.0-source-release.zip
 ( https://archive.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip.asc;>asc,
 https://archive.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip.md5;>md5,
 https://archive.apache.org/dist/nifi/0.4.0/nifi-0.4.0-source-release.zip.sha1;>sha1
 )
  

[jira] [Created] (NIFI-1325) Enhance AWS S3 fetch to access bucket across accounts

2015-12-22 Thread Mans Singh (JIRA)
Mans Singh created NIFI-1325:


 Summary: Enhance AWS S3 fetch to access bucket across accounts
 Key: NIFI-1325
 URL: https://issues.apache.org/jira/browse/NIFI-1325
 Project: Apache NiFi
  Issue Type: Improvement
  Components: Core Framework
Affects Versions: 0.4.1
 Environment: All
Reporter: Mans Singh
Priority: Minor


The AWS S3 Fetch Object component does not allow access to bucket across 
accounts. AWS  S3 Fetch Object with can be enhanced to provide this 
functionality by using assume role session/credentials 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (NIFI-1324) Upgrade to correct version of BouncyCastle

2015-12-22 Thread Andy LoPresto (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-1324?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068791#comment-15068791
 ] 

Andy LoPresto commented on NIFI-1324:
-

As of this time, version 1.53 is the [latest 
release|https://www.bouncycastle.org/latest_releases.html]. I will update the 
dependency in the parent pom and 3 child poms. 

> Upgrade to correct version of BouncyCastle
> --
>
> Key: NIFI-1324
> URL: https://issues.apache.org/jira/browse/NIFI-1324
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Core Framework
>Affects Versions: 0.4.1
>Reporter: Andy LoPresto
>Assignee: Andy LoPresto
>  Labels: dependencies, security
> Fix For: 0.5.0
>
>
> The existing Maven dependencies are for 
> {{org.bouncycastle:bcprov-jdk16:1.43}} and 
> {{org.bouncycastle:bcpg-jdk16:1.43}}. While {{jdk16}} looks "newer" than 
> {{jdk15on}}, this was actually a legacy mistake on the part of BouncyCastle 
> versioning. The correct and current version of BouncyCastle is {{jdk15on}}, 
> as evidenced by the age of the releases:
> * jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
> implementation of cryptographic algorithms. This jar contains JCE provider 
> and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to 
> JDK 1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
> * jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
> implementation of cryptographic algorithms. This jar contains JCE provider 
> and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
> (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Assigned] (NIFI-1314) Encrypt Content appears to live lock in certain configurations

2015-12-22 Thread Andy LoPresto (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-1314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy LoPresto reassigned NIFI-1314:
---

Assignee: Andy LoPresto

> Encrypt Content appears to live lock in certain configurations
> --
>
> Key: NIFI-1314
> URL: https://issues.apache.org/jira/browse/NIFI-1314
> Project: Apache NiFi
>  Issue Type: Bug
>  Components: Extensions
>Affects Versions: 0.4.0
>Reporter: Joseph Witt
>Assignee: Andy LoPresto
> Fix For: 0.5.0
>
>
> ENCRYPT
> OPEN_EVP_BYTES_TO_KEY
> SHA256_AES256
> {code}
> "Timer-Driven Process Thread-8" prio=10 tid=0x7f1fb4002000 nid=0x4cc2 
> runnable [0x7f1f7cf6a000]
>java.lang.Thread.State: RUNNABLE
> at org.bouncycastle.crypto.digests.GeneralDigest.finish(Unknown 
> Source)
> at org.bouncycastle.crypto.digests.SHA256Digest.doFinal(Unknown 
> Source)
> at 
> org.bouncycastle.crypto.generators.PKCS12ParametersGenerator.generateDerivedKey(Unknown
>  Source)
> at 
> org.bouncycastle.crypto.generators.PKCS12ParametersGenerator.generateDerivedParameters(Unknown
>  Source)
> at org.bouncycastle.jce.provider.PBE$Util.makePBEParameters(Unknown 
> Source)
> at org.bouncycastle.jce.provider.JCEBlockCipher.engineInit(Unknown 
> Source)
> at javax.crypto.Cipher.init(Cipher.java:1183)
> at javax.crypto.Cipher.init(Cipher.java:1120)
> at 
> org.apache.nifi.processors.standard.util.PasswordBasedEncryptor$EncryptCallback.process(PasswordBasedEncryptor.java:238)
> at 
> org.apache.nifi.controller.repository.StandardProcessSession.write(StandardProcessSession.java:2171)
> at 
> org.apache.nifi.processors.standard.EncryptContent.onTrigger(EncryptContent.java:328)
> at 
> org.apache.nifi.processor.AbstractProcessor.onTrigger(AbstractProcessor.java:27)
> at 
> org.apache.nifi.controller.StandardProcessorNode.onTrigger(StandardProcessorNode.java:1146)
> at 
> org.apache.nifi.controller.tasks.ContinuallyRunProcessorTask.call(ContinuallyRunProcessorTask.java:139)
> at 
> org.apache.nifi.controller.tasks.ContinuallyRunProcessorTask.call(ContinuallyRunProcessorTask.java:49)
> at 
> org.apache.nifi.controller.scheduling.TimerDrivenSchedulingAgent$1.run(TimerDrivenSchedulingAgent.java:119)
> at 
> java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
> at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
> at 
> java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(ScheduledThreadPoolExecutor.java:178)
> at 
> java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
> at 
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> at 
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> at java.lang.Thread.run(Thread.java:745)
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Resolved] (NIFI-1312) Create 0.4.1 release

2015-12-22 Thread Joseph Witt (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-1312?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Joseph Witt resolved NIFI-1312.
---
Resolution: Fixed

> Create 0.4.1 release
> 
>
> Key: NIFI-1312
> URL: https://issues.apache.org/jira/browse/NIFI-1312
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Tools and Build
>Reporter: Joseph Witt
>Assignee: Joseph Witt
>Priority: Trivial
> Fix For: 0.4.1
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (NIFI-1324) Upgrade to correct version of BouncyCastle

2015-12-22 Thread Andy LoPresto (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-1324?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Andy LoPresto updated NIFI-1324:

Description: 
The existing Maven dependencies are for {{org.bouncycastle:bcprov-jdk16:1.46}} 
and {{org.bouncycastle:bcpg-jdk16:1.46}}. While {{jdk16}} looks "newer" than 
{{jdk15on}}, this was actually a legacy mistake on the part of BouncyCastle 
versioning. The correct and current version of BouncyCastle is {{jdk15on}}, as 
evidenced by the age of the releases:

* jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 
1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
* jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
(http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)

  was:
The existing Maven dependencies are for {{org.bouncycastle:bcprov-jdk16:1.43}} 
and {{org.bouncycastle:bcpg-jdk16:1.43}}. While {{jdk16}} looks "newer" than 
{{jdk15on}}, this was actually a legacy mistake on the part of BouncyCastle 
versioning. The correct and current version of BouncyCastle is {{jdk15on}}, as 
evidenced by the age of the releases:

* jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 
1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
* jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
implementation of cryptographic algorithms. This jar contains JCE provider and 
lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
(http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)


> Upgrade to correct version of BouncyCastle
> --
>
> Key: NIFI-1324
> URL: https://issues.apache.org/jira/browse/NIFI-1324
> Project: Apache NiFi
>  Issue Type: Task
>  Components: Core Framework
>Affects Versions: 0.4.1
>Reporter: Andy LoPresto
>Assignee: Andy LoPresto
>  Labels: dependencies, security
> Fix For: 0.5.0
>
>
> The existing Maven dependencies are for 
> {{org.bouncycastle:bcprov-jdk16:1.46}} and 
> {{org.bouncycastle:bcpg-jdk16:1.46}}. While {{jdk16}} looks "newer" than 
> {{jdk15on}}, this was actually a legacy mistake on the part of BouncyCastle 
> versioning. The correct and current version of BouncyCastle is {{jdk15on}}, 
> as evidenced by the age of the releases:
> * jdk15on: 03/2012 - 10/2015 "The Bouncy Castle Crypto package is a Java 
> implementation of cryptographic algorithms. This jar contains JCE provider 
> and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to 
> JDK 1.8." (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on)
> * jdk16: 11/2007 - 02/2011 "The Bouncy Castle Crypto package is a Java 
> implementation of cryptographic algorithms. This jar contains JCE provider 
> and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.6." 
> (http://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (NIFI-1325) Enhance AWS S3 fetch to access bucket across accounts

2015-12-22 Thread Mans Singh (JIRA)

 [ 
https://issues.apache.org/jira/browse/NIFI-1325?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Mans Singh updated NIFI-1325:
-
Flags: Patch

> Enhance AWS S3 fetch to access bucket across accounts
> -
>
> Key: NIFI-1325
> URL: https://issues.apache.org/jira/browse/NIFI-1325
> Project: Apache NiFi
>  Issue Type: Improvement
>  Components: Core Framework
>Affects Versions: 0.4.1
> Environment: All
>Reporter: Mans Singh
>Priority: Minor
>  Labels: easyfix
>   Original Estimate: 48h
>  Remaining Estimate: 48h
>
> The AWS S3 Fetch Object component does not allow access to bucket across 
> accounts. AWS  S3 Fetch Object with can be enhanced to provide this 
> functionality by using assume role session/credentials 



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[nifi] Git Push Summary

2015-12-22 Thread joewitt
Repository: nifi
Updated Tags:  refs/tags/nifi-0.4.1 [created] bf45f0aab


svn commit: r11698 - /dev/nifi/nifi-0.4.1/ /release/nifi/0.4.1/

2015-12-22 Thread joewitt
Author: joewitt
Date: Tue Dec 22 15:55:21 2015
New Revision: 11698

Log:
NIFI-1312 

Added:
release/nifi/0.4.1/
  - copied from r11697, dev/nifi/nifi-0.4.1/
Removed:
dev/nifi/nifi-0.4.1/



[jira] [Commented] (NIFI-958) Support appending to files for PutHDFS and PutFile

2015-12-22 Thread Scott (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-958?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068298#comment-15068298
 ] 

Scott commented on NIFI-958:


My use case for the PutFile is when using the Monitor Activity, I get a 
consistent flow of "Activity restored" or "Inactive for X Min" files, which I 
put into an update attribute to change the filename to be 
${now():format('MMdd')} and then the activity gets appended to the bottom 
of the file, rotating the file by day. 

I then have other processes, splunk for example that read that file and also 
allows us to tail -f in the same way we would a regular log file.

I am already using this in production, which is why I have only included the 
PutFile not the HDFS one as I have not used that yet.

Hope all that makes sense, if not let me know.

> Support appending to files for PutHDFS and PutFile
> --
>
> Key: NIFI-958
> URL: https://issues.apache.org/jira/browse/NIFI-958
> Project: Apache NiFi
>  Issue Type: Improvement
>  Components: Extensions
>Reporter: Randy Gelhausen
> Fix For: 0.5.0
>
> Attachments: putfile_append.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


nifi git commit: NIFI-108: - Only showing the flowfile listing table when the listing is successful and the listing is not empty.

2015-12-22 Thread mcgilman
Repository: nifi
Updated Branches:
  refs/heads/NIFI-108 fc628e866 -> 42c964f09


NIFI-108:
- Only showing the flowfile listing table when the listing is successful and 
the listing is not empty.


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

Branch: refs/heads/NIFI-108
Commit: 42c964f09df7fdef551cb63be2c1449452b75fed
Parents: fc628e8
Author: Matt Gilman 
Authored: Tue Dec 22 09:09:57 2015 -0500
Committer: Matt Gilman 
Committed: Tue Dec 22 09:09:57 2015 -0500

--
 .../main/webapp/js/nf/canvas/nf-context-menu.js |   1 -
 .../webapp/js/nf/canvas/nf-queue-listing.js | 267 ++-
 2 files changed, 140 insertions(+), 128 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/nifi/blob/42c964f0/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-context-menu.js
--
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-context-menu.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-context-menu.js
index 1e7925e..7412dd8 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-context-menu.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-context-menu.js
@@ -306,7 +306,6 @@ nf.ContextMenu = (function () {
  * @param {selection} selection
  */
 var canListQueue = function (selection) {
-// TODO verify source/destination stopped and 0 active threads
 return nf.Common.isDFM() && isConnection(selection) && 
nf.CanvasUtils.supportsModification(selection);
 };
 

http://git-wip-us.apache.org/repos/asf/nifi/blob/42c964f0/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
--
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
index 5b6e9d9..3f17a3b 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
@@ -146,6 +146,10 @@ nf.QueueListing = (function () {
 $('#flowfile-attributes-container').empty();
 $('#flowfile-cluster-node-id').text('');
 $('#additional-flowfile-details').empty();
+
+// reset stats
+$('#displayed-flowfiles, 
#total-flowfiles-count').text('0');
+
$('#total-flowfiles-size').text(nf.Common.formatDataSize(0));
 }
 }
 }).draggable({
@@ -167,51 +171,66 @@ nf.QueueListing = (function () {
 var listingRequest = null;
 var listingRequestTimer = null;
 
-// updates the progress bar
-var updateProgress = function (percentComplete) {
-// remove existing labels
-var progressBar = $('#listing-request-percent-complete');
-progressBar.find('div.progress-label').remove();
-
-// update the progress bar
-var label = $('').text(percentComplete + '%');
-if (percentComplete > 0) {
-label.css('margin-top', '-19px');
-}
-progressBar.progressbar('value', percentComplete).append(label);
-};
+return $.Deferred(function (deferred) {
+// updates the progress bar
+var updateProgress = function (percentComplete) {
+// remove existing labels
+var progressBar = $('#listing-request-percent-complete');
+progressBar.find('div.progress-label').remove();
+
+// update the progress bar
+var label = $('').text(percentComplete + '%');
+if (percentComplete > 0) {
+label.css('margin-top', '-19px');
+}
+progressBar.progressbar('value', 
percentComplete).append(label);
+};
 
-// update the button model of the drop request status dialog
-

[jira] [Commented] (NIFI-108) DFM should be allowed to inspect/interact with FlowFiles on a Connection

2015-12-22 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/NIFI-108?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15068188#comment-15068188
 ] 

ASF subversion and git services commented on NIFI-108:
--

Commit 571ee960aa3a4ac5d58b79504b5888c15c52b121 in nifi's branch 
refs/heads/NIFI-108 from [~mcgilman]
[ https://git-wip-us.apache.org/repos/asf?p=nifi.git;h=571ee96 ]

NIFI-108:
- Reseting the queue stats when closing the listing table.


> DFM should be allowed to inspect/interact with FlowFiles on a Connection
> 
>
> Key: NIFI-108
> URL: https://issues.apache.org/jira/browse/NIFI-108
> Project: Apache NiFi
>  Issue Type: New Feature
>  Components: Core Framework, Core UI
>Reporter: Matt Gilman
> Fix For: 0.5.0
>
>
> User should be able to see the attributes, as well as download the content 
> and possibly remove an item from the queue (destroy the FlowFile entirely).  
> Users should also be able to upload a new object into the queue (as requested 
> at an apache nifi DC/MD/VA meetup).



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


nifi git commit: NIFI-108: - Reseting the queue stats when closing the listing table.

2015-12-22 Thread mcgilman
Repository: nifi
Updated Branches:
  refs/heads/NIFI-108 42c964f09 -> 571ee960a


NIFI-108:
- Reseting the queue stats when closing the listing table.


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

Branch: refs/heads/NIFI-108
Commit: 571ee960aa3a4ac5d58b79504b5888c15c52b121
Parents: 42c964f
Author: Matt Gilman 
Authored: Tue Dec 22 09:40:49 2015 -0500
Committer: Matt Gilman 
Committed: Tue Dec 22 09:40:49 2015 -0500

--
 .../src/main/webapp/js/nf/canvas/nf-queue-listing.js | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/nifi/blob/571ee960/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
--
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
index 3f17a3b..e3c1009 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js
@@ -146,10 +146,6 @@ nf.QueueListing = (function () {
 $('#flowfile-attributes-container').empty();
 $('#flowfile-cluster-node-id').text('');
 $('#additional-flowfile-details').empty();
-
-// reset stats
-$('#displayed-flowfiles, 
#total-flowfiles-count').text('0');
-
$('#total-flowfiles-size').text(nf.Common.formatDataSize(0));
 }
 }
 }).draggable({
@@ -558,6 +554,10 @@ nf.QueueListing = (function () {
 queueListingData.setItems([], 'uuid');
 queueListingData.endUpdate();
 }
+
+// reset stats
+$('#displayed-flowfiles, 
#total-flowfiles-count').text('0');
+
$('#total-flowfiles-size').text(nf.Common.formatDataSize(0));
 });
 
 // adjust the table size