~ubuntu-branches/ubuntu/karmic/zeroinstall-injector/karmic

« back to all changes in this revision

Viewing changes to zeroinstall/injector/namespaces.py

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Leonard
  • Date: 2007-01-23 21:50:46 UTC
  • Revision ID: james.westby@ubuntu.com-20070123215046-3ya2x81i99m5ya8r
Tags: upstream-0.25
ImportĀ upstreamĀ versionĀ 0.25

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
"""Useful constants.
 
2
 
 
3
@var XMLNS_IFACE: The XML namespace used for the core elements in an interface file
 
4
 
 
5
@var config_site: Where our configuration settings are stored
 
6
@var config_prog: Where our configuration settings are stored
 
7
 
 
8
@var injector_gui_uri: The URI of the graphical interface for the injector
 
9
"""
 
10
 
 
11
# Copyright (C) 2006, Thomas Leonard
 
12
# See the README file for details, or visit http://0install.net.
 
13
 
 
14
XMLNS_IFACE = 'http://zero-install.sourceforge.net/2004/injector/interface'
 
15
 
 
16
config_site = '0install.net'
 
17
config_prog = 'injector'
 
18
 
 
19
injector_gui_uri = 'http://0install.net/2006/interfaces/ZeroInstall-GUI.xml'