| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
- astyle
- copyrights
- (some) includes
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
some of them
|
| |
|
|
|
|
|
|
|
|
| |
This is a patch by Andrea Di Menna, changed a bit to allow element
blocked/hided listing (you'll see it in next commit)
REVIEW:102761
REVIEWED-BY: adjam
|
| |
|
|
|
|
|
|
| |
separate adblock settings from rekonq ones.
We now have 60 adblock rules list sites stored to be enabled
"on click"
|
| |
|
|
|
|
|
| |
- doublequote_chars
- normalize
|
|
|
|
| |
BUG: 246801
|
|
|
|
|
|
|
| |
- QL1S/QL1C
- single-char QString efficiency
- explicit ctors
- normalized signals & slots
|
|
|
|
|
| |
REVIEW: 103242
REVIEWED-BY: adjam
|
| |
|
|
|
|
| |
BUG: 272107
|
|
|
|
| |
BUG: 282012
|
|
|
|
|
| |
remove wrong assumption on referer header.
This fixes a lot of third-party rules :)
|
|
|
|
|
| |
improve adblock docs
check third-party option before (faster)
|
|
|
|
|
|
|
|
|
| |
This original patch from fritz_van_tom has been modified by me
to fix a couple of "obsoleted" things not removed in the
previous changes.
My fault for them (and for the need of this patch), sorry.
REVIEW: 102362
|
|
|
|
| |
CCMAIL: fritz_van_tom@hotmail.com
|
|
|
|
|
|
|
|
|
|
|
| |
- Removed showDeveloperTools action
- Moved adblock GUI to adblock part
- renamed toolsMenu and developerMenu to reflect their real/new roles
- Added UserAgent action to the tools menu
REVIEW:102170
REVIEWED-BY: fritz_van_tom
|
|
|
|
|
|
| |
- QL1S
- one stupid kDebug less
- codingstyle
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
- implemented "third party" support
- do NOT block first requests (you cannot even see a blank page, sometimes...)
BUG:270356
PS:
Alberto, can you pls check this really works for you before backporting to
0.7 and let me know about?
Many thanks for.
|
|
|
|
|
| |
This reverts commit 09bf176c22a25cee65b20b7aee9fdf9e541798af.
This isn't *really* required, my bad
|
|
|
|
| |
BUG:267706
|
| |
|
| |
|
|
|
|
|
|
| |
BUG:248045
BUG:253329
BUG:265909
|
| |
|
|
|
|
| |
Add #rekonq_define.h to files that now use QL1C
|
| |
|
| |
|
|
|
|
| |
Benjamin Poulain's patch. Thanks :)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Some ads were not filtered because they were incorrectly matched by
the whitelist. This is because we ignore options, including the domain
restrictions.
For example, the white filter:
@@||pagead2.googlesyndication.com/pagead/show_ads.js$domain=kde.org
would match any page regardless of the domain restriction. So no ads
from pagead2.googlesyndication.com were filtered.
This patch adds support for "domain" options in the fallback rules
(the other AdBlockRuleImpl rejects options). The domain of the frame
making the request is now compared to the option to take the right
decision.
This patch requires Qt 4.7 with a recent QtWebKit 2.0.
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
| |
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%.
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
|
|
|
|
| |
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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|