summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* TabWindow, first import :)Andrea Diamantini2012-12-1011-0/+1384
|
* WARNING COMMIT --> FIRST REKONQ 2 IMPORTAndrea Diamantini2012-12-10252-42404/+0
| | | | Preparing repo to merge rekonq2 code...
* Lindsay's creditsAndrea Diamantini2012-12-041-5/+5
|
* fix mem leakMontel Laurent2012-12-031-16/+16
|
* Don't leak action (they are leaked until we change page)Montel Laurent2012-12-031-2/+2
|
* Don't create menu/action when not necessaryMontel Laurent2012-12-031-5/+8
|
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-12-031-0/+2
|
* Fix mem leakMontel Laurent2012-11-121-1/+4
|
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-11-081-0/+1
|
* Fixes problem with Web Comboxes not dropping down when clicked, this was due ↵Lindsay Mathieson2012-10-251-4/+5
| | | | | | to not checking the requested creation type in createExtension(). Removes unneccessary debug output
* Rekonq reports the open/close document events to activity manager daemon.Ivan Čukić2012-10-234-7/+72
| | | | | | | | | | | | | | | | | | | | | | | | | By knowing which window contains which documents and which one is in focus, we can do the following: - collect the statistics about visited pages. Further, this provides a score for each document visited, that depends on the number of times it was open, the time the user spent on that location, and the time passed since the last visit. - availability of a global/workspace applet that allows sharing the current document via e-mail, social networks; bookmarking and rating the link, or connecting it to the current activity. (advantage of this is a unified UI for sharing/rating/linking that works with any application) - jump-lists (not impl. yet in plasma) to list top rated documents on a launcher icon or in the task manager applet - krunner can sort the documents based on the score - more things that I haven't thought of yet There is no need to *use* ativities to have these benefits. Activities just serve as manual data clustering to provide more useful scores compared to the one-activity approach. REVIEW:106912
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-10-201-0/+1
|
* Fix tab bar visibility when set as auto-hideAndrea Diamantini2012-10-171-25/+25
| | | | BUG: 308421
* Faster html elements check and better address resolutionAndrea Diamantini2012-10-141-3/+2
| | | | | | | | | This "should" fix some strange adblock behaviour on image hiding. Needs testing Patch courtesy by "vic". Thanks :) PS: will be applied to rekonq2, too. BUG:305861
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-10-111-0/+1
|
* Get sure label pixmap existsAndrea Diamantini2012-10-011-1/+4
| | | | BUG: 307559
* Check if URL is Valid Before Checking if it's about: ProtocolDavid E. Narváez2012-09-261-1/+1
| | | | | | | Check if the URL of the current tab is even valid before checking its protocol. REVIEW: 106561
* Don't overwrite downloads by defaultAndrea Diamantini2012-09-241-2/+3
|
* i18n: no string puzzles.Chusslove Illich (Часлав Илић)2012-09-231-1/+1
|
* Fix new tab icon show on fullscreenAndrea Diamantini2012-09-181-4/+0
|
* Integrated spell checkingLindsay Mathieson2012-09-178-19/+725
| | | | | | | | | | | | | | | | - inline spell highlighter. This requires WebKit 2.3 to work. - Addition of a suggested replacement word list to the context menu, for the word right clicked on - A standard modeless spell check dialog that works on the current editable text (or selection). Heavily cribbed from Dawit's work on kdewebkitpart. BUG: 305720 CCMAIL: lindsay.mathieson@gmail.com REVIEW: 106417 REVIEWED-BY: adjam
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-09-121-0/+1
|
* Stupid me, forgot to enable WebKit features on kwebapp...Andrea Diamantini2012-09-041-1/+1
| | | | BUG: 306185
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-08-281-0/+1
|
* BookmarkWidget: Don't use a pointer to store the bookmarkYoann Laissus2012-08-162-28/+24
|
* BookmarkWidget: Add an entry to choose a folder with a KBookmarkDialogYoann Laissus2012-08-162-0/+23
|
* - Choose the correct MainView in ZoomBar::updateSlider()Yoann Laissus2012-08-162-16/+21
| | | | | | | It fixes issue for the first tab of new windows in case of a "wheel" zoom. - Move the zoom bounding logic from WebView::wheelEvent() to ZoomBar::setValue() It'll avoid Ctrl -/+ to exceed the max value of the slider - Use the round() method instead of my previous hack to compute zoom ratio for wheel events
* Make sure to add all MainWindow before a new tab.Yoann Laissus2012-08-161-1/+2
| | | | It fixes some issue for slot which use this list before/during the call of newWebTab (eg: zoomBar)
* Choose a better name for the tabWidth in TabBar::showTabPreview()Yoann Laissus2012-08-141-5/+5
|
* Center the tab preview popup if the tab width is bigger or smallerYoann Laissus2012-08-141-1/+5
|
* Use a default size for tab preview.Yoann Laissus2012-08-142-5/+22
| | | | It will fix disproportionate previews caused by very high ratio.
* Fix the tab preview ratio. We want the web page ratio, not the window ratio.Yoann Laissus2012-08-142-2/+5
|
* * Split updateTabBar() into two separate methodsYoann Laissus2012-08-145-33/+27
| | | | | | | | | | | | | - updateTabBarVisibility(): used to react only on "alwaysShowTabBar" settings - updateAddTabButton(): used to react only on tabbar changes * Improve handling of the add tab button. updateAddTabButton() is now called on any tab layout changed instead of being called in any function which manipulate tabs. * Use a tab height computed with KTabBar instead of the add tab button height with a magical number. It fixes some issues with the Bespin theme. BUG: 304325
* Get sure rekonq makes use of djvu pluginAndrea Diamantini2012-08-142-2/+14
| | | | | | | | | | Also, clean up mimetype detection, following kdewebkit. I tried implementing this using the protected excludeMimeType in kwebpluginfactory, but I fear it has to be declared virtual to let the trick work. Isn't it? BUG: 304562 CCMAIL: adawit@kde.org
* Get sure web shortcuts are considered first url detectionAndrea Diamantini2012-08-142-1/+6
| | | | BUG: 304994
* BookmarkWidget:Yoann Laissus2012-08-101-10/+10
| | | | | - Don't display an empty entry if the bookmark is in the root folder - Improve the code to choose the current index
* Add an icon for the toolbar root entry in the BookmarkWidgetYoann Laissus2012-08-101-3/+5
| | | | Don't duplicate the toolbar root entry in some cases
* BookmarkWidget: Clean up setupFolderComboBox()Yoann Laissus2012-08-101-8/+9
|
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-08-061-0/+1
|
* Correctly handle session restoreAndrea Diamantini2012-07-311-75/+78
| | | | | | | | | | The problem here is that the app is considered "session restored" for all its life cycle. Checking it just when launched without arguments and with isFirstLoad = true Should work, im my tests do, needs more testing... CCBUG: 304312
* Fix search engine(s) for KDE 4.9Andrea Diamantini2012-07-271-6/+16
| | | | | | | | | | | | | This is basically Johannes patch with checks added for kde version and with code duplicated for kwebapp. PS: I tried using KUriFilterData API to do it, without positive results. Postponing a code review here for KDE 5, hoping variables won't change another time name... CCBUG: 303872 CCMAIL: fritz_van_tom@hotmail.com REVIEW: 303872
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-07-271-0/+1
|
* Fix sneaky crash of user agent menuAndrea Diamantini2012-07-273-9/+24
| | | | BUG: 303862
* This should fix local files launch by console when rekonq is just loadedAndrea Diamantini2012-07-262-2/+4
|
* Let user customize shortcut name & description.Giuseppe Calà2012-07-262-22/+24
| | | | | | | | PS: Grazie per il lavoro, Giuseppe ;) CCMAIL: gcala@gmail.com REVIEW: 105708 REVIEWED-BY: adjam
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-07-241-0/+6
|
* Review boomarks managementAndrea Diamantini2012-07-146-12/+35
| | | | | | | | Maybe this is a bit risky before release, but this lets us adding a bookmarks shortcut (CTRL+D) as used in the major browsers. With this commit, rekonq doubles this behavior. BUG: 303445
* Save a site snapshot when adding a favorite via the urlbarAndrea Diamantini2012-07-141-0/+4
| | | | BUG: 303430
* Get sure favorites titles fitAndrea Diamantini2012-07-141-1/+1
|
* SVN_SILENT made messages (.desktop file)Script Kiddy2012-07-141-0/+1
|