summaryrefslogtreecommitdiff
path: root/src/history/historymanager.h
Commit message (Collapse)AuthorAgeFilesLines
* History page, added ability to remove items fromAndrea Diamantini2013-01-221-0/+1
|
* Fix history orderingAndrea Diamantini2013-01-171-2/+2
| | | | BUG: 313345
* Improve suggestions, step 2Andrea Diamantini2012-12-101-1/+2
| | | | | | | | | | | | | Every change here is given to trade-off suggestions performance (p) and relevancy (r). - just check bookmarks for relevance if no history entries found (p) - remove bookmarks item duplicates from history (r) - just do it is user typed more than 1 char (p) - order history entries just if user typed more than 1 char (p) - (reverse) order by visit count (most visited first) (r)
* Insert back HistoryManagerAndrea Diamantini2012-12-101-0/+175
| | | | | | There are a few notable changes here: - rekonq_defines.h clean up, removing the enums from there - let HistoryManager be accessible by a self function
* WARNING COMMIT --> FIRST REKONQ 2 IMPORTAndrea Diamantini2012-12-101-206/+0
| | | | Preparing repo to merge rekonq2 code...
* Clean up headers && fix compilation with (the upcoming) qt 4.8.2Andrea Diamantini2012-04-201-10/+10
|
* New History Manager, NO MORE QWebHistoryInterface based.Andrea Diamantini2012-03-181-5/+2
| | | | | | | | | | | We are just saving datas on our own, I don't like QtWebKit APIs to do it. We now call addHistoryEntry(url, title) on loadFinished. Data structure will remain the same as usual, but I think API is better and data are now saved when we really have them ready. REVIEW:104257
* cppcheckAndrea Diamantini2012-01-241-1/+1
|
* Krazy fixesAndrea Diamantini2012-01-191-1/+1
| | | | | | | - QL1S/QL1C - single-char QString efficiency - explicit ctors - normalized signals & slots
* let history, bookmarks and passwords sync on change (first bits)Andrea Diamantini2011-12-121-0/+2
|
* Restore tab's history when restoring a tab/sessionAnton Kreuzkamp2011-08-211-0/+36
| | | | | | | | We finally have it :D CCMAIL: akreuzkamp@web.de REVIEW: 100604 REVIEWED-BY: adjam, elproxy
* WARNING: HISTORY_VERSION upgrade!!Andrea Diamantini2011-07-181-5/+8
| | | | | | | This commit changes rekonq history data struct to manage also the first time you visited a site. This way we can "expose" this new info in the SSL widget. (We can obviously do a lot more with it...)
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-171-4/+4
|
* Fix History ordering (check about:history page before and after this patch)Andrea Diamantini2011-04-101-1/+1
| | | | | | and remove the "provileged" item in the urlbar suggestions as it was NOT really working. Reduce min suggestion list from 3 to 2 to enable more history suggestions. .
* cppcheck round...Andrea Diamantini2011-02-251-1/+3
|
* Coding styleAndrea Diamantini2011-02-251-5/+14
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-1/+1
|
* Order items in the completion list considering also visit countLionel Chauvin2011-01-231-1/+7
| | | | Reviewed by benjamin, pierre and me.
* Added a visit count parameter to the history.Andrea Diamantini2011-01-071-11/+14
| | | | | | | | | | | This change will preserve old history on first load, adding the visit count parameter and saving the new structure on close This will used expecially in the Awesome UrlBar ordering suggestions code. WARNING: HISTORY_VERSION upgrade CCMAIL:megabigbug@yahoo.fr
* HistoryManager review (the second):Andrea Diamantini2010-08-191-41/+6
| | | | | | | - 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
* Merge commit 'refs/merge-requests/153' of ↵Andrea Diamantini2010-07-221-9/+30
|\ | | | | | | | | | | | | | | git://gitorious.org/rekonq/mainline into m153 Conflicts: src/history/historymanager.cpp src/history/historymanager.h
| * remove useless bookmarkPath attribute of UrlSearchItemmegabigbug2010-07-201-1/+0
| | | | | | | | | | add a regexp for detect url of search engines remove url that are detected from history suggestions
| * history review:megabigbug2010-07-201-9/+30
| | | | | | | | | | | | | | | | | | - remove AwesomeUrlCompletion class - add an QHash to the history manager: each url have a visit counter - sort history urls by visit count TODO: - reintroduce bookmark item in url resolver (broken when AwesomeUrlCompletion was removed)
* | Just some stupid cleaning on HistoryManager before starting seriously ↵Andrea Diamantini2010-07-211-5/+1
| | | | | | | | working on...
* | Moving download history management from HistoryManager to Application classAndrea Diamantini2010-07-211-28/+0
|/ | | | | It's actually the same, but probably a bit more coherent. More over, we are going to change a lot of things in the HistoryManager class...
* Awesome bar speed upAndrea Diamantini2010-06-051-6/+4
| | | | | | | | This commit introduces notable changes and needs a lot of tests Courtesy patch from Mathias Kraus. Thanks :) BUG: 237390
* New rekonq_defines.hAndrea Diamantini2010-04-301-2/+2
| | | | Speed up compilation & linking on Win, Lin & Mac. Step 1
* A coding style roundAndrea Diamantini2010-04-301-12/+12
|
* add title for history itemslionelc2010-04-021-0/+2
|
* Downloads PageAndrea Diamantini2010-03-201-1/+31
| | | | | | This commit implements the downloads history page. While it is in an horrible shape, its slots seem working well It needs just some love..
* tests support for every Qt derived rekonq classAndrea Diamantini2010-02-261-1/+4
|
* Fix copyright for 0.4 beta releaseAndrea Diamantini2010-02-101-1/+1
|
* Last structure change, promised!Andrea Diamantini2009-11-271-0/+161
Anyway, this moving/renaming helped me finding lots of strange circulary dependencies and easily solve them :) We have also a more organized structure, hopefully letting people work on different areas altogether.