Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Stupid me, QtWebKit calls addHistoryEntry itself when you let it load a page.. | Andrea Diamantini | 2010-08-19 | 1 | -6/+0 |
| | |||||
* | HistoryManager review (the second): | Andrea Diamantini | 2010-08-19 | 5 | -487/+105 |
| | | | | | | | - impressive cleanup of the code - removed unneeded classes - one List to manage the items in the historyManager, one easier Hash in the HistoryFilterModel to speed up searches - better HistoryItem updates | ||||
* | Simpler than I thought, fix kget integration | Andrea Diamantini | 2010-08-19 | 4 | -5/+5 |
| | |||||
* | Merge commit 'refs/merge-requests/179' of ↵ | Andrea Diamantini | 2010-08-19 | 11 | -13/+159 |
|\ | | | | | | | git://gitorious.org/rekonq/mainline into m179 | ||||
| * | Skip the hiding rules specific to domains | Benjamin Poulain | 2010-08-19 | 1 | -0/+4 |
| | | | | | | | | | | | | | | The rules to hide elements for a specific domains were interpreted as regular RegExp rules, which grows the list of filter to test. Those rules are not working with the current implementation, we should just skip them for efficiency. | ||||
| * | Add a special matcher for ad block filters for host name | Benjamin Poulain | 2010-08-19 | 5 | -1/+133 |
| | | | | | | | | | | | | | | | | | | | | Quite a few rules of ad block are just matching domains. Those are of the form: ||trolltech.com^$options This patch add a new class to deal with this kind of filter, AdBlockHostMatcher. Matching a host address is much faster (O(1)) than going through the entire list of rules. | ||||
| * | Improve the performance of AdBlockRuleTextMatchImpl | Benjamin Poulain | 2010-08-19 | 7 | -12/+22 |
| | | | | | | | | | | | | | | | | | | | | Comparing unicode string without case sensitive is rather expensive because each codepoint must be converted, which is non trivial for unicode. This patch introduce a new argument of ::match() taking the encoded url in lowercase. This way, the conversion can be done only once for a lot of rules. | ||||
* | | BookmarkOwner class clean-up | Jon Ander Peñalba | 2010-08-19 | 2 | -154/+128 |
| | | |||||
* | | BookmarkOwner class moved to it's own file | Jon Ander Peñalba | 2010-08-19 | 10 | -546/+612 |
| | | |||||
* | | The bookmark actions in BookmarkOwner are now working and being used | Jon Ander Peñalba | 2010-08-19 | 7 | -265/+174 |
| | | |||||
* | | Create and store all bookmark actions in BookmarkOwner | Jon Ander Peñalba | 2010-08-19 | 2 | -0/+71 |
| | | |||||
* | | Minor improvements in the insertion and deletion of bookmarks code | Jon Ander Peñalba | 2010-08-19 | 1 | -13/+14 |
| | | |||||
* | | All insertion and deletion of bookmarks code moved to the same place ↵ | Jon Ander Peñalba | 2010-08-19 | 4 | -86/+132 |
| | | | | | | | | (BookmarkOwner) | ||||
* | | Merge branch 'master' of gitorious.org:rekonq/mainline | Andrea Diamantini | 2010-08-19 | 1 | -0/+1 |
|\ \ | |||||
| * | | SVN_SILENT made messages (.desktop file) | Script Kiddy | 2010-08-19 | 1 | -0/+1 |
| |/ | |||||
* | | Merge commit 'refs/merge-requests/173' of ↵ | Andrea Diamantini | 2010-08-18 | 8 | -296/+582 |
|\ \ | |/ |/| | | | git://gitorious.org/rekonq/mainline into m173 | ||||
| * | Fix a strange behaviour if a dragged item is dropped on itself | Yoann Laissus | 2010-08-17 | 1 | -1/+2 |
| | | |||||
| * | - Drag and drop in the bookmark toolbar between root items only (for the ↵ | Yoann Laissus | 2010-08-17 | 8 | -296/+581 |
| | | | | | | | | | | | | | | | | | | | | moment) - Drag accepted from the panel - Move two classes to a separate file Partially fixed : CCBUG: 226479 | ||||
* | | Merge commit 'refs/merge-requests/178' of ↵ | Andrea Diamantini | 2010-08-18 | 9 | -100/+323 |
|\ \ | | | | | | | | | | git://gitorious.org/rekonq/mainline into m178 | ||||
| * | | Add a primitive text machter as an AdBlockRule implementations | Benjamin Poulain | 2010-08-18 | 4 | -1/+121 |
| | | | | | | | | | | | | | | | | | | | | | | | | About 30% of the filter of easylist are just simple text matching. This new AdBlockRule implementation detects the simple occurences of this to match the url directly. On Qt 4.7, this reduce the time spend in AdBlock by around 20%. | ||||
| * | | Split AdBlock rule in two classes to move the implementation out of it | Benjamin Poulain | 2010-08-18 | 6 | -84/+203 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In order to make special matching rules, we need specialization of the implementation depending on the type of rule. The previous AdBlockRule was entierly based on regexp. The new one is only a factory to a AdBlockRuleImpl, and delegate everything to this implementation. This will allow faster specialization of the ad block rules in the future. | ||||
| * | | Remove the method pattern() from AdBlockRule | Benjamin Poulain | 2010-08-18 | 3 | -10/+0 |
| | | | | | | | | | | | | | | | The method pattern imply the rule is implemented with a regexp, which is what we should try to avoid in the future for performance reasons. | ||||
| * | | Cleaning of the constructor of AdBlockRule | Benjamin Poulain | 2010-08-18 | 1 | -21/+15 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Basic cleaning and bug fixing of AdBlockRule. The options shoud be parsed before checking if the filter is a regexp, otherwhise a regexp with option will never match the rule. For example: -"/.*/$xmlhttprequest" is a valid regexp that would not be matched. -"/.*$xmlhttprequest/" is a valid regexp without options and the option should not have been parsed. The matching of the option should match the last index of "$", not the first, for the same reason as above. Use mid() to split the vector at once instead QString::mid() + QString::lef(). Clean the coding style to follow the conventions of KDE. | ||||
* | | | disableKGet --> checkKGetPresence | Andrea Diamantini | 2010-08-18 | 2 | -11/+17 |
| | | | | | | | | | | | | let rekonq also reenable it :) | ||||
* | | | Merge commit 'refs/merge-requests/176' of ↵ | Andrea Diamantini | 2010-08-18 | 2 | -0/+17 |
|\ \ \ | | | | | | | | | | | | | git://gitorious.org/rekonq/mainline into m176 | ||||
| * | | | Remove return, formatting++ | Rohan Garg | 2010-08-17 | 1 | -4/+0 |
| | | | | | | | | | | | | | | | | modified: src/settings/generalwidget.cpp | ||||
| * | | | Define GeneralWidget::disableKGet() to disable KGet | Rohan Garg | 2010-08-17 | 2 | -0/+21 |
| | |/ | |/| | | | | | | | | | | | | | | | | when KGet is not installed modified: src/settings/generalwidget.cpp Declare GeneralWidget::disableKGet() modified: src/settings/generalwidget.h | ||||
* | | | Merge commit 'refs/merge-requests/175' of ↵ | Andrea Diamantini | 2010-08-18 | 3 | -72/+52 |
|\ \ \ | | | | | | | | | | | | | git://gitorious.org/rekonq/mainline into m175 | ||||
| * | | | search engine review | lionelc | 2010-08-17 | 3 | -72/+52 |
| |/ / | |||||
* | | | Merge commit 'refs/merge-requests/2290' of ↵ | Andrea Diamantini | 2010-08-18 | 1 | -6/+6 |
|\ \ \ | | | | | | | | | | | | | git://gitorious.org/rekonq/mainline into m2290 | ||||
| * | | | Remove a space | Yoann Laissus | 2010-08-17 | 1 | -1/+1 |
| | | | | |||||
| * | | | - Fix an issue with some websites which need to handle wheel events (eg: ↵ | Yoann Laissus | 2010-08-17 | 1 | -6/+6 |
| |/ / | | | | | | | | | | | | | | | | google maps) - Smooth scrolling now works on editable contents without sliders | ||||
* | | | Merge commit 'refs/merge-requests/174' of ↵ | Andrea Diamantini | 2010-08-18 | 2 | -16/+3 |
|\ \ \ | | | | | | | | | | | | | git://gitorious.org/rekonq/mainline into m174 | ||||
| * | | | - Adapt removeBookmark to Jon's new method | Yoann Laissus | 2010-08-17 | 2 | -16/+3 |
| |/ / | | | | | | | | | | - Add tooltips for the bookmark icon | ||||
* | | | Fix tools & bookmarks shortcuts behavior | Andrea Diamantini | 2010-08-18 | 2 | -13/+30 |
|/ / | | | | | | | Patch (and implementation) by Glad Deschrijver. Thanks! | ||||
* | | Merge commit 'refs/merge-requests/172' of ↵ | Andrea Diamantini | 2010-08-17 | 4 | -56/+65 |
|\ \ | | | | | | | | | | git://gitorious.org/rekonq/mainline into m172 | ||||
| * | | Message displayed when deleting a bookmark improved | Jon Ander Peñalba | 2010-08-16 | 1 | -6/+20 |
| | | | |||||
| * | | Unify the deletion of bookmarks in one place | Jon Ander Peñalba | 2010-08-16 | 4 | -56/+51 |
| | | | |||||
* | | | Made the bookmark search case insensitive and added some comments to the ↵ | Jon Ander Peñalba | 2010-08-16 | 2 | -9/+14 |
|/ / | | | | | | | BookmarksProxy class. | ||||
* | | Bug when closing the 'New Folder' dialog fixed. | Jon Ander Peñalba | 2010-08-15 | 1 | -2/+5 |
| | | |||||
* | | SVN_SILENT made messages (.desktop file) | Script Kiddy | 2010-08-15 | 1 | -0/+5 |
| | | |||||
* | | Follow pano & yoann suggestions about bookmark saving | Andrea Diamantini | 2010-08-14 | 1 | -6/+7 |
| | | |||||
* | | Moving bookmark icon on the left | Andrea Diamantini | 2010-08-14 | 3 | -18/+17 |
| | | |||||
* | | Manually importing Yoann merge 2260 | Andrea Diamantini | 2010-08-14 | 7 | -0/+329 |
| | | | | | | | | PLease, check if I did something wrong.. | ||||
* | | Fixed focus regression. | Andrea Diamantini | 2010-08-14 | 4 | -22/+14 |
| | | | | | | | | | | | | As show slot calls setVisible(true) in QWidget code, we cannot override show() AND setVisible(bool). The best thing is IMHO inheriting show() && hide() slots | ||||
* | | Merge commit 'refs/merge-requests/168' of ↵ | Andrea Diamantini | 2010-08-13 | 1 | -6/+6 |
|\ \ | | | | | | | | | | git://gitorious.org/rekonq/mainline into m168 | ||||
| * | | Fix the BK panel's drag and drop | Yoann Laissus | 2010-08-12 | 1 | -6/+6 |
| | | | |||||
* | | | Fix the double fill of the bookmark bar at startup | Yoann Laissus | 2010-08-12 | 1 | -2/+4 |
|/ / | |||||
* | | Merge commit 'refs/merge-requests/165' of git://gitorious.org/rekonq/mainline | Andrea Diamantini | 2010-08-12 | 1 | -2/+2 |
|\ \ | |||||
| * | | Fix smooth scrolling for some sites (eg: gmail) | Yoann Laissus | 2010-08-11 | 1 | -2/+2 |
| | | |