A Django application to manage tickets for an internal helpdesk. Formerly known as Jutda Helpdesk.
Go to file
2011-04-15 17:38:12 -04:00
.tx Update translations from Transifex (incl add transifex config to project) and add Polish translation (currently approx 26% translated) 2011-02-12 02:22:55 +00:00
docs Add documentation re: login URL. Closes issue GH-48. 2011-03-05 03:19:15 +00:00
helpdesk add command to create UserSettings for user who do not have one yet 2011-04-15 17:38:12 -04:00
.gitignore Move .gitignore outside python 'helpdesk' folder 2011-02-14 22:05:10 +00: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 Move from 'flot' to jqPlot for the upcoming reporting changes. Not able to do multi-series bar charts with flot easily enough so switched to jqPlot. Actual reporting changes still a work in progress. 2011-02-14 22:07:24 +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 Transifex image from README as GitHub can't show it due to https usage. 2011-02-07 07:54:11 +00:00
setup.py Increment version number for updated pypi package 2011-02-03 10:12:27 +00:00
UPGRADE Add support for multi-locale email templates. Also added Russian templates (closes GH-1). REQUIRES SCHEMA CHANGE: SEE FILE UPGRADE. 2011-03-11 22:30:59 +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

Internationalisation
====================

If you want to help translate django-helpdesk into languages other than English, we encourage you to make use of our Transifex project.

http://www.transifex.net/projects/p/django-helpdesk/resource/core/

Feel free to request access to contribute your translations.