summaryrefslogtreecommitdiff
path: root/test/plugins
AgeCommit message (Collapse)Author
2015-02-03Implemented Including filesAndreas Stöckel
2015-02-02Importing files works nowAndreas Stöckel
2015-01-30XmlParser for more stuffAndreas Stöckel
2015-01-30added a unit test for absolute paths.Benjamin Paassen
2015-01-30Merge branch 'master' of somweyr.de:ousiaBenjamin Paassen
2015-01-30unit test for FileLocator precedence.Benjamin Paassen
2015-01-30stuffAndreas Stöckel
2015-01-28Implemented constantsAndreas Stöckel
2015-01-28Parsing a bit more stuffAndreas Stöckel
2015-01-28Renamed add* and include* methods for referencing another Typesystem/Domain ↵Andreas Stöckel
description to "reference*" to have a consistent nomenclature
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
2015-01-27Removed dependency between "Project" model class and parser/resources. This ↵Andreas Stöckel
reduces coupling and was stupid beforehand.
2015-01-26Renamed CSS to Style (finally)Benjamin Paassen
2015-01-26Compilation fix in Release modeAndreas Stöckel
2015-01-25Adapted tests to StandaloneEnvironment, using complete pipeline in XmlParserTestAndreas Stöckel
2015-01-25added parse, link and include functions to ProjectAndreas Stöckel
2015-01-25Restructures parser classes a little, removed Registry from ParserContext, ↵Andreas Stöckel
gave a ResourceManager instance to the Project, using ResourceRequest when including or linking files, thought through how "including" and "linking" are handled
2015-01-25more removal of the model namespaceAndreas Stöckel
2015-01-24Moved Terminal and TerminalLogger to own classes in new frontent folderAndreas Stöckel
2015-01-23Fixed unit tests according to new SourceLocationAndreas Stöckel
2015-01-21Do only perform relative file lookups if a relative path is given (to allow ↵Andreas Stöckel
users to include files without accidently including a global resource)
2015-01-21Some further refactoring -- renamed Scope to ParserScope, got rid of parser ↵Andreas Stöckel
namespace, added new functionality to RegistryClass, wrote documentation, added function for extracting file extensions to Utils
2015-01-20Added unit test for checking the default search pathsAndreas Stöckel
2015-01-20Adapted FileLocator unit tests, searching in the "UNKNOWN" ResourceType ↵Andreas Stöckel
search paths directly in ResoruceLocator instead of Registry
2015-01-20Implemented automatic generation of default search pathsAndreas Stöckel
2015-01-20Moved some files aroundAndreas Stöckel
2015-01-20Refactored stuff surrounding the ResourceLocator class, implemented ↵Andreas Stöckel
StaticResourceLocator which can be used for registering static resources (mainly for testing or if certain resources need to be available from the executable)
2015-01-19XML-Parsing for Typesystem structs works so farAndreas Stöckel
2015-01-18Fixed bugs in definition of Project, added reference to Project to ParserContextAndreas Stöckel
2015-01-18Implemented storing locations in the ParserStack, improved parsing typesystemsAndreas Stöckel
2015-01-16Allowing deferred resolution of NodesAndreas Stöckel
2015-01-16Working on XMLParser (still lot work in progress)Andreas Stöckel
2015-01-15Further simplified document buildup by doing the addition to parents of ↵Benjamin Paassen
StructureNodes in the constructor and refactored Anchor as standalone class instead of AnnotationEntity child. This made some changes in the test bench necessary as well.
2015-01-15Synchronizing logger with current XML parser line numberAndreas Stöckel
2015-01-13put entity escaping in XML serialization instead of DemoOutput. Also had to ↵Benjamin Paassen
comment out graphviz visualization in DemoOutputTest because it did not work for me.
2015-01-12Fixed failing html testAndreas Stöckel
2015-01-12some further trials to solve the issue of segfault in HTML test, but failed.Benjamin Paassen
2015-01-12Tried to introduce another StructureNode class as common superclass for ↵Benjamin Paassen
StructuredEntity, Anchor and DocumentPrimitive. Nearly seems to work, but not entirely so. There are still issues with the Manager it seems.
2015-01-11Forward declaring Rtti stuff for fewer dependencies in the Rtti.hpp headerAndreas Stöckel
2015-01-11Fixed GCC 4.9 warnings (signed unsigned compare)Andreas Stöckel
2015-01-09added non-pretty output of XML serialization, changed DemoOutput accordingly ↵Benjamin Paassen
and changed DemoOutputTest to have some kind of automatic inspection instead of visual inspection.
2015-01-09debugged DemoOutput.cppBenjamin Paassen
2015-01-09Refactored building convenience methods to TestDocumentBuilder, added error ↵Benjamin Paassen
logging and changed TestDocument and TestAdvanced as well as all users of those files accordingly.
2015-01-08further extended example to include annotations (emphasized and strong). The ↵Benjamin Paassen
DemoOutput for that is still missing, though. convenience build functions have also been implemented in Document.cpp.
2015-01-08further extended advanced document (now list domain is supported as well) ↵Benjamin Paassen
and extended DemoOutput accordingly.
2015-01-08slight changes to Domain and Document. Started to add a more advanced test ↵Benjamin Paassen
document creation function as well as the respective domain creation functions. The DemoOutputTest for it looks good so far.
2015-01-05corrected RTTI for domain und document and added a reference to system type ↵Benjamin Paassen
system in test domain.
2015-01-05Added graphviz output to DemoOutputTestAndreas Stöckel
2015-01-04corrected first draft of DemoOutput. Still some TODOs remain, but for the ↵Benjamin Paassen
easy test document everything works.