| 1 |
Drupal commentrss.module README.txt
|
| 2 |
==============================================================================
|
| 3 |
|
| 4 |
This module provides RSS feeds for comments. This is useful for allowing
|
| 5 |
readers to subscribe to comments for a blog post, article, or forum topic.
|
| 6 |
It currently provides 3 types of feeds, and an optional 4th type. Each type of
|
| 7 |
comment field may be disabled if unneeded.
|
| 8 |
|
| 9 |
* complete site feed /crss
|
| 10 |
* per node feeds eg. /crss/node/12
|
| 11 |
* per term feeds eg. /crss/term/13
|
| 12 |
* per vocabulary feeds eg. /crss/vocab/1 (requires vocabulary_list.module)
|
| 13 |
|
| 14 |
Comment feeds provide an alternative to email subscriptions, allowing users to
|
| 15 |
monitor discussions without having to provide their email address. Due to the
|
| 16 |
limited capabilities of RSS, threading is not preserved and the comments are
|
| 17 |
listed in reversed time order.
|
| 18 |
|
| 19 |
|
| 20 |
Installation
|
| 21 |
------------------------------------------------------------------------------
|
| 22 |
|
| 23 |
Required:
|
| 24 |
- Copy the module files to modules/
|
| 25 |
- Enable the module as usual from Drupal's admin pages.
|
| 26 |
|
| 27 |
Optional (if you would like to have nice vocabulary links in feeds):
|
| 28 |
- Get vocabulary_list module and install as documented
|
| 29 |
|
| 30 |
Credits / Contact
|
| 31 |
------------------------------------------------------------------------------
|
| 32 |
|
| 33 |
This module was created by Gabor Hojtsy (goba[at]php.net). Moshe Weitzman
|
| 34 |
provided several fixes and improvements. Chris Cook is the current maintainer.
|
| 35 |
|
| 36 |
TODO
|
| 37 |
------------------------------------------------------------------------------
|
| 38 |
|
| 39 |
- Either export a block with an XML/RSS button or try to hook into the
|
| 40 |
syndication block provided by Drupal core or hook up with syndication
|
| 41 |
module
|