Remove horribly out-of-date documentation
authorMagnus Hagander <magnus@hagander.net>
Thu, 31 Dec 2015 14:21:58 +0000 (15:21 +0100)
committerMagnus Hagander <magnus@hagander.net>
Thu, 31 Dec 2015 14:21:58 +0000 (15:21 +0100)
INSTALL.txt [deleted file]
TODO.txt [deleted file]

diff --git a/INSTALL.txt b/INSTALL.txt
deleted file mode 100644 (file)
index 3c02a5e..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-Welcome to Planet PostgreSQL!
-
-Author: Magnus Hagander <magnus@hagander.net>
-
-== INSTALLATION ==
-Needed:
-* Python
-* PostgreSQL
-* Psycopg2 - http://www.initd.org/pub/software/psycopg/PSYCOPG-2-0/
-* uTidy - http://utidylib.berlios.de/
-
-== CONFIGURATION ==
-
-* Copy planet.ini.sample to planet.ini and add your conninfo string
-
-Setting up the admin portion: (which uses Django)
-* create schemas planet and admin: 
-       psql -U postgres planetbeta -c 'create schema planet; create schema admin;'
-* cd admin; ./manage.py syncdb (this loads the rest of the schema as well)
-
-* Adapt planet_run.sh to your needs
-* Run planet_run.sh (probably from cron?)
-
-== PLATFORM SPECIFIC NOTES ==
-
-* MAC OS X
-Patch to fix libtidy:
-
---- uTidylib-0.2/tidy/lib.py    2008-10-24 08:46:32.000000000 -0700
-+++ uTidylib-0.2.1/tidy/lib.py  2008-10-24 08:47:18.000000000 -0700
-@@ -23,7 +23,7 @@
- thelib=None
- os.environ['PATH'] = "%s%s%s" % (packagedir, os.pathsep, os.environ['PATH'])
- for libname in ('cygtidy-0-99-0', 'libtidy', 'libtidy.so',
--                'libtidy-0.99.so.0', 'tidylib'):
-+                'libtidy-0.99.so.0', 'tidylib', 'libtidy.dynlib'):
-     try:
-         thelib = getattr(ctypes.cdll, libname)
-         break
-
diff --git a/TODO.txt b/TODO.txt
deleted file mode 100644 (file)
index e3cec5a..0000000
--- a/TODO.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-* Move filtering into Blog model
-* We'll need verification that it's actually an image, and a size cap on it as well, of course, but this is a great start.
-
-Ok. In the Blog model, put something like:
-@property
-def image(self):
-if self.image_location:
-return self.image_location
-return 'img/default.png'
-
-* Add duplicate detection in the admin interface
-* Add ability to specify multiple blogs per author
-* Remove explicit schemas and name them based on the users (define users)