Skip to content

marciopocebon/Griffith

 
 

#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

NameMinimum versionNOTE
Python2.5 or higher
GTK+tested on 2.8.6
PyGTK (with glade3)2.6.8
SQLAlchemy0.5
pysqlite22Python 2.5's sqlite3 module will be used if available
PIL
ReportLab1.19

##Other (optional) dependencies:

PostgreSQL supportPsycopg22
MySQL supportMySQLDb
Upgrading from Griffith <= 0.6.2
(only if pysqlite 1.0 was used before, 1.1 is not needed)
pysqlite1.0
Encoding detection of imported CSV file supportchardet
Gtkspellpython-gnome-extras
Covers and reports supportPDF 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

About

Media collection manager [MIRROR]

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%