|
Revision 1053
(checked in by miyagawa, 3 years ago)
|
add more comments to examples
|
| Line | |
|---|
| 1 |
# Generate videocast feed (RSS 2.0) from archive.org search result page |
|---|
| 2 |
|
|---|
| 3 |
plugins: |
|---|
| 4 |
# Subscribe to the archive.org tag search page |
|---|
| 5 |
- module: Subscription::Config |
|---|
| 6 |
config: |
|---|
| 7 |
feed: |
|---|
| 8 |
- url: http://www.archive.org/search.php?query=subject:%22yapc%22 |
|---|
| 9 |
|
|---|
| 10 |
# Upgrade entry body to fulltext |
|---|
| 11 |
- module: Filter::EntryFullText |
|---|
| 12 |
|
|---|
| 13 |
# Find Enclosures from entry body by looking for links to mov/mp4 files |
|---|
| 14 |
- module: Filter::FindEnclosures |
|---|
| 15 |
|
|---|
| 16 |
# Issue HEAD requests to found enclosures to know HTTP Content-Length |
|---|
| 17 |
- module: Filter::HEADEnclosureMetadata |
|---|
| 18 |
|
|---|
| 19 |
# Create RSS 2.0 feed out of those enclosures |
|---|
| 20 |
- module: Publish::Feed |
|---|
| 21 |
config: |
|---|
| 22 |
format: RSS |
|---|
| 23 |
dir: /vh/tokyo.yapcasia.org/htdocs |
|---|
| 24 |
filename: video.xml |
|---|