~ubuntu-branches/ubuntu/precise/trac/precise

« back to all changes in this revision

Viewing changes to trac/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Luis Matos
  • Date: 2008-07-13 23:46:20 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080713234620-13ynpdpkbaymfg1z
Tags: 0.11-2
* Re-added python-setup-tools to build dependences. Closes: #490320 #468705
* New upstream release Closes: 489727
* Added sugestion for other vcs support available: git bazaar mercurial 
* Added spamfilter plugin to sugests
* Moved packaging from python-support to python-central
* Added an entry to the NEWS about the cgi Closes: #490275
* Updated 10_remove_trac_suffix_from_title patch to be used in 0.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
 
 
3
 
"""
4
 
Trac
5
 
Edgewall Software
6
 
 
7
 
U{http://trac.edgewall.org/}
8
 
 
9
 
@author: Jonas Borgström <jonas@edgewall.com>
10
 
@author: Daniel Lundin <daniel@edgewall.com>
11
 
"""
12
 
__docformat__ = 'epytext en'
13
 
 
14
 
__version__ = '0.10.4'
15
 
__url__ = 'http://trac.edgewall.org/'
16
 
__copyright__ = '(C) 2003-2006 Edgewall Software'
17
 
__license__ = 'BSD'
18
 
__license_long__ = """
19
 
 Copyright (C) 2003-2006 Edgewall Software
20
 
 All rights reserved.
21
 
 
22
 
 Redistribution and use in source and binary forms, with or without
23
 
 modification, are permitted provided that the following conditions
24
 
 are met:
25
 
 
26
 
  1. Redistributions of source code must retain the above copyright
27
 
     notice, this list of conditions and the following disclaimer.
28
 
  2. Redistributions in binary form must reproduce the above copyright
29
 
     notice, this list of conditions and the following disclaimer in
30
 
     the documentation and/or other materials provided with the
31
 
     distribution.
32
 
  3. The name of the author may not be used to endorse or promote
33
 
     products derived from this software without specific prior
34
 
     written permission.
35
 
 
36
 
 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
37
 
 OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
38
 
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
39
 
 ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
40
 
 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
41
 
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
42
 
 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
43
 
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
44
 
 IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
45
 
 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
46
 
 IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."""
47
 
 
 
2
#
 
3
# Copyright (C) 2003-2008 Edgewall Software
 
4
# All rights reserved.
 
5
#
 
6
# This software is licensed as described in the file COPYING, which
 
7
# you should have received as part of this distribution. The terms
 
8
# are also available at http://trac.edgewall.org/wiki/TracLicense.
 
9
#
 
10
# This software consists of voluntary contributions made by many
 
11
# individuals. For the exact contribution history, see the revision
 
12
# history and logs, available at http://trac.edgewall.org/log/.
 
13
 
 
14
__version__ = __import__('pkg_resources').get_distribution('Trac').version