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 727a9e1a11d0ad45ad8053b45126f074093c92b9 (commit)
from 323ae3a6602854caacad3fae8439b77183df4c35 (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 727a9e1a11d0ad45ad8053b45126f074093c92b9
Author: Raimondas Kvietkauskas <[email protected]>
Date: Wed Jun 11 14:40:57 2014 +0300
[INTERNAL] add file system implementation for IntelliJ
Change-Id: I6fe569eeef70c08c25e7b8366805d0ae81693362
Reviewed-on: http://saros-build.imp.fu-berlin.de/gerrit/1644
Tested-by: Jenkins CI
Reviewed-by: Arsenij Solovjev <[email protected]>
Reviewed-by: Franz Zieris <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
.../exceptions/OperationCanceledException.java | 15 +-
.../inf/dpp/core/exceptions/TeamException.java | 10 +-
.../de/fu_berlin/inf/dpp/core}/util/FileUtils.java | 358 ++++++++++---------
.../inf/dpp/core/workspace/IWorkspace.java | 33 +-
.../dpp/core/workspace/IWorkspaceDescription.java | 41 ++-
.../inf/dpp/core/workspace}/IWorkspaceRoot.java | 21 +-
.../inf/dpp/core/workspace/IWorkspaceRunnable.java | 15 +-
.../Status.java => workspace/WorkspaceThread.java} | 36 +-
.../inf/dpp/intellij/project/fs/FileImp.java | 113 ++++++
.../project/fs/FileResourceAttributes.java | 30 +-
.../inf/dpp/intellij/project/fs/FolderImp.java | 125 +++++++
.../inf/dpp/intellij/project/fs/PathFactory.java | 21 +-
.../inf/dpp/intellij/project/fs/PathImp.java | 218 +++++++++++
.../inf/dpp/intellij/project/fs/ProjectImp.java | 376 ++++++++++++++++++++
.../intellij/project/fs/ResourceAttributes.java | 29 +-
.../inf/dpp/intellij/project/fs/ResourceImp.java | 199 +++++++++++
.../inf/dpp/intellij/project/fs/Workspace.java | 146 ++++++++
.../intellij/project/fs/WorkspaceDescription.java | 116 ++++++
.../inf/dpp/intellij/project/fs/WorkspaceRoot.java | 109 ++++++
19 files changed, 1735 insertions(+), 276 deletions(-)
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IWorkspaceRoot.java
=>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/exceptions/OperationCanceledException.java
(75%)
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IWorkspaceRoot.java
=>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/exceptions/TeamException.java
(75%)
copy {de.fu_berlin.inf.dpp/src/de/fu_berlin/inf/dpp =>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core}/util/FileUtils.java
(61%)
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IProject.java =>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/workspace/IWorkspace.java
(52%)
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IProject.java =>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/workspace/IWorkspaceDescription.java
(52%)
copy {de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem =>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/workspace}/IWorkspaceRoot.java
(70%)
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IWorkspaceRoot.java
=>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/workspace/IWorkspaceRunnable.java
(72%)
copy
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/core/{monitor/Status.java
=> workspace/WorkspaceThread.java} (52%)
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/FileImp.java
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IContainer.java
=>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/FileResourceAttributes.java
(61%)
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/FolderImp.java
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IWorkspaceRoot.java
=>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/PathFactory.java
(68%)
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/PathImp.java
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/ProjectImp.java
copy
de.fu_berlin.inf.dpp.core/src/de/fu_berlin/inf/dpp/filesystem/IContainer.java
=>
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/ResourceAttributes.java
(62%)
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/ResourceImp.java
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/Workspace.java
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/WorkspaceDescription.java
create mode 100644
de.fu_berlin.inf.dpp.intellij/src/de/fu_berlin/inf/dpp/intellij/project/fs/WorkspaceRoot.java
hooks/post-receive
--
The Saros Eclipse Plugin
------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
Dpp-robot mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dpp-robot