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().

Comments

floretan’s picture

Title: Access denied on "View feed items" » Broken "View feed items" link

The path is indeed not defined in hook_menu(), but the response is a "Page not found".

doublejosh’s picture

This is because you have to manually build the view right?

m3avrck’s picture

Title: Broken "View feed items" link » fix views

Yes all views are broken in 6.x

Once Earl gets Views 1.0 released this module needs to be updated.

jrabeemer’s picture

Title: fix views » Views 2 RC5 broken with Simplepie 6.x-1.x-dev

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. :-/

nmridul’s picture

Views 2.0 has an official release now.... I'm too eager to see simplefeed and views working together...

sirkitree’s picture

Status: Active » Needs review
StatusFileSize
new500 bytes
new4.1 KB

Here's a patch and associated include that fixes views integration.

gmak’s picture

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 ID I 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

seutje’s picture

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 ^^

seutje’s picture

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!