------------------------------------------------------------------------ r1085154 | mwolff | 2010-02-04 13:11:53 +0000 (Thu, 04 Feb 2010) | 1 line backport: get default colors for the template handler from the current color scheme (fixes color issues for dark schemes) ------------------------------------------------------------------------ r1085194 | winterz | 2010-02-04 15:31:53 +0000 (Thu, 04 Feb 2010) | 2 lines don't exclude _p.h files by default. leave that up to each project to decide. ------------------------------------------------------------------------ r1085216 | adawit | 2010-02-04 16:54:11 +0000 (Thu, 04 Feb 2010) | 3 lines Do not navigate to the clipboard url when a user middle clicks on the scrollbar. BUG:211302 ------------------------------------------------------------------------ r1085604 | skelly | 2010-02-05 14:47:06 +0000 (Fri, 05 Feb 2010) | 1 line Backport the bugfixed selection proxy model from trunk. ------------------------------------------------------------------------ r1085627 | mwolff | 2010-02-05 16:35:09 +0000 (Fri, 05 Feb 2010) | 1 line backport: shutdown the katetemplatehandler on document reload, fixes crash ------------------------------------------------------------------------ r1085628 | mwolff | 2010-02-05 16:35:51 +0000 (Fri, 05 Feb 2010) | 2 lines backport: make sure the bounding range in a katesmart region stays internal to make sure it doesn't get deleted on document reload (which can result in crashes in certain circumstances) ------------------------------------------------------------------------ r1086506 | dafre | 2010-02-07 14:27:54 +0000 (Sun, 07 Feb 2010) | 6 lines CCMAIL: mueller@kde.org Fixing KAuth's Polkit-qt-1 backend to make it work (this commit is already in trunk). Polkit-1 does the authorization routine inside the helper, therefore this change is needed to make the backend work. Dirk, can you please put this commit in the 4.4.0 tag? It is quite critical. ------------------------------------------------------------------------ r1087233 | mwolff | 2010-02-08 17:16:45 +0000 (Mon, 08 Feb 2010) | 1 line backport: allow whitespace except for newlines in template variables ------------------------------------------------------------------------ r1087530 | trueg | 2010-02-09 10:11:26 +0000 (Tue, 09 Feb 2010) | 4 lines Backport of mem/dbus connection leak. CCMAIL: faure@kde.org, release-team@kde.org, thiago@kde.org ------------------------------------------------------------------------ r1087561 | dfaure | 2010-02-09 11:14:23 +0000 (Tue, 09 Feb 2010) | 3 lines Actually create only one dbus connection per thread, and unregister when the thread exits. Reviewed by Sebastian Trueg. ------------------------------------------------------------------------ r1087650 | mueller | 2010-02-09 12:14:21 +0000 (Tue, 09 Feb 2010) | 3 lines merge last minute api changes for the highlighterinterface, my assumption is that the kdebindings are not affected ------------------------------------------------------------------------ r1087802 | adawit | 2010-02-09 15:54:17 +0000 (Tue, 09 Feb 2010) | 1 line Wrap literal meta-data text with QLatin1String ------------------------------------------------------------------------ r1087810 | dfaure | 2010-02-09 16:04:25 +0000 (Tue, 09 Feb 2010) | 2 lines Backport: Fix erroneous values due to overflow, patch by Bruce Cran. ------------------------------------------------------------------------ r1087822 | rkcosta | 2010-02-09 16:39:33 +0000 (Tue, 09 Feb 2010) | 7 lines Backport r1087820. Associate a widget to the action collections, otherwise the shortcuts defined will not work as expected. CCBUG: 225744 ------------------------------------------------------------------------ r1087856 | lueck | 2010-02-09 17:22:14 +0000 (Tue, 09 Feb 2010) | 1 line doc backport from trunk ------------------------------------------------------------------------ r1088091 | adawit | 2010-02-10 07:07:13 +0000 (Wed, 10 Feb 2010) | 5 lines Fixed bug# 224857 correctly and removed the temporary workaround for 4.4.1. BUG: 224857 ------------------------------------------------------------------------ r1088114 | aseigo | 2010-02-10 08:18:44 +0000 (Wed, 10 Feb 2010) | 3 lines ensure the icon has an action before using it BUG:224944 ------------------------------------------------------------------------ r1088123 | aseigo | 2010-02-10 08:48:20 +0000 (Wed, 10 Feb 2010) | 3 lines catch the case where we have a containment, but the containment is not in a corona CCBUG:214460 ------------------------------------------------------------------------ r1088124 | aseigo | 2010-02-10 08:49:00 +0000 (Wed, 10 Feb 2010) | 3 lines catch the case where we have a containment, but the containment is not in a corona CCBUG:214460 ------------------------------------------------------------------------ r1088132 | mludwig | 2010-02-10 09:42:17 +0000 (Wed, 10 Feb 2010) | 5 lines - Don't pass an empty string to Sonnet as this can lead to a bad allocation exception. - Fix a problem related to the detection of matching prefixes in 'KateSpellCheckManager::spellCheckWrtHighlightingRanges'. Back-port of commit 1088130. ------------------------------------------------------------------------ r1088348 | dafre | 2010-02-10 15:34:26 +0000 (Wed, 10 Feb 2010) | 2 lines Backport API doc fix r1088343 ------------------------------------------------------------------------ r1088537 | dfaure | 2010-02-11 07:54:32 +0000 (Thu, 11 Feb 2010) | 6 lines Fix crash in KDirWatch when using a messagebox in a slot connected to dirty(), and in that nested event loop, doing things like getting another notification and removing/adding watches. Fixed for: 4.4.1 BUG: 220153 ------------------------------------------------------------------------ r1088859 | jlayt | 2010-02-11 20:08:00 +0000 (Thu, 11 Feb 2010) | 5 lines Improve CUPS detection routine to always work, even when using remote server. This relys on the behaviour of QPrinter::numCopies() always returning 1 if Qt is in CUPS mode, and the real number if in lpr mode. ------------------------------------------------------------------------ r1088931 | aseigo | 2010-02-11 22:53:42 +0000 (Thu, 11 Feb 2010) | 3 lines we should only muck with the minimum sizes of the popup applet when iconified if it is actually using an icon; otherwise we leave it up to the applet itself to do this properly as it normally would have to CCBUG:226391 ------------------------------------------------------------------------ r1089015 | dfaure | 2010-02-12 07:51:10 +0000 (Fri, 12 Feb 2010) | 11 lines The temporary foo.tar tempfile is useful when reading, but not when writing a new tar file from scratch. By using the standard route (writing into the final iodevice directly) instead of the tempfile, the .tar.gz WriteOnly mode is much faster: // With tempfile: 1.3-1.7 ms, 2555089 instr. loads // Without tempfile: 0.87 ms, 987915 instr. loads => 45-60% performance improvement and reducing I/O. Also fixed ReadWrite mode not writing back the changes (!). Internal issue KONT-20, kolab rt #5817. ------------------------------------------------------------------------ r1089160 | ggarand | 2010-02-12 15:41:35 +0000 (Fri, 12 Feb 2010) | 12 lines automatically merged revision 1089159: Critical performance fix: There is a huge difference of behaviour between DEBUG and RELEASE builds of Qt 4.6, that breaks scrolling in KHTML. Using QWidget::scroll() on a widget that doesn't have WA_OpaquePaintEvent attribute set works just fine in Debug, but completely breaks down in Release, causing the whole view to get repainted always. CCMAIL: kde-packager@kde.org ------------------------------------------------------------------------ r1089161 | ggarand | 2010-02-12 15:42:19 +0000 (Fri, 12 Feb 2010) | 6 lines automatically merged revision 1088986: workaround the cursor not blinking in QLineEdit in Qt 4.6.1. the event propagator should actually be fixed to go through event() in all cases, but this is going to take some significant testing/cleanup, and figuring out if this can work fine with the non-redirected code path. ------------------------------------------------------------------------ r1089162 | ggarand | 2010-02-12 15:45:47 +0000 (Fri, 12 Feb 2010) | 3 lines automatically merged revision 1088983: fix occasional crash when laying out inline flow children as repaintDuringLayout() would access inline boxes we just deleted. ------------------------------------------------------------------------ r1089168 | vkrause | 2010-02-12 16:05:20 +0000 (Fri, 12 Feb 2010) | 2 lines build with -pedantic ------------------------------------------------------------------------ r1089179 | ggarand | 2010-02-12 16:33:47 +0000 (Fri, 12 Feb 2010) | 10 lines might want that too... even the dot is using such broken expressions! ---------- automatically merged revision 1088985: rewrite a very common and extremely inefficient regular expression pattern in a form that is equivalent but does not require a recursion. this is several order of magnitude faster in any RE engine and prevents libpcre from eating the stack. BUG: 191736 ------------------------------------------------------------------------ r1089397 | mludwig | 2010-02-13 08:29:04 +0000 (Sat, 13 Feb 2010) | 5 lines Fix the problem that the words at the beginning or at the end of a document are not re-checked when text is removed at those two positions. Back-port of revision 1089396. ------------------------------------------------------------------------ r1089408 | mludwig | 2010-02-13 09:19:26 +0000 (Sat, 13 Feb 2010) | 4 lines Also allow empty visible intersections for text insertion. Back-port of revision 1089406. ------------------------------------------------------------------------ r1089483 | trueg | 2010-02-13 11:19:09 +0000 (Sat, 13 Feb 2010) | 1 line Backport: use a static counter to make sure we use unique names ------------------------------------------------------------------------ r1089655 | adawit | 2010-02-13 16:47:12 +0000 (Sat, 13 Feb 2010) | 2 lines BACKPORT: Use the new QWebElement API to parse forms instead of javascript. ------------------------------------------------------------------------ r1089692 | dhaumann | 2010-02-13 18:56:05 +0000 (Sat, 13 Feb 2010) | 8 lines backport SVN commit 1089690 by dhaumann: fix: share a KCompletion object between all KateCmdLineEdits This will make it possible to easily add or remove completion items such as command line scripts or plugin commands, and the command lines in all KTextEditor::View instances will be up-to-date. ------------------------------------------------------------------------ r1089697 | dhaumann | 2010-02-13 19:01:08 +0000 (Sat, 13 Feb 2010) | 5 lines backport SVN commit 1089691 by dhaumann: fix: make reload-scripts work with new functions No new i18n-strings. ------------------------------------------------------------------------ r1089755 | porten | 2010-02-13 22:36:18 +0000 (Sat, 13 Feb 2010) | 5 lines Merged revision 1089753: Applying Maksim's fix for .innerHTML value of