summaryrefslogtreecommitdiff
path: root/src/webtab/webpage.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Get sure right zoom is restored...Andrea Diamantini2013-12-081-2/+2
|
* Added option for global zoom settings :)Andrea Diamantini2013-12-031-4/+3
| | | | BUG: 307477
* Get sure webkit objects are deleted in the app d-torAndrea Diamantini2013-11-171-0/+2
| | | | CCBUG: 321557
* Set the Base URL of Error PagesDavid E. Narváez2013-08-261-1/+1
| | | | | | | Otherwise, all error pages show about:blank in the URL which makes it complicated for the user to know what page went wrong. REVIEW: 112289
* Review ssl widget generation code.Andrea Diamantini2013-07-121-14/+2
| | | | | | | | This also seems to fix some way problem about multiple widget creations What about you, guys? CCBUG:321226
* Set URL on initial load just when it comes from main frameAndrea Diamantini2013-06-261-10/+12
| | | | | | | | | Stupid me, I tested one week this patch and then pushed the wrong version. Sorry guys, things happen :( BUG: 321583
* Let fixed behavior when site is NOT loadedAndrea Diamantini2013-06-191-0/+5
| | | | | | | work also when you don't have connection from the beginning. CCBUG:319924 CCBUG:312928
* Restore use of webkit icon cacheAndrea Diamantini2013-06-161-3/+0
| | | | | | | Fix rekonq icon retrieve mechanism to let it show well engine icons on bar BUG:272565
* Let private popus open in private modeAndrea Diamantini2013-06-121-2/+5
| | | | BUG: 320218
* fix not consecutively numbered placeholderBurkhard Lück2013-06-111-1/+1
|
* Link custom rekonq QNAM to KDE proxy settingsAndrea Diamantini2013-06-101-0/+32
| | | | | | | | | | This is a first attempt to link our needed QNAM to KDE proxy settings. It will try to fix proxy problems when used. Oh... I also added some new error strings in case of proxy problems :) CCBUG: 304378 CCBUG: 315598
* i18n fixesPino Toscano2013-06-071-9/+11
| | | | | | | | | - remove string puzzles when possible - remove exclamation marks - remove contractions ("don't" -> "do not", etc) - lowercase "NOT" (do not shout to the user) - remove extra spaces, or add them where needed - few style/spelling fixes
* Move from about: to rekonq: protocol for our special linksAndrea Diamantini2013-06-061-1/+1
|
* Use webkit general font to render rekonq pagesAndrea Diamantini2013-06-061-2/+4
| | | | BUG: 320318
* normalize signal/slotMontel Laurent2013-05-061-1/+1
|
* 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...