Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-01-17 | Use lambdas where possibleY20200120-0020I20200120-0445I20200120-0355I20200120-0115I20200119-2330I20200119-1800I20200118-1800I20200117-1800 | Lars Vogel | 3 | -55/+27 | |
Using the batch cleanup operation via Source -> Cleanup -> "Use lambdas where possible" from standard JDT. Change-Id: I609127e1d7267230c8741a155b81e4b004d7ee15 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> | |||||
2019-09-10 | Bug 550396 - Speed up OverviewRuler | Thomas Wolf | 2 | -2/+139 | |
OverviewRuler computed the full pixel height of the full text, which is expensive if the widget doesn't have a fixed line height, for instance when word-wrapping is enabled. However, OverviewRuler is interested in this value only if it is strictly smaller than the height of the editor canvas. Speed up the computation by stopping if the summed pixel height of lines becomes larger than the height of the canvas. Includes of 4.14 version update Change-Id: Iace27158689a4ffb4a345124cfa46cc4c4260f06 Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch> | |||||
2019-06-17 | Remove redundant block | Lars Vogel | 1 | -14/+10 | |
Change-Id: I01d785405a51605a19429bcd9560232530fc51c1 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> | |||||
2019-06-13 | Use jdk 5 for-each loopI20190614-0330I20190613-1800 | Carsten Hammer | 1 | -3/+4 | |
Replace simple uses of Iterator with a corresponding for-each loop. Also add missing braces on loops as necessary. Change-Id: Ibde37d56a7962f432ed771f4a215f5903161bde0 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de> | |||||
2019-06-11 | Use StringBuilder instead of StringBuffer where possible. | Carsten Hammer | 1 | -1/+1 | |
Change-Id: Ifee0c0b2ecbdaad31ea628c4fbe87cec89897012 Signed-off-by: Carsten Hammer <carsten.hammer@t-online.de> | |||||
2019-05-02 | Bug 546828 - Editors based on FileDocumentProvider / | Andrey Loskutov | 3 | -5/+376 | |
TextFileDocumentProvider lock UI on attempt to edit while build is running The change modifies FileDocumentProvider.getValidateStateRule() and DocumentProviderOperation created in TextFileDocumentProvider.validateState() to return non-null rule (referenced IFile) for IFileEditorInput's if the IResourceRuleFactory.validateEditRule() has no rule for us. This prevents UI freeze on attempt to modify a file while build is running. Instead of a freeze, we get a progress dialog with a possibility to cancel the (blocking) attempt to modify the file. Change-Id: I23a6ddab2ca8f31b5ba134301356c34250f5087c Signed-off-by: Andrey Loskutov <loskutov@gmx.de> | |||||
2019-02-12 | Bug 544315 - DocumentProviderRegistry: also try IPath to get extension | Thomas Wolf | 2 | -0/+85 | |
Make getDocumentProvider(IEditorInput) try a little harder by trying to figure out an IPath from the editor input and use the extension of that path, if one can be determined. Change-Id: I6426e0e9fa09b71bd472d5ca545d1333c17323ce Signed-off-by: Thomas Wolf <thomas.wolf@paranor.ch> | |||||
2018-08-21 | Bug 530393 - EPL 2.0 update for platform.text test bundles | Lars Vogel | 10 | -30/+60 | |
Update all sources files except .exsd files, Java pref files and pom files Regex used: git checkout master git reset --hard origin/master git pull find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i 's/Eclipse Public License v1.0/Eclipse Public License 2.0/g' {} + find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)http:\/\/www.eclipse.org\/legal\/epl-v10.html/\1\2https:\/\/www.eclipse.org\/legal\/epl-2.0\/\ \1\ \1\2SPDX-License-Identifier: EPL-2.0/' {} + # Get rid of the All rights reserved find . -type f ! -name "*.exsd" ! -name "org.eclipse.jdt.ui.prefs" ! -name "pom.xml" -exec sed -i -E 's/([[:blank:]]*[^[:blank:]])*([[:blank:]]*)(All rights reserved. )/\1\n\1\2/' {} + Change-Id: Ib0696b0bfadec3d64cdc0064d35fb952e3953055 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> | |||||
2017-02-19 | Bug 320672 - added copyright header for new fileI20170220-2000I20170219-2000 | Andrey Loskutov | 1 | -0/+11 | |
Change-Id: I3d2f4dfbe9d96ff1724bfdee67f8b303427c3029 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> | |||||
2017-02-19 | Bug 320672 - [WorkbenchParts] [Compatibility] SWTException when | Andrey Loskutov | 2 | -1/+119 | |
activating an editor with stale content This is the second part of the fix for bug 320672, the first one is covered by bug 511873. Remember if we are in the middle of the focus state change. During this operation we should not attempt to call updatePartControl() from sanityCheckState() (which is called on part activation) because it can dispose widgets we are currently setting focus to. In theory, this can happen from other protected methods here too, but I'm trying to keep the patch as small as possible because this class is a base class for MANY other text editors. Change-Id: Ibb860eac30986b6ed3a155f809dc58c9db082ff1 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> Also-by: Vasili Gulevich <vasili.gulevich@xored.com> | |||||
2017-01-11 | Bug 510312 - Replace usage of new Integer(int) with Integer.valueOf() in | Lars Vogel | 1 | -1/+1 | |
eclipse.platform.text plug-ins - Part 1 Change-Id: I8cd43f97a0e3d4ea32e11a2b3cf8898b6be3bc5c Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> | |||||
2016-10-22 | Bug 506367 - EditorsTestSuite is leaking state between testsY20161027-1250Y20161027-1000Y20161024-2045Y20161024-1300Y20161024-0700I20161027-0700I20161027-0200I20161026-2000I20161026-1100I20161026-0800I20161025-2000I20161024-2000I20161024-1000I20161024-0410I20161023-2000 | Stefan Xenos | 8 | -77/+114 | |
Wait for the job manager and SWT event queue to be idle before advancing to the next test. Change-Id: I8647ce00680e168d69785ba5d2e3988ac07abaaf Signed-off-by: Stefan Xenos <sxenos@gmail.com> | |||||
2016-09-23 | Bug 482354 - SVN checkout deadlocks Eclipse | Andrey Loskutov | 2 | -1/+397 | |
FileDocumentProvider.refreshFile(IFile) is called from UI thread but in worst case (if the IFile is out-of-sync with file system state) it acquires workspace lock for refreshing the resource state. If at same time any workspace job holding a lock on a parent project will try to use IOConsoleOutputStream.write(String) to report lot of data (> 160000 characters) to the console, the IOConsolePartitioner.streamAppended() call will block forever waiting for queue processed by the (locked) UI thread. Proposed solution: FileDocumentProvider.refreshFile(IFile) should run DocumentProviderOperation in providers runnable context to avoid such deadlocks. In the case the resource tree is locked, a "User Operation is Waiting" progress dialog will be shown, giving the user a chance to resolve the deadlock situation by canceling one of the affected tasks. To be consistent with existing API and to allow clients override the supplied refresh rule, new API is introduced in FileDocumentProvider: protected ISchedulingRule.getRefreshRule(Object element). Default implementation in FileDocumentProvider uses ResourceRuleFactory.refreshRule for given file. Change-Id: Id742d98403cc546fad4a21d25eb18ab7bef48776 Signed-off-by: Andrey Loskutov <loskutov@gmx.de> | |||||
2016-07-08 | Bug 497588 - Remove trailing whitespace from | Lars Vogel | 5 | -11/+11 | |
org.eclipse.ui.editors.tests Change-Id: I488687a56771a9f3d626fccde0b08477312d8369 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com> | |||||
2016-04-04 | Bug 487095: Move test bundles to JUnit 4Y20160407-1000I20160405-0800 | Markus Keller | 1 | -7/+7 | |
- implement JUnitSourceSetup as ExternalResource - clean up test suites - update manifests - use @Rule TestName to access test method names FindReplaceDialogTest: - fix test order - fix wrong @Before tearDown() Change-Id: Ibae60f592ea81dbbf2fab0db8daf64f92301dcdd | |||||
2016-02-05 | Bug 487152: ZoomTest leaks open editor | Markus Keller | 1 | -2/+2 | |
2016-02-05 | Bug 487152 - ZoomTest leaks open editor | Mickael Istria | 1 | -0/+7 | |
Change-Id: I8301639372e26959bf3a6cc9059a84c5ba83071a Signed-off-by: Mickael Istria <mistria@redhat.com> | |||||
2016-02-03 | Bug 487095 - Move test bundles to JUnit 4 | Sopot Cela | 7 | -120/+82 | |
Change-Id: I1c249f6ccc23850c0cf3e992ff7f5805f44b7585 Signed-off-by: Sopot Cela <scela@redhat.com> | |||||
2016-01-20 | Bug 484157: Fix computation of fonts to propage zoom action | Mickael Istria | 2 | -1/+127 | |
Change-Id: I058fff5a7bf3df89b646a15696b8ab79f8eb632d Signed-off-by: Mickael Istria <mistria@redhat.com> | |||||
2015-12-01 | Bug 478673: generify codeI20151201-1100I20151201-0800 | Markus Keller | 2 | -6/+6 | |
2015-12-01 | Bug 478673: remove unused casts | Markus Keller | 2 | -3/+3 | |
2015-12-01 | Bug 478673: added @Override/@Deprecated and removed non-Javadoc boilerplate | Markus Keller | 5 | -18/+14 | |
2015-04-28 | Bug 465684: Allow initial visible region of 0, 0I20150504-2000I20150503-2000I20150502-1500I20150501-2000I20150430-1445I20150429-2000I20150429-1330I20150429-1230I20150429-1030I20150429-0800I20150428-2000 | Jonah Graham | 1 | -1/+37 | |
Change-Id: I8f79dbf19a4ee9994f545865c499974f0644bd5a Signed-off-by: Jonah Graham <jonah@kichwacoders.com> | |||||
2015-02-09 | Remove unnecessary activator bundleI20150210-0800 | Dani Megert | 2 | -48/+9 | |
2015-01-14 | Bug 454488: Test failure due to conflicting marker updaters from ↵ | Sarika Sinha | 2 | -25/+42 | |
EditorTestPlugin Signed-off-by: Sarika Sinha <sarika.sinha@in.ibm.com> | |||||
2014-11-19 | Added missing single quotesI20150106-0800I20141230-0800I20141223-0800I20141216-0800I20141210-2000I20141210-0800I20141209-2000I20141209-1115I20141209-0800I20141208-2000I20141208-0800I20141207-2000I20141202-0800I20141125-0800 | Dani Megert | 1 | -2/+2 | |
2014-11-18 | Fixed bug 440952: Basic Marker Updater should be executed before other ↵ | Sarika Sinha | 4 | -1/+195 | |
contributed markers Signed-off-by: Sarika Sinha <sarika.sinha@in.ibm.com> | |||||
2012-11-08 | Bug 393353: Test failure in EncodingChangeTests on the Hudson Macv20121108-103624 | Markus Keller | 1 | -5/+7 | |
2010-11-01 | Bug 327842: Key bindings broken in editor when showing statusv20101102-0800 | Markus Keller | 1 | -2/+2 | |
2010-10-30 | Bug 327842: Key bindings broken in editor when showing status | Markus Keller | 1 | -3/+3 | |
2008-12-31 | copyright updates | Dani Megert | 4 | -4/+4 | |
2008-09-11 | Removed trailing whitespace and organized the importsv20080909-ascu | Dani Megert | 5 | -51/+53 | |
2008-08-26 | *** empty log message *** | Dani Megert | 1 | -10/+7 | |
2007-11-01 | Set fields to null on teadDown(). | Dani Megert | 1 | -2/+3 | |
2007-05-29 | Updated copyright date. | Dani Megert | 1 | -1/+1 | |
2007-02-19 | Fixed bug 99610: [api] add API to file buffers that allows to specify ↵ | Dani Megert | 1 | -1/+2 | |
whether a file is internal or external | |||||
2005-08-31 | Made test more stable | Dani Megert | 1 | -15/+23 | |
2005-06-17 | Updated copyright date to 2005v20050617-1200 | Dani Megert | 5 | -5/+5 | |
2005-02-25 | Converted from CPL to EPL | Dani Megert | 5 | -21/+21 | |
2004-10-06 | Line Tracker Fix | Dani Megert | 1 | -1/+1 | |
2004-10-04 | Register tests | Dani Megert | 2 | -2/+5 | |
2004-09-27 | Added new tests | Dani Megert | 2 | -0/+298 | |
2004-09-09 | Updated FileBuffers test suite | Kai Maetzel | 1 | -4/+4 | |
2004-08-26 | Removed unused import | Dani Megert | 1 | -3/+7 | |
2004-08-25 | #70934, added SegmentedModeTest | Kai Maetzel | 2 | -0/+98 | |
2004-08-12 | add test for case where old value cannot be determined (not supported by ↵ | Christof Marti | 1 | -2/+21 | |
current implementation) | |||||
2004-07-27 | Added org.eclipse.ui.workbench.texteditor and org.eclipse.ui.editors tests ↵ | Dani Megert | 1 | -2/+2 | |
to build | |||||
2004-07-12 | Fix Bug 69419: [implementation] ChainedPreferenceStore | Christof Marti | 2 | -0/+136 | |
- also remove assertions and thrown IAE and provide fallbacks in these cases - tests | |||||
2004-04-22 | Added test.xml and test suite | Dani Megert | 1 | -0/+28 | |
- Members
- Working Groups
- Projects
- Community
- Participate
- Eclipse IDE
-
More
-
-
Community
- Marketplace
- Events
- Planet Eclipse
- Newsletter
- Videos
- Blogs
-
Participate
- Report a Bug
- Forums
- Mailing Lists
- Wiki
- IRC
- Research
-
-
-
-
Search
-