summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-12-18Hopefully implemented a working version of the Domain resolve mechanism.Benjamin Paassen
2014-12-17Some (slight) changes to existing structures and first attempts on a test to ↵Benjamin Paassen
construct a test comain and a test document out of thin air. I am, indeed, an alchemist.
2014-12-17noticed that Andreas did already implement Cardinality in form of the ↵Benjamin Paassen
RangeSet. Removed my own attempts at programming the Cardinality and used his code.
2014-12-17First draft of Cardinality. There are still semantic improvements to be ↵Benjamin Paassen
made, though.
2014-12-17made ManagedContainer more roboust against managed objects already being ↵Andreas Stöckel
deleted while removing the reference to the owner
2014-12-17made deletion order in Manager class (more) deterministicAndreas Stöckel
2014-12-17updated ManagedContainer class to allow nullptr as owner, making this a list ↵Andreas Stöckel
of rooted elements
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-16Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
2014-12-16fixed bug #27Andreas Stöckel
2014-12-16Document.hpp does compile now. Further Tests are needed.Benjamin Paassen
2014-12-16finished first draft of Document.hpp, but this is not yet compiled nor tested.Benjamin Paassen
2014-12-16first draft for DocumentEntity.Benjamin Paassen
2014-12-16Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
Conflicts: application/CMakeLists.txt
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-16added possibility to register a ManagedType for a class derived from ↵Andreas Stöckel
Managed, improved Managed readData function
2014-12-15Improved ManagedContainer classesAndreas Stöckel
2014-12-15finished first version of Domain.hpp, which compiles now.Benjamin Paassen
2014-12-15first draft for StructuredClassBenjamin Paassen
2014-12-15first draft of Descriptor.Benjamin Paassen
2014-12-15Implementation of FieldDescriptor class.Benjamin Paassen
2014-12-14added data functions and memory tagging functions. As it turns out the ↵Andreas Stöckel
latter are unnecessary and will be removed
2014-12-13started to refactor Managed packageAndreas Stöckel
2014-12-12first attempt on domain formalization.Benjamin Paassen
2014-12-12Added new version of Typesystem in cooperation with Andreas.Benjamin Paassen
2014-12-12Slight changes to logging mechanism.Benjamin Paassen
2014-12-12Made the relativeTo handling in FileLocator.cpp somewhat more sophisticated.Benjamin Paassen
2014-12-12implemented parseObject and added unit testAndreas Stöckel
2014-12-12changed message prefix for fatal errorAndreas Stöckel
2014-12-12fixed Variant::toString methodAndreas Stöckel
2014-12-12fixed bug in Utils::isIdentifier and added regression testAndreas Stöckel
2014-12-11Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
2014-12-11implemented Logger.fork and corresponding LoggerFork classAndreas Stöckel
2014-12-11refactored loggerAndreas Stöckel
2014-12-11finished FileLocator implementation and tests for it.Benjamin Paassen
2014-12-11First draft. Tested search path adding mechanism.Benjamin Paassen
2014-12-11moved to CharReader everywhereAndreas Stöckel
2014-12-11using reader.fork for skipping invalid numbers in parseGenericAndreas Stöckel
2014-12-11added assertion to Buffer class which makes sure that all cursors are marked ↵Andreas Stöckel
as free (just to be sure), adapted Buffer unit tests accordingly
2014-12-11adapted Reader class to use CharReader instead of BufferedCharReaderAndreas Stöckel
2014-12-11tested CharReader.fork and fixed access to uninitialized memory in context ↵Andreas Stöckel
function
2014-12-11implemented context function, increased performance of read functionAndreas Stöckel
2014-12-10started implementing FileLocator (boost).Benjamin Paassen
2014-12-10integrated ResourceLocator into the Registry.Benjamin Paassen
2014-12-10Merge branch 'master' of somweyr.de:ousiaAndreas Stöckel
2014-12-10copied old BufferedCharReader tests to CharReaderTest, fixed some bugs and ↵Andreas Stöckel
optimized CharReader code
2014-12-09got a trivial version of the ResourceLocator to work.Benjamin Paassen
2014-12-09another try to get the stream method to work. Still compiler errors.Benjamin Paassen
2014-12-09First draft of ResourceLocator. The stream method is not working yet. Thus I ↵Benjamin Paassen
did comment out the compiler commands for the new classes.
2014-12-09made CSSParser full compatible (including pseudo selector arguments) with ↵Benjamin Paassen
type system parsing.