aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.5/python-lib/cuddlefish/options_defaults.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/addon-sdk-1.5/python-lib/cuddlefish/options_defaults.py')
-rw-r--r--tools/addon-sdk-1.5/python-lib/cuddlefish/options_defaults.py26
1 files changed, 0 insertions, 26 deletions
diff --git a/tools/addon-sdk-1.5/python-lib/cuddlefish/options_defaults.py b/tools/addon-sdk-1.5/python-lib/cuddlefish/options_defaults.py
deleted file mode 100644
index ee26930..0000000
--- a/tools/addon-sdk-1.5/python-lib/cuddlefish/options_defaults.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# This Source Code Form is subject to the terms of the Mozilla Public
-# License, v. 2.0. If a copy of the MPL was not distributed with this
-# file, You can obtain one at http://mozilla.org/MPL/2.0/.
-
-def parse_options_defaults(options, jetpack_id):
- pref_list = []
-
- for pref in options:
- if ('value' in pref):
- value = pref["value"]
- vtype = str(type(value))
-
- if ("<type 'float'>" == vtype):
- continue
- elif ("<type 'bool'>" == vtype):
- value = str(pref["value"]).lower()
- elif ("<type 'str'>" == vtype):
- value = "\"" + str(pref["value"]) + "\""
- elif ("<type 'unicode'>" == vtype):
- value = "\"" + str(pref["value"]) + "\""
- else:
- value = str(pref["value"])
-
- pref_list.append("pref(\"extensions." + jetpack_id + "." + pref["name"] + "\", " + value + ");")
-
- return "\n".join(pref_list) + "\n"