aboutsummaryrefslogtreecommitdiffstats
path: root/aggregator/fixtures
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-05-22 00:51:03 +0200
committerGravatar Tom Willemsen2012-05-22 00:51:03 +0200
commit6da8f546246c40b49b9e037c2415452e2c0b1632 (patch)
tree02358e0a1d6516cd81a03a5b763a34f74dca737b /aggregator/fixtures
parent8a1c3a615d9466399c252bd789e9bd5cfd5533fb (diff)
downloadryuslash.org-6da8f546246c40b49b9e037c2415452e2c0b1632.tar.gz
ryuslash.org-6da8f546246c40b49b9e037c2415452e2c0b1632.zip
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.
Diffstat (limited to 'aggregator/fixtures')
-rw-r--r--aggregator/fixtures/initial_data.json125
1 files changed, 0 insertions, 125 deletions
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 ]
- }
- }
-]