Skip to main content
aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-03-14Bug 532420 - Make Container Core Build indexing more efficientJeff Johnston2-63/+189
- fix the CopyVolumesFromImageJob to handle multiple jobs running concurrently - protect access to the dirList with new lockObject - create a new copyingDirList to keep track of headers that are being copied but not completed - use the volume String as a synchronization lock when a volume is being copied - add check for all volumes already copied in which case do not bother creating a Container - when a volume is already copied or being copied, skip it in the outer for loop and add it to an alreadyCopied list - at the end of the function, loop through all entries in the alreadyCopiedList and synchronize on the volume String to ensure the volume is completely copied - fix logic in ContainerCommandProcess to ensure the logging thread is up and running before attempting to wait for the Container in the waitFor() method Change-Id: I50213034875c4b38dd306c7706f371d065c73193 Reviewed-on: https://git.eclipse.org/r/119378 Tested-by: CI Bot Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-03-09Bug 522659: Update the Docker Client Stack.Roland Grunberg1-1/+1
- Increase the lower bound on the com.spotify.docker.client requirement and place a reasonable upper bound Change-Id: I60df024655e6555b1c82d3661fa9164857587448 Reviewed-on: https://git.eclipse.org/r/119108 Reviewed-by: Jeff Johnston <jjohnstn@redhat.com> Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
2018-03-09Bug 522659: Update the Docker Client Stack.Roland Grunberg25-141/+148
- Update Docker Client to 8.9.2. - Update Jackson stack to 2.9.2. - Update JNR stack. Change-Id: I7ad5443154594174c2565407890919aa6e27f261 Reviewed-on: https://git.eclipse.org/r/119102 Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
2018-03-05Bug 531985 - Support Container build with new Core BuildJeff Johnston1-0/+45
- add new fetchContainerDirsSync method to ContainerLauncher class to fetch include dirs from Container but to wait until all have been fetched Change-Id: If3b21c54cb22d1c8a44346c0b26edc9e3e2c1eb3 Reviewed-on: https://git.eclipse.org/r/118611 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-03-03Bug 531883 - Deadlock in Docker when connection closesJeff Johnston1-4/+8
- in DockerConnection, move the setState() call in close() outside of the clientLock - in setState(), protect the setting of the global containers and images lists using the containerLock and imageLock respectively - this will avoid notification from occuring within a clientLock Change-Id: Ia5e942b15ba8b5db95d1ac1596c135273cb999fb Reviewed-on: https://git.eclipse.org/r/118463 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com> Reviewed-on: https://git.eclipse.org/r/118470
2018-03-03Fix Perf SWTBot testsJeff Johnston2-2/+2
- change AbstractSWTBotTest to look for "New" in profile configurations context menu instead of "New configuration" - remove Perf SWTBot tests temporarily from testing Change-Id: I9d9cbec546c356e32ba0c602b811914e6edaa95f Reviewed-on: https://git.eclipse.org/r/118562 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-26releng: Update p2analyzers config.Alexander Kurtakov3-12/+12
Use latest analysers and Oxygen.2. Change-Id: Ic7efae5dbd48968bc2c29a9ccd1b060b3f85ea9e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/118222
2018-02-26releng: move to wikitext 3.0.23.Alexander Kurtakov1-1/+1
Change-Id: I1098c5760152cb928c321b40d22427c2608bdad3 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/118217 Tested-by: Hudson CI
2018-02-23Bug 531563 - Regression in Docker copy files from ContainerJeff Johnston3-3/+54
- add back BlockingInputStream wrapper to TarArchive streams passed back by copyFromContainer Change-Id: I9f31e58199af43104692f92d54caee94b035cb0d Reviewed-on: https://git.eclipse.org/r/117991 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-20Fix Reddeer AbstractView due to changes upstreamJeff Johnston1-0/+13
- add missing getContextMenu method to AbstractView Change-Id: I7ab06ea9c617d243bc5cd82604ff26e403d37ca1 Reviewed-on: https://git.eclipse.org/r/117805 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-20Bug 531361 - Fix Docker handling of command args with spaces in themJeff Johnston1-25/+104
- add new runCommand method that takes a list of arguments instead of the whole command so that arguments with spaces are preserved in the container run - remove the commandDir argument since we should not be automatically linking the command directory which could be /usr/bin, /bin, etc... - add a new version of launch that also takes the list of arguments and removes the mounting of the command dir Change-Id: I090d7844c25ab9bb4e07825bc07d46795a8e563c Reviewed-on: https://git.eclipse.org/r/117703 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-08Remove old target files.Alexander Kurtakov2-157/+0
Change-Id: Ic8fe59bcb5491e34714af8cdeac7df1cf9f30f9e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/116991 Tested-by: Hudson CI
2018-02-08Update to wikitext 3.0.22Alexander Kurtakov1-1/+1
Change-Id: Ieedec88e3fc495cc6d8c80132041fb3b2e124a7c Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/116985 Tested-by: Hudson CI
2018-02-07Bug 530411 - Docker tools install JDT silentlyJeff Johnston8-7/+143
- create new org.eclipse.linuxtools.jdt.docker.launcher.feature - make new feature include org.eclipse.linuxtools.jdt.docker.launcher plug-in and require org.eclipse.linuxtools.docker.feature - remove jdt plug-in from main docker feature - add new feature to containers/pom.xml Change-Id: Ia96173f71ce07be18257e09192066fb14b0ca11f Reviewed-on: https://git.eclipse.org/r/116889 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-07Bump up master repo to 7.0.0-SNAPSHOT for photonJeff Johnston184-192/+192
- also bump up docker, vagrant, and mylyn features by major release Change-Id: Ie659e7ed6d18a8bca3876594964a128fdd50a150 Reviewed-on: https://git.eclipse.org/r/116885 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-02Bug 530264 - Copy From Container will not always correctly copy dataJeff Johnston5-63/+63
- add two methods to DockerConnection: getOperationToken() and closeOperationToken() which will return and close a DockerClient copy respectively - add two new forms of copyContainer and copyToContainer methods in DockerConnection that take a Closeable operation token as the first argument - change all callers of copyContainer and copyToContainer to get an operation token and then use the new versions of the methods - as well make sure callers either use a special try (Closeable) or manually close the operation token upon completion of the operation Change-Id: I151ee185bac2aa05ee0ef07ce1b9ccbf77987235 Reviewed-on: https://git.eclipse.org/r/116644 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-02-02Move to Tycho 1.1.0.Alexander Kurtakov1-2/+2
Change-Id: I4580ef96cf247ee32e3764781530aa82b4e5d73e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/116601 Tested-by: Hudson CI
2018-02-01Bug 530622: If isValid() is true, error messages should be cleared.Roland Grunberg1-0/+12
- When the Profiler tab is no longer active (clicked elsewhere) and then becomes active once again we attempt to reload widget states from the config. While this happens we are unable to make a determination for the config's validity. Currently we return true for isValid() if not fully initialized. However, the Profiler sub-tabs should have been loaded so we can pass their isValid() methods the current config to make a determination. Change-Id: I025dbc44b1ed4cd8ee58d182728ae64d7f207740 Reviewed-on: https://git.eclipse.org/r/116553 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-01-30Bug 530264 - Occasionally Copy From Container will not correctly copyJeff Johnston1-3/+3
- use modified docker-client 6.1.1b repository to get fix for problem with copying data from Container Change-Id: I3259151199759ff551fc4e241e3f4f91b9c1e20e Reviewed-on: https://git.eclipse.org/r/116363 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-01-30Move away of deprecated Class.newInstance method.Alexander Kurtakov3-153/+231
Add save action to o.e.l.tools.launch.core to have some basic code cleanup automated in the future too. Change-Id: Iaaf0f057fc4fa190a7b5e63461f625eb927d768a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/116329 Tested-by: Hudson CI
2018-01-30Start building against Photon.Alexander Kurtakov4-6/+133
Tycho 1.1.0-SNAPSHOT is needed. Adjust perf tests for the "New configuration" menu. Change-Id: I7178c1cf205264f693bb8c8eccfee1cebc4dce46 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/116030 Tested-by: Hudson CI
2018-01-30Photon changed button text when deleting run configurationRastislav Wagner1-2/+19
Change-Id: I79fb54a1ba3e2fe9539be610a4f86df419dc2c1d Signed-off-by: Rastislav Wagner <rawagner@redhat.com> Reviewed-on: https://git.eclipse.org/r/116310 Tested-by: Hudson CI Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
2018-01-30Remove deprecated usages.Alexander Kurtakov7-21/+21
Change-Id: I0d17a0667cb67eb6369b5df5b980f6d5d9e09810 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/116265 Tested-by: Hudson CI
2018-01-29Bug 526405 - Remove constructor NewDockerConnectionPage() Josef Kopriva2-5/+1
Change-Id: I5cde58374bcb8c533ab4d151d7c3f9d74842dc10 Signed-off-by: Josef Kopriva <jkopriva@redhat.com> Reviewed-on: https://git.eclipse.org/r/110547 Tested-by: Hudson CI Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
2018-01-23Update maven site plugin to 3.7.Alexander Kurtakov1-1/+1
Change-Id: Ic9cdf439eb0553b82c5c39017441c43ad199359a Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/115897 Tested-by: Hudson CI
2018-01-18Stick to sonar plugin 3.3 as eclipse.org sonarqube is too old.Alexander Kurtakov1-2/+2
Change-Id: I6611e72fd0e59ddc3e9b843d532ea3b5d070d8d2 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/115583 Tested-by: Hudson CI
2018-01-10Update maven plugins.Alexander Kurtakov2-5/+4
* Update Jacoco to 0.8.0 * update wikitext to 3.0.20 and regen help with it Change-Id: I32da1f7d72bb2115f0c9d0799975eb06b52d7d8e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/115160 Tested-by: Hudson CI
2018-01-08Reduce number of CallGraph errors loggedJeff Johnston1-1/+1
- don't bother logging a Callgraph error if it is recognized so as not to create extraneous AERI errors Change-Id: I6c52bdd6e48810bff2f17986fc05df465ce7902e Reviewed-on: https://git.eclipse.org/r/115076 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2018-01-06Bug 529469 - NullPointerException in PerfCore.reportJeff Johnston1-6/+16
- fix PerfCore getPerfVersion() to not rely on finding "perf version" in the string which won't work on systems that aren't using English Change-Id: I6356a70d6de2c3145e2038cfab6e72f4d04128bd Reviewed-on: https://git.eclipse.org/r/115022 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-12-21Still more OSIO Mylyn Core Rest testsJeff Johnston24-14/+847
- add tests for task links, task labels, workitems, task update, new tasks, new labels, new links, assignees, auth user, task comments, task creator, and new comments - modify post/update tasks as appropriate to allow use of TypeAdapter to get the json output - add new AllTests class Change-Id: I569823a183ebdd1151d15d5bebe04946284e0286 Reviewed-on: https://git.eclipse.org/r/114525 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-12-14Bug 528271 - Use RedDeer 2.0.1 Final in integration tests for DockerJosef Kopriva6-28/+29
Tooling and update target platform Change-Id: I179b29c9a6f0ae788b69e142dadb6b0853709e84 Signed-off-by: Josef Kopriva <jkopriva@redhat.com> Reviewed-on: https://git.eclipse.org/r/113012 Tested-by: Hudson CI Reviewed-by: Roland Grunberg <rgrunber@redhat.com>
2017-12-08More OSIO Rest Mylyn test changesJeff Johnston30-1234/+872
- refactor OSIORestUser class into Identity class and move to proper package - move initSpaces() method from test classes into new TestUtils class - refactor OSIORestWorkItem to WorkItem class and move to proper package - remove unused OSIORestGetUsers class - create new TestData class to pass and return data back from TestUtils.initSpaces method - change all callers appropriately - add tests for task creator, get task data, get task labels, and get user Change-Id: I29d50cc7f48269bdcf548d6f8fbe0868b5ae9d8b Reviewed-on: https://git.eclipse.org/r/113037 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-12-07Add test for OSIO Mylyn task commentsJeff Johnston3-0/+377
- add new TestOSIORestGetTaskComments class - modify OSIORestGetTaskComments to allow tests to run json parser - add new comments.data json file Change-Id: Ife1a91a0c6d44c6805d5c0a5931b97d2bdae79ec Reviewed-on: https://git.eclipse.org/r/112982 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-12-07Update maven pluginsAlexander Kurtakov1-2/+2
Javadoc and jacoco latest versions. Change-Id: I77086aa05614554a52b04e633212556264e16fb1 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/112986 Tested-by: Hudson CI
2017-12-07Add test for Mylyn OSIORestGetTaskAssigneeJeff Johnston3-0/+324
- modify OSIORestGetTaskAssignee to allow running json parse by test routine - add new TestOSIORestGetTaskAssignee and assignee.data Change-Id: Ic7b06cfec3ab77ac7079cb1e7b8b2da07c0f5919 Reviewed-on: https://git.eclipse.org/r/112981 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-12-07Add OSIO Mylyn core tests plug-inJeff Johnston27-51/+2495
- modify OSIORestGetSingleTask class to use client's requestProvider instead of calling requests directly - add new TestOSIORestClient test - add new TestOSIORestGetSingleTask test - add new TestOSIORestGetAuthUser test - add a json directory to test json parsing of various classes Change-Id: Id2b7b109a3ef8159947a14e3c51262d36bbd6f73 Reviewed-on: https://git.eclipse.org/r/112961 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-12-01Bug 528036 - Libhover not offering content assist with latest CDTJeff Johnston1-0/+4
- fix LibHover class to initialize during construction Change-Id: I0181547221cc719fc41c42b0f4e657104e9ed844 Reviewed-on: https://git.eclipse.org/r/112729 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-30Add testing support to OSIO Mylyn Rest CoreJeff Johnston96-134/+882
- remove unused OSIOLoginRequest class - add new IOSIORestRequestProvider interface to allow testing to supply mock-ups of http requests - add new DefaultOSIORestRequestProvider class to implement the default request provider using actual http rest requests - modify OSIORestClient to use IOSIORestRequestProvider to do requests - modify OSIORestClient constructor to create a DefaultOSIORestRequestProvider class and add a new constructor that takes an IOSIORestRequestProvider input - change all the rest object classes (such as Space, Area), to allow setting via a constructor so a test scenario can set up values to pass back - fix up Java warnings in various classes - remove the Activity section from the Mylyn Task editor Change-Id: I020a2942267f1c97f1b553f1f10717cd671084e7 Reviewed-on: https://git.eclipse.org/r/112677 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-29OSIO Mylyn improvementsJeff Johnston11-63/+267
- fix regression for New Task caused by looking for space id in OSIORestClient postTaskData which doesn't exist for a new task - fix UI look and feel for the Repository query page by adding our own RepositoryQueryAttributeEditor class - add token fetch support to OSIORestRequest which will try to get the token provider extension before attempting to use the user-provided token - remove Activity section from the Task editor - fix ordering of work item types by using a TreeMap in Space class - put repository under Tasks category instead of Bugs which doesn't apply here - add org.eclipse.core.resources as dependency to core plug-in Change-Id: I7155e4c152607894c52db0e9d210b3cc8e600390 Reviewed-on: https://git.eclipse.org/r/112588 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-28Bug 526553 - gprof reader failsJeff Johnston1-1/+1
- add check for "aarch64" in GmonDecoder Change-Id: I7a6db24b287e3c7eb2a5b09518bdaaee7420bd1b Reviewed-on: https://git.eclipse.org/r/112487 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-24Bug 525915 - terminal produced by "Execute Shell" times out after 30 secondsJeff Johnston1-2/+5
- point Linux Tools target file to repo containing upstream patch back-ported to 6.1.1 (6.1.1a) Change-Id: If6c94740e330038312391b5982b4c45d9c449fbf Reviewed-on: https://git.eclipse.org/r/112272 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-24Fix some more issues with OSIO Rest ConnectorJeff Johnston10-15/+87
- fix regression with query page no longer filling in any fields - make sure only space and assignee fields are filled in a query page by default and this should also occur if the space field is unselected - make all query fields dependent on Space, but set a default option for assignees field being the current username in OSIORestTaskAttributeMapper - add new userName field to OSIORestConfiguration constructor and add new getUserName field to fetch it - make assignees field in OSIORestTaskSchema dependent on SPACE - do the same in OSIORestSearchQueryPageSchema - fix NLS messages in RepositoryQuerySchemaPage - add a mapping for work item status in Space class (set to default values for the time-being) Change-Id: I952613a076a94bbfeb59a0478b060852b92337ac Reviewed-on: https://git.eclipse.org/r/112134 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-21Fix OSIO Rest Mylyn connector problems with external space idsJeff Johnston2-56/+75
- add new getSpaceById() method to OSIORestClient which will retrieve external spaces if needed and populate their internal values - fix any space calculations in OSIORestClient to use new getSpaceById method - also fix the Add Link editor to not offer the current work item in the list of work items to link to Change-Id: I6670141d09f2a8ed493d4b4ad9e519e5375383f2 Reviewed-on: https://git.eclipse.org/r/112017 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-21Fix UI for OSIO Mylyn Rest Connector Attributes pageJeff Johnston9-28/+458
- add new OSIORestTaskEditorAttributePart to replace Mylyn's TaskEditorAttributePart by extending it - modify OSIORestTaskEditorPage to remove the default attribute page part and replace it with OSIORestTaskEditorAttributePart which has more reasonable values for column and label widths - fix OSIORestClient postTaskData to get the correct space and not search by name - add new editor constants to IOSIORestConstants - add empty/null checks for area and iteration values for OSIORestPatchUpdateTask - add some backtraces for errors for future usage Change-Id: I62245a48cb5037c4513e0f9b25568af8d836bbb7 Reviewed-on: https://git.eclipse.org/r/111940 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-20Add Link/Label editing support to OSIO Rest Mylyn ConnectorJeff Johnston23-74/+913
- add new classes: LinkResponse, OSIOAddLinksAttributeEditor, OSIORestDeleteLink, OSIORestDeleteRequest, OSIORestPostNewLink, WorkItemResponse - add new editor constants to IOSIORestConstants - modify OSIOLabelAttributeEditor - add new methods to OSIORestClient to fetch all workitems for a space and to get the link types for a space - fix OSIORestConfiguration to not use getSpaceByName when a work item is for an external space - fix OSIORestGetTaskLinks to properly use reverse name and target workitem name - modify OSIORestGetTaskData and OSIORestGetSingleTaskData to store the spaceId into a new SPACE_ID attribute - add label options to the LABEL field - add new Link editor to OSIORestTaskEditorPage - add new fields to OSIORestTaskSchema Change-Id: Ie4be9a6906b8f99c7f02ec5264ff583bba245bd7 Reviewed-on: https://git.eclipse.org/r/111852 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-14Add OSIO Label support to OSIO Rest ConnectorJeff Johnston18-11/+698
- add new Labelxxxx classes to support Label data - modify OSIORestGetTaskData and OSIORestGetSingleTaskData classes to read "labels" relationship - add new OSIOLabelAttributeEditor for showing labels in the Task editor and allowing a user to add a label to a work item and to select labels for removal similar to how assignees works - add new OSIORestPostNewLabelTask to create a new label for a space (there is no corresponding delete function defined by the fabric-8 design at present) - add support in OSIORestPatchUpdateTask to handle new and removed labels; for new labels check to see if the label exists in the space and if not, create it first - add labels to space relationships and also add a Map of all labels for the space - add support in OSIORestClient to load all labels for a space and use these values as suggestions for the Add Label field in the Task editor Change-Id: I4b71b62454904acf99ee054dd34730bfa46eab02 Reviewed-on: https://git.eclipse.org/r/111598 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-10Bug 527138 - Starting gdbserver from CDT sometimes stalls indefinitelyJeff Johnston1-6/+32
- fix RunConsole.attachToTerminal to verify that any finishDate is not before the start date - also add a pause before attempting to attach as well as an additional check to ensure that the Container is running - add a log of any error that occurs and notify all console listeners with a zero-length string that there will be no more output - add similar logic to attachToConsole except for the console listener stuff which isn't applicable Change-Id: Idc091b24c071228d2fdb4592d3595ba483297a5d Reviewed-on: https://git.eclipse.org/r/111410 Tested-by: Hudson CI Reviewed-by: Jeff Johnston <jjohnstn@redhat.com>
2017-11-10containers: Remove AbstractPerspective test binding.Alexander Kurtakov2-61/+2
Use RedDeer one directly. Change-Id: I18c7ed3c1b23a6a3ee226a43783fc9be5ace4bc7 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/111371 Tested-by: Hudson CI
2017-11-10containers: Remove Abstract/PackageExplorer RedDeer components.Alexander Kurtakov3-243/+2
Use PackageExplorerPart from RedDeer directly. Change-Id: Id7a2cd71698caf37f1399311bc67e8d0c363ab42 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/111369 Tested-by: Hudson CI
2017-11-10container: Remove internal BrowserView.Alexander Kurtakov8-233/+19
Use RedDeer's WebBrowserView instead. Change-Id: I178294e70cbc96cfd237c77b1abd6e03f1b07a17 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/111360 Tested-by: Hudson CI

Back to the top