Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 92019 Details for
Bug 142823
Remove import and export from Correlations pop-up
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
Patch file
tptp_patch_bugzilla142823_20080310.txt (text/plain), 1.63 KB, created by
Yasuhisa Gotoh
on 2008-03-10 06:13:56 EDT
(
hide
)
Description:
Patch file
Filename:
MIME Type:
Creator:
Yasuhisa Gotoh
Created:
2008-03-10 06:13:56 EDT
Size:
1.63 KB
patch
obsolete
>Index: src/org/eclipse/tptp/platform/log/views/internal/navigator/LogNavigatorActionGroup.java >=================================================================== >RCS file: /cvsroot/tptp/platform/org.eclipse.tptp.platform.log.views/src/org/eclipse/tptp/platform/log/views/internal/navigator/LogNavigatorActionGroup.java,v >retrieving revision 1.22 >diff -u -r1.22 LogNavigatorActionGroup.java >--- src/org/eclipse/tptp/platform/log/views/internal/navigator/LogNavigatorActionGroup.java 31 Jan 2008 02:25:11 -0000 1.22 >+++ src/org/eclipse/tptp/platform/log/views/internal/navigator/LogNavigatorActionGroup.java 10 Mar 2008 10:11:05 -0000 >@@ -326,8 +326,26 @@ > * As part of the feature 156527 a new extension point org.eclipse.tptp.platform.common.ui\schema\NavigatorActions.exsd was defined for exploiters to contribute import/export log, sdb actions > > */ >- contributeImportActions(menu); >- contributeExportActions(menu); >+ // Bug 142823 >+ // Do not add import and export menus for correlation folder and items >+ boolean handleActions = true; >+ if (sel instanceof LogicalFolder) { >+ LogicalFolder folder = (LogicalFolder) sel; >+ if (folder.getParent() == null) { >+ String name = folder.getName(); >+ if (name.equals(CommonLTAMessages.LOGN_CORFLD)) { >+ handleActions = false; >+ } >+ } >+ } else if (sel instanceof CorrelationContainerProxy) { >+ handleActions = false; >+ } >+ >+ if (handleActions) { >+ contributeImportActions(menu); >+ contributeExportActions(menu); >+ } >+ > contributeAnalyzeActions(menu); > > openReportAction.selectionChanged((IStructuredSelection)getContext().getSelection());
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 142823
:
52794
|
92019
|
92100
|
92101
|
92112