Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

append posts to atom feed to keep post order from new to old #216

Merged
merged 3 commits into from
Apr 3, 2023
Merged

append posts to atom feed to keep post order from new to old #216

merged 3 commits into from
Apr 3, 2023

Conversation

lexming
Copy link
Contributor

@lexming lexming commented Apr 3, 2023

PR Description

Fixes #215

Looking at the code, it seems that there is the intention in ablog.posts.generate_atom_feeds to order the posts from newer to older. See:

sorted_posts_by_date = sorted(feed_posts, key=lambda post: post.date, reverse=True)

However, later on, posts in sorted_posts_by_date are added to the feed with:

feed_entry = feed.add_entry()

The method add_entry does prepend each post to the feed though (default behaviour), effectively reversing the order of posts a second time.

This PR explicitly sets the order of add_entry to not alter the post order set in sorted_posts_by_date.

@nabobalis
Copy link
Member

Thanks, if you can update the unit test for this in ablog/tests/test_build.py and probably need to actually test the date of the post otherwise clearly I did not spot this bug from my previous fix.

@lexming
Copy link
Contributor Author

lexming commented Apr 3, 2023

@nabobalis I added a check to test_feed to explicitly test that the date of the first post in the feed is older than the second one.

@nabobalis
Copy link
Member

Thanks!

@nabobalis nabobalis merged commit f664689 into sunpy:main Apr 3, 2023
@nabobalis
Copy link
Member

I will get a release out soon.

@lexming lexming deleted the feed-order branch April 3, 2023 16:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Order of posts in atom feed
2 participants