~mvo/software-center/update-sc-cmdline-flexibility

« back to all changes in this revision

Viewing changes to softwarecenter/enums.py

  • Committer: Michael Vogt
  • Date: 2009-09-25 15:30:34 UTC
  • Revision ID: michael.vogt@ubuntu.com-20090925153034-vf6oqy9j66fc6jcz
renamed to "Ubuntu Software Center" and software-center (LP: #436648)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
 
20
20
# system pathes
21
 
XAPIAN_BASE_PATH = "/var/cache/software-store"
 
21
XAPIAN_BASE_PATH = "/var/cache/software-center"
22
22
APP_INSTALL_PATH = "/usr/share/app-install"
23
23
APP_INSTALL_DESKTOP_PATH = APP_INSTALL_PATH+"/desktop/"
24
24
APP_INSTALL_CHANNELS_PATH = APP_INSTALL_PATH+"/channels/"
42
42
 
43
43
 
44
44
from version import *
45
 
USER_AGENT="Software Store/%s (N;) %s/%s (%s)" % (VERSION, 
46
 
                                                  DISTRO, 
47
 
                                                  RELEASE,
48
 
                                                  CODENAME)
 
45
USER_AGENT="Software Center/%s (N;) %s/%s (%s)" % (VERSION, 
 
46
                                                   DISTRO, 
 
47
                                                   RELEASE,
 
48
                                                   CODENAME)
49
49