diff options
31 files changed, 72 insertions, 66 deletions
diff --git a/org.eclipse.jubula.app.autrun/src/org/eclipse/jubula/app/autrun/AutRunApplication.java b/org.eclipse.jubula.app.autrun/src/org/eclipse/jubula/app/autrun/AutRunApplication.java index 444a27004..bfefc5531 100644 --- a/org.eclipse.jubula.app.autrun/src/org/eclipse/jubula/app/autrun/AutRunApplication.java +++ b/org.eclipse.jubula.app.autrun/src/org/eclipse/jubula/app/autrun/AutRunApplication.java @@ -54,7 +54,7 @@ import org.slf4j.LoggerFactory; * The <i>osgi.framework.activeThreadType</i> entry can actually be * anything other than "normal", but it must be present. This requirement exists * since changing org.eclipse.equinox.launcher from 1.1.0 to 1.2.0, and was the - * cause of bug 375931. + * cause of bug http://eclip.se/375931. * * @author BREDEX GmbH * @created Dec 9, 2009 diff --git a/org.eclipse.jubula.app/src/org/eclipse/jubula/app/Launcher.java b/org.eclipse.jubula.app/src/org/eclipse/jubula/app/Launcher.java index ad80fbbb9..6cabb8874 100644 --- a/org.eclipse.jubula.app/src/org/eclipse/jubula/app/Launcher.java +++ b/org.eclipse.jubula.app/src/org/eclipse/jubula/app/Launcher.java @@ -111,7 +111,7 @@ public class Launcher implements IApplication { // allowed to fix it doForce = true; - // 70576: don't accept empty input + // http://eclip.se/70576: don't accept empty input if (instancePath.length() <= 0) { MessageDialog.openError(shell, IDEWorkbenchMessages.IDEApplication_workspaceEmptyTitle, @@ -127,7 +127,7 @@ public class Launcher implements IApplication { try { // Don't use File.toURL() since it adds a leading slash that Platform does not - // handle properly. See bug 54081 for more details. + // handle properly. See bug http://eclip.se/54081 for more details. String path = workspace.getAbsolutePath().replace( File.separatorChar, '/'); url = new URL("file", null, path); //$NON-NLS-1$ @@ -227,7 +227,7 @@ public class Launcher implements IApplication { int returnCode = PlatformUI.createAndRunWorkbench(display, getWorkbenchAdvisor()); - // the workbench doesn't support relaunch yet (bug 61809) so + // the workbench doesn't support relaunch yet (bug http://eclip.se/61809) so // for now restart is used, and exit data properties are checked // here to substitute in the relaunch return code if needed if (returnCode != PlatformUI.RETURN_RESTART) { diff --git a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlImporter.java b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlImporter.java index 7103954ff..2007d958c 100644 --- a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlImporter.java +++ b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlImporter.java @@ -1778,7 +1778,7 @@ class XmlImporter { int tdRow = 0; for (TestDataRow rowXml : testData.getRowList()) { if (rowXml.getDataList().isEmpty()) { - // Bug 337215 may have caused Test Steps in exported Projects + // Bug http://eclip.se/337215 may have caused Test Steps in exported Projects // to incorrectly contain multiple Data Sets. These erroneous // Data Sets seem to always be empty, so ignore empty Data Sets // for imported Test Steps. diff --git a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlStorage.java b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlStorage.java index 06875430e..73fa32cc7 100644 --- a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlStorage.java +++ b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/XmlStorage.java @@ -183,7 +183,7 @@ public class XmlStorage { genOpts.setSaveInner(); genOpts.setSaveAggressiveNamespaces(); genOpts.setUseDefaultNamespace(); - // Don't make use of pretty print due to 395788 + // Don't make use of pretty print due to http://eclip.se/395788 // genOpts.setSavePrettyPrint(); ContentDocument contentDoc = ContentDocument.Factory diff --git a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/converter/RefTSNameConverter.java b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/converter/RefTSNameConverter.java index f28f4edab..8f6c2e1f7 100644 --- a/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/converter/RefTSNameConverter.java +++ b/org.eclipse.jubula.client.archive/src/org/eclipse/jubula/client/archive/converter/RefTSNameConverter.java @@ -26,7 +26,7 @@ import org.eclipse.jubula.client.archive.schema.TestSuite; * This converter deletes the name from {@link RefTestSuite} if it is the same * name as from the {@link TestSuite}. The converter is necessary since we have * copied the name from {@link TestSuite}s before we fixed - * http://bugs.eclipse.org/451113 + * http://eclip.se/451113 * * @author BREDEX GmbH */ diff --git a/org.eclipse.jubula.client.core/META-INF/persistence.xml b/org.eclipse.jubula.client.core/META-INF/persistence.xml index 54c582ec2..82e2e3792 100644 --- a/org.eclipse.jubula.client.core/META-INF/persistence.xml +++ b/org.eclipse.jubula.client.core/META-INF/persistence.xml @@ -20,11 +20,11 @@ <property name="eclipselink.weaving.fetchgroups" value="false" /> <property name="eclipselink.weaving.lazy" value="true" /> <!-- disabled second level cache, as this may otherwise lead to some strange - behavior: https://bugs.eclipse.org/bugs/show_bug.cgi?id=339069 --> + behavior: http://eclip.se/339069 --> <property name="eclipselink.cache.shared.default" value="false" /> <property name="eclipselink.session.customizer" value="org.eclipse.jubula.client.core.persistence.SessionCustomizer" />
- <!-- use the "old" JPQL parser due to https://bugs.eclipse.org/bugs/show_bug.cgi?id=379221 -->
+ <!-- use the "old" JPQL parser due to http://eclip.se/379221 -->
<property name="eclipselink.jpql.parser"
value="org.eclipse.persistence.queries.ANTLRQueryBuilder" /> </properties> diff --git a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/businessprocess/AbstractParamInterfaceBP.java b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/businessprocess/AbstractParamInterfaceBP.java index e349d0a26..8f48939ac 100644 --- a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/businessprocess/AbstractParamInterfaceBP.java +++ b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/businessprocess/AbstractParamInterfaceBP.java @@ -231,7 +231,7 @@ public abstract class AbstractParamInterfaceBP<T> { } // A new converter is instantiated and used here in order to cover - // the corner case described in bug 370718. + // the corner case described in bug http://eclip.se/370718. GuiParamValueConverter newConv = new GuiParamValueConverter( conv.getGuiString(), conv.getCurrentNode(), locale, conv.getDesc(), diff --git a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/PersistenceUtil.java b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/PersistenceUtil.java index 95d3d816e..f0497c5b7 100644 --- a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/PersistenceUtil.java +++ b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/PersistenceUtil.java @@ -93,7 +93,7 @@ public class PersistenceUtil { * Recursively dissociates and deletes all children of the given node. * * Workaround for: - * https://bugs.eclipse.org/bugs/show_bug.cgi?id=347010 + * http://eclip.se/347010 * * Once the aforementioned bug is resolved, this method and all * references to it should be removed. Note that this will also require a diff --git a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/ProjectPM.java b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/ProjectPM.java index f4063528b..5fc20549c 100644 --- a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/ProjectPM.java +++ b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/persistence/ProjectPM.java @@ -817,7 +817,7 @@ public class ProjectPM extends PersistenceManager preloadDataForClass(s, projectIds, "ParamDescriptionPO"); preloadDataForClass(s, projectIds, "TDManagerPO"); - // Special pre-load due to #432394 + // Special pre-load due to http://eclip.se/432394 preloadDistinctDataForClass(s, projectIds, "TestDataCubePO"); preloadDataForClass(s, projectIds, "CapPO"); diff --git a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/utils/Traverser.java b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/utils/Traverser.java index d59a95ed1..d8dc3ab0d 100644 --- a/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/utils/Traverser.java +++ b/org.eclipse.jubula.client.core/src/org/eclipse/jubula/client/core/utils/Traverser.java @@ -787,7 +787,7 @@ public class Traverser { * if this is set to <code>true</code> the retry count of the * EventHandler will be reset, if the EventHandler was * unsuccessful and has reached his max retry count. - * This is necessary for http://bugs.eclipse.org/347275 + * This is necessary for http://eclip.se/347275 * @return the next eventHandler for given eventType */ @SuppressWarnings("unchecked") diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/Plugin.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/Plugin.java index db13c65c5..6d56036fc 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/Plugin.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/Plugin.java @@ -1363,7 +1363,9 @@ public class Plugin extends AbstractUIPlugin implements IProgressConsole { PlatformUI.getWorkbench().getDisplay().syncExec( new Runnable() { public void run() { - // see Bugzilla 72661 and 72771 + // see + // http://eclip.se/72661 and + // http://eclip.se/72771 SearchView sv = (SearchView)Plugin .getView(NewSearchUI.SEARCH_VIEW_ID); if (sv != null) { diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/controllers/ContentAssistCellEditor.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/controllers/ContentAssistCellEditor.java index b6d38de87..e2b533d5e 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/controllers/ContentAssistCellEditor.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/controllers/ContentAssistCellEditor.java @@ -142,7 +142,7 @@ public class ContentAssistCellEditor extends TextCellEditor { // listener // that cancels cell editing on focus lost, even if focus gets lost due // to - // activation of the completion proposal popup. See also bug 58777. + // activation of the completion proposal popup. See also bug http://eclip.se/58777. return false; } diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/editors/ObjectMappingMultiPageEditor.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/editors/ObjectMappingMultiPageEditor.java index 9a1350331..243a7f211 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/editors/ObjectMappingMultiPageEditor.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/editors/ObjectMappingMultiPageEditor.java @@ -1032,7 +1032,7 @@ public class ObjectMappingMultiPageEditor extends MultiPageEditorPart splitViewer.setInput(viewerToInput.get(splitViewer)); splitViewer.setExpandedElements(expandedSplitViewerElements); // Clearing the selection seems to help prevent the behavior - // noted in bug 334269 + // noted in bug http://eclip.se/334269 splitViewer.setSelection(StructuredSelection.EMPTY); } } catch (PartInitException e) { diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/handlers/delete/DeleteTreeItemHandlerOMEditor.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/handlers/delete/DeleteTreeItemHandlerOMEditor.java index b481b458a..c0589f9df 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/handlers/delete/DeleteTreeItemHandlerOMEditor.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/handlers/delete/DeleteTreeItemHandlerOMEditor.java @@ -120,16 +120,18 @@ public class DeleteTreeItemHandlerOMEditor }
/** - * Workaround method for an error that occurs when deleting multiple tiers - * of an Object Mapping Category hierarchy (selecting parent *before* child - * seems to be important). I believe that The fix for EclipseLink's 328040 - * makes this workaround superfluous, so try removing it when moving to - * EclipseLink 2.3.0 or higher. + * Workaround method for an error that occurs when deleting multiple tiers + * of an Object Mapping Category hierarchy (selecting parent *before* child + * seems to be important). I believe that The fix for EclipseLink's + * http://eclip.se/328040 makes this workaround superfluous, so try removing + * it when moving to EclipseLink 2.3.0 or higher. * - * @param category The child to check. May be <code>null</code>, in which - * case <code>false</code> will be returned. - * @param toDelete Objects that are marked for deletion. - * @return <code>true</code> if <code>toDelete</code> contains an ancestor + * @param category + * The child to check. May be <code>null</code>, in which case + * <code>false</code> will be returned. + * @param toDelete + * Objects that are marked for deletion. + * @return <code>true</code> if <code>toDelete</code> contains an ancestor * of <code>category</code>. Otherwise <code>false</code>. */ public static boolean willAncestorBeDeleted( diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/properties/ProjectLanguagePropertyPage.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/properties/ProjectLanguagePropertyPage.java index a63f5e865..36e19f9c7 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/properties/ProjectLanguagePropertyPage.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/properties/ProjectLanguagePropertyPage.java @@ -401,7 +401,7 @@ public class ProjectLanguagePropertyPage extends AbstractProjectPropertyPage { * {@inheritDoc} */ protected void handleAllTwoToOneButtonEvent() { - // Partial fix for bug 373914. Always show a dialog that the + // Partial fix for bug http://eclip.se/373914. Always show a dialog that the // operation is not allowed. MessageDialog.openInformation(getShell(), Messages.CannotRemoveLastProjectDialogTitle, @@ -414,7 +414,7 @@ public class ProjectLanguagePropertyPage extends AbstractProjectPropertyPage { protected void handleSelectionTwoToOneButtonEvent() { String[] selection = m_chooseLists.getListTwo().getSelection(); - // Partial fix for bug 373914. Show a dialog that the + // Partial fix for bug http://eclip.se/373914. Show a dialog that the // operation is not allowed if operation would remove the last // Language in the Project. if (selection.length == m_chooseLists.getListTwo().getItemCount()) { diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/provider/DecoratingCellLabelProvider.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/provider/DecoratingCellLabelProvider.java index 6f63c0970..3f6b27829 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/provider/DecoratingCellLabelProvider.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/provider/DecoratingCellLabelProvider.java @@ -39,7 +39,7 @@ import org.eclipse.swt.graphics.Point; * A decorating label provider is a label provider which combines a nested label * provider and an optional decorator. The decorator decorates the label text, * image, font and colors provided by the nested label provider. - * @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=182216 + * @see http://eclip.se/182216 */ public class DecoratingCellLabelProvider extends CellLabelProvider implements ILabelProvider, IViewerLabelProvider, IColorProvider, IFontProvider, diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/views/dataset/AbstractDataSetPage.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/views/dataset/AbstractDataSetPage.java index 41043ab3b..2ba04907a 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/views/dataset/AbstractDataSetPage.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/views/dataset/AbstractDataSetPage.java @@ -1626,9 +1626,9 @@ public abstract class AbstractDataSetPage extends Page getParamInterfaceObj(), getParamName(), this, SWT.NONE); control.addKeyListener(m_keyListener); control.setFocus(); - // FIXME: see https://bugs.eclipse.org/bugs/show_bug.cgi?id=390800 -// control.addFocusListener(m_focusListener); - // end https://bugs.eclipse.org/bugs/show_bug.cgi?id=390800 + // FIXME: see http://eclip.se/390800 + // control.addFocusListener(m_focusListener); + // end http://eclip.se/390800 control.addListener(SWT.Selection, m_listener); m_oldValue = getRow().getText(getColumn()); TextControlBP.setText(m_oldValue, control); @@ -1667,12 +1667,12 @@ public abstract class AbstractDataSetPage extends Page private void activateEditor() { if (canModify()) { m_editor.setEditor(createEditor()); - // FIXME: see https://bugs.eclipse.org/bugs/show_bug.cgi?id=390800 + // FIXME: see http://eclip.se/390800 Control editorCtrl = m_editor.getEditor(); if ((editorCtrl != null) && !editorCtrl.isDisposed()) { editorCtrl.addFocusListener(m_focusListener); } - // end https://bugs.eclipse.org/bugs/show_bug.cgi?id=390800 + // end http://eclip.se/390800 TextControlBP.selectAll(m_editor.getEditor()); } } diff --git a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/widgets/CompNamePopupTextCellEditor.java b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/widgets/CompNamePopupTextCellEditor.java index 7d4aa0bbf..33b4015eb 100644 --- a/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/widgets/CompNamePopupTextCellEditor.java +++ b/org.eclipse.jubula.client.ui.rcp/src/org/eclipse/jubula/client/ui/rcp/widgets/CompNamePopupTextCellEditor.java @@ -159,7 +159,7 @@ public class CompNamePopupTextCellEditor extends CellEditor { if ((getControl() == null) || getControl().isDisposed()) { return; } - checkSelection(); // see explaination below + checkSelection(); // see explanation below checkDeleteable(); checkSelectable(); } @@ -429,7 +429,7 @@ public class CompNamePopupTextCellEditor extends CellEditor { // Do not apply the editor value in response to an Enter key event // since this can be received from the IME when the intent is -not- // to apply the value. - // See bug 39074 [CellEditors] [DBCS] canna input mode fires bogus event from Text Control + // See bug http://eclip.se/39074 [CellEditors] [DBCS] canna input mode fires bogus event from Text Control // // An exception is made for Ctrl+Enter for multi-line texts, since // a default selection event is not sent in this case. @@ -546,7 +546,8 @@ public class CompNamePopupTextCellEditor extends CellEditor { // focus listener // that cancels cell editing on focus lost, even if focus gets lost // due to - // activation of the completion proposal popup. See also bug 58777. + // activation of the completion proposal popup. See also bug + // http://eclip.se/58777. return false; } }
\ No newline at end of file diff --git a/org.eclipse.jubula.client.ui/src/org/eclipse/jubula/client/ui/views/TestresultSummaryView.java b/org.eclipse.jubula.client.ui/src/org/eclipse/jubula/client/ui/views/TestresultSummaryView.java index b178c1d9d..46daab1e9 100644 --- a/org.eclipse.jubula.client.ui/src/org/eclipse/jubula/client/ui/views/TestresultSummaryView.java +++ b/org.eclipse.jubula.client.ui/src/org/eclipse/jubula/client/ui/views/TestresultSummaryView.java @@ -481,7 +481,7 @@ public class TestresultSummaryView extends ViewPart implements final Menu headerMenu) { /* * Add context menu to header. Similar to the snippets described in: - * https://bugs.eclipse.org/bugs/show_bug.cgi?id=23103 + * http://eclip.se/23103 */ final Table table = tableViewer.getTable(); table.addListener(SWT.MenuDetect, new Listener() { @@ -510,7 +510,7 @@ public class TestresultSummaryView extends ViewPart implements } } }); - // Comment from snippet in https://bugs.eclipse.org/bugs/show_bug.cgi?id=23103 + // Comment from snippet in http://eclip.se/23103 // IMPORTANT: Dispose the menus (only the current menu, set with // setMenu(), will be automatically disposed) table.addListener(SWT.Dispose, new Listener() { diff --git a/org.eclipse.jubula.client.wiki.ui/src/org/eclipse/jubula/client/wiki/ui/views/DescriptionView.java b/org.eclipse.jubula.client.wiki.ui/src/org/eclipse/jubula/client/wiki/ui/views/DescriptionView.java index 0ef498cf1..ff7a48621 100644 --- a/org.eclipse.jubula.client.wiki.ui/src/org/eclipse/jubula/client/wiki/ui/views/DescriptionView.java +++ b/org.eclipse.jubula.client.wiki.ui/src/org/eclipse/jubula/client/wiki/ui/views/DescriptionView.java @@ -89,7 +89,7 @@ public class DescriptionView extends ViewPart implements IDataChangedListener { * taken from * org.eclipse.mylyn.internal.wikitext.ui.editor.MarkupEditor * line 247 and following - * bug 260479: open hyperlinks in a browser + * bug http://eclip.se/260479: open hyperlinks in a browser */ m_browser.addLocationListener(new LocationListener() { public void changed(LocationEvent event) { @@ -100,7 +100,7 @@ public class DescriptionView extends ViewPart implements IDataChangedListener { // if it looks like an absolute URL if (event.location.matches("([a-zA-Z]{3,8})://?.*")) { //$NON-NLS-1$ - // workaround for browser problem (bug 262043) + // workaround for browser problem (bug http://eclip.se/262043) int idxOfSlashHash = event.location.indexOf("/#"); //$NON-NLS-1$ if (idxOfSlashHash != -1) { // allow javascript-based scrolling to work diff --git a/org.eclipse.jubula.examples.app.cmd.controller/.project b/org.eclipse.jubula.examples.app.cmd.controller/.project index 5f12e0f74..05aa6b155 100644 --- a/org.eclipse.jubula.examples.app.cmd.controller/.project +++ b/org.eclipse.jubula.examples.app.cmd.controller/.project @@ -19,18 +19,7 @@ <natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
- </natures> - <filteredResources> - <filter> - <id>1409218333740</id> - <name></name> - <type>10</type> - <matcher> - <id>org.eclipse.ui.ide.multiFilter</id> - <arguments>1.0-projectRelativePath-matches-false-false-target</arguments> - </matcher> - </filter> - </filteredResources>
+ </natures>
<linkedResources>
<link>
<name>.settings</name>
@@ -38,4 +27,15 @@ <locationURI>PARENT-1-PROJECT_LOC/org.eclipse.jubula.project.configuration/settings/1.7</locationURI>
</link>
</linkedResources>
+ <filteredResources>
+ <filter>
+ <id>1409218333740</id>
+ <name></name>
+ <type>10</type>
+ <matcher>
+ <id>org.eclipse.ui.ide.multiFilter</id>
+ <arguments>1.0-projectRelativePath-matches-false-false-target</arguments>
+ </matcher>
+ </filter>
+ </filteredResources>
</projectDescription>
diff --git a/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/implclasses/tree/ExpandCollapseTreeNodeOperation.java b/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/implclasses/tree/ExpandCollapseTreeNodeOperation.java index a0fec76c3..74216181c 100644 --- a/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/implclasses/tree/ExpandCollapseTreeNodeOperation.java +++ b/org.eclipse.jubula.rc.common/src/org/eclipse/jubula/rc/common/implclasses/tree/ExpandCollapseTreeNodeOperation.java @@ -43,7 +43,7 @@ public class ExpandCollapseTreeNodeOperation final AbstractTreeOperationContext<Object, Object> context = getContext(); // only try to expand/collapse the node if it's not a leaf - // this otherwise causes issues like #399042 + // this otherwise causes issues like http://eclip.se/399042 if (!context.isLeaf(treeNode)) { if (isCollapse()) { context.collapseNode(treeNode); diff --git a/org.eclipse.jubula.rc.rcp.e3.site/pom.xml b/org.eclipse.jubula.rc.rcp.e3.site/pom.xml index 7d5ca0f61..16d794b29 100644 --- a/org.eclipse.jubula.rc.rcp.e3.site/pom.xml +++ b/org.eclipse.jubula.rc.rcp.e3.site/pom.xml @@ -30,5 +30,5 @@ <!-- FIXME: Raimar: Filtering of e4 target should be added! @see http://wiki.eclipse.org/Tycho/Target_Platform#Filtering --> <!-- FIXME: Raimar: This site is needed for the e3 target. Perhaps this could be solved in a better way by using bundles instead of features in org.eclipse.jubula.rc.rcp.site/category.xml - @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=378338 --> + @see http://eclip.se/378338 --> </project> diff --git a/org.eclipse.jubula.rc.rcp.e4.site/pom.xml b/org.eclipse.jubula.rc.rcp.e4.site/pom.xml index da27278ad..4ef09b0f2 100644 --- a/org.eclipse.jubula.rc.rcp.e4.site/pom.xml +++ b/org.eclipse.jubula.rc.rcp.e4.site/pom.xml @@ -30,5 +30,5 @@ <!-- FIXME: Raimar: Filtering of e3 target should be added! @see http://wiki.eclipse.org/Tycho/Target_Platform#Filtering --> <!-- FIXME: Raimar: This site is needed for the e4 target. Perhaps this could be solved in a better way by using bundles instead of features in org.eclipse.jubula.rc.rcp.site/category.xml - @see https://bugs.eclipse.org/bugs/show_bug.cgi?id=378338 --> + @see http://eclip.se/378338 --> </project> diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/ClickSwtEventMatcher.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/ClickSwtEventMatcher.java index 262b1b601..201247bf6 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/ClickSwtEventMatcher.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/ClickSwtEventMatcher.java @@ -161,7 +161,7 @@ public class ClickSwtEventMatcher extends DefaultSwtEventMatcher { return true; // We receive no Mouse events on Table and Tree(Table) headers. // This will supposedly be fixed for SWT 3.4. - // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=17871 + // See http://eclip.se/17871 } else if (graphicsComponent instanceof Table && SwtUtils.isMouseCursorInWidget((Widget)graphicsComponent)) { // Assuming that if a Table or Tree was the target component and diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/MoveSwtEventMatcher.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/MoveSwtEventMatcher.java index 2418f2cfe..b5d0ef573 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/MoveSwtEventMatcher.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/MoveSwtEventMatcher.java @@ -50,7 +50,7 @@ public class MoveSwtEventMatcher extends DefaultSwtEventMatcher { return true; // We receive no Mouse events on Table and Tree(Table) headers. // This will supposedly be fixed for SWT 3.4. - // See https://bugs.eclipse.org/bugs/show_bug.cgi?id=17871 + // See http://eclip.se/17871 } else if ((comp instanceof Table || comp instanceof Tree) && SwtUtils.invokeGetWidgetAtCursorLocation() diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/RobotSwtImpl.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/RobotSwtImpl.java index 756f25446..0c5522cde 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/RobotSwtImpl.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/driver/RobotSwtImpl.java @@ -629,7 +629,8 @@ public class RobotSwtImpl implements IRobot { } }); - // adjust Y-location due to issue / bug 353907 + // adjust Y-location due to issue / bug + // http://eclip.se/353907 if (EnvironmentUtils.isMacOS() && graphicsComponent instanceof org.eclipse.swt.widgets.List) { final org.eclipse.swt.widgets.List list = @@ -730,7 +731,7 @@ public class RobotSwtImpl implements IRobot { throws RobotException { Validate.notNull(graphicsComponent, "The graphic component must not be null"); //$NON-NLS-1$ - // Workaround for issue 342718 + // Workaround for issue http://eclip.se/342718 if (EnvironmentUtils.isMacOS() && Character.toLowerCase(character) == WorkaroundUtil.CHAR_B) { SwtApplicationTester impClass = new SwtApplicationTester(); @@ -795,7 +796,7 @@ public class RobotSwtImpl implements IRobot { throw new RobotException(msg, EventFactory.createActionError( TestErrorEvent.INPUT_FAILED)); } - // Workaround for bug 342718 + // Workaround for bug http://eclip.se/342718 if (!(key == WorkaroundUtil.CHAR_9 && EnvironmentUtils.isMacOS())) { confirmer.waitToConfirm(graphicsComponent, matcher); } else { diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/ListAdapter.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/ListAdapter.java index f622f6d0e..299caae34 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/ListAdapter.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/ListAdapter.java @@ -82,7 +82,7 @@ public class ListAdapter extends ControlAdapter implements IListComponent { constraints.y += (numberBelowTop * constraints.height); // explicitly use list relative bounds here - as e.g. on // Mac OS systems list.getClientArea() is not relative - // see bug 353905 + // see bug http://eclip.se/353905 Rectangle actualListBounds = new Rectangle(0, 0, m_list.getClientArea().width, m_list.getClientArea().height); diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/StyledTextAdapter.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/StyledTextAdapter.java index f8418aa68..89798bd8e 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/StyledTextAdapter.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/StyledTextAdapter.java @@ -111,7 +111,7 @@ public class StyledTextAdapter extends ControlAdapter getRobot().keyStroke(getRobot().getSystemModifierSpec() + " A"); //$NON-NLS-1$ } catch (StepExecutionException see) { /*This might happen under certain circumstances e.g. on MacOS X see - bug 342691 */ + bug http://eclip.se/342691 */ log.warn(see); } } diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/TextComponentAdapter.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/TextComponentAdapter.java index 50de4c56f..1b710eb00 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/TextComponentAdapter.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/tester/adapter/TextComponentAdapter.java @@ -103,7 +103,7 @@ public class TextComponentAdapter extends ControlAdapter implements public void selectAll() { final String totalText = getText(); - // fix for https://bxapps.bredex.de/bugzilla/show_bug.cgi?id=201 + // fix for http://bugzilla.bredex.de/201 // The keystroke "command + a" sometimes causes an "a" to be entered // into the text field instead of selecting all text (or having no // effect). @@ -112,7 +112,7 @@ public class TextComponentAdapter extends ControlAdapter implements getRobot().keyStroke(getRobot().getSystemModifierSpec() + " A"); //$NON-NLS-1$ } catch (StepExecutionException see) { /*This might happen under certain circumstances e.g. on MacOS X see - bug 342691 */ + bug http://eclip.se/342691 */ log.warn(see); } } diff --git a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/utils/SwtUtils.java b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/utils/SwtUtils.java index 25f9b3e2a..af409c9c9 100644 --- a/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/utils/SwtUtils.java +++ b/org.eclipse.jubula.rc.swt/src/org/eclipse/jubula/rc/swt/utils/SwtUtils.java @@ -626,7 +626,7 @@ public class SwtUtils { } /* - * BEGIN CODE ADAPTED FROM https://bugs.eclipse.org/bugs/show_bug.cgi?id=38436#c153 + * BEGIN CODE ADAPTED FROM http://eclip.se/38436#c153 */ /*************************** COMMON *****************************/ @@ -1127,7 +1127,7 @@ public class SwtUtils { } /* - * END CODE ADAPTED FROM https://bugs.eclipse.org/bugs/show_bug.cgi?id=38436#c153 + * END CODE ADAPTED FROM http://eclip.se/38436#c153 */ /** |