Views 2 RC5 broken with Simplepie 6.x-1.x-dev
webchick - April 20, 2008 - 19:07
| Project: | SimpleFeed |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | needs review |
Description
When I attempt to go to a URL like feeds/X, I get access denied, even as uid 1. Same with just 'feeds'.
This path doesn't even appear to be defined in hook_menu().

#1
The path is indeed not defined in hook_menu(), but the response is a "Page not found".
#2
This is because you have to manually build the view right?
#3
Yes all views are broken in 6.x
Once Earl gets Views 1.0 released this module needs to be updated.
#4
I'm not sure if this is related...
Views 2.x was working with Simplefeed 6.x-dev until I recently upgrade to Views RC5 and CCK RC10.
Now I am missing all the simplepie handlers under Views->Fields. I can't pull the feed item's url or any other simplepie field.
Error: handler for simplefeed_feed_item > url doesn't exist!
I can probably do a node load and query it manually. :-/
#5
Views 2.0 has an official release now.... I'm too eager to see simplefeed and views working together...
#6
Here's a patch and associated include that fixes views integration.
#7
These patches seem to work pretty well for me, with one exception.
If I try to use the filter for
Simplefeed Feed Item: Parent Feed Node IDI get an error saying:Error: handler for simplefeed_feed_item > fid doesn't exist!Not sure if this is an issue with the patches or with simplefeed itself, but I'd love to get this working.
Thanks
#8
as a temporary solution to your issue (mainly coz I don't know better :s), u could open up simplefeed_item.views.inc
scroll to line 78 and change 'views_handler_filter_simplefeed_parent' into 'views_handler_filter_numeric', then you can at least set the nid of the parent feed manually by entering the number
I spent 4 hours trying to figure out how to construct the views_handler_filter_simplefeed_parent so that it would provide a nice dropdown box with the titles of all the feeds, but looks like I'm not gonna figure this out today :x
(simply applying a .patch in this vista is already a challenge tbh)
edit: couple hours later I finally figured it out, I'll try to finish it up tomorrow and post a patch, gotta go make dinner now ^^
#9
so I fixed it rather quickly today, and then I spent 4-5 hours trying to create a proper patch on this vista machine...
sorta giving up
the patch I made doesn't run at all, it fails to retrieve the revision, so I'll add the entire inc's as well
this should fix the filter for parent feed ID, it makes a nice lil list with checkboxes and the usual 'is one of' and 'is not one of' with the names of the feeds, linking to their page, kinda screw up on the general overview ui though
if any1 can make this in a proper patch, ur my hero!