This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The Saros Eclipse Plugin". Pusher was dpp-gerrit.

The branch, master has been updated
       via  ca60f2e6d88e6fa82e1c0cc6c53f0e4d5c62dbd6 (commit)
      from  2a76a06c405e5cf452175ae7f2ba6463fcf33ac6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit ca60f2e6d88e6fa82e1c0cc6c53f0e4d5c62dbd6
Author: Arndt Lasarzik <[email protected]>
Date:   Sun Jan 4 15:34:50 2015 +0100

    [API] introduce IPreferences in saros core
    
    Preferences are needed to store varios informations. IPreferences offers
    methods to access these information. IPreferences will be implemanted by
    every plugin(IDE) to use the ide specific preference storage.
    
    This patch does not include any usage by classes in the saros core.
    
    Change-Id: I693a9ddfc10683aac9aa26470f34d8955660e42a
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/2048
    Tested-by: Jenkins CI
    Reviewed-by: Holger Schmeisky <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 de.fu_berlin.inf.dpp.core/META-INF/MANIFEST.MF     |    1 +
 .../inf/dpp/preferences/IPreferences.java          |  152 +++++++++++++++++
 .../inf/dpp/preferences/PreferenceConstants.java   |   49 ++++++
 .../src/de/fu_berlin/inf/dpp/core/Saros.java       |   10 +-
 .../inf/dpp/core/preferences/IPreferenceStore.java |   32 ----
 .../inf/dpp/core/project/SarosSessionManager.java  |  175 +++++++++++---------
 .../dpp/core/project/internal/SarosSession.java    |   18 +--
 .../context/SarosIntellijContextFactory.java       |   15 +-
 .../store/IntelliJPreferenceConstants.java}        |   84 ++++------
 .../store/IntelliJPreferences.java}                |  111 ++++--------
 .../inf/dpp/intellij/store/PreferenceStore.java    |   74 +++++++-
 .../src/de/fu_berlin/inf/dpp/Saros.java            |   33 ++--
 .../inf/dpp/SarosEclipseContextFactory.java        |    7 +-
 .../src/de/fu_berlin/inf/dpp/StartupSaros.java     |   10 +-
 .../dpp/accountManagement/XMPPAccountStore.java    |   10 +-
 .../muc/negotiation/MUCNegotiationManager.java     |    6 +-
 .../connection/ConnectionHandler.java              |   22 ++-
 .../inf/dpp/concurrent/undo/UndoManager.java       |    4 +-
 .../internal/ContributionAnnotationManager.java    |    6 +-
 .../editor/internal/LocationAnnotationManager.java |    6 +-
 .../inf/dpp/feedback/ErrorLogManager.java          |   10 +-
 .../inf/dpp/feedback/FeedbackManager.java          |   18 +-
 .../inf/dpp/feedback/FeedbackPreferences.java      |   14 +-
 .../inf/dpp/feedback/StatisticManager.java         |    6 +-
 .../feedback/StatisticManagerConfiguration.java    |   18 +-
 .../negotiation/IncomingProjectNegotiation.java    |   28 ++--
 ...stants.java => EclipsePreferenceConstants.java} |   50 +-----
 ...referenceUtils.java => EclipsePreferences.java} |  107 ++++--------
 .../inf/dpp/preferences/PreferenceInitializer.java |   70 +++++----
 .../inf/dpp/project/SarosSessionManager.java       |   46 +++---
 .../dpp/project/internal/ColorNegotiationHook.java |   12 +-
 .../project/internal/NicknameNegotiationHook.java  |   10 +-
 .../inf/dpp/project/internal/SarosSession.java     |    6 +-
 .../HostLeftAloneInSessionHandler.java             |    6 +-
 .../ui/eventhandler/JoinSessionRequestHandler.java |    4 +-
 .../ui/eventhandler/ServerPreferenceHandler.java   |    4 +-
 .../eventhandler/SessionStatusRequestHandler.java  |    4 +-
 .../ui/preferencePages/AdvancedPreferencePage.java |    9 +-
 .../CommunicationPreferencePage.java               |   14 +-
 .../ui/preferencePages/FeedbackPreferencePage.java |   14 +-
 .../PersonalizationPreferencePage.java             |   72 +++++----
 .../fu_berlin/inf/dpp/ui/sounds/SoundPlayer.java   |    4 +-
 .../de/fu_berlin/inf/dpp/ui/views/SarosView.java   |   18 +-
 .../inf/dpp/ui/widgets/chat/ChatControl.java       |    8 +-
 .../dpp/ui/widgets/chat/ChatRoomsComposite.java    |    4 +-
 .../inf/dpp/ui/widgets/decoration/JIDCombo.java    |    8 +-
 .../widgets/wizard/EnterXMPPAccountComposite.java  |   22 ++--
 .../dpp/ui/wizards/AddProjectToSessionWizard.java  |    6 +-
 .../pages/ConfigurationSettingsWizardPage.java     |   14 +-
 .../wizards/pages/CreateXMPPAccountWizardPage.java |   10 +-
 .../dpp/ui/wizards/pages/EnterProjectNamePage.java |   22 ++--
 .../wizards/pages/ResourceSelectionWizardPage.java |    6 +-
 .../inf/dpp/stf/server/STFController.java          |    5 +-
 .../ContributionAnnotationManagerTest.java         |    4 +-
 .../inf/dpp/project/SarosSessionManagerTest.java   |    5 +-
 .../inf/dpp/project/internal/SarosSessionTest.java |    4 +-
 56 files changed, 811 insertions(+), 676 deletions(-)
 create mode 100644 
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/preferences/IPreferences.java
 create mode 100644 
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/preferences/PreferenceConstants.java
 delete mode 100644 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/preferences/IPreferenceStore.java
 rename 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/{core/preferences/PreferenceConstants.java
 => intellij/store/IntelliJPreferenceConstants.java} (69%)
 rename 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/{core/preferences/PreferenceUtils.java
 => intellij/store/IntelliJPreferences.java} (64%)
 rename 
de.fu_berlin.inf.dpp/src/de/fu_berlin/inf/dpp/preferences/{PreferenceConstants.java
 => EclipsePreferenceConstants.java} (76%)
 rename 
de.fu_berlin.inf.dpp/src/de/fu_berlin/inf/dpp/preferences/{PreferenceUtils.java 
=> EclipsePreferences.java} (61%)


hooks/post-receive
-- 
The Saros Eclipse Plugin

------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
Dpp-robot mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dpp-robot

Reply via email to