summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2015-01-09Added RTTI information for XML classes, made children vector of XML elements ↵Benjamin Paassen
private and added name printout to Manager debug graphviz function.
2015-01-09bugfix in ManagedContainer.Benjamin Paassen
2015-01-09Finished node resolution processAndreas Stöckel
2015-01-09Improvements to Document classes in accordance with BenjaminAndreas Stöckel
2015-01-09added XML escaping of special entities.Benjamin Paassen
2015-01-09first version of annotation handling in DemoOutput. Tests do not work yet, ↵Benjamin Paassen
though.
2015-01-09added a parent reference to XML nodes.Benjamin Paassen
2015-01-09adapted to new codeAndreas Stöckel
2015-01-09Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
Conflicts: application/src/core/model/Document.cpp application/src/core/model/Domain.cpp
2015-01-09Adapted code to new resolve functionAndreas Stöckel
2015-01-09Implemented new resolve functionAndreas Stöckel
2015-01-08first attempts on implementing annotation support for DemoHTML output.Benjamin Paassen
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-08Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
2015-01-08further extended the advanced document example, slightly improved XML ↵Benjamin Paassen
serialization and fixed a bug in DemoOutput leading to errors if a section/paragraph had no heading.
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-08Changed the DemoOutput algorithm as suggested by Andreas: We first transform ↵Benjamin Paassen
the document graph to an XML tree and the XML tree in turn has the methods to serialize to XML text, or, in this case, XHTML text.
2015-01-06added XML classes including Serialization functions and added a test for it. ↵Benjamin Paassen
I tried not to include Managed.hpp to prevent further overhead but I failed miserably.
2015-01-06Using RttiBuilder to construct Rtti informationAndreas Stöckel
2015-01-06Implemented RttiBuilderAndreas Stöckel
2015-01-05Replaced the term "aggregation" with "composition"Andreas Stöckel
2015-01-05corrected RTTI for domain und document and added a reference to system type ↵Benjamin Paassen
system in test domain.
2015-01-05Added composition typesAndreas Stöckel
2015-01-05Improved Graphviz outputAndreas Stöckel
2015-01-05Changed aggregation descriptor of the Typesystem classAndreas Stöckel
2015-01-05Fixed compilation with gcc 4.9Andreas Stöckel
2015-01-05Using weak references for storing the owner in events.Andreas Stöckel
2015-01-05Each Managed object now has an unique id that can be used as weak reference.Andreas Stöckel
2015-01-04corrected first draft of DemoOutput. Still some TODOs remain, but for the ↵Benjamin Paassen
easy test document everything works.
2015-01-04fixed a nasty bug in the getField method of DocumentEntity. Also corrected ↵Benjamin Paassen
some issues in the TestDocument and TestDomain.
2015-01-04Merge branch 'master' of somweyr.de:ousiaBenjamin Paassen
2015-01-04first draft for HTML Demo Output (still a lot of todos).Benjamin Paassen
2015-01-04improved documentation.Benjamin Paassen
2015-01-04added comment to exportGraphviz functionAndreas Stöckel
2015-01-04Added graphviz exportAndreas Stöckel
2015-01-04Added AggregatedOf informationAndreas Stöckel
2015-01-04Allowing to return human readable name of an eventAndreas Stöckel
2015-01-03Added references for aggregatedOf to the typesystem RttiType definitionsAndreas Stöckel
2015-01-03Renamed "contains" to aggregatedOf, added corresponding convenience function ↵Andreas Stöckel
to Rtti class
2015-01-03Improved contains functionality (now includes the parent types of each ↵Andreas Stöckel
aggregated type and the aggregated types of each parent)
2015-01-03Precomputing all possible parents (for a faster isa function) and introduced ↵Andreas Stöckel
the notion of "aggregatedTypes", which are used to reduce the complexity of resolutions within the object graph
2015-01-02fixing missing includeAndreas Stöckel
2015-01-02allowing to pass data to event handlersAndreas Stöckel
2015-01-02Using Index per default in NodeVector and NodeMap, added Unit testAndreas Stöckel
2015-01-02Allowing to pass arbitrary data to an event handler (not only Managed objects)Andreas Stöckel
2015-01-02Added index class which allows to build an index of Nodes stored in a ↵Andreas Stöckel
NodeContainer
2015-01-02Allowing to pass a Listener instance in the constructor and to access the ↵Andreas Stöckel
listener instance in derived classes.
2015-01-02Moved Node class to model folderAndreas Stöckel
2015-01-02Moved event system from the Node class to the Managed class (with zero ↵Andreas Stöckel
overhead if is not used)