~dobey/ubuntuone-client/py-only

« back to all changes in this revision

Viewing changes to windows/clientdefs.py

  • Committer: Rodney Dawes
  • Date: 2013-06-07 15:22:31 UTC
  • Revision ID: rodney.dawes@canonical.com-20130607152231-7b3wd88vfk3lcbp0
Convert build system from autotools to DistUtilsExtra

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# ubuntuone.clientdefs - Configure-time definitions
2
 
#
3
 
# Author: David Planella <david.planella@ubuntu.com>
4
 
#
5
 
# Copyright 2009-2012 Canonical Ltd.
6
 
#
7
 
# This program is free software: you can redistribute it and/or modify it
8
 
# under the terms of the GNU General Public License version 3, as published
9
 
# by the Free Software Foundation.
10
 
#
11
 
# This program is distributed in the hope that it will be useful, but
12
 
# WITHOUT ANY WARRANTY; without even the implied warranties of
13
 
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
14
 
# PURPOSE.  See the GNU General Public License for more details.
15
 
#
16
 
# You should have received a copy of the GNU General Public License along
17
 
# with this program.  If not, see <http://www.gnu.org/licenses/>.
18
 
#
19
 
# In addition, as a special exception, the copyright holders give
20
 
# permission to link the code of portions of this program with the
21
 
# OpenSSL library under certain conditions as described in each
22
 
# individual source file, and distribute linked combinations
23
 
# including the two.
24
 
# You must obey the GNU General Public License in all respects
25
 
# for all of the code used other than OpenSSL.  If you modify
26
 
# file(s) with this exception, you may extend this exception to your
27
 
# version of the file(s), but you are not obligated to do so.  If you
28
 
# do not wish to do so, delete this exception statement from your
29
 
# version.  If you delete this exception statement from all source
30
 
# files in the program, then also delete it here.
31
 
"""
32
 
Ubuntu One client definitions.
33
 
 
34
 
This is a package containing configure-time definitions for the Ubuntu One
35
 
client.
36
 
"""
37
 
 
38
 
import gettext
39
 
 
40
 
 
41
 
Q_ = lambda string: gettext.dgettext(GETTEXT_PACKAGE, string)
42
 
 
43
 
# pylint: disable-msg=C0301
44
 
VERSION = '0.1'
45
 
LOCALEDIR = ''
46
 
LIBEXECDIR = ''
47
 
GETTEXT_PACKAGE = ''
48
 
 
49
 
# these variables are Deprecated, use those defined in ubuntuone.credentials
50
 
APP_NAME="Ubuntu One"
51
 
TC_URL="https://one.ubuntu.com/terms/"
52
 
PING_URL="https://one.ubuntu.com/oauth/sso-finished-so-get-tokens/"
53
 
DESCRIPTION = Q_("Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process will allow you to create a new account, if you do not yet have one.")