Skip to content
Snippets Groups Projects
  1. Sep 26, 2016
  2. Sep 22, 2016
  3. Sep 20, 2016
  4. Sep 09, 2016
  5. Sep 01, 2016
  6. Aug 31, 2016
  7. Aug 30, 2016
  8. Aug 29, 2016
    • Torsten Grote's avatar
      Add support for comments and reblogging to Blog Client · 3dd3a186
      Torsten Grote authored
      Comments and reblogs need to depend on the post they refer to.
      Since message dependencies are limited to one group,
      the post and also the comments need to be wrapped
      when commented on or reblogged to another blog.
      
      For this reason, in addition to comments, two new wrapping message types
      are introduced. They retain all data of the original messages and allow
      for reconstruction and signature verification.
      
      This commit breaks backwards compatibility with old blog posts.
      It removes the content type, title and parent ID from the post
      message structure.
      3dd3a186
    • Torsten Grote's avatar
  9. Aug 26, 2016
  10. Aug 24, 2016
  11. Aug 22, 2016
  12. Aug 19, 2016
  13. Aug 15, 2016
  14. Aug 11, 2016
  15. Aug 05, 2016
  16. Jul 31, 2016
  17. Jul 29, 2016
    • Torsten Grote's avatar
      Allow Validator to access metadata for pending messages · bdb87655
      Torsten Grote authored
      Database queries for metadata only returned it for messages that were delivered already.
      However, there are cases (e.g. a pending message needs to be delivered) where
      the validator needs to retrieve the metadata from the database.
      
      For these cases, a special database query has been introduced.
      bdb87655
  18. Jun 27, 2016
  19. Jun 22, 2016
  20. Jun 18, 2016
  21. May 26, 2016
    • Torsten Grote's avatar
      Implement new message validation logic · 5561532c
      Torsten Grote authored
      that handles message dependencies reported from clients.
      
      The MessageValidatedEvent has been renamed into a MessageDeliveredEvent
      since there were no real use cases for the former any more.
      5561532c
    • Torsten Grote's avatar
      Add Message Dependencies to Database · b03d0a20
      Torsten Grote authored
      This adds a new table to the database to hold message dependencies.
      It introduces two more message states: pending and delivered
      The valid column in the database was renamed to state to better reflect
      its new extended meaning.
      
      The DatabaseComponent was extended with three methods for:
      * adding dependencies
      * getting dependencies of a message
      * getting messages that depend on a message (dependents)
      * getting messages to be delivered (by startup hook)
      * getting pending messages to be possibly delivered (by startup hook)
      
      In order to reflect the new states, things that were previously true for
      VALID messages have been changed to now be true for DELIVERED messages.
      
      Since pending messages should not be available to clients, many database
      queries have been modified to only return results for delivered
      messages.
      
      All added methods and changes should come with updated unit tests.
      
      Please note that the database version was bumped in this commit.
      b03d0a20
  22. May 25, 2016
  23. May 20, 2016
  24. May 12, 2016
  25. May 06, 2016
  26. May 04, 2016
    • Torsten Grote's avatar
      Forum Sharing Client backend · 9bef114c
      Torsten Grote authored
      This commit replaces the old ForumSharingManagerImpl with a new one
      which is based on state machines and the ProtocolEngine.
      
      There is a SharerEngine and a InviteeEngine that take care of state
      transitions, messages, events and trigger actions to be carried out by
      the ForumSharingManagerImpl. This is all very similar to the
      Introduction Client.
      
      The general sharing paradigm has been changed from sharing as a state to
      sharing as an action. Now the UI can allow users to invite contacts to
      forums. The contacts can accept or decline the invitiation. Also, the
      Forum Sharing Manger is notified when users leave a forum.
      
      Closes #322
      9bef114c
Loading