summaryrefslogtreecommitdiffstats
path: root/site/projects/ryuslash.org
diff options
context:
space:
mode:
Diffstat (limited to 'site/projects/ryuslash.org')
-rw-r--r--site/projects/ryuslash.org54
1 files changed, 19 insertions, 35 deletions
diff --git a/site/projects/ryuslash.org b/site/projects/ryuslash.org
index ccc6475..cfce357 100644
--- a/site/projects/ryuslash.org
+++ b/site/projects/ryuslash.org
@@ -1,7 +1,7 @@
#+TITLE: ryuslash.org
#+STYLE: <link rel="stylesheet" type="text/css" href="../../stylesheet.css" />
#+LINK_UP: ../index.html
-#+LINK_HOME: ../index.html
+#+LINK_HOME: http://ryuslash.org
#+LINK: python http://www.python.org
#+LINK: django http://djangoproject.com
#+LINK: feedparser http://code.google.com/p/feedparser/
@@ -10,40 +10,26 @@
#+LINK: src https://github.com/ryuslash/ryuslash.org
#+LINK: tar_gz https://github.com/ryuslash/ryuslash.org/tarball/master
#+LINK: zip https://github.com/ryuslash/ryuslash.org/zipball/master
+#+STARTUP: showall
+
+#+begin_html
+ <script src="/keyjs.js" type="text/javascript"></script>
+ <script type="text/javascript">
+ keyjs_initialize({ "u": [ "keyjs_goto", "../index.html" ],
+ "h": [ "keyjs_goto", "http://ryuslash.org" ] });
+ </script>
+#+end_html
-#+INCLUDE: "../header.org" :lines "1-4"
#+INCLUDE: "dlmenu.inc"
* About
- :PROPERTIES:
- :hosted_at: github
- :END:
- ~ryuslash.org~ is the project of the front page of [[http://ryuslash.org][my website]]. I
- have noticed, though, that apart from the /design/ and the initial
- data[fn:: The configured feeds], there is nothing really specific to
- my about this project.
+ ~ryuslash.org~ is the project of the [[http://ryuslash.org][front page]] of my website. I have
+ noticed, though, that apart from the /design/ and the initial data,
+ there is nothing really specific to my about this project.
Right now all it really does is show a bunch of feeds on a page.
-** Why
-
- I've been trying out different kinds of ways to manage/run a
- website/blog for a long time now, and I can't seem to keep using
- just one thing. This annoys me.
-
- With ~ryuslash.org~ I'm trying it in a different way, gather
- everything I do elsewhere and present it in a single place. I
- *must* be generating content /somewhere/, and if that's true, and
- friends or other interested people might want to know about this,
- then it's nice to have it all in one place.
-
-** How
-
- ~ryuslash.org~ uses the [[python][Python]] web framework [[django][django]] and the [[python][Python]]
- module [[feedparser][feedparser]]. It uses a management command ~loadfeeds~ to go
- through all the configured feeds and check them for new items.
-
** Features
- Define multiple RSS feeds to load news items from.
@@ -62,14 +48,12 @@
- [[feedparser][Feedparser]] 5.1.1
- [[markdown][Markdown]] 2.1.1
-* Installation
+* Usage
- Must write...
+ It is a normal django application, so normal django deployment
+ methods should work.
-* Configuration
+** Configuration
- The feeds that are loaded are defined in the database, through the
- ~Feed~ model. Now when you want to run your own instance, it might
- be preferable *not* to load my feeds, so you should remove (part of)
- or change ~aggregator/fixtures/initial_data.json~, otherwise your
- feeds will be overwritten by my feeds every time you migrate.
+ The feeds that are loaded are defined in ~local_settings.py~. An
+ example of how to do this is located in ~local_settings.py.example~.