2012-06-21 21:24:54 +02:00
|
|
|
#+TITLE: ryuslash.org
|
|
|
|
#+STYLE: <link rel="stylesheet" type="text/css" href="../../stylesheet.css" />
|
|
|
|
#+LINK_UP: ../index.html
|
2012-07-01 14:17:54 +02:00
|
|
|
#+LINK_HOME: http://ryuslash.org
|
2012-06-21 21:24:54 +02:00
|
|
|
#+LINK: python http://www.python.org
|
|
|
|
#+LINK: django http://djangoproject.com
|
|
|
|
#+LINK: feedparser http://code.google.com/p/feedparser/
|
|
|
|
#+LINK: south http://south.aeracode.org/
|
|
|
|
#+LINK: markdown http://packages.python.org/Markdown/
|
|
|
|
#+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
|
2012-07-01 14:17:54 +02:00
|
|
|
#+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
|
2012-06-21 21:24:54 +02:00
|
|
|
|
|
|
|
#+INCLUDE: "dlmenu.inc"
|
|
|
|
|
|
|
|
* About
|
|
|
|
|
2012-07-01 14:17:54 +02:00
|
|
|
~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.
|
2012-06-21 21:24:54 +02:00
|
|
|
|
|
|
|
Right now all it really does is show a bunch of feeds on a page.
|
|
|
|
|
|
|
|
** Features
|
|
|
|
|
|
|
|
- Define multiple RSS feeds to load news items from.
|
|
|
|
- Define relative paths for the xml and profile linked to a feed.
|
|
|
|
- Group feeds in categories.
|
|
|
|
- Add comments to any post that comes in.
|
|
|
|
- Generate feeds: One for all posts, one for all comments.
|
|
|
|
|
|
|
|
** Requirements
|
|
|
|
|
|
|
|
~ryuslash.org~ uses the following modules and applications:
|
|
|
|
|
|
|
|
- [[python][Python]] 2.6.x or 2.7.x
|
|
|
|
- [[django][Django]] 1.3
|
|
|
|
- [[south][South]] 0.7.4
|
|
|
|
- [[feedparser][Feedparser]] 5.1.1
|
|
|
|
- [[markdown][Markdown]] 2.1.1
|
|
|
|
|
2012-07-01 14:17:54 +02:00
|
|
|
* Usage
|
2012-06-21 21:24:54 +02:00
|
|
|
|
2012-07-01 14:17:54 +02:00
|
|
|
It is a normal django application, so normal django deployment
|
|
|
|
methods should work.
|
2012-06-21 21:24:54 +02:00
|
|
|
|
2012-07-01 14:17:54 +02:00
|
|
|
** Configuration
|
2012-06-21 21:24:54 +02:00
|
|
|
|
2012-07-01 14:17:54 +02:00
|
|
|
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~.
|