| Commit | Line | Data |
|---|---|---|
| d5f9ceb6 | 1 | |
| fb4197f0 AB |
2 | Purpose and features |
| 3 | -------------------- | |
| dcf85433 | 4 | |
| fb4197f0 AB |
5 | FeedAPI aggregates feeds on a Drupal website by generating nodes from feeds. |
| 6 | It provides a straightforward configuration for most use cases and is | |
| 7 | extensible through an API. | |
| dcf85433 | 8 | |
| fb4197f0 AB |
9 | * RSS, Atom and RDF feed support |
| 10 | * CSV, ical, KML parsing is available with 3rd party modules | |
| 11 | * Drush integration | |
| 12 | * Views integration | |
| 13 | * OG integration | |
| 14 | * Store data from feeds in CCK fields (Feed Element Mapper) | |
| 15 | Read INSTALL.txt about how to get started using the module. | |
| dcf85433 | 16 | |
| fb4197f0 AB |
17 | Developers |
| 18 | ---------- | |
| d78d51fb | 19 | |
| fb4197f0 AB |
20 | Take a look on the API documentation if you want to develop for FeedAPI: |
| 21 | feedapi.api.php | |
| d78d51fb | 22 | |
| fb4197f0 | 23 | Performance |
| 95b53a08 | 24 | ----------- |
| dcf85433 | 25 | |
| fb4197f0 AB |
26 | Parser Common Syndication is generally faster than Parser SimplePie because it |
| 27 | uses PHP5-only SimpleXML library. | |
| dcf85433 | 28 | |
| fb4197f0 AB |
29 | For large-scale deployments or with special needs, consider refreshing your feeds |
| 30 | with Drush. Running cron with drush (drush cron) uses significantly less memory, | |
| 31 | in some cases refreshing single feeds with drush can be benefitial | |
| 32 | (drush feedapi refresh [node nid]). | |
| dcf85433 | 33 | |
| fb4197f0 AB |
34 | Known issues |
| 35 | ------------ | |
| dcf85433 | 36 | |
| fb4197f0 AB |
37 | * Parser SimplePie submodule may be incompatible with other modules which include |
| 38 | SimplePie (for example Activity Stream) | |
| 39 | * Do not use FeedAPI and poormanscron together (http://drupal.org/node/235328) | |
| 40 | * Grant "use local files as feeds" permission when it's non-avoidable. Use it only when you know exactly what you want to do. | |
| 6ff04d59 | 41 | |
| dcf85433 AN |
42 | Author/credits |
| 43 | -------------- | |
| 44 | ||
| fb4197f0 AB |
45 | * The maintainers are Áron Novák (http://drupal.org/user/61864) and Alexander Barth (http://drupal.org/user/53995). |
| 46 | I got lots of useful responses from my mentors | |
| 47 | Ken Rickard, Károly Négyesi (chx), David Norman (deekayen) and Alex Barth. | |
| 48 | ||
| 49 | Sponsored by Development Seed | |
| 50 | Started as a Summer of Code 2007 project. |