Closed (duplicate)
Project:
Leech
Version:
5.x-1.8
Component:
leech_feed_taxonomy
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
30 Aug 2007 at 22:34 UTC
Updated:
28 Nov 2007 at 17:01 UTC
Hi and thank you for a wonderful module to all involved. I am struggling to get the tags from a del.icio.us feed working. I have all options checked to bring in tag information, and I have leech_feed_taxonomy enabled. Am I missing something? From all I've read it appears the newer versions of leech, through leech_feed_taxonomy can import tags in rss, atom, etc. files. The del.icio.us feed shows tags, but perhaps they aren't formatted correctly?
Any guidance here would be great.
thanks
art
Comments
Comment #1
alex_b commentedSorry for my delayed response, DrupalCon was in the way :) (Btw. you can check out lots of the presentation here: http://barcelona2007.drupalcon.org/ - people are starting to put up their slides and videos.)
The reason why del.ico.us tags don't get sucked in is that they look very differently from the more common
<category></category>style format:Common way:
del.ico.us way:
leech_feed_taxonomy does not take this format into account. I will see wether I get some time to take a look at this.
Comment #2
alex_b commentedDid some more digging. These are the two things that need to be fixed in order to make aggregating del.ico.us links work:
* The parser leech_news_parser.inc needs to parse the taxo:topics tags
* In leech_feed_taxonomy_nodeapi() they need to be plucked off the $node->leech_news_item->feed_data->channel['ITEM'] item array and passed on to leech_feed_taxonomy_create_vocabulary_items() function.
There is one peculiarity: delicious CHANNEL feed items come in on $node->leech_news_item->feed_data->channel['ITEMS'] not $node->leech_news_item->feed_data->channel['ITEM']
I don't have any resources at the time to do this. Can anybody step up here? It might also make sense to implement this on feedapi instead of leech, as this will be the aggregator of the future. Especially if your project can still switch.
Comment #3
alley commentedDel.icio.us also has dc:content (dublincore) tags, which should work.
I have submitted a patch at to make the leech_feed_taxonomy module work at all at
http://drupal.org/node/181682 ... I haven't checked it with a del.icio.us feed yet, but it should work
Comment #4
alex_b commentedhttp://drupal.org/node/181682#comment-642307