You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by pt...@apache.org on 2013/12/13 18:14:56 UTC

[12/18] git commit: enforce UTF-8 encoding for python and ruby sources

enforce UTF-8 encoding for python and ruby sources


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

Branch: refs/heads/master
Commit: 009f924b012be061593d10442d93515dcf991a55
Parents: a0987a5
Author: P. Taylor Goetz <pt...@gmail.com>
Authored: Mon Dec 9 21:34:50 2013 -0500
Committer: P. Taylor Goetz <pt...@gmail.com>
Committed: Mon Dec 9 21:34:50 2013 -0500

----------------------------------------------------------------------
 storm-core/src/dev/resources/tester_bolt.py  | 2 ++
 storm-core/src/dev/resources/tester_bolt.rb  | 2 ++
 storm-core/src/dev/resources/tester_spout.py | 2 ++
 storm-core/src/dev/resources/tester_spout.rb | 3 ++-
 storm-core/src/multilang/py/storm.py         | 2 ++
 storm-core/src/multilang/rb/storm.rb         | 2 ++
 6 files changed, 12 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/009f924b/storm-core/src/dev/resources/tester_bolt.py
----------------------------------------------------------------------
diff --git a/storm-core/src/dev/resources/tester_bolt.py b/storm-core/src/dev/resources/tester_bolt.py
index ccec399..ece5eed 100644
--- a/storm-core/src/dev/resources/tester_bolt.py
+++ b/storm-core/src/dev/resources/tester_bolt.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/009f924b/storm-core/src/dev/resources/tester_bolt.rb
----------------------------------------------------------------------
diff --git a/storm-core/src/dev/resources/tester_bolt.rb b/storm-core/src/dev/resources/tester_bolt.rb
index 90fac7c..094d5b0 100644
--- a/storm-core/src/dev/resources/tester_bolt.rb
+++ b/storm-core/src/dev/resources/tester_bolt.rb
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/009f924b/storm-core/src/dev/resources/tester_spout.py
----------------------------------------------------------------------
diff --git a/storm-core/src/dev/resources/tester_spout.py b/storm-core/src/dev/resources/tester_spout.py
index 2cd977f..4114243 100644
--- a/storm-core/src/dev/resources/tester_spout.py
+++ b/storm-core/src/dev/resources/tester_spout.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/009f924b/storm-core/src/dev/resources/tester_spout.rb
----------------------------------------------------------------------
diff --git a/storm-core/src/dev/resources/tester_spout.rb b/storm-core/src/dev/resources/tester_spout.rb
index 3ea573c..dc3c2f3 100644
--- a/storm-core/src/dev/resources/tester_spout.rb
+++ b/storm-core/src/dev/resources/tester_spout.rb
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information
@@ -14,7 +16,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# -*- coding: utf-8 -*-
 require File.expand_path("storm", File.dirname(__FILE__))
 
 $words = ["nathan", "mike", "jackson", "golda", "bertels人"]

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/009f924b/storm-core/src/multilang/py/storm.py
----------------------------------------------------------------------
diff --git a/storm-core/src/multilang/py/storm.py b/storm-core/src/multilang/py/storm.py
index a0b9afb..4f5827f 100755
--- a/storm-core/src/multilang/py/storm.py
+++ b/storm-core/src/multilang/py/storm.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information

http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/009f924b/storm-core/src/multilang/rb/storm.rb
----------------------------------------------------------------------
diff --git a/storm-core/src/multilang/rb/storm.rb b/storm-core/src/multilang/rb/storm.rb
index 0d79996..ffc300d 100644
--- a/storm-core/src/multilang/rb/storm.rb
+++ b/storm-core/src/multilang/rb/storm.rb
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
 # Licensed to the Apache Software Foundation (ASF) under one
 # or more contributor license agreements.  See the NOTICE file
 # distributed with this work for additional information