thauber / django-schedule

A calendaring app for Django. It is now stable, Please feel free to use it now. Active development has been taken over by bartekgorny.

This URL has Read+Write access

name age message
file .gitignore Mon Aug 24 13:40:49 -0700 2009 jquery.tooltip is now present Signed-off-by: B... [skyl]
file AUTHORS Mon Aug 31 03:32:51 -0700 2009 Updated contributor info Signed-off-by: Bartek... [bartekgorny]
file LICENCSE.txt Mon Jun 29 07:48:35 -0700 2009 Added NewBSD license Signed-off-by: Bartek Gór... [thauber]
file MANIFEST.in Tue Oct 20 12:50:23 -0700 2009 adjusted the manifest to catch all the media files [Mark Rogers]
file README.textile Mon Aug 31 04:03:10 -0700 2009 added README [bartekgorny]
directory docs/ Mon Aug 31 04:00:01 -0700 2009 fixed docstring [bartekgorny]
directory project_sample/ Tue Oct 13 14:51:45 -0700 2009 Merge branch 'master' of ../../grind/cleanup [bartekgorny]
directory schedule/ Sat Nov 07 01:46:18 -0800 2009 bugfix - we want default calendar ONLY if calen... [bartekgorny]
file setup.py Tue Oct 20 12:50:22 -0700 2009 Not all distros package python-dateutil anymore... [Mark Rogers]
README.textile

Django-schedule

A calendaring/scheduling application, featuring:

  • one-time and recurring events
  • calendar exceptions (occurrences changed or cancelled)
  • occurrences accessible through Event API and Period API
  • relations of events to generic objects
  • ready to use, nice user interface
  • view day, week, month, three months and year
  • project sample which can be launched immediately and reused in your project

See see wiki page for more.

Installation

Download the code; put in into your project’s directory or run

python setup.py install
to install system-wide.

REQUIREMENTS: python-vobject (comes with most distribution as a package).

Settings.py

REQUIRED

INSTALLED_APPS – add:
‘schedule’

TEMPLATE_CONTEXT_PROCESSORS – add:
“django.core.context_processors.request”

Optional

FIRST_DAY_OF_WEEK

This setting determines which day of the week your calendar begins on if your locale doesn’t already set it. Default is 0, which is Sunday.

OCCURRENCE_CANCEL_REDIRECT

This setting controls the behavior of :func:`Views.get_next_url`. If set, all calendar modifications will redirect here (unless there is a `next` set in the request.)

SHOW_CANCELLED_OCCURRENCES

This setting controls the behavior of :func:`Period.classify_occurence`. If True, then occurences that have been cancelled will be displayed with a css class of canceled, otherwise they won’t appear at all.

Defaults to False

CHECK_PERMISSION_FUNC

This setting controls the callable used to determine if a user has permission to edit an event or occurance. The callable must take the object and the user and return a boolean.

Default:


check_edit_permission(ob, user):
return user.is_authenticated()

If ob is None, then the function is checking for permission to add new events

GET_EVENTS_FUNC

This setting controls the callable that gets all events for calendar display. The callable must take the request and the calendar and return a `QuerySet` of events. Modifying this setting allows you to pull events from multiple calendars or to filter events based on permissions

Default:


get_events(request, calendar):
return calendar.event_set.all()