A Django application to manage tickets for an internal helpdesk. Formerly known as Jutda Helpdesk.
Go to file
2011-02-06 17:51:25 -05:00
docs Rebuilt HTML documentation 2011-02-05 05:11:34 +00:00
helpdesk Rename categories to kb_categories 2011-02-06 17:51:25 -05:00
AUTHORS Document custom fields in README, and add AUTHORS file listing contributors I could remember. 2011-02-02 11:40:40 +00:00
build_project.sh Simple shell script to build django-helpdesk and send to pypi. 2011-01-26 00:35:01 +00:00
CHANGELOG Issue #146: Wrong jQuery filename in public templates. Thanks, bruno.braga. 2010-09-04 06:59:28 +00:00
LICENSE Big checkin that adds a number of features and makes some changes: 2008-08-28 09:06:24 +00:00
LICENSE.3RDPARTY Resolves issue #62 - adds spam filtering via akismet.py using either 2009-06-25 11:22:53 +00:00
MANIFEST.in Add first round of proper documentation. Mostly taken from the README at this stage. 2011-02-04 23:13:37 +00:00
README.rst Remove TOC from README 2011-02-05 05:01:09 +00:00
setup.py Increment version number for updated pypi package 2011-02-03 10:12:27 +00:00
UPGRADE Change references to Jutda Helpdesk to django-helpdesk as that should 2011-01-25 23:08:41 +00:00

django-helpdesk - A Django powered ticket tracker for small enterprise.
=======================================================================

Copyright 2009-11 Jutda and Ross Poulton. All Rights Reserved. See LICENSE for details.

django-helpdesk was formerly known as Jutda Helpdesk, named after the 
company who originally created it. As of January 2011 the name has been 
changed to reflect what it really is: a Django-powered ticket tracker with
contributors reaching far beyond Jutda.

Complete documentation is available in the docs/ directory, or online at http://django-helpdesk.readthedocs.org/.

You can see a demo installation at http://demo.jutdahelpdesk.com

Licensing
=========

See the file 'LICENSE' for licensing terms. Note that django-helpdesk is 
distributed with 3rd party products which have their own licenses. See 
LICENSE.3RDPARTY for license terms for included packages.

Dependencies (pre-flight checklist)
===================================

1. Python 2.4+ 
2. Django (1.2 or newer)
3. An existing WORKING Django project with database etc. If you
   cannot log into the Admin, you won't get this product working.

**NOTE REGARDING SQLITE AND SEARCHING:**
If you use sqlite as your database, the search function will not work as
effectively as it will with other databases due to its inability to do
case-insensitive searches. It's recommended that you use PostgreSQL or MySQL
if possible. For more information, see this note in the Django documentation:
http://docs.djangoproject.com/en/dev/ref/databases/#sqlite-string-matching

When you try to do a keyword search using sqlite, a message will be displayed
to alert you to this shortcoming. There is no way around it, sorry.

Upgrading from previous versions
================================

If you are upgrading from a previous version of django-helpdesk, you should 
read the UPGRADING file to learn what changes you will need to make to get 
the current version of django-helpdesk working.

1. Find out your current version of django-helpdesk. In the 'helpdesk' folder,
   use the 'svn' command to find the current revision::

      svn info .

   Look for the 'Revision' line, eg::

      Revision: 92

2. Read through the UPGRADE file, looking for any changse made _after_ that 
   revision. Apply the commands provided in order from oldest to most recent.

3. Restart your web server software (eg Apache) or FastCGI instance, to ensure
   the latest changes are in use.

4. Continue to the 'Initial Configuration' area, if needed.

Installation
============

``pip install django-helpdesk``

For further installation information see docs/install.html and docs/configuration.html