| informationsyndicateUTC clock | event counters The last message was received 2.91 years ago at 14:00 on Jun 29, 2009 0 messages so far today, 0 messages yesterday 0 messages so far this week, 0 messages last week 0 messages so far this month, 0 messages last month 1215 messages since the first one, 8.37 years ago, for an average of 2.51 days between messages recent messages date | project | content | link |
|---|
| 14:00 on Jun 29, 2009 | KDE | Commit by hausmann :: r989118 /trunk/www/sites/planet/planetkde/config: Simplify my feed url ;-) | # | | 13:31 on May 08, 2009 | KDE | Commit by hausmann :: r965289 /trunk/www/sites/planet/planetkde/config: Adding fellow Qt hacker Tor Arne | # | | 13:41 on Mar 27, 2009 | KDE | Commit by hausmann :: r945416 /trunk/www/sites/planet/planetkde/config: Added Leo's (upcoming) blog on the Trollt^H^HQtSoftware Labs | # | | 19:10 on Dec 04, 2008 | KDE | Commit by hausmann :: r892616 /trunk/www/sites/planet/planetkde/config: | # | | 22:27 on Nov 10, 2007 | WebKit | Commit by hausmann :: r27673 WebKit/qt/ (Api/qwebpage.cpp ChangeLog): When populating the context menu with sub-menus don't add sub-menus if they're empty.
Signed-off-by: Nikolas | # | | 22:27 on Nov 10, 2007 | WebKit | Commit by hausmann :: r27672 WebKit/qt/ (3 files in 2 dirs): Added support for the Bold/Italic/Underline toggle actions.
Signed-off-by: Nikolas | # | | 22:27 on Nov 10, 2007 | WebKit | Commit by hausmann :: r27671 WebKit/qt/ (3 files in 2 dirs): Before adding an action to the context menu call checkOrEnableIfNeeded for each action to update the enable/checked state correctly.
Signed-off-by: Nikolas | # | | 22:27 on Nov 10, 2007 | WebKit | Commit by hausmann :: r27670 WebKit/qt/ (Api/qwebpage.cpp ChangeLog): Mark the text direction actions as checkable actions.
Signed-off-by: Nikolas | # | | 14:36 on Nov 09, 2007 | WebKit | Commit by hausmann :: r27646 WebCore/ (2 files in 2 dirs): userIdleTime() is stubbed in win/SystemTimeWin.cpp, so don't define it twice for the Qt/Windows build. | # | | 13:12 on Nov 09, 2007 | WebKit | Commit by hausmann :: r27645 WebKit/qt/ (3 files in 2 dirs): Implemented the webcore actions for changing the text direction.
Signed-off-by: Holger | # | | 13:12 on Nov 09, 2007 | WebKit | Commit by hausmann :: r27644 /trunk/ (9 files in 5 dirs): Fix ContextMenu allocation in the Qt port.
Store all items and submenus value based in ContextMenu and ContextMenuItem. That fixes the crashes when the context menu was populated with sub-menus because of the use of temporary ContextMenu objects like this:
ContextMenu subMenu(...); subMenu.appendItem(...); subMenu.appendItem(...);
subMenuItem.setSubMenu(&subMenu); // temporary pointer, need to _copy_ contents
Signed-off-by: Holger | # | | 13:12 on Nov 09, 2007 | WebKit | Commit by hausmann :: r27643 WebKit/qt/ (3 files in 2 dirs): Renamed QWebPage::NumWebActions to QWebPage::WebActionCount (for consistency) and fixed its value.
Signed-off-by: Holger | # | | 14:21 on Nov 08, 2007 | WebKit | Commit by hausmann :: r27596 WebKit/qt/ (Api/qwebsettings.cpp ChangeLog): Build fix for Qt 4.3. | # | | 08:23 on Nov 08, 2007 | WebKit | Commit by hausmann :: r27595 WebCore/ (2 files in 2 dirs): Remove some warnings about not implemented methods.
- ResourceHandle::loadsBlocked and ResourceHandle::supportsBufferedData are specific to the NS API and won't be implemented on Qt.
- ResourceHandle::bufferedData can not be reached as we return false in ResourceHandle::supportsBufferedData. Signed-off-by: Lars Knoll <lars at trolltech dot com>
| # | | 08:23 on Nov 08, 2007 | WebKit | Commit by hausmann :: r27594 /trunk/ (4 files in 4 dirs): Cleanup checking for the request method.
- Check the request method only in QWebNetworkManager::add.
- Currently HEAD, GET, POST are allowed and for everything else QWebNetworkManager::add returns false.
- Returning false is compatible with ResourceHandle::start and it can be used in ResourceHandle::loadResourceSynchronously to generate a ResourceError Signed-off-by: Lars Knoll <lars at trolltech dot com>
| # | | 08:23 on Nov 08, 2007 | WebKit | Commit by hausmann :: r27593 WebCore/ (ChangeLog platform/qt/ThreadingQt.cpp): Implement WebCore::callOnMainThread Implemented using a global QObject, that is moved to the main thread and then sending a custom event to it. Picked a number below QEvent::User but above any other documented value. Signed-off-by: Lars Knoll < lars at trolltech dot com> | # | | 08:23 on Nov 08, 2007 | WebKit | Commit by hausmann :: r27592 WebKit/qt/ (3 files in 2 dirs): Fix bug in the implementation of synchronous network jobs.
- George (pmax) reviewed the networking patches and found the following bug (thanks for reviewing)
- if (jobMode == AsynchronousJob) { + if (jobMode == SynchronousJob) { add job to synchronous list/hash
- Just applying the above change will lead to crashes because we can finish jobs before we started them.
- Avoid these issues by saving all work (starting a job, sending data and finishing it) inside one list. JobWork will contain any of the above three work types and doWork will just work on this list (m_pendingWork). As foreach takes a copy of the list calling started, data and finished will not add new work and we gurantee that if we have JobStarted it will be in the list before JobData and JobFinished.
- Observation: We might just kill the code to handle sync jobs. Signed-off-by: Lars Knoll <lars at trolltech dot com>
| # | | 08:23 on Nov 08, 2007 | WebKit | Commit by hausmann :: r27591 WebCore/ (ChangeLog platform/qt/WidgetQt.cpp): Avoid problems with calling QPainter::begin() on an already active paintdevice
- Partial pick from 6200e04c3e0a77873c3b3f3969b65bc701020326 to avoid getting crashes on Qt/Mac 4.4 with QPainter::begin to fail because we already draw.
- If we are in a layout or need one do not paint. This can happen for the PlatformScrollBar used by the ScrollView on a layout triggered by QWebPage::paintEvent. Signed-off-by: Lars Knoll <lars at trolltech dot com>
| # | | 16:39 on Nov 07, 2007 | WebKit | Commit by hausmann :: r27570 JavaScriptCore/ (ChangeLog kjs/testkjs.pro): JavaScriptCore.pri expects OBJECTS_DIR to be set, so set it in testkjs.pro, too, where it's included from. | # | | 16:17 on Nov 07, 2007 | WebKit | Commit by hausmann :: r27569 WebCore/ (ChangeLog bridge/WindowFeatures.h): Coding style fix. | # |
|