summaryrefslogtreecommitdiff
path: root/src/adblock/adblockhostmatcher.cpp
Commit message (Collapse)AuthorAgeFilesLines
* - Code style check (codestyle script round)Andrea Diamantini2012-12-121-3/+4
| | | | | | | | | - restored CTRL + ENTER code - applied Vedant's patch about (thanks!!!) CCMAIL: vedant.kota@gmail.com REVIEW: 107662 REVIEWED-BY: Tirtha and me
* Clean up previous commit about adblock and fix enable/disable featureAndrea Diamantini2012-12-101-7/+0
|
* adblock workAndrea Diamantini2012-12-101-2/+35
| | | | | | | | readded an icon in the urlbar when adblock is active, BUT with different features: you can now disable adblock "per-site", in a similar way chromium does. cleaned up adblock manager code, removing some old no more used code fragments
* Restored Adblock moving hiding logic to the one used in kwebkitpartAndrea Diamantini2012-12-101-0/+56
| | | | | This will let everyone to save time reinventing the wheel and let us remove webpage from adblockmanager code, but just manage it via (Q)NAM.
* WARNING COMMIT --> FIRST REKONQ 2 IMPORTAndrea Diamantini2012-12-101-56/+0
| | | | Preparing repo to merge rekonq2 code...
* clean upAndrea Diamantini2011-07-251-4/+4
| | | | | | - QL1S - one stupid kDebug less - codingstyle
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-171-4/+4
|
* Coding styleAndrea Diamantini2011-02-251-2/+3
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-1/+1
|
* Fix adblock host matcherAndrea Diamantini2010-09-091-6/+6
| | | | Benjamin Poulain's patch. Thanks :)
* Add a special matcher for ad block filters for host nameBenjamin Poulain2010-08-191-0/+55
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.