| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
The common behavior of the Find action is to start a search with the
current selected text if any.
This patch implement this behavior for Rekonq.
|
|
|
|
|
|
|
| |
The find actions generally show a find bar, and is not a toggle action.
A general pattern of use is to press "/" or Ctrl+F to show the find
bar with the currently selected text, and press escape to hide the bar.
|
|
|
|
|
|
|
|
| |
The FindBar was slots show() and hide() instead of the virtual method
QWidget::setVisible(). This can lead to subtle bugs, because the
behavior is different depending on the type of call (signal-slot
connection VS direct call on a pointer to QWidget) and the function
called (hide() is != than setVisible(false)).
|
|
|
|
|
|
|
| |
This commit intends to revert manually commits de9abc72 && bd27f60d, restoring
bk positions on the right.
This because most of the developers prefer so. Anyway, if things will change again
we can revert the "revertion" :D
|
|\
| |
| |
| |
| |
| |
| | |
git://gitorious.org/rekonq/mainline into m183
Conflicts:
src/mainwindow.h
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
git://gitorious.org/rekonq/mainline into m182
|
| | | |
|
| | |
| | |
| | |
| | | |
faster
|
| | |
| | |
| | |
| | | |
minor changes to BookmarkProvider.
|
| | | |
|
| | |
| | |
| | |
| | | |
src/bookmarks/bookmarkprovider.*
|
|\ \ \
| |/ /
|/| | |
|
| |\ \
| | | |
| | | |
| | | | |
git://gitorious.org/rekonq/mainline into opensearch2
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
improve bk toolbar
opensearch suggestions
bk panel cleanup
Last before beta
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Conflicts:
src/CMakeLists.txt
src/urlbar/urlresolver.cpp
|
| | | | | |
|
| |\ \ \ \
| | |/ / /
| |/| / /
| | |/ / |
git://gitorious.org/rekonq/mainline into opensearch
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- file headers fix
- clean up code
- import engine files
|
| |\ \ \
| | |/ /
| | | |
| | | | |
git://gitorious.org/rekonq/mainline into opensearch
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
introduce an opensearch engine
|
| | | |
| | | |
| | | |
| | | | |
It is really awesome :)
|
|\ \ \ \
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | | |
git://gitorious.org/rekonq/mainline into m181
Conflicts:
src/bookmarks/bookmarkstoolbar.h
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
It fixes the problem of the submenu if there are too much items to fit on the bar
- Improve a bit the new redesign of BookmarkOwner
- Reenable the bookmark menu by default (because the icon in the bar is on the left)
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
to prevent rekonq being WITHOUT any bar...
|
|/ / / |
|
| | | |
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Probaly last before beta release
We NOW DEPENDS on Qt 4.7 / KDE SC 4.5 (also if Qt 4.7 has not been officially
released yet!)
- fixed kget integration
- History Review (The 3rd one..)
- dramatically improved adblock performance
- Bookmarks Management clean-up && review
- Search Engine review
- new features for the bookmarks toolbar
- tons of fixes
|
|\ \ \ |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- 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
|
|\ \ \ \
| |/ / / |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | | |
git://gitorious.org/rekonq/mainline into m179
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|