From 2e09defe6e40b94d2bec9ec1bc1e1bcf18b05bf5 Mon Sep 17 00:00:00 2001 From: justparking Date: Fri, 30 May 2014 15:06:30 +1000 Subject: [PATCH] Resolved issue #4. --- .gitattributes | 6 ------ crlf.py | 3 --- crlf.txt | 3 --- recipes/adamio/script.py | 5 +++++ recipes/apc/script.py | 2 +- recipes/apcqueue/script.py | 2 +- recipes/apcsnmp/script.py | 2 +- recipes/gen2showcontrol/script.py | 2 +- recipes/iboot/script.py | 2 +- recipes/iboot_legacy/script.py | 2 +- recipes/kramer_vp433/script.py | 2 +- recipes/pd/script.py | 2 +- recipes/pjlinkqueue/script.py | 2 +- recipes/tcp/script.py | 2 +- recipes/udp/script.py | 2 +- recipes/wol/script.py | 2 +- 16 files changed, 17 insertions(+), 24 deletions(-) delete mode 100644 .gitattributes delete mode 100644 crlf.py delete mode 100644 crlf.txt diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 5c59d2c2..00000000 --- a/.gitattributes +++ /dev/null @@ -1,6 +0,0 @@ -# Set the default behaviour, in case people don't have core.autocrlf set. -* text=auto - -# Explicitly declare text files you want to always be normalized and converted -# to native line endings on checkout. -*.py eol=crlf diff --git a/crlf.py b/crlf.py deleted file mode 100644 index 16cdc6a9..00000000 --- a/crlf.py +++ /dev/null @@ -1,3 +0,0 @@ -Testing -CR -LF diff --git a/crlf.txt b/crlf.txt deleted file mode 100644 index 16cdc6a9..00000000 --- a/crlf.txt +++ /dev/null @@ -1,3 +0,0 @@ -Testing -CR -LF diff --git a/recipes/adamio/script.py b/recipes/adamio/script.py index 1cfa44c5..02717428 100644 --- a/recipes/adamio/script.py +++ b/recipes/adamio/script.py @@ -1,3 +1,8 @@ +# Copyright (c) 2014 Museum Victoria +# This software is released under the MIT license (see license.txt for details) + +'''This is ADAM IO node.''' + from pymodbus.client.sync import ModbusTcpClient import threading import atexit diff --git a/recipes/apc/script.py b/recipes/apc/script.py index 3fb9f8be..ca0a352b 100644 --- a/recipes/apc/script.py +++ b/recipes/apc/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This is an APC controller node''' diff --git a/recipes/apcqueue/script.py b/recipes/apcqueue/script.py index 869f07d0..016c653f 100644 --- a/recipes/apcqueue/script.py +++ b/recipes/apcqueue/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This is an APC command queueing node''' diff --git a/recipes/apcsnmp/script.py b/recipes/apcsnmp/script.py index 3f522e98..6225229f 100644 --- a/recipes/apcsnmp/script.py +++ b/recipes/apcsnmp/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This is an APC controller node''' diff --git a/recipes/gen2showcontrol/script.py b/recipes/gen2showcontrol/script.py index bcd2e360..75d020c9 100644 --- a/recipes/gen2showcontrol/script.py +++ b/recipes/gen2showcontrol/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''PIVoD MVMS Gen II Show Control Lite Node''' diff --git a/recipes/iboot/script.py b/recipes/iboot/script.py index ca7973f6..813111ff 100644 --- a/recipes/iboot/script.py +++ b/recipes/iboot/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''iBoot Node''' diff --git a/recipes/iboot_legacy/script.py b/recipes/iboot_legacy/script.py index 0cd22123..5771c89e 100644 --- a/recipes/iboot_legacy/script.py +++ b/recipes/iboot_legacy/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014 Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) import socket diff --git a/recipes/kramer_vp433/script.py b/recipes/kramer_vp433/script.py index 89ef2155..44e3ce54 100644 --- a/recipes/kramer_vp433/script.py +++ b/recipes/kramer_vp433/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This node controls input switching on a Kramer VP-433''' diff --git a/recipes/pd/script.py b/recipes/pd/script.py index 3859f31e..73b846a0 100644 --- a/recipes/pd/script.py +++ b/recipes/pd/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This node demonstrates a simple projetion designs controller.''' diff --git a/recipes/pjlinkqueue/script.py b/recipes/pjlinkqueue/script.py index 2dd4b921..becafd51 100644 --- a/recipes/pjlinkqueue/script.py +++ b/recipes/pjlinkqueue/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) from Queue import * diff --git a/recipes/tcp/script.py b/recipes/tcp/script.py index 5d18883a..d394c086 100644 --- a/recipes/tcp/script.py +++ b/recipes/tcp/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This node demonstrates a simple tcp controller.''' diff --git a/recipes/udp/script.py b/recipes/udp/script.py index 49cb8d6a..c01945f4 100644 --- a/recipes/udp/script.py +++ b/recipes/udp/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This node demonstrates a simple udp controller.''' diff --git a/recipes/wol/script.py b/recipes/wol/script.py index 8a98103b..57b4b8da 100644 --- a/recipes/wol/script.py +++ b/recipes/wol/script.py @@ -1,4 +1,4 @@ -# Copyright (c) 2014�Museum Victoria +# Copyright (c) 2014 Museum Victoria # This software is released under the MIT license (see license.txt for details) '''This node demonstrates a simple PyNode.'''