Compare commits

..

No commits in common. "patch-1" and "master" have entirely different histories.

View File

@ -1,32 +1,29 @@
# Feed Settings # The feeds, /!\ Put Atom feeds only
feeds = { feeds = {
'FeedName1' : { # Change this to the name of the group you want to add this feed to 'YIFY' : {
'url' : 'http://localhost/feedcleaner/?url=FEEDGOESHERE', # Replace "FEEDGOESHERE" with the URL to the Atom Feed, leave the rest of of the line intact, see the example below 'url' : 'http://localhost/feedcleaner/?url=http://yify-torrents.com/rss',
'server' : 'pubsubserver' # Change this to the pubsub servername, including the TLD (eg. pubsub.domain.tld). See the example below
},
# Add more feeds as you need them using this format
#'FeedName2' : {
# 'url' : 'http://localhost/feedcleaner/?url=FEEDGOESHERE',
# 'server' : 'pubsubserver'
# },
# Remember to add a comma ',' after every close bracket except for the last one
'Feedname3' : {
'url' : 'http://localhost/feedcleaner/?url=http://feedurlhere/rss.xml',
'server' : 'pubsub.movim.eu' 'server' : 'pubsub.movim.eu'
},
'LEquipe' : {
'url' : 'http://localhost/feedcleaner/?url=http://www.lequipe.fr/rss/actu_rss.xml',
'server' : 'sport.mov.im'
},
'SportingNews' : {
'url' : 'http://localhost/feedcleaner/?url=http://www.sportingnews.com/rss',
'server' : 'sport.mov.im'
},
'OuestFrance' : {
'url' : 'http://localhost/feedcleaner/?url=http://www.ouest-france.fr/rss.xml',
'server' : 'news.mov.im'
} }
} }
# NB. Use Atom v0.3 feeds only # XMPP
jid = 'user@server.tld'
# XMPP Authentication Settings resource = 'atomtopubsub'
secret = 'password'
jid = 'user@server.tld' # XMPP UserID and domain to post the feeds as
resource = 'atomtopubsub' # You can change this if you want, it only tells XMPP what application posted the feeds
secret = 'password' # The password for the above UserID
# Refresh intervals in minutes # Refresh intervals in minutes
refresh_time = 60 refresh_time = 15
# The refresh time will be split evenly over all of your feeds.
# Eg. 60 minutes across 3x feeds, will equal 1x feed will be refreshed every 20 minutes.
# Or 60 minutes across 6x feeds would equal 1x feed will be refreshed every 10 minutes.