Skip to main content
summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2015-12-02Bug 483477 - Run "Fix Copyrights" on all plug-ins of platform.uaI20151213-2000I20151209-2300I20151209-2000I20151209-0800I20151208-2000I20151208-0800I20151207-2000I20151207-0800I20151206-2000I20151203-1230I20151203-0800Lars Vogel453-450/+510
Change-Id: Id7609d660eace6b8f9ac8a2f8bc02ce02b685842 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-12-02Bug 483443 - Remove unnecessary whitespace from org.eclipse.help.baseLars Vogel3-14/+52
Change-Id: Idd6b85462fbeb5c7308dd276c709405233dc2b6d Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-12-02Bug 483445 - Update org.eclipse.help.base with annotationsLars Vogel92-9/+356
Change-Id: I5bf9e2ff949fd2fad38a00b04ce1068a9d268177 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-12-02Bug 483441 - Remove unnecessary whitespace from org.eclipse.help Lars Vogel111-699/+794
Change-Id: I3c47eb7ccdfe22a0b004ea0d4a5dd85e2c972b41 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-12-02Bug 483365 - Update org.eclipse.help to Java 1.7 to use annotationsLars Vogel49-16/+142
Only BREE update, no annotations. Change-Id: Iaa5182e4142c9808bfde2c1c11e4cc5faa172e0b Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-12-01Bug 467385 - Update org.eclipse.help.base to Java 1.7I20151201-1100Lars Vogel4-15/+15
Change-Id: I08f8722a6f98be87fef8a9fe191f1fbfae430e7e Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-11-19Recover doc for 'execute' intro action: commit e473e78bI20151201-0800I20151124-1000I20151124-0800Brian de Alwis2-2/+13
modified the generated HTML rather than updating the source schema description. Change-Id: I4d29407856862585d682a24a1625c884457224d2
2015-11-05Bug 481493 - Remove trailing white spaces in org.eclipse.ui.cheatsheetsI20151117-0800I20151110-0800Lars Vogel120-1198/+1550
Change-Id: Id17235234b209153b9619865446966777dbb7697 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-11-05Bug 479210 - Use annotations in org.eclipse.ui.cheatsheets and removeLars Vogel14-162/+6
Non-Javadoc Change-Id: Ic268c5e50395e768fb9e866797dd80f136c43a14 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-10-08Bug 479210 - Use annotations in org.eclipse.ui.cheatsheets and removeI20151103-0800I20151029-1100I20151028-2000I20151028-0800I20151027-2000I20151027-0800I20151026-2000I20151026-0800I20151025-2000I20151020-0800I20151014-1100I20151013-0800Lars Vogel70-12/+291
Non-Javadoc Change-Id: Ie404da2ce4b92dbbe730059cc10ed2ce57ddd5f0 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-10-08Bug 479209 - Update org.eclipse.ui.cheatsheets to Java 8Lars Vogel4-9/+25
Change-Id: I7a323e978fab1277dcf8bb609623dccbd70a276d Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-10-07Bug 479212 - Remove incorrect entries Java versions from MANIFEST.MF ofLars Vogel1-3/+1
org.eclipse.help Change-Id: I19de8a6f9ed01a0e01a37256a3f9012a886325aa Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-09-16Bug 443174: Make default skipTests to falseI20151006-0800I20150929-0800I20150922-0800I20150916-2000I20150916-0800Mickael Istria3-0/+12
Plugins that cannot run exclude themselves from execution, but default behaviour when not overriden is to run the tests, as Maven best practices and common usage dictates. Signed-off-by: Mickael Istria <mistria@redhat.com>
2015-08-19Bug 471835 - Build succeeds, even when "old" parent pom is referred toI20150915-2000I20150915-0800I20150914-2000I20150914-1545I20150914-1130I20150914-0800I20150913-2000I20150908-0800I20150901-0800I20150825-0800Lars Vogel1-13/+25
Change-Id: I5ca66c19d7ec4e797553b2e31cd9480164b00450 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-08-11Revert "Revert "Bug 474070 - Replace new Boolean with Boolean.valueOf""I20150818-0800I20150811-1400Lars Vogel3-6/+9
This reverts commit c2a47e222eadf0edfc5af0f1f0918e41e4015b15. Change-Id: I459446ae5f29ea06dcda26f9c86a758db71b0f05
2015-08-04Revert "Bug 474070 - Replace new Boolean with Boolean.valueOf"I20150805-2000I20150805-0800I20150804-2000Brian de Alwis3-9/+6
This reverts commit abe0ea1fcdc0b40864ec95993f4e1d887265ed2c. Change-Id: I93675d849ce41fb0768bf178c1b63f064fb0d654
2015-08-04Bug 474070 - Replace new Boolean with Boolean.valueOfAlex Blewitt3-6/+9
Using `new Boolean()` results in the creation of a new object on the heap, when the flyweight `Boolean.TRUE` and `Boolean.FALSE` are available. Java 1.4 added a `Boolean.valueOf()` which can be used in place of `new Boolean()` but which will use the existing flyweight values instead. Globally change `new Boolean(...)` to `Boolean.valueOf(...)` and replace `new Boolean(...).booleanValue()` with `Boolean.parseBoolean(...)` Bug: 474070 Change-Id: I673669144881f738006b8567e99e5760e851ad07 Signed-off-by: Alex Blewitt <alex.blewitt@gmail.com>
2015-07-03Bug 469765 - Prep for 4.6 (Neon) and 4.5 (Mars) maintenance builds - update ↵I20150804-0800I20150803-2000I20150803-0800I20150802-2000I20150728-0800I20150721-0800I20150714-0800I20150707-0800Markus Keller11-13/+13
parent poms for 4.6
2015-05-28Bug 468364: Add test for generated extension point and API docsR4_5I20150603-2000I20150602-2000I20150601-2000I20150531-2000I20150529-2000Markus Keller2-18/+63
Try to find schema/*.exsd files in source bundles. This won't work locally when run with PDE JUnit or with tycho-surefire, but it might work in the official (Ant-driven) test run.
2015-05-27Bug 468364: Add test for generated extension point and API docsI20150528-0700I20150527-2010Markus Keller1-11/+15
Don't skip extension points with missing schema/*.exsd file
2015-05-26Bug 468364: Add test for generated extension point and API docsI20150526-2010Markus Keller2-4/+276
2015-04-25Bug 465289: support servlet 3.1, update javax.servlet.* importsI20150525-2000I20150524-2000I20150522-2000I20150521-1715I20150521-1400I20150521-1100I20150520-2000I20150519-2000I20150519-1000I20150519-0030I20150518-2000I20150517-2000I20150516-1500I20150515-2000I20150514-2000I20150514-1000I20150513-2000I20150512-2100I20150512-2000I20150511-2130I20150511-2000I20150510-2000I20150509-1500I20150508-2000I20150507-2000I20150506-2000I20150505-2000I20150504-2000I20150503-2000I20150502-1500I20150501-2000I20150430-1445I20150429-2000I20150429-1330I20150429-1230I20150429-1030I20150429-0800I20150428-2000Tomasz Zarna3-6/+6
Change-Id: If749e840bbfc42f385f751fafb9a78d40e7fcd50 Signed-off-by: Tomasz Zarna <tomasz.zarna@tasktop.com>
2015-04-10Bug 429546 - [Browsers] ↵I20150428-0800I20150428-0100I20150427-2000I20150427-0800I20150426-2000I20150422-1000I20150421-0800I20150414-1400I20150414-0800Brian de Alwis1-5/+34
org.eclipse.ui.internal.browser.ExternalBrowserInstance.openUrl() which also has "-ingognito" does a toLower on URL string; Partially revert commit 301ecd46d78e8d0a13f2161ba93d6812edb94c9e as WebBrowserUtil#createParameterArray() returns an array not a String. Restore the original tests since WebBrowserUtil#createParameterString() has been restored, and add new tests for #createParameterArray() Change-Id: I26996cdcde9b57138cc53edb47a7cc52fd25519c
2015-04-08Added XML declarationI20150408-1100Dani Megert1-1/+2
2015-04-08Bug 429546 - [Browsers]Lars Vogel1-5/+5
org.eclipse.ui.internal.browser.ExternalBrowserInstance.openUrl() which also has "-ingognito" does a toLower on URL string; Change-Id: I8509007f29e9c3a1f339afe90051d9049f1e9e20 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-04-02Touching for bug 463085: .api_description missing for org.eclipse.help.baseI20150407-0800Dani Megert1-0/+1
2015-04-01Revert "Bug 463085: .api_description missing for org.eclipse.help.base"Dani Megert1-9/+1
This reverts commit 6fde519fa43f0bf6528b4af944aabb5f2cf13c5d.
2015-04-01Bug 463085: .api_description missing for org.eclipse.help.baseDavid Williams1-1/+9
Change-Id: Id920a7124805fba48e0b22273887ca7c0e88aa96 Signed-off-by: David Williams <david_williams@us.ibm.com>
2015-03-27Bug 461059: Prevent dirt in workspaceI20150331-0800Markus Keller2-6/+5
2015-03-27Revert ua.tests part of Bug 461059: Prevent dirt in workspaceMarkus Keller2-4/+7
2015-03-25Bug 461059 - Prevent dirt in workspaceAlexander Kurtakov4-13/+8
Make o.e.ua.tests and o.e.ui.intro.universal don't use inner jars. There is no real need for them. Intro.universal still works fine and all tests in ua.tests work that way. Change-Id: I7a72f16cb67ec32781129bfe5d5a20c421465884 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-03-17Revert "Bug 461059 - Prevent dirt in workspace"I20150324-0800I20150320-0800I20150320-0030I20150319-1640I20150319-1430I20150318-2000I20150318-1300I20150318-0800I20150317-2000I20150317-1130Lars Vogel4-8/+13
This reverts commit cd4c1939d3f8a1052fb4240e22bb5479528d5fc1. Change-Id: I303e1396486ba332bd60f936ef7a35b8f635b456
2015-03-16Bug 461059 - Prevent dirt in workspaceI20150317-0800I20150316-2000Alexander Kurtakov1-0/+1
Ignore org.eclipse.help.base/ant_tasks which is purely build artifact so no need to be tracked by git. Change-Id: Icf125849008d2678a264a300f8525ec585b318ef Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-03-13Bug 461059 - Prevent dirt in workspaceAlexander Kurtakov4-13/+8
Make o.e.ua.tests and o.e.ui.intro.universal don't use inner jars. There is no real need for them. Intro.universal still works fine and all tests in ua.tests work that way. Change-Id: Ice9010360554e9239e92a98b160ba5e817bec21e Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-03-11fixed type safety problemsI20150316-0800I20150315-2000Markus Keller24-62/+88
2015-02-26Bug 460858 - Cleanup UA bundlesI20150311-1300I20150310-0800I20150305-1200I20150303-0800Alexander Kurtakov1-2/+3
Remove useless casts. Change-Id: Ie7ece39eb79f5f0e6bd3a4b5e9081a5f9016eed7 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-02-26Bug 364324 - [Help][Search] Model result categories ordering after TOCHolger Voormann1-0/+32
ordering Problem: By default the search result categories are on a par with the top-level books (TOCs), but the order of the TOCs and the order of the result categories can differ. For example, if you search for "subsystem" (http://eclip.se/1r) and "Show result categories" is enabled, then the category "Workbench User Guide" is shown in the search result list at the bottom, in contrast to the table of contents where the "Workbench User Guide" book is shown at the top. From the user perspective this is confusing. Caused by: Both the books in the Contents tab and the categories in the Search Results tab are by default alphabetically ordered. The table of content book order can be changed via the Help Data file (see http://eclip.se/1s), for instance in the Eclipse IDE the "Workbench User Guide" is shown at the top. In contrast, the search results category order cannot be changed. Solution: The search results category order should follow the table of content book order. Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=364324 Change-Id: I04a3eb4df1b75db5459dbafb4e4c9745c00d548a Signed-off-by: Holger Voormann <eclipse@voormann.de>
2015-02-26Bug 460787 - Do not use deprecated Lucene 3.5 methods/classesAlexander Kurtakov5-20/+38
Moves from deprecated methods/classes to newer ones by simply redoing what the deprecated methods were doing in Lucene 3.5 itself using the newer APIs. This is preliminalry work for updating to Lucene 4.x/5.x where these deprecated ones are actually removed. Change-Id: I96937e00a251630a6927130efb88cc1652080cb9 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-02-26Bug 460950 - Fix trailing whitespace issues in org.eclipse.help.webappLars Vogel96-1248/+1307
Change-Id: I8296587716f8983a4e03ef10c64cfe8ce2b8f949 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-02-26Bug 460858 - Cleanup UA bundlesAlexander Kurtakov7-19/+31
Generify getAdapter calls. Change-Id: I7f80323413ef6110f0a2ac395027228162414771 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-02-26Bug 460858 - Cleanup UA bundlesAlexander Kurtakov1-1/+2
Don't use deprecated junit.framework.Assert, use org.junit.Assert instead. Change-Id: I1615de3d3c5f6a2ee84efea5aa7f02498ad8c8f1 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-02-26Bug 460924 - Remove Whitespace issues in org.eclipse.ua.tests.docLars Vogel11-83/+83
Change-Id: I620f18ec9a34d9af650cfa9ce1375585228fa6ec Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-02-26Bug 460858 - Cleanup UA bundlesAlexander Kurtakov1-6/+0
Remove unused imports. Change-Id: Idc54638b52de420d382ba7c947892f74597f8a25 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
2015-02-26Bug 460916 - Clean whitespace issues in org.eclipse.help.base Lars Vogel130-1005/+1063
Change-Id: I59ae187eb170a8f452e8afb7bfff8db84f4da29d Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
2015-02-20Bug 394739 - Remove org.eclipse.core.runtime.compatibility* bundlesI20150224-0800Mat Booth1-8/+1
Change-Id: Ic4c78bf0e491d58b67da968eb84c732690309e92 Signed-off-by: Mat Booth <mat.booth@redhat.com>
2015-02-04Fixed bug 409081: BIDI 4.2.2 : Welcome Page isn't correctly mirroredI20150217-0800I20150210-0800Alia Naguib1-5/+40
Signed-off-by: Alia Naguib <alia@eg.ibm.com>
2015-02-04Revert "Fixed bug 409081: BIDI 4.2.2 : Welcome Page isn't correctly mirrored"Dani Megert1-40/+5
This reverts commit 33440d4b0778e7d597cd955668975bf7609cfef5.
2015-02-04Fixed bug 409081: BIDI 4.2.2 : Welcome Page isn't correctly mirroredMariam El-Tantawi1-5/+40
Signed-off-by: Mariam El-Tantawi <mariamel@eg.ibm.com>
2015-01-15Move to JavaSE-1.6 (triggered by bug 457396)I20150203-1300I20150203-0800I20150129-1830I20150128-2000I20150128-0900I20150127-2000I20150127-0900I20150126-2000I20150126-0930I20150126-0800I20150125-2000I20150120-0800I20150116-1000Markus Keller244-909/+1503
2015-01-14Bug 457396: Build of "webapp" fails due to changes in ↵Markus Keller11-63/+64
org.apache.jasper.glassfish

Back to the top