~ubuntu-branches/ubuntu/karmic/eric/karmic

« back to all changes in this revision

Viewing changes to eric/VCS/cvsPackage/Config.py

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2008-01-28 18:02:25 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080128180225-6nrox6yrworh2c4v
Tags: 4.0.4-1ubuntu1
* Add python-qt3 to build-depends becuase that's where Ubuntu puts 
  pyqtconfig
* Change maintainer to MOTU

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
 
3
 
# Copyright (c) 2004 - 2007 Detlev Offenbach <detlev@die-offenbachs.de>
4
 
#
5
 
 
6
 
"""
7
 
Module defining configuration variables for the CVS package
8
 
"""
9
 
 
10
 
from qt import QStringList
11
 
 
12
 
# Available protocols for the repository URL
13
 
ConfigCvsProtocols = QStringList()
14
 
ConfigCvsProtocols.append('pserver')
15
 
ConfigCvsProtocols.append('ext')
16
 
ConfigCvsProtocols.append('server')
17
 
ConfigCvsProtocols.append('gserver')
18
 
ConfigCvsProtocols.append('kserver')
19
 
ConfigCvsProtocols.append('fork')