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

Fix atom.xml feed not paying attention for setting to show about(5.0.x) #1889

Merged
merged 1 commit into from Jan 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions CHANGES.rst
Expand Up @@ -68,12 +68,15 @@ Bug fixes:
- Don't fail, if ``timestamp.txt`` was deleted from the resource registries production folder.
[thet]

- Fix security test assertion:
- Fix security test assertion:
TestAttackVectorsFunctional test_widget_traversal_2 assumed a 302 http return code when accessing some private API.
Meanwhile it changed to return a 404 on the URL.
Meanwhile it changed to return a 404 on the URL.
Reflect this in the test and expect a 404.
[jensens]

- Fix atom.xml feed not paying attention for setting to show about information
[vangheem]


5.0.6 (2016-09-23)
------------------
Expand Down
Expand Up @@ -57,7 +57,7 @@
<author tal:define="creator item/creator;
author_name item/author_name;
author_email item/author_email"
tal:condition="python:creator or author_name">
tal:condition="python:feed.show_about and (creator or author_name)">
<name tal:condition="author_name"
tal:content="author_name" />
<name tal:condition="python: not author_name"
Expand Down