~gary-lasker/software-center/add-to-launcher-after-auth-lp972710

« back to all changes in this revision

Viewing changes to softwarestore/enums.py

  • Committer: Michael Vogt
  • Date: 2009-08-25 13:27:56 UTC
  • Revision ID: michael.vogt@ubuntu.com-20090825132756-bbtdvg0rexpeqd04
* softwarestore/db/:
  - new abstraction for the xapian db code (incomplete)
* softwarestore/enums.py:
  - move common configuration in here (like the xapian base path)
* utils/update-software-store, softwarestore/app.py:
  - import pathes from enums.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
# this program; if not, write to the Free Software Foundation, Inc.,
18
18
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
19
 
20
 
 
 
20
# system pathes
 
21
XAPIAN_BASE_PATH = "/var/cache/software-store"
 
22
APP_INSTALL_PATH = "/usr/share/app-install"
 
23
ICON_PATH = APP_INSTALL_PATH+"/icons/"
21
24
 
22
25
# values used in the database
23
26
XAPIAN_VALUE_PKGNAME = 171