-
Initial commit to Drupal 7. The style was left in (though it uses the views RSS style behind the schemes right now) to facilitate adding podcast elements to the Podcast RSS feed easier (e.g., cover art for the feed) in future commits.
-
FileField Podcaster: February 25, 2011 2:09
Commit 449b9ac on 6.x-1.x, master, committed by Drupal Git User (LDAP)Stripping CVS keywords
-
Adding initial README.txt file.
-
bug #332989 fixed by q0rban: Errors were being throws when fields other than filefield were added to the feed. Now it looks for Filefield only.
-
bug #365747 by shaisachs: Updated file path from url() to file_create_url().
-
bug #528874 found by daniel-san: Module name misspelled at FieldField instead of FileField.
-
#328649 by grendzy: The guid in a feed needs to be unique. Updated to use the filepath which works with private files. Some feed readers judge if an item is unique by the guid.
-
#328649 by mfer: Fixed the enclosure being the url to the file. It is reverted back to nid at http://example.com syntax that the rest of drupal uses. Note: the author tag for the items currently isn't set. This should be a full email address.
-
Moved template function fromobject.inc to .module file.
-
This is an overhaul of the ffpc module. - Removed the ffpc display type. Instead defaulting to the core feed type. - Moved the sytle plugin class to be an extends of the core rss plugin syste. The core plugin style provides everything we need except the ability to add aditional elements to the feed itself (such as the iTunes specific tags). The new object adds this extra functionality. - Moved the row plugin to be an extends of the default node row rss plugin provided by core and then extending that to add the aditional files and iTunes/podcast specific tags to the items. Moving to this setup provides a number of benefits. - Less complexity now that the ffpc display has been removed. - Uses move of core so core fixes should benefit this module and core settings (e.g., using the teaser or full node text for the description) are now available.