示例#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')