From 6da8f546246c40b49b9e037c2415452e2c0b1632 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 22 May 2012 00:51:03 +0200 Subject: Simpler feed settings Now this might be a temporary change, but for now configuring feeds is kept out of the database and placed in the `settings.py'. I am thinking of adding a web-based interface though, which would also mean I place everything back in a database. --- aggregator/fixtures/initial_data.json | 125 ---------------------------------- 1 file changed, 125 deletions(-) delete mode 100644 aggregator/fixtures/initial_data.json (limited to 'aggregator/fixtures') diff --git a/aggregator/fixtures/initial_data.json b/aggregator/fixtures/initial_data.json deleted file mode 100644 index 3195aaa..0000000 --- a/aggregator/fixtures/initial_data.json +++ /dev/null @@ -1,125 +0,0 @@ -[ - { - "model": "aggregator.Category", - "pk": 1, - "fields": { - "name": "posts" - } - }, - { - "model": "aggregator.Category", - "pk": 2, - "fields": { - "name": "activity" - } - }, - { - "model": "aggregator.Feed", - "pk": 1, - "fields": { - "name": "Advogato", - "base_url": "http://www.advogato.org/", - "feed_url": "person/ryuslash/rss.xml", - "profile_url": "person/ryuslash", - "favicon_ext": "ico", - "categories": [ 1 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 2, - "fields": { - "name": "Diasp*", - "base_url": "http://diasp.org/", - "feed_url": "public/ryuslash.atom", - "profile_url": "public/ryuslash", - "br2nl": true, - "with_markdown": true, - "categories": [ 1 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 3, - "fields": { - "name": "Identi.ca", - "base_url": "http://identi.ca/", - "feed_url": "api/statuses/user_timeline/107950.rss", - "profile_url": "ryuslash", - "favicon_ext": "ico", - "categories": [ 1 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 4, - "fields": { - "name": "Github", - "base_url": "https://github.com/", - "feed_url": "ryuslash.atom", - "profile_url": "ryuslash", - "categories": [ 2 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 5, - "fields": { - "name": "Gitorious", - "base_url": "https://gitorious.org/", - "feed_url": "~ryuslash/feed.atom", - "profile_url": "~ryuslash", - "categories": [ 2 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 6, - "fields": { - "name": "Ikiwiki", - "base_url": "http://ryuslash.org/wiki/", - "feed_url": "index.rss", - "uses_title": true, - "categories": [ 1 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 7, - "fields": { - "name": "Reddit", - "base_url": "http://www.reddit.com/", - "feed_url": "user/ryuslash/.rss", - "profile_url": "usr/ryuslash/", - "uses_title": true, - "favicon_ext": "ico", - "categories": [ 1 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 8, - "fields": { - "name": "Wordpress", - "base_url": "http://ryuslash.wordpress.com/", - "feed_url": "feed/", - "profile_url": "about/", - "uses_title": true, - "favicon_ext": "ico", - "categories": [ 1 ] - } - }, - { - "model": "aggregator.Feed", - "pk": 9, - "fields": { - "name": "StackOverflow", - "base_url": "http://stackoverflow.com/", - "feed_url": "feeds/user/459915", - "profile_url": "users/459915/ryuslash", - "uses_title": true, - "favicon_ext": "ico", - "categories": [ 1 ] - } - } -] -- cgit v1.2.3-54-g00ecf