1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
|
# Copyright (C) 2009 Canonical
#
# Authors:
# Michael Vogt
#
# This program is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free Software
# Foundation; version 3.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import os
from gettext import gettext as _
# pkgname of this app itself (used for "self-awareness", see spec)
SOFTWARE_CENTER_PKGNAME = 'software-center'
# name of the app in the keyring, untranslated, see bug #773214 for the rational
SOFTWARE_CENTER_NAME_KEYRING = "Ubuntu Software Center Store"
SOFTWARE_CENTER_SSO_DESCRIPTION = _(
"To reinstall previous purchases, sign in to the "
"Ubuntu Single Sign-On account you used to pay for them.")
# buy-something base url
#BUY_SOMETHING_HOST = "http://localhost:8000/"
BUY_SOMETHING_HOST = os.environ.get("SOFTWARE_CENTER_BUY_HOST") or "https://software-center.ubuntu.com"
BUY_SOMETHING_HOST_ANONYMOUS = os.environ.get("SOFTWARE_CENTER_BUY_HOST") or "http://software-center.ubuntu.com"
# version of the database, every time something gets added (like
# terms for mime-type) increase this (but keep as a string!)
DB_SCHEMA_VERSION = "6"
# the default limit for a search
DEFAULT_SEARCH_LIMIT = 10000
# the server size "page" for ratings&reviews
REVIEWS_BATCH_PAGE_SIZE = 10
# the various "views" that the app has
class ViewPages:
AVAILABLE = "view-page-available"
INSTALLED = "view-page-installed"
HISTORY = "view-page-history"
SEPARATOR_1 = "view-page-separator-1"
PENDING = "view-page-pending"
CHANNEL = "view-page-channel"
# items considered "permanent", that is, if a item disappears
# (e.g. progress) then switch back to the previous on in permanent
# views (LP: #431907)
PERMANENT_VIEWS = (AVAILABLE,
INSTALLED,
CHANNEL,
HISTORY
)
# define ID values for the various buttons found in the navigation bar
class NavButtons:
CATEGORY = "category"
LIST = "list"
SUBCAT = "subcat"
DETAILS = "details"
SEARCH = "search"
PURCHASE = "purchase"
PREV_PURCHASES = "prev-purchases"
# define ID values for the action bar buttons
class ActionButtons:
INSTALL = "install"
ADD_TO_LAUNCHER = "add_to_launcher"
CANCEL_ADD_TO_LAUNCHER = "cancel_add_to_launcher"
# icons
class Icons:
APP_ICON_SIZE = 48
FALLBACK = "applications-other"
MISSING_APP = FALLBACK
MISSING_PKG = "dialog-question" # XXX: Not used?
GENERIC_MISSING = "gtk-missing-image"
INSTALLED_OVERLAY = "software-center-installed"
# sorting
class SortMethods:
(UNSORTED,
BY_ALPHABET,
BY_SEARCH_RANKING,
BY_CATALOGED_TIME,
BY_TOP_RATED,
) = range(5)
class ReviewSortMethods:
REVIEW_SORT_METHODS = ['helpful', 'newest']
REVIEW_SORT_LIST_ENTRIES = [_('Most helpful first'), _('Newest first')]
# values used in the database
class XapianValues:
APPNAME = 170
PKGNAME = 171
ICON = 172
GETTEXT_DOMAIN = 173
ARCHIVE_SECTION = 174
ARCHIVE_ARCH = 175
POPCON = 176
SUMMARY = 177
ARCHIVE_CHANNEL = 178
DESKTOP_FILE = 179
PRICE = 180
ARCHIVE_PPA = 181
ARCHIVE_DEB_LINE = 182
ARCHIVE_SIGNING_KEY_ID = 183
PURCHASED_DATE = 184
SCREENSHOT_URL = 185
ICON_NEEDS_DOWNLOAD = 186 # no longer used
THUMBNAIL_URL = 187
SC_DESCRIPTION = 188
APPNAME_UNTRANSLATED = 189
ICON_URL = 190
CATEGORIES = 191
LICENSE_KEY = 192
LICENSE_KEY_PATH = 193 # no longer used
LICENSE = 194
VIDEO_URL = 195
# fake channels
PURCHASED_NEEDS_REINSTALL_MAGIC_CHANNEL_NAME = "for-pay-needs-reinstall"
AVAILABLE_FOR_PURCHASE_MAGIC_CHANNEL_NAME = "available-for-pay"
# custom keys for the new-apps repository, correspond
# control file custom fields:
# XB-AppName, XB-Icon, XB-Screenshot-Url, XB-Thumbnail-Url, XB-Category
class CustomKeys:
APPNAME = "AppName"
ICON = "Icon"
SCREENSHOT_URL = "Screenshot-Url"
THUMBNAIL_URL = "Thumbnail-Url"
CATEGORY = "Category"
# pkg action state constants
class PkgStates:
(
# current
INSTALLED,
UNINSTALLED,
UPGRADABLE,
REINSTALLABLE,
# progress
INSTALLING,
REMOVING,
UPGRADING,
ENABLING_SOURCE,
INSTALLING_PURCHASED,
# special
NEEDS_SOURCE,
NEEDS_PURCHASE,
PURCHASED_BUT_REPO_MUST_BE_ENABLED,
ERROR,
# the package is not found in the DB or cache
NOT_FOUND,
# this *needs* to be last (for test_appdetails.py) and means
# something went wrong and we don't have a state for this PKG
UNKNOWN,
) = range(15)
# visibility of non applications in the search results
class NonAppVisibility:
(ALWAYS_VISIBLE,
MAYBE_VISIBLE,
NEVER_VISIBLE) = range (3)
# application actions
class AppActions:
INSTALL = "install"
REMOVE = "remove"
UPGRADE = "upgrade"
APPLY = "apply_changes"
PURCHASE = "purchase"
# transaction types
class TransactionTypes:
INSTALL = "install"
REMOVE = "remove"
UPGRADE = "upgrade"
APPLY = "apply_changes"
REPAIR = "repair_dependencies"
# mouse event codes for back/forward buttons
# TODO: consider whether we ought to get these values from gconf so that we
# can be sure to use the corresponding values used by Nautilus:
# /apps/nautilus/preferences/mouse_forward_button
# /apps/nautilus/preferences/mouse_back_button
MOUSE_EVENT_FORWARD_BUTTON = 9
MOUSE_EVENT_BACK_BUTTON = 8
# delimiter for directory path separator in app-install
APP_INSTALL_PATH_DELIMITER = "__"
#carousel app limit to override limit in .menu file for category
TOP_RATED_CAROUSEL_LIMIT = 12
from .version import VERSION, DISTRO, RELEASE, CODENAME
USER_AGENT="Software Center/%s (N;) %s/%s (%s)" % (VERSION,
DISTRO,
RELEASE,
CODENAME)
# global backend switch
USE_PACKAGEKIT_BACKEND = False
# history switch (useful on non apt based distros)
USE_APT_HISTORY = True
|