12345678910111213141516171819202122232425262728293031323334 |
- # Copyright 2013 The Distro Tracker Developers
- # See the COPYRIGHT file at the top-level directory of this distribution and
- # at http://deb.li/DTAuthors
- #
- # This file is part of Distro Tracker. It is subject to the license terms
- # in the LICENSE file found in the top-level directory of this
- # distribution and at http://deb.li/DTLicense. No part of Distro Tracker,
- # including this file, may be copied, modified, propagated, or distributed
- # except according to the terms contained in the LICENSE file.
- """An app which enables Distro Tracker to access vendor-specific functionality.
- Vendors can define their own specific set of rules for mail dispatch and the
- Web interface or provide additional data which Distro Tracker can plug in to
- appropriate functions.
- Each rule should be implemented as a callable which takes a defined set of
- arguments with a predefined name. The supported callables are listed in the
- :py:mod:`distro_tracker.vendor.skeleton.rules` module of the
- :py:mod:`distro_tracker.vendor.skeleton` package which can serve as a starting
- point for the implementation of the vendor-specific functions.
- .. note::
- You should copy this package to a new directory and give it a descriptive
- name.
- .. note::
- Make sure the package is a valid Django app.
- """
- # Re-export vendor.call
- from distro_tracker.vendor.common import call # noqa
|