I'd like to see the ability to move to the next or
previous feeds (with content/unread) if you are
browsing one at a time. Right now you have to go from
the feed back to the main list and start again.
Right now the feed sorting is really just the alphabetical
listing of feed titles. To do this prev/next function easily, we
would need to add an order column to the px_feeds table in
order to know the current value in the feed sort. Then it
would be an easy matter of setting one link to the left to be
previous feed (current_value - 1, as long as it is 0 or greater)
and a link to the right to be next feed (current_value + 1, as
long as it is less than max_value).
This would also allow you to alter the sorting of your feeds
rather than just viewing alphabetically, i.e., move the ones
you are most interested in reading to the top.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=3668
Right now the feed sorting is really just the alphabetical
listing of feed titles. To do this prev/next function easily, we
would need to add an order column to the px_feeds table in
order to know the current value in the feed sort. Then it
would be an easy matter of setting one link to the left to be
previous feed (current_value - 1, as long as it is 0 or greater)
and a link to the right to be next feed (current_value + 1, as
long as it is less than max_value).
This would also allow you to alter the sorting of your feeds
rather than just viewing alphabetically, i.e., move the ones
you are most interested in reading to the top.