-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Support RSS feeds with dates in two-digits
- Loading branch information
1 parent
efbbda2
commit 01f87f2
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
tests/lib/SpiderBits/feeds/examples/years-in-two-digits.rss.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"> | ||
<channel> | ||
<title>A feed with years in 2-digits</title> | ||
<pubDate>Sat, 20 Jul 24 10:32:04 +0200</pubDate> | ||
<link>https://example.org</link> | ||
<atom:link rel="self" type="application/rss+xml" href="https://example.org/feed.rss"/> | ||
<item> | ||
<title>My article</title> | ||
<description></description> | ||
<pubDate>Sat, 20 Jul 24 08:55:36 +0200</pubDate> | ||
<link>https://example.org/my-article</link> | ||
<guid>https://example.org/my-article</guid> | ||
</item> | ||
</channel> | ||
</rss> |