aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.4/python-lib/cuddlefish/options_defaults.py
blob: c41f941817e2098c44959c7806c54cd2b5bc6b6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"