configuration option for publishing checkboxes
domesticat - August 3, 2008 - 22:13
| Project: | Atom |
| Version: | 6.x-1.0 |
| Component: | Code |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | won't fix |
Jump to:
Description
I made some major changes to my site recently, using views in a new way, and I got confused when my atom feed was suddenly empty. I finally figured it out when I realized that on line 114, the query limits the atom feed only to entries currently promoted to the front page.
It was easy enough to change by taking out 'n.promote = '1' AND ' from line 114, but I thought it a bit odd. I can't really call it a bug, but I could see this catching others off guard.

#1
I can see adding configuration options to make the publishing options on the node page configurable (promoted, published, etc).
#2
This should match whatever node_feed() does, which is only to use n.status = 1.
#3
Nevermind, node_feed uses n.promote = 1 and n.status = 1. If someone wants the content to be configurable, we should really just add an Atom views style so people can override the atom.xml or atom/feed paths.