| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Nice bugfix release approaching ;)
|
|
|
|
|
|
|
| |
work also when you don't have connection from the beginning.
CCBUG:319924
CCBUG:312928
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The old version was taking ages to even appear on my setup ("ages" being defined
as many minutes at least). Callgrind was crashing, perhaps due to webkit's JIT,
so I simply sampled the backtrace "randomly" by hand to see where the most CPU
time was being spent. These two methods came up way too often, so I did the
following:
1) Do not use KIconLoader within the inner loop, it's slow. It was slow when I
debugged too long startup of KPhotoAlbum, it produced visible file IO, and it is
trivial to speed this up. However, it was still taking time.
2) Do not request the ".historyitem" over and over again. A cached "pre-found"
copy (we're still cloning it) seems to help.
Together, these make it possible to load the history in <4 minutes here. It's
still a completely insane amount of time, but at least it appears, ultimately.
REVIEW:111053
|
| |
|
| |
|
|
|
|
|
|
|
| |
Fix rekonq icon retrieve mechanism to let it show well engine icons
on bar
BUG:272565
|
|
|
|
| |
BUG: 320218
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
- remove exclamation marks
- remove contractions ("don't" -> "do not", "max" -> "maximum", "min" -> "minimum")
- fix style
- spell "Java", "JavaScript" and "MD5" correctly
- lowercase "NOT" (do not shout to the user)
- remove extra spaces
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
| |
- show url
- reload with f5
BUG:319924
BUG:312928
|
| |
|
|
|
|
| |
BUG: 320318
|
|
|
|
| |
BUG:223188
|
| |
|
|
|
|
|
|
|
|
|
| |
Check if we're saving session (on KDE logout) before requesting the
session to save. This will allow Rekonq to restore sessions on next
login.
CCBUG: 319489
REVIEW: 110530
|
| |
|
| |
|
| |
|
|
|
|
| |
This also cleans up a bit UrlBar API
|
| |
|
|
|
|
|
| |
BUG: 317697
REVIEWED-BY: adjam
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
This reverts commit 5d1a223145be0eb1bb5eed76cda7d4b889d986ed.
Conflicts:
src/searchengine.cpp
src/urlresolver.cpp
|
| |
|
|
|
|
|
|
| |
(or at least, well workarounding...)
BUG: 309213
|
|
|
|
|
|
|
| |
In previous code the method was unable to properly determine
the first available index not pinned under some circumstances
BUG: 317798
|
|
|
|
| |
This just need fixes ;)
|
|
|
|
| |
BUG: 309148
|
|
|
|
|
|
|
|
| |
Moved "Open Here" action (if needed) to after "Open in Private Window"
so as to keep the order of link actions consistent. This reduces the
need for users to inspect the context menu when right clicking links.
REVIEW: 110168
|
|
|
|
|
| |
mimics Opera browser about right star icon management. Easier and
without the "love" icon always shown :)
|
|
|
|
|
|
| |
Also consider the possibility our sslinfo can be "incomplete" ;)
BUG: 318550
|
| |
|
|
|
|
|
| |
Now (again) kde.org is resolved as site and not searched in your
default search engine
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Move SSL icon in place of left urlbar favicon (as usually major
browsers do).
Remove positive and negative background when https page is visited.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|