44 Commits

Author SHA1 Message Date
Adi Roiban
5a763750d4 Add support for py3. 2014-02-16 17:48:07 +02:00
Adi Roiban
032cfa1a8c Initial code for parsing from stream. 2014-02-16 15:54:00 +02:00
Sascha Peilicke
315baa2147 Whitespace after CSS filters is significant
Fixes issue 30
2014-02-02 18:54:58 +01:00
Sascha Peilicke
4d63ecfe25 Fix all PEP-8 / flake8 code issues
Drop testscope because it's empty.
2014-02-02 17:35:38 +01:00
Sascha Peilicke
bba63d9df5 Proper media queries
The lexer now identifies media queries in @media ... {} and
@import ... ; statements. For that, two new states "mediaquery" and
import" where added. The parser uses those to implement the CSS3 media
query BNF (www.w3.org/TR/css3-mediaqueries). Overall test coverage
increased.
2014-01-21 15:03:06 +01:00
Sascha Peilicke
1c2240dfd7 Accept resolution types as css_number
dpi, dpcm and dppx, check http://www.w3.org/TR/css3-values/#resolution
2014-01-21 15:03:06 +01:00
Sascha Peilicke
f01a112be0 Support CSS Device Adaptation
And the Internet Explorer specific "@-ms-viewport" used by Bootstrap3.
See http://www.w3.org/TR/css-device-adapt/ and
http://msdn.microsoft.com/en-us/library/ie/hh869615%28v=vs.85%29.aspx
2013-12-20 11:15:42 +01:00
Sascha Peilicke
5da1fd891b Support style and identifier lists in escaped strings.
Example:

  .foo {
    transition: ~"border-color ease-in-out .15s,
                  box-shadow ease-in-out .15s";
  }
2013-12-18 10:37:16 +01:00
Sascha Peilicke
6c316b2982 Enhanced hack for 'rect' DOM / function ambiguity
'rect' is a DOM element and occurs as a function. Currently, the parser
doesn't have a list of valid function names but uses css_dom elements
(and some others) to identify function calls.

Therefore the lexer got additional state tracking a while ago. This
turned out to wrongly work on constructs such as "button::-moz-$FOO,
input::-moz-$BAR", where 'input' was marked as 'css_ident' rather than
'css_dom'. This is fixed by resetting the 'in_property_decl' state
variable after a comma.
2013-12-18 10:37:16 +01:00
Sascha Peilicke
b9d92afa90 Promote literal ':' to token 2013-12-18 10:37:16 +01:00
Sascha Peilicke
10c88441b5 Support selector interpolation
Quote from lesscss.org: "prior to LESS 1.3.1 a (~"@{name}") type of
selector was supported. Support for this will be removed in 1.4.0.".
Meanwhile, interpolated selectors look like .@{name}.

For this, the lexer needed another state. Promote literals '{}' to
tokens to be able to drop the 'istring' state when '.foo{' occurs
(rather than '.foo {').
2013-12-18 10:37:15 +01:00
Sascha Peilicke
8f7ee0f4a4 Properly name escapes and interpolated strings
Escapes are seperate to interpolated strings.
2013-12-13 14:22:58 +01:00
Sascha Peilicke
bdf6a5e840 Bring back support for @@name variables 2013-12-13 14:22:58 +01:00
Sascha Peilicke
776ae813bd Add t_tilde token for '~'
To be used inside general_sibling_selector (e.g. 'a ~ b { ... }')
instead of the literal '~'. Necessary since we had to remove the literal
from the lexer in order to tokenize ~"..." and ~'...'.
2013-12-13 14:22:58 +01:00
Sascha Peilicke
e34dde8950 CSS strings can contain variables too
Ordinary CSS strings may contain @{...}-style variables. Here are some
examples:

    content: "@{breadcrumb-separator}\00a0";
    background-image: url("@{file-2x}");
    .col(@index + 1, ~"@{list}, @{item}");
2013-12-13 14:22:58 +01:00
Sascha Peilicke
8e07f391f7 Only use css_ms_filter in fcall
The lexer catches Microsoft-specific function calls such "progid:..."
and "DX.Transform..." in the css_ms_filter token class. It should be
used only as the function for "fcall" constructs in the parser.
2013-12-11 17:58:33 +01:00
Sascha Peilicke
059cde1f3d Proper support for variables in escaped values.
The following constructs are escapes: ~"..." and ~'...'. Inside, only
@{...} is a LESS variable, @foo is not! To express that, the lexer needs
to additional states ('lessstringquotes' and 'lessstringapostrophe') and
some parsing rules special to those states. The literal '~' had to be
promoted to token too. Now, instead as marking the complete LESS string
as 'less_string' token, the lexer properly tokenizes it's content which
in turn the parser can properly evaluate.

Includes a minor bug fix, t_less_variable() wasn't ever used because
t_css_ident already captured them. This part was removed from
t_css_ident becaus it's much easier to overwrite t_less_variable in lexer
states.
2013-12-11 17:58:32 +01:00
Sascha Peilicke
55703e8587 Properly distinguish clip element from CSS function
And revert "Temprarily remove the "rect" SVG DOM element."

This reverts commit fcea9f0bd65807be14c0cbf56b3d21659a81856f.
The lexer now uses a variable to distinguish of being inside a CSS
property declaration or outside. If inside, don't mark token as css_dom
(e.g. 'rect'). This circumvents the ambiguity between the "rect" SVG DOM
element and the "clip()" CSS function. CSS functions only occur within
property declarations.

For that, ';' had to be promoted from a literal to an ordinar token.
2013-11-04 17:41:06 +01:00
Sascha Peilicke
57f19f3bb7 Add some missing media type DOM elements
And split out HTML / CSS2 media types and CSS3 keyframe selectors from
"html4" DOM elements.
2013-11-04 15:00:32 +01:00
Sascha Peilicke
ba8ad98f52 Cleanup t_css_ident 2013-10-31 15:30:42 +01:00
Sascha Peilicke
a80cb8942a Allow camel-case DOM elements defined in SVG-1.1
The SVG standard defines several DOM elements in camel-case (namely
textPath, altGlyph, altGlyphDef, altGlyphItem and glyphRef). Even though
most browser also accept lower-case, the lexer should take this into
account.
2013-08-08 10:58:21 +02:00
Sascha Peilicke
d668b9dafe Some Python-3 compatibility fixes 2013-07-19 11:59:01 +02:00
Sascha Peilicke
c0a265e146 Fix PEP-8 issues (with autopep8 -a) 2013-07-19 11:22:12 +02:00
robotis
27345faba3 Process @media properly 2012-06-25 08:58:13 +00:00
robotis
79d17fefc3 Added support for @-o-keyframes 2012-06-25 08:46:32 +00:00
robotis
5772da32ac issue 7 - uri parsing 2012-06-14 07:26:56 +00:00
jtm
5a044e3627 Allow variable-names beginning with a number 2012-04-10 17:41:59 +00:00
jtm
1d4bab67e5 handle weird ws 2012-03-25 16:34:38 +00:00
jtm
b88e55c97c keyframe fix 2012-03-25 13:43:38 +00:00
jtm
26ffa97770 parse guard expressions 2012-03-24 18:33:19 +00:00
jtm
1724574d5a more functions 2012-03-24 17:23:14 +00:00
jtm
6ffa0227da MS filters 2012-03-23 19:39:29 +00:00
jtm
5fe3367db6 negative variables 2012-03-23 17:02:39 +00:00
jtm
a2194e0d80 test ws 2012-03-15 19:14:24 +00:00
jtm
8893e77e5f checkpoint 2012-03-15 18:52:26 +00:00
jtm
efdca1e9f8 more tests 2012-03-13 21:12:09 +00:00
jtm
b9d2fc7967 checkpoint 2012-03-03 18:14:31 +00:00
jtm
f0fb2b3d92 checkpoint 2012-03-03 09:58:47 +00:00
jtm
8e9c83a3f9 checkpoint 2012-02-26 19:55:18 +00:00
jtm
5532eb88ee checkpoint expressions 2012-02-26 15:50:07 +00:00
jtm
54f6363d2e checkpoint 2012-02-26 10:59:21 +00:00
jtm
aaedc6bcfc factor 1 2012-02-19 20:38:19 +00:00
jtm
6e29a991c7 Correctly format statements
Allow uppercase reserved @names
2012-02-02 18:41:04 +00:00
robotis
f4ba41cc1d initial commit 2012-01-28 14:52:09 +00:00