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  496881cad15d6ce587ae0ba1ddd1ff79b5047a5e (commit)
      from  1c4e8d0fbf750279bd047056d94331e662b9af1c (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 496881cad15d6ce587ae0ba1ddd1ff79b5047a5e
Author: Franz Zieris <[email protected]>
Date:   Tue Feb 25 00:21:35 2014 +0100

    [BUILD] Add dummy IntellJ plugin project
    
    This project produces kind of a "Hello World" plugin which already makes
    use of the Saros core project: The deployed IntelliJ IDEA plugin creates
    a "Saros" menu item in the main menu bar which provides two actions.
    (1) List all known ConnectionStates (Saros "feature"), the known
    ChatStates (Smack feature), and a String from the Smack patches in a
    message box.
    (2) Ask for Jabber-ID and password, connect to saros-con, and list
    roster entries.
    
    Change-Id: I31b6014a05bc196109c9c14c21cd99953a94b8b5
    Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/1310
    Tested-by: Jenkins CI
    Reviewed-by: Franz Zieris <[email protected]>

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

Summary of changes:
 .gitignore                                         |    3 +
 .../de.fu_berlin.inf.dpp.core.eml                  |    5 +
 .../de.fu_berlin.inf.dpp.core.iml                  |   25 ++++
 de.fu_berlin.inf.dpp.intellij/.idea/.name          |    1 +
 de.fu_berlin.inf.dpp.intellij/.idea/compiler.xml   |   23 ++++
 .../.idea/copyright/profiles_settings.xml          |    5 +
 de.fu_berlin.inf.dpp.intellij/.idea/encodings.xml  |    5 +
 .../.idea/libraries/commons_codec_1_3.xml          |    9 ++
 .../.idea/libraries/commons_io_2_0_1.xml           |   11 ++
 .../.idea/libraries/commons_lang_2_4.xml           |   11 ++
 .../.idea/libraries/log4j_1_2_15.xml               |   11 ++
 .../.idea/libraries/picocontainer_2_11_2.xml       |   11 ++
 .../.idea/libraries/smack.xml                      |   11 ++
 .../.idea/libraries/smackx.xml                     |    9 ++
 .../.idea/libraries/smackx_debug.xml               |    9 ++
 .../.idea/libraries/smackx_jingle.xml              |    9 ++
 .../.idea/libraries/weupnp.xml                     |   11 ++
 .../.idea/libraries/xpp3_1_1_4c.xml                |    9 ++
 .../libraries/xstream_1_4_20101008_163445_1.xml    |    9 ++
 de.fu_berlin.inf.dpp.intellij/.idea/misc.xml       |   14 ++
 de.fu_berlin.inf.dpp.intellij/.idea/modules.xml    |   10 ++
 .../.idea/scopes/scope_settings.xml                |    5 +
 de.fu_berlin.inf.dpp.intellij/.idea/uiDesigner.xml |  125 ++++++++++++++++++++
 de.fu_berlin.inf.dpp.intellij/.idea/vcs.xml        |    7 +
 de.fu_berlin.inf.dpp.intellij/META-INF/plugin.xml  |   45 +++++++
 .../de.fu_berlin.inf.dpp.intellij.iml              |   14 ++
 .../de/fu_berlin/inf/dpp/SarosCoreTestAction.java  |   39 ++++++
 .../de/fu_berlin/inf/dpp/SarosCoreTestAction2.java |   61 ++++++++++
 28 files changed, 507 insertions(+), 0 deletions(-)
 create mode 100644 de.fu_berlin.inf.dpp.core/de.fu_berlin.inf.dpp.core.eml
 create mode 100644 de.fu_berlin.inf.dpp.core/de.fu_berlin.inf.dpp.core.iml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/.name
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/compiler.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/copyright/profiles_settings.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/encodings.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/commons_codec_1_3.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/commons_io_2_0_1.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/commons_lang_2_4.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/log4j_1_2_15.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/picocontainer_2_11_2.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/libraries/smack.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/libraries/smackx.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/smackx_debug.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/smackx_jingle.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/libraries/weupnp.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/xpp3_1_1_4c.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/libraries/xstream_1_4_20101008_163445_1.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/misc.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/modules.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/.idea/scopes/scope_settings.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/uiDesigner.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/.idea/vcs.xml
 create mode 100644 de.fu_berlin.inf.dpp.intellij/META-INF/plugin.xml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/de.fu_berlin.inf.dpp.intellij.iml
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/SarosCoreTestAction.java
 create mode 100644 
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/SarosCoreTestAction2.java


hooks/post-receive
-- 
The Saros Eclipse Plugin

------------------------------------------------------------------------------
Flow-based real-time traffic analytics software. Cisco certified tool.
Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer
Customize your own dashboards, set traffic alerts and generate reports.
Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.clktrk
_______________________________________________
Dpp-robot mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dpp-robot

Reply via email to