From 3758c87540e8ccf8f0604fb9157d71d99181b25e Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Wed, 27 Oct 2010 13:20:53 -0400 Subject: incremented version and moved install doc file to askbot/docs directory --- askbot/__init__.py | 2 +- askbot/doc/INSTALL | 13 ------------- askbot/docs/INSTALL | 14 ++++++++++++++ askbot/setup_templates/settings.py | 2 +- 4 files changed, 16 insertions(+), 15 deletions(-) delete mode 100644 askbot/doc/INSTALL create mode 100644 askbot/docs/INSTALL diff --git a/askbot/__init__.py b/askbot/__init__.py index 62387bbd..b29f4ff7 100644 --- a/askbot/__init__.py +++ b/askbot/__init__.py @@ -22,7 +22,7 @@ def get_version(): """returns version of the askbot app this version is meaningful for pypi only """ - return '0.6.17' + return '0.6.18' #todo: maybe send_mail functions belong to models #or the future API diff --git a/askbot/doc/INSTALL b/askbot/doc/INSTALL deleted file mode 100644 index a24ad236..00000000 --- a/askbot/doc/INSTALL +++ /dev/null @@ -1,13 +0,0 @@ -Askbot is a Question and Answer (Q&A) forum whose design is inspired by StackOverflow_ -and YahooAnswers_ and other similar projects (to lesser extent). - -Askbot is written in Python_ on top of Django_ platform. -Code of Askbot grew out of CNPROG_ project originally written by -`Mike Chen `_ and Sailing Cai. - -If you have any questions installing or tweaking askbot - please do not hesitate to ask -at the forum_ or email to admin@askbot.org. - -Online documentation is available at: http://askbot.org/doc/index.html - -Also there is an - offline copy of the documentation in askbot/doc/source diff --git a/askbot/docs/INSTALL b/askbot/docs/INSTALL new file mode 100644 index 00000000..37c55fb6 --- /dev/null +++ b/askbot/docs/INSTALL @@ -0,0 +1,14 @@ +Askbot is a Question and Answer (Q&A) forum whose design is inspired by StackOverflow_ +and YahooAnswers_ and other similar projects (to lesser extent). + +Askbot is written in Python_ on top of Django_ platform and supports MySQL and PostgeSQL database backends. + +If you have any questions installing or tweaking askbot - please do not hesitate to ask +at the forum_ or email to admin@askbot.org. + +Online documentation is available at: http://askbot.org/doc/index.html + +Also there is an - offline copy of the documentation in askbot/doc/source + +Code of Askbot grew out of CNPROG_ project originally written by +`Mike Chen `_ and Sailing Cai. diff --git a/askbot/setup_templates/settings.py b/askbot/setup_templates/settings.py index 86625903..92246337 100644 --- a/askbot/setup_templates/settings.py +++ b/askbot/setup_templates/settings.py @@ -17,7 +17,7 @@ ADMINS = ( MANAGERS = ADMINS -DATABASE_ENGINE = 'mysql' # only mysql is supported, more will be in the near future +DATABASE_ENGINE = 'postgresql_psycopg2' # only postgres (>8.3) and mysql are supported so far others have not been tested yet DATABASE_NAME = '' # Or path to database file if using sqlite3. DATABASE_USER = '' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. -- cgit v1.2.3-1-g7c22