예제 #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
파일: templates.py 프로젝트: Lujaw/hayaku
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')