[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2018-11-07 Thread Bug Watch Updater
** Changed in: kdepim
   Status: Incomplete => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/137409

Title:
  akregator: Left/Right arrows fail to navigate articles

To manage notifications about this bug go to:
https://bugs.launchpad.net/kdepim/+bug/137409/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2018-09-19 Thread Bug Watch Updater
Launchpad has imported 13 comments from the remote bug at
https://bugs.kde.org/show_bug.cgi?id=114997.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.


On 2005-10-24T14:30:47+00:00 Fpylin wrote:

Version:(using KDE KDE 3.4.92)
Installed from:Slackware Packages
OS:Linux

Ok ... this bug did *not* exist in KDE 3.4.3 ... someone must have
broken something in the new 1.2 ;)

What happened:
1. Switch to normal view and choose any feed, preferably a feed with a long 
list.

2. Try to scroll through the articles with left/right keys and occassionally:
 a) the left/right key will get stuck/not jump to the next/prev article
 b) it jumps to a random article (i.e. not in order shown in the list)

3. Duplicated articles are shown twice at least

4. If you click on an unread title, another title in the list
(unrelated) will change its name to the article you just clicked. The
article that has its name changed is lost afterwards.

I do not have full source in hand, but I suspect some of the ?new
duplication detection mechanism was not working the way it should be.

Cheers,

Frank

Reply at:
https://bugs.launchpad.net/ubuntu/+source/kdepim/+bug/137409/comments/0


On 2005-12-15T04:45:08+00:00 Fpylin wrote:

Created attachment 13924
Example of the bug (screenshot series in .tar.gz format)

A picture is better than 1000+ words. Here I post a series of screenshots
describing this bug.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/kdepim/+bug/137409/comments/1


On 2005-12-15T08:07:54+00:00 Osterfeld wrote:

I confirm 2a). Sometimes, the prev/next actions get stuck.
I've seen 3 and 4, too. But this is only "visual", i.e. if you switch to 
another feed and back, all should be fine again, right?
It's not about dupe detection, it has to do with the list items (which are 
created per article). Thus, when switching to another feed and back, the items 
are cleared and recreated properly.

Reply at:
https://bugs.launchpad.net/ubuntu/+source/kdepim/+bug/137409/comments/2


On 2005-12-15T13:42:19+00:00 Fpylin wrote:

> I've seen 3 and 4, too. But this is only "visual", i.e. if you switch to 
> another feed and back, all should be fine again, right?
That is correct. 

> It's not about dupe detection, it has to do with the list items (which are 
> created per article). 
Thanks -- sounds very logical. The reason I suspected "dupe detection" 
originally was that it only happens with new (red) and unread (blue) items. The 
read items (black) items does not seem to be affected.

> Thus, when switching to another feed and back, the items are cleared and 
> recreated properly. 
Yes. That is also correct.


Reply at: 
https://bugs.launchpad.net/ubuntu/+source/kdepim/+bug/137409/comments/3


On 2006-01-08T13:02:01+00:00 Osterfeld wrote:

*** Bug 119669 has been marked as a duplicate of this bug. ***

Reply at:
https://bugs.launchpad.net/ubuntu/+source/kdepim/+bug/137409/comments/4


On 2006-01-08T13:09:03+00:00 Osterfeld wrote:

SVN commit 495480 by osterfeld:

Fix comparison operators of Article, such as < and <=.
This fixes problems with QMap and articles having identical pubdate (operator< 
just compared pubdates, and QMap consideres 
articles as equal when items are not comparable).
Fixes 114997 navigation problems and prevents creation of a new item when 
selecting an unread dupe article. (a new item was 
created as map lookup failed).

BUG: 114997


 M  +6 -4  article.cpp  


--- branches/KDE/3.5/kdepim/akregator/src/article.cpp #495479:495480
@@ -241,22 +241,24 @@
 
 bool Article::operator<(const Article &other) const
 {
-return pubDate() > other.pubDate();
+return pubDate() > other.pubDate() || 
+(pubDate() == other.pubDate() && guid() < other.guid() );
 }
 
 bool Article::operator<=(const Article &other) const
 {
-return pubDate() >= other.pubDate();
+return (pubDate() > other.pubDate() || *this == other);
 }
 
 bool Article::operator>(const Article &other) const
 {
-return pubDate() < other.pubDate();
+return pubDate() < other.pubDate() || 
+(pubDate() == other.pubDate() && guid() > other.guid() );
 }
 
 bool Article::operator>=(const Article &other) const
 {
-return pubDate() <= other.pubDate();
+return (pubDate() > other.pubDate() || *this == other);
 }
 
 bool Article::operator==(const Article &other) const


Reply at: 
https://bugs.laun

[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2011-02-24 Thread Bug Watch Updater
** Changed in: kdepim
   Status: Unknown => Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/137409

Title:
  akregator: Left/Right arrows fail to navigate articles

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2011-02-03 Thread Bug Watch Updater
** Changed in: kdepim
   Importance: Unknown => High

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/137409

Title:
  akregator: Left/Right arrows fail to navigate articles

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2009-03-08 Thread Bug Watch Updater
** Changed in: kdepim
   Status: Confirmed => Unknown

-- 
akregator: Left/Right arrows fail to navigate articles
https://bugs.launchpad.net/bugs/137409
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdepim in ubuntu.

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2008-10-24 Thread Jonathan Thomas
We are closing this bug report because it lacks the information we need
to investigate the problem, as described in the previous comments.
Please reopen it if you can give us the missing information, and don't
hesitate to submit bug reports in the future. To reopen the bug report
you can click on the current status, under the Status column, and change
the Status back to "New". Thanks again!

** Changed in: kdepim (Ubuntu)
   Status: Incomplete => Invalid

-- 
akregator: Left/Right arrows fail to navigate articles
https://bugs.launchpad.net/bugs/137409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2008-09-26 Thread Jonathan Thomas
Is this still an issue in KDE 4.1.1 or Intrepid?

** Changed in: kdepim (Ubuntu)
   Status: Confirmed => Incomplete

-- 
akregator: Left/Right arrows fail to navigate articles
https://bugs.launchpad.net/bugs/137409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2008-09-11 Thread Bug Watch Updater
** Changed in: kdepim
   Status: Fix Released => Confirmed

-- 
akregator: Left/Right arrows fail to navigate articles
https://bugs.launchpad.net/bugs/137409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 137409] Re: akregator: Left/Right arrows fail to navigate articles

2008-04-13 Thread Harald Sitter
** Summary changed:

- akregator
+ akregator: Left/Right arrows fail to navigate articles

-- 
akregator: Left/Right arrows fail to navigate articles
https://bugs.launchpad.net/bugs/137409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs