-
Notifications
You must be signed in to change notification settings - Fork 654
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
新着商品・新着情報のRSSフィード機能 #4908
新着商品・新着情報のRSSフィード機能 #4908
Conversation
<title>{{ BaseInfo.shop_name }} 新着情報</title> | ||
<description>{{ BaseInfo.shop_name }} 新着情報</description> | ||
<link>{{ url('homepage') }}</link> | ||
<lastBuildDate>{{ "now" | date(constant('DATE_RFC822')) }}</lastBuildDate> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lastBuildDate | The last time the content of the channel changed.
https://validator.w3.org/feed/docs/rss2.html#optionalChannelElements
なので、お知らせの最終更新日時がいいかと思います。(商品情報も同様)
<atom:link href="{{ url('rss_feed_for_news') }}" rel="self"/> | ||
|
||
{% for article in news %} | ||
<item> | ||
<title>{{ article.title }}</title> | ||
<title>{{ article.title }} | ||
</title> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
改行が入ってテストが落ちてしまっているようです。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kiy0taka すいません、修正しました。
概要(Overview・Refs Issue)
新着商品と、新着情報(ニュース) のRSSフィードを出力する機能を実装しました。
関連issue
方針(Policy)
実装に関する補足(Appendix)
テスト(Test)
相談(Discussion)
マイナーバージョン互換性保持のための制限事項チェックリスト
レビュワー確認項目