-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathselector.py
More file actions
98 lines (64 loc) · 2.36 KB
/
selector.py
File metadata and controls
98 lines (64 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Copyright 2010 Beech Horn
This file is part of lesscss-python.
lesscss-python is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
lesscss-python is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with lesscss-python. If not, see <http://www.gnu.org/licenses/>.
'''
import re
from lesscss.nested import parse_nested
from lesscss.property import Property
from lesscss.rules import Rules
SELECTOR = re.compile('''
(?P<names>
[a-z 0-9 \- _ \* \. \s , : # & @]+?
)
\s*
{
''', re.DOTALL | re.VERBOSE)
def parse_selector(less, parent=None, **kwargs):
match = SELECTOR.match(less)
if not match:
raise ValueError()
names = match.group('names')
if names.startswith('@media'):
raise ValueError
names = [name.strip() for name in names.split(',')]
matched_length = len(match.group())
remaining_less = less[matched_length:]
contents = parse_nested(remaining_less)
code = match.group() + contents + '}'
return Selector(code=code, names=names, contents=contents, parent=parent)
class Selector(Rules):
__slots__ = ('__names',)
def __init__(self, parent, code, names=None, contents=None):
Rules.__init__(self, parent=parent, code=code, contents=contents)
self.__names = names
def __get_names(self):
try:
parent_names = self.parent.names
except AttributeError:
return self.__names
else:
if not parent_names:
return self.__names
names = list()
for parent_name in parent_names:
for name in self.__names:
if name[0] == ':':
name = parent_name + name
else:
name = ' '.join((parent_name, name))
name = name.replace(' &', '')
names.append(name)
return names
names = property(fget=__get_names)