summaryrefslogtreecommitdiff
path: root/src/plugins
AgeCommit message (Collapse)Author
2015-02-10Fully implemented and tested begin/end handlingAndreas Stöckel
2015-02-09Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
2015-02-09Implemented correct handling of fields in PlainFormatStreamReader and added ↵Andreas Stöckel
a lot of unit tests.
2015-02-09Allowing tokens to be passed to logger functionsAndreas Stöckel
2015-02-08Merge branch 'master' of somweyr.de:ousiaBenjamin Paassen
2015-02-08first attempt on incorporating transparency: It does work now, even though ↵Benjamin Paassen
only if we have a stable "anchor" at the bottom, meaning an explicit structuredclass. We can build the bridge in between. A mechanism to incorporate transparency when only fields are referenced is still missing, though.
2015-02-08Added support for parsing commandsAndreas Stöckel
2015-02-08Merge branch 'master' of somweyr.de:ousiaBenjamin Paassen
2015-02-08restructured the FieldDescriptor mechanism.Benjamin Paassen
2015-02-08added some commentsAndreas Stöckel
2015-02-08Ported PlainFormatStreamReader to DynamicTokenizerAndreas Stöckel
2015-02-08DynamicTokenizer now gets the reader as a parameter to read and peek -- the ↵Andreas Stöckel
beauty of this tokenizer is that it has no internal state depending on the reader, so it doesn't need to hold a reference to it
2015-02-08Implemented DynamicTokenizer and unit testsAndreas Stöckel
2015-02-08Deleted DynamicTokenTree class, replaced by TokenTrieAndreas Stöckel
2015-02-07Fixed unregisterNode functionAndreas Stöckel
2015-02-07Unified handling of references to Rtti instances: Now using pointers everywhereAndreas Stöckel
2015-02-06enabled xml parser to parse documents (at least in a first version).Benjamin Paassen
2015-02-06changed name of text field from content to default.Benjamin Paassen
2015-02-06added chapter to DemoHTMLOutputBenjamin Paassen
2015-02-06made cardinality to an own class instead of using.Benjamin Paassen
2015-02-06Merge branch 'master' of somweyr.de:ousiaBenjamin Paassen
Conflicts: application/src/plugins/xml/XmlParser.cpp
2015-02-06started to implement document parsing.Benjamin Paassen
2015-02-06Do not capture referencesAndreas Stöckel
2015-02-06Continue writing parser for plain document formatAndreas Stöckel
2015-02-05Added initial skeleton of the PlainFormatStreamReader class, providing the ↵Andreas Stöckel
most basic functionality needed to read data from a Ousia plain text file.
2015-02-04allowed actual field descriptor references.Benjamin Paassen
2015-02-04got annotation parsing to work with the comments domain. detected a bug, ↵Benjamin Paassen
though (or better said: A conceptual problem)
2015-02-04added DEFAULT_FIELD_NAME to XmlParser.Benjamin Paassen
2015-02-04set non-empty default field name.Benjamin Paassen
2015-02-04added mechanism for parent parsing, which does not fully work as of now.Benjamin Paassen
2015-02-04Merge branch 'master' of somweyr.de:ousiaBenjamin Paassen
Conflicts: application/src/plugins/xml/XmlParser.cpp
2015-02-04Implemented parsing of enum typesAndreas Stöckel
2015-02-04further work on domain parsing. This is not a working state yet.Benjamin Paassen
2015-02-03Fixed XML-Importer failingAndreas Stöckel
2015-02-03Implemented small state machine retrieving the byte offsets of each argument ↵Andreas Stöckel
of the current xml tag
2015-02-03Implemented Including filesAndreas Stöckel
2015-02-02Importing files works nowAndreas Stöckel
2015-02-02Implemented import handler.Andreas Stöckel
2015-02-01Improved ParserStack state descriptionAndreas Stöckel
2015-01-30XmlParser for more stuffAndreas Stöckel
2015-01-30Finished implementing constant importingAndreas Stöckel
2015-01-30stuffAndreas Stöckel
2015-01-29Unified signature of resolve functions, passing the "owner" to the callback ↵Andreas Stöckel
functions in ParserScope::resolve
2015-01-29changed precedence in FileLocator. This has to be tested still.Benjamin Paassen
2015-01-29further attempts on making the main program work. Had to add a method for ↵Benjamin Paassen
handling absolute paths in FileLocator for that.
2015-01-29ParserScope now stores the nodes for which the resolution was triggered and ↵Andreas Stöckel
first executes those resolutions that depend on not currently resolving nodes (this behaviour is needed for the resolution of constants).
2015-01-28Implemented constantsAndreas Stöckel
2015-01-28Parsing a bit more stuffAndreas Stöckel
2015-01-27Parsers do no longer return the node they have parsed (as this may be ↵Andreas Stöckel
ill-defined -- if a parser only parses a partial document via include, there may be many to no nodes that are returned). Parsers should just use the ParserScope.push funciton. All nodes pushed onto the top-level of the ParserScope are added treated as the nodes the parser has parsed. Adapted all code and all tests accordingly.
2015-01-27Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel