#Griffith 0.13.0 README
This document was last updated on Thu Jun 10 2009.
Please see the file COPYING for licensing and warranty information.
The latest version of this software is available at the following URL:
http://www.griffith.cc/
##Table of Contents
- Introduction
- System Requirements
- Installation
- Reporting Bugs
- TODO list
- About the Authors
##Introduction
Griffith is a film collection manager, released under the GNU/GPL License.
##System Requirements
Name | Minimum version | NOTE |
Python | 2.5 or higher | |
GTK+ | tested on 2.8.6 | |
PyGTK (with glade3) | 2.6.8 | |
SQLAlchemy | 0.5 | |
pysqlite2 | 2 | Python 2.5's sqlite3 module will be used if available |
PIL | ||
ReportLab | 1.19 |
##Other (optional) dependencies:
PostgreSQL support | Psycopg2 | 2 |
MySQL support | MySQLDb | |
Upgrading from Griffith <= 0.6.2 (only if pysqlite 1.0 was used before, 1.1 is not needed) | pysqlite | 1.0 |
Encoding detection of imported CSV file support | chardet | |
Gtkspell | python-gnome-extras | |
Covers and reports support | PDF reader |
##To check dependencies:
$ ./griffith --check-dep
##To show detected Python modules versions:
$ ./griffith --show-dep
Windows installer includes all the needed requirements.
A GTK+ runtime is not necessary when using this installer.
##External databases
You need to prepare a new database and a new user by yourself
###PostgreSQL
CREATE USER griffith UNENCRYPTED PASSWORD 'gRiFiTh' NOCREATEDB NOCREATEUSER;
CREATE DATABASE griffith WITH OWNER = griffith ENCODING = 'UNICODE';
GRANT ALL ON DATABASE griffith TO griffith;
###MySQL
CREATE DATABASE `griffith` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'griffith'@'localhost' IDENTIFIED BY 'gRiFiTh';
CREATE USER 'griffith'@'%' IDENTIFIED BY 'gRiFiTh';
GRANT ALL ON `griffith` . * TO 'griffith'@'localhost';
GRANT ALL ON `griffith` . * TO 'griffith'@'%';
###Microsoft SQL Server CREATE DATABASE griffith EXEC sp_addlogin @loginame='griffith', @passwd='gRiFiTh', @defdb='griffith' GO USE griffith EXEC sp_changedbowner @loginame='griffith'
##Installation
See INSTALL file
##Reporting Bugs
If you want to help or report any bugs founded please visit:
http://www.griffith.cc/
or
https://bugs.launchpad.net/griffith/
##TODO
See TODO file
##About the Authors
See AUTHORS file