summaryrefslogtreecommitdiff
path: root/src/webtab/webpage.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Make it build with QT_STRICT_ITERATORSKevin Ottens2013-04-181-4/+4
|
* honor filetype setting WRT embeddingHarald Sitter2013-04-111-1/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | there are 3 distinct states a filetype can have WRT kpart embeding - always embed - never embed - do whatever the parent node does (e.g. application/foo would take the setting of application) since the logic to determine which of those it is going to be we are using a bit of code imported from konqueror deciding in a boolean fashion whether or not we are supposed to embed or not. this is particularly non- intrusive as the decision directly relates to whether a kpart is created, if not the file will simply be krun'. this change is using static functions for the imported code. rationale being that they are in fact static and not having them reflected in the header makes them all the easier to remove should a better solution arise in the future. with that in mind: while the code is copy'n'pastable it seems like a good idea to move this into some shared library in the long term such that konqueror and rekonq (and any other kpart enabled app) can use the same code. REVIEW: 109942 BUG: 240400 BUG: 279423
* Workaround about private browsingAndrea Diamantini2013-04-071-1/+1
| | | | | | | | | Use a unique QNAM for private browsing. This lets private windows share navigation info. I guess the "optimus workaround" should be creating this "per window". But I think this way it's easier and enough (to be a workaround...) BUG: 317565
* Added missing reload button when webpage fails to loadSomsubhra bairi2013-03-121-1/+1
| | | | BUG: 316235
* AdBlock ImprovementAndrea Diamantini2013-02-241-2/+5
| | | | | | | | | Hiding rules support (at least the easy ones, the most ones, against hiding id && classes) :D To test it, take a look (in example) at the url: http://simple-adblock.com/faq/testing-your-adblocker/
* Improve icon management codeAndrea Diamantini2013-01-231-3/+0
| | | | | In the 1.x way, IconManager notified all the tabs about icons changed. This way, just the interested tab is :)
* Fix IconManager to let webapp window favicons workAndrea Diamantini2013-01-201-0/+1
|
* Fix double opening with local files && kparts opening in webapp modeAndrea Diamantini2012-12-161-27/+35
|
* "Workaround" cookie management in private browsing modeAndrea Diamantini2012-12-161-57/+54
| | | | | | | | | | | | From the note in webpage file: I'm sorry I really cannot let KIO work as needed in private browsing mode. The problem is basically cookie related. This way we lose some features in private browsing mode, but we ensure PRIVACY! This change cannot be reverted until a proper fix for KIO (or the right workaround for rekonq) will be found. BUG: 303552
* - Code style check (codestyle script round)Andrea Diamantini2012-12-121-38/+42
| | | | | | | | | - restored CTRL + ENTER code - applied Vedant's patch about (thanks!!!) CCMAIL: vedant.kota@gmail.com REVIEW: 107662 REVIEWED-BY: Tirtha and me
* Get sure we are using suggested file name if availableAndrea Diamantini2012-12-101-16/+29
|
* Fix downloads notificationsAndrea Diamantini2012-12-101-11/+18
|
* Shorter string. May fit better...Andrea Diamantini2012-12-101-1/+1
|
* Use view parent tab to get use calling tab existsAndrea Diamantini2012-12-101-2/+2
|
* Removed some porting FIXME and re-enabled old featuresAndrea Diamantini2012-12-101-2/+2
|
* Fix new page creation on blank target url clickAndrea Diamantini2012-12-101-9/+10
|
* Network error management (again)Andrea Diamantini2012-12-101-43/+33
| | | | | | | | Following the 1.x series, a better error management based on SOLID (i.e. added dependency about) showing local network problems, if any, or suggesting search engines or cached copy. Removed the hated "wall of text"
* New Private Browsing mode :DAndrea Diamantini2012-12-101-3/+32
|
* Integrated spell checking for rekonq2 (lindsay's work imported)Andrea Diamantini2012-12-101-2/+2
| | | | | | | | | | | | | - 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. oops... also a codingstyle script round here... :)
* Fix urlbar widget showAndrea Diamantini2012-12-101-0/+18
|
* Remove a lot of application calls by refactoring codeAndrea Diamantini2012-12-101-20/+9
|
* Fix use of webpageAndrea Diamantini2012-12-101-15/+7
|
* Let WebView compile and workAndrea Diamantini2012-12-101-55/+26
| | | | WARNING: Not everything compiles yet...
* Copy webtab related files from rekonq repoAndrea Diamantini2012-12-101-0/+777
NOTE: This change does NOT affect CMakeLists.txt, so that compilation will continue to work as the previous commit. I'm just trying to track changes from original rekonq files...