Skip to content
Snippets Groups Projects
  1. Aug 11, 2016
  2. Aug 05, 2016
  3. Aug 03, 2016
  4. Aug 02, 2016
  5. Aug 01, 2016
  6. 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
    • Torsten Grote's avatar
      Introduce client layer events for forums · e1bdede4
      Torsten Grote authored
      The forum UI depended on sync layer events such as MessageStateChangedEvent.
      Now, the forum client broadcasts its own high-level event (`ForumPostReceivedEvent`)
      with the information the UI needs (`ForumPostHeader`).
      
      Closes #310
      e1bdede4
  7. Jul 28, 2016
  8. Jul 07, 2016
  9. Jul 04, 2016
    • Torsten Grote's avatar
      Combined Blog Feed · fd7278b4
      Torsten Grote authored
      This commit addes a combined blog feed that shows all posts of all
      subscribed blogs in the order the blog posts have been received.
      
      For now, this commit also hides other blog functionality like adding
      additional blogs and browsing individual blogs.
      
      Closes #417
      fd7278b4
  10. Jun 23, 2016
  11. Jun 22, 2016
  12. Jun 18, 2016
  13. Jun 15, 2016
    • Torsten Grote's avatar
      Blog Client with Factory and Validator · da68ef78
      Torsten Grote authored
      This implements a simple initial blog client that covers the basic blog
      actions, but no deletion/removal of blogs, yet.
      
      Classes for Blogs and Blog Post Headers have been introduced along with
      the associated factories.
      
      A `BlogPostValidator` has been added that validates incoming blog posts.
      
      Closes #402
      Closes #404
      da68ef78
  14. Jun 08, 2016
  15. May 26, 2016
    • 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
  16. May 25, 2016
  17. May 24, 2016
  18. May 20, 2016
  19. May 19, 2016
  20. May 16, 2016
  21. May 12, 2016
  22. May 06, 2016
  23. 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
    • Torsten Grote's avatar
  24. May 03, 2016
    • Torsten Grote's avatar
      Prepare for new Forum Sharing Client · 9f9a2163
      Torsten Grote authored
      Methods for creating, adding and removing forums have been moved to the
      `ForumManager`. In order to still handle removing forums properly, a
      `RemoveForumHook` has been introduced.
      
      Methods for sharing forums with all current and future contacts have
      been removed along with the localGroup where this information was saved.
      
      The `ShareForumActivity` now has the proper label.
      
      The `SessionId` and the `ProtocolEngine` have been moved to the
      `clients` package.
      
      This addresses part of #322 and part of what has been discussed in #320.
      9f9a2163
Loading