From 0baeb8aa5ed07658c17aa79ac8c3e9f6d1173e87 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Thu, 31 Dec 2015 15:21:58 +0100 Subject: [PATCH] Remove horribly out-of-date documentation --- INSTALL.txt | 40 ---------------------------------------- TODO.txt | 13 ------------- 2 files changed, 53 deletions(-) delete mode 100644 INSTALL.txt delete mode 100644 TODO.txt diff --git a/INSTALL.txt b/INSTALL.txt deleted file mode 100644 index 3c02a5e..0000000 --- a/INSTALL.txt +++ /dev/null @@ -1,40 +0,0 @@ -Welcome to Planet PostgreSQL! - -Author: Magnus Hagander - -== 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 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) -- 2.39.5