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