From a1a682bb293a0163c553819d4dbe3ff2c4b67065 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 24 Nov 2014 18:11:10 +0000 Subject: [PATCH] Misc --- source/carla | 2 +- source/carla-patchbay | 2 +- source/carla-rack | 2 +- source/carla_app.py | 14 +++++++------- source/carla_control.py | 2 +- source/ladspa_rdf.py | 20 +++++++++++--------- 6 files changed, 22 insertions(+), 20 deletions(-) diff --git a/source/carla b/source/carla index 2ca7e14c0..73b09e78b 100755 --- a/source/carla +++ b/source/carla @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# For a full copy of the GNU General Public License see the GPL.txt file +# For a full copy of the GNU General Public License see the doc/GPL.txt file. # ------------------------------------------------------------------------------------------------------------ # Imports (Config) diff --git a/source/carla-patchbay b/source/carla-patchbay index ee3e2d77d..0f0faa9bb 100755 --- a/source/carla-patchbay +++ b/source/carla-patchbay @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# For a full copy of the GNU General Public License see the GPL.txt file +# For a full copy of the GNU General Public License see the doc/GPL.txt file. # ------------------------------------------------------------------------------------------------------------ # Imports (Custom Stuff) diff --git a/source/carla-rack b/source/carla-rack index 80f15b336..eb292b64a 100755 --- a/source/carla-rack +++ b/source/carla-rack @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# For a full copy of the GNU General Public License see the GPL.txt file +# For a full copy of the GNU General Public License see the doc/GPL.txt file. # ------------------------------------------------------------------------------------------------------------ # Imports (Custom Stuff) diff --git a/source/carla_app.py b/source/carla_app.py index c322e6a3e..e7a38af45 100644 --- a/source/carla_app.py +++ b/source/carla_app.py @@ -4,17 +4,17 @@ # Carla application # Copyright (C) 2013-2014 Filipe Coelho # -# This program is free software you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation either version 2 of the License, or -# any later version. +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or any later version. # # This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# For a full copy of the GNU General Public License see the GPL.txt file +# For a full copy of the GNU General Public License see the doc/GPL.txt file. # ------------------------------------------------------------------------------------------------------------ # Imports (Config) diff --git a/source/carla_control.py b/source/carla_control.py index 5b1c67e9e..7c29b6e0f 100755 --- a/source/carla_control.py +++ b/source/carla_control.py @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # -# For a full copy of the GNU General Public License see the GPL.txt file +# For a full copy of the GNU General Public License see the doc/GPL.txt file. # ------------------------------------------------------------------------------------------------------------ # Imports (Global) diff --git a/source/ladspa_rdf.py b/source/ladspa_rdf.py index 5896a6ce8..c10cc5ce6 100644 --- a/source/ladspa_rdf.py +++ b/source/ladspa_rdf.py @@ -16,7 +16,7 @@ # # For a full copy of the GNU General Public License see the doc/GPL.txt file. -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # C types # Imports (Global) @@ -131,7 +131,7 @@ class LADSPA_RDF_Descriptor(Structure): ("Ports", POINTER(LADSPA_RDF_Port)) ] -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # Python compatible C types PyLADSPA_RDF_ScalePoint = { @@ -163,7 +163,7 @@ PyLADSPA_RDF_Descriptor = { 'Ports': [] } -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # RDF data and conversions # Namespaces @@ -328,7 +328,7 @@ def get_c_unit_type(value): return ret -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # Global objects global LADSPA_RDF_PATH, LADSPA_Plugins @@ -340,7 +340,7 @@ def set_rdf_path(PATH): global LADSPA_RDF_PATH LADSPA_RDF_PATH = PATH -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # Helper methods LADSPA_RDF_TYPE_PLUGIN = 1 @@ -372,7 +372,7 @@ def to_plugin_and_port_number(subject): def to_plugin_port(subject): return to_plugin_and_port_number(subject)[1] -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # RDF store/retrieve data methods def check_and_add_plugin(pluginId): @@ -490,7 +490,7 @@ def get_value_index(value, vlist): print("LADSPA_RDF - CRITICAL ERROR #002") return 0 -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # RDF sort data methods # Sort the plugin's port's ScalePoints by value @@ -534,7 +534,7 @@ def SORT_PyLADSPA_RDF_Ports(oldDictList): return newDictList -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # RDF data parsing from rdflib import ConjunctiveGraph, URIRef, BNode @@ -681,7 +681,7 @@ def parse_rdf_file(filename): index, pluginId, portId, value = portDefault set_port_default(pluginId, portId, value) -# ------------------------------------------------------------------------------- +# ------------------------------------------------------------------------------------------------------------ # LADSPA_RDF main methods import os @@ -795,3 +795,5 @@ def get_c_ladspa_rdfs(pyPluginList): C_LADSPA_Plugins.append(desc) return C_LADSPA_Plugins + +# ------------------------------------------------------------------------------------------------------------