summaryrefslogtreecommitdiff
path: root/src/core/CSS.hpp
AgeCommit message (Collapse)Author
2015-01-02Moved Node class to model folderAndreas Stöckel
2014-12-17small style changed -- always pass input arguments as Handles and not Rooted ↵Andreas Stöckel
-- otherwise a temporary Rooted has to be created and freed which may trigger unwanted garbage collector runs. Always use the C++ nullptr instread of NULL -- the first one is typesafe, the latter is not
2014-12-16changed paths to new location of the Managed class, adapted NodeVector and ↵Andreas Stöckel
NodeMap to the slightly changed conditions in the Node class
2014-12-11moved to CharReader everywhereAndreas Stöckel
2014-12-09made CSSParser full compatible (including pseudo selector arguments) with ↵Benjamin Paassen
type system parsing.
2014-12-05Successfully (hopefully) implemented CSS Parsing and the respective test.Benjamin Paassen
2014-12-05Further work on implementing CSSRuleSets. This needs further testing, though.Benjamin Paassen
2014-12-05Added compilable version of RuleSets to the CSS.hpp.Benjamin Paassen
2014-12-05added an 'accepting' attribute to SelectorNodes to make them properly usable ↵Benjamin Paassen
as finite state machine nodes without relying on rulesets.
2014-12-04implemented CSSParser for selectors. The code compiles. Tests are still ↵Benjamin Paassen
needed, though and there are some TODOs left.
2014-12-03implemented Unit-Test for SelectorNode::append and fixed a bug in the append ↵Benjamin Paassen
function.
2014-12-03Convenience versions for SelectorNode::getChildren.Benjamin Paassen
2014-12-03implemented SelectorNode::append, which is not tested yet.Benjamin Paassen
2014-12-03fixed some subtle design errors in SelectorNodes and implemented ↵Benjamin Paassen
SelectorNode::getChildren.
2014-12-02Refactored CSS object structure into an own header file and added additional ↵Benjamin Paassen
documentation.