summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Most of a refactor of the gigantic "menu" test.menu-refactorEevee (Alex Munroe)2013-08-283-763/+361
|
* Add a few doubly-experimental map functions needed for menus.Eevee (Alex Munroe)2013-08-281-0/+44
|
* Make rgb() reset the alpha channel. rgba() accepts percentage alpha.Eevee (Alex Munroe)2013-08-281-3/+3
|
* first-value-of() should not autosplit single-item lists.Eevee (Alex Munroe)2013-08-281-2/+3
|
* Make @dump_context actually work.Eevee (Alex Munroe)2013-08-281-1/+1
|
* Let Map.get_by_key take a default.Eevee (Alex Munroe)2013-08-281-4/+8
|
* Maps should have their keys evaluated as expressions!Eevee (Alex Munroe)2013-08-281-4/+2
|
* Short-circuit boolean evaluation, and return the determining value.Eevee (Alex Munroe)2013-08-281-4/+10
| | | | | This acts much more like Python; now we don't even evaluate the AST once we know the result.
* Further nitpicking of core functions.Eevee (Alex Munroe)2013-08-271-53/+33
| | | | | Usually I don't care about compactness, but these *_color functions are pretty lengthy and repetitive.
* Implement zip().Eevee (Alex Munroe)2013-08-272-1/+7
|
* At long last, kill ParserValue and most of the Color constructor.Eevee (Alex Munroe)2013-08-274-31/+18
|
* That's not how you calculate hue...Eevee (Alex Munroe)2013-08-271-1/+1
|
* Color function cleanup, round 2.Eevee (Alex Munroe)2013-08-273-111/+124
|
* Greatly simplify color functions.Eevee (Alex Munroe)2013-08-271-124/+61
|
* Fix change_color and scale_color. Fixes #161, #164.Eevee (Alex Munroe)2013-08-273-19/+172
|
* Quick py3 fix for gradients.Eevee (Alex Munroe)2013-08-231-1/+1
|
* Cheap heuristic for whether +foo is an @include or a selector.Eevee (Alex Munroe)2013-08-233-5/+14
|
* Slurpy test.Eevee (Alex Munroe)2013-08-232-0/+10
|
* Holy crap variable arguments. Fixes #100!Eevee (Alex Munroe)2013-08-232-47/+69
|
* Parser support for slurpy arguments.Eevee (Alex Munroe)2013-08-233-45/+96
|
* Correctly support scanning zero-length strings.Eevee (Alex Munroe)2013-08-231-9/+7
|
* Remove Number.unit.Eevee (Alex Munroe)2013-08-225-24/+14
|
* Avoid using Number.unit in gradient math.Eevee (Alex Munroe)2013-08-212-3/+16
|
* Learn a bit less eagerly about "to".Eevee (Alex Munroe)2013-08-211-0/+1
|
* Shut up, position(). Also, learn about "to".Eevee (Alex Munroe)2013-08-211-1/+5
|
* Gradient cleanup, now with tests! Also unbreaks radial-gradient.Eevee (Alex Munroe)2013-08-215-23/+222
|
* Implement List.__contains__.Eevee (Alex Munroe)2013-08-211-0/+3
|
* Avoid clobbering `log` here.Eevee (Alex Munroe)2013-08-211-1/+1
|
* Add a few CSS4 image functions as known function names.Eevee (Alex Munroe)2013-08-211-0/+5
|
* Numbers with incompatible units should still compare as unequal.Eevee (Alex Munroe)2013-08-212-7/+27
|
* Fix linear-gradient, yet again.Eevee (Alex Munroe)2013-08-213-7/+11
|
* Enforce that Sass functions return Sass values.Eevee (Alex Munroe)2013-08-211-2/+5
|
* Default String encoding to UTF-8. Sigh.Eevee (Alex Munroe)2013-08-211-4/+6
|
* Fix @wrap_python_function to handle complex units.Eevee (Alex Munroe)2013-08-211-1/+4
|
* Numbers can always compare to unitless numbers. Expand Number tests.Eevee (Alex Munroe)2013-08-212-9/+52
|
* Quick repr for SassRule and Map.Eevee (Alex Munroe)2013-08-202-0/+9
|
* Tidy up @include implementation; don't let args overwrite globals.Eevee (Alex Munroe)2013-08-204-41/+72
|
* Fix test output for kronuz/mul-em.Eevee (Alex Munroe)2013-08-201-1/+1
| | | | | Old existing value was based on pyscss's bad handling of units, where complex units were unsupported and em/px were interchangeable.
* Mixin arg values should be evaluated in their own scope.Eevee (Alex Munroe)2013-08-201-0/+3
| | | | | The hack to make default values use earlier arguments' values was also applied to the expressions passed in by the caller; whoops.
* Add a warning to this branch I would love to delete.Eevee (Alex Munroe)2013-08-191-0/+1
|
* Fix wrapping/indentation on extend test output.Eevee (Alex Munroe)2013-08-192-7/+4
| | | | (Tests are still wrong, but less so.)
* Add e, pow, log, and sqrt functions from Compass.Eevee (Alex Munroe)2013-08-193-1/+77
|
* Make the CSS3 filter grayscale(n) work.Eevee (Alex Munroe)2013-08-191-1/+10
|
* except...asEevee (Alex Munroe)2013-08-192-4/+4
|
* Simplify AST cache.Eevee (Alex Munroe)2013-08-191-11/+6
|
* Fix bug in error printing. Make evaluate_expression use parse_expression.Eevee (Alex Munroe)2013-08-192-27/+17
|
* Split type-system tests into their own file, and rewrite without the parser.Eevee (Alex Munroe)2013-08-192-90/+113
|
* Whoops. scss.types really really needs future division.Eevee (Alex Munroe)2013-08-191-0/+1
|
* Bit more context for errors, including a sweet caret.Eevee (Alex Munroe)2013-08-193-32/+64
| | | | | Partially reverted the grayscale() fix, since it masks errors in Sass functions.
* Basic error wrapping.Eevee (Alex Munroe)2013-08-193-4/+81
|