Esempio n. 1
0
def length_expand(name, value, unit, options=None):
    if options is None:
        options = {}

    if unit and 'percents'.startswith(unit):
        unit = '%'

    if isinstance(value, float):
        full_unit = options.get('CSS_default_unit_decimal', 'em')
    else:
        full_unit = options.get('CSS_default_unit', 'px')

    if value == 0:
        return '0'
    if value == '':
        return ''

    if unit:
        units = (val[1:] for key, val in FLAT_CSS
                 if key == name and val.startswith('.'))
        req_units = [u for u in units if sub_string(u, unit)]

        PRIORITY = ("em", "ex", "vw", "vh", "vmin", "vmax"
                    "vm", "ch", "rem", "px", "cm", "mm", "in", "pt", "pc")
        full_unit = hayaku_extract(unit, req_units, PRIORITY)
        if not full_unit:
            return

    return '{0}{1}'.format(value, full_unit)
Esempio n. 2
0
def length_expand(name, value, unit, options=None):
    if options is None:
        options = {}

    if unit and "percents".startswith(unit):
        unit = "%"

    if isinstance(value, float):
        full_unit = options.get("CSS_default_unit_decimal", "em")
    else:
        full_unit = options.get("CSS_default_unit", "px")

    if "<number>" in [val for prop, val in get_flat_css() if prop == name] and not options.get(
        "CSS_units_for_unitless_numbers"
    ):
        full_unit = ""

    if value == 0:
        return "0"
    if value == "":
        return ""

    if unit:
        units = (val[1:] for key, val in get_flat_css() if key == name and val.startswith("."))
        req_units = [u for u in units if sub_string(u, unit)]

        PRIORITY = ("em", "ex", "vw", "vh", "vmin", "vmax" "vm", "ch", "rem", "px", "cm", "mm", "in", "pt", "pc")
        full_unit = hayaku_extract(unit, req_units, PRIORITY)
        if not full_unit:
            return

    return "{0}{1}".format(value, full_unit)
Esempio n. 3
0
def length_expand(name, value, unit, options=None):
    if options is None:
        options = {}

    if unit and 'percents'.startswith(unit):
        unit = '%'

    if isinstance(value, float):
        full_unit = options.get('CSS_default_unit_decimal', 'em')
    else:
        full_unit = options.get('CSS_default_unit', 'px')

    if value == 0:
        return '0'
    if value == '':
        return ''

    if unit:
        units = (val[1:] for key, val in FLAT_CSS if key == name and val.startswith('.'))
        req_units = [u for u in units if sub_string(u, unit)]

        PRIORITY = ("em", "ex", "vw", "vh", "vmin", "vmax" "vm", "ch", "rem",
            "px", "cm", "mm", "in", "pt", "pc")
        full_unit = hayaku_extract(unit, req_units, PRIORITY)
        if not full_unit:
            return

    return '{0}{1}'.format(value, full_unit)
Esempio n. 4
0
 def test_4(self):
     self.assertEqual(hayaku_extract('w1px'), 'width: 1px')
Esempio n. 5
0
 def test_28(self):
     self.assertEqual(hayaku_extract('b2'), 'bottom: 2px')
Esempio n. 6
0
 def test_21(self):
     self.assertEqual(hayaku_extract('p3x'), 'padding: 3ex')
Esempio n. 7
0
 def test_25(self):
     self.assertEqual(hayaku_extract('p3r'), 'padding: 3rem')
Esempio n. 8
0
 def test_14(self):
     self.assertEqual(hayaku_extract('m-0.0'), 'margin: 0')
Esempio n. 9
0
 def test_0(self):
     self.assertEqual(hayaku_extract('fs'), 'font-size')
Esempio n. 10
0
 def test_9(self):
     self.assertEqual(hayaku_extract('w1e'), 'width: 1em')
Esempio n. 11
0
 def test_10(self):
     self.assertEqual(hayaku_extract('m-1'), 'margin: -1px')
Esempio n. 12
0
 def test_5(self):
     self.assertEqual(hayaku_extract('w1.1'), 'width: 1.1em')
Esempio n. 13
0
 def test_6(self):
     self.assertEqual(hayaku_extract('w.1'), 'width: .1em')
Esempio n. 14
0
 def test_4(self):
     self.assertEqual(hayaku_extract('w1px'), 'width: 1px')
Esempio n. 15
0
 def test_issue_76_2(self):
     self.assertEqual(hayaku_extract('border'), 'border')
Esempio n. 16
0
 def test_issue_76_1(self):
     self.assertEqual(hayaku_extract('text-decoration'), 'text-decoration')
Esempio n. 17
0
 def test_6(self):
     self.assertEqual(hayaku_extract('w.1'), 'width: .1em')
Esempio n. 18
0
 def test_11(self):
     self.assertEqual(hayaku_extract('m-.1'), 'margin: -.1em')
Esempio n. 19
0
 def test_10(self):
     self.assertEqual(hayaku_extract('m-1'), 'margin: -1px')
Esempio n. 20
0
 def test_14(self):
     self.assertEqual(hayaku_extract('m-0.0'), 'margin: 0')
Esempio n. 21
0
 def test_16(self):
     self.assertEqual(hayaku_extract('p1m'), 'padding: 1mm')
Esempio n. 22
0
 def test_15(self):
     self.assertEqual(hayaku_extract('h1.100'), 'height: 1.1em')
Esempio n. 23
0
 def test_19(self):
     self.assertEqual(hayaku_extract('p2.p'), 'padding: 2px')
Esempio n. 24
0
 def test_16(self):
     self.assertEqual(hayaku_extract('p1m'), 'padding: 1mm')
Esempio n. 25
0
 def test_23(self):
     self.assertEqual(hayaku_extract('p3h'), 'padding: 3vh')
Esempio n. 26
0
 def test_17(self):
     self.assertEqual(hayaku_extract('p1%'), 'padding: 1%')
Esempio n. 27
0
 def test_27(self):
     self.assertEqual(hayaku_extract('p3t'), 'padding: 3pt')
Esempio n. 28
0
 def test_18(self):
     self.assertEqual(hayaku_extract('p.23pe'), 'padding: .23%')
Esempio n. 29
0
 def test_30(self):
     self.assertEqual(hayaku_extract('bw'), 'border-width: 2px')
Esempio n. 30
0
 def test_19(self):
     self.assertEqual(hayaku_extract('p2.p'), 'padding: 2px')
Esempio n. 31
0
 def test_issue_83_3(self):
     self.assertEqual(hayaku_extract('conn'), 'content: normal;')
Esempio n. 32
0
 def test_20(self):
     self.assertEqual(hayaku_extract('p2.3p'), 'padding: 2.3px')
Esempio n. 33
0
 def test_5(self):
     self.assertEqual(hayaku_extract('w1.1'), 'width: 1.1em')
Esempio n. 34
0
 def test_0(self):
     self.assertEqual(hayaku_extract('fs'), 'font-size')
Esempio n. 35
0
 def test_9(self):
     self.assertEqual(hayaku_extract('w1e'), 'width: 1em')
Esempio n. 36
0
 def test_21(self):
     self.assertEqual(hayaku_extract('p3x'), 'padding: 3ex')
Esempio n. 37
0
 def test_11(self):
     self.assertEqual(hayaku_extract('m-.1'), 'margin: -.1em')
Esempio n. 38
0
 def test_22(self):
     self.assertEqual(hayaku_extract('p3w'), 'padding: 3vw')
Esempio n. 39
0
 def test_15(self):
     self.assertEqual(hayaku_extract('h1.100'), 'height: 1.1em')
Esempio n. 40
0
 def test_23(self):
     self.assertEqual(hayaku_extract('p3h'), 'padding: 3vh')
Esempio n. 41
0
 def test_17(self):
     self.assertEqual(hayaku_extract('p1%'), 'padding: 1%')
Esempio n. 42
0
 def test_24(self):
     self.assertEqual(hayaku_extract('p3c'), 'padding: 3ch')
Esempio n. 43
0
 def test_18(self):
     self.assertEqual(hayaku_extract('p.23pe'), 'padding: .23%')
Esempio n. 44
0
 def test_25(self):
     self.assertEqual(hayaku_extract('p3r'), 'padding: 3rem')
Esempio n. 45
0
 def test_20(self):
     self.assertEqual(hayaku_extract('p2.3p'), 'padding: 2.3px')
Esempio n. 46
0
 def test_26(self):
     self.assertEqual(hayaku_extract('p3i'), 'padding: 3in')
Esempio n. 47
0
 def test_22(self):
     self.assertEqual(hayaku_extract('p3w'), 'padding: 3vw')
Esempio n. 48
0
 def test_27(self):
     self.assertEqual(hayaku_extract('p3t'), 'padding: 3pt')
Esempio n. 49
0
 def test_24(self):
     self.assertEqual(hayaku_extract('p3c'), 'padding: 3ch')
Esempio n. 50
0
 def test_28(self):
     self.assertEqual(hayaku_extract('b2'), 'bottom: 2px')
Esempio n. 51
0
 def test_26(self):
     self.assertEqual(hayaku_extract('p3i'), 'padding: 3in')
Esempio n. 52
0
 def test_29(self):
     self.assertEqual(hayaku_extract('bd2'), 'border: 2px')
Esempio n. 53
0
 def test_1(self):
     self.assertEqual(hayaku_extract('fst'), 'font-style')
Esempio n. 54
0
 def test_30(self):
     self.assertEqual(hayaku_extract('bw'), 'border-width: 2px')
Esempio n. 55
0
 def test_29(self):
     self.assertEqual(hayaku_extract('bd2'), 'border: 2px')
Esempio n. 56
0
 def test_issue_83_1(self):
     self.assertEqual(hayaku_extract('co'), 'color')
Esempio n. 57
0
 def test_31(self):
     self.assertEqual(hayaku_extract('blw'), 'border-left-width: 2px')
Esempio n. 58
0
 def test_issue_76_2(self):
     self.assertEqual(hayaku_extract('border'), 'border')
Esempio n. 59
0
 def test_issue_76_1(self):
     self.assertEqual(hayaku_extract('text-decoration'), 'text-decoration')
Esempio n. 60
0
 def test_issue_83_2(self):
     self.assertEqual(hayaku_extract('con'), 'content')