~ubuntu-branches/ubuntu/gutsy/hplip/gutsy-security

« back to all changes in this revision

Viewing changes to base/g.py

  • Committer: Bazaar Package Importer
  • Author(s): Till Kamppeter
  • Date: 2006-09-15 18:00:07 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060915180007-96mez3nck3oy5wij
Tags: 1.6.7-2ubuntu1
* Merge from debian unstable.
* Removed patches 50_ui-supportform-cleanups.dpatch and
  55_ui-supportform-debian.dpatch, there is no support window in the HP
  toolbox any more.
* HPLIP (file io/hpiod/usbext.h) includes linux/compiler.h which is not
  part of Ubuntu Linux and not needed. Removed the include with patch
  80_no-compiler.h.dpatch.
* debian/control: Let the "Conflicts:" of hpijs-ppds be only a "Breaks:"
  to facilitate an update from the previous version when both hpijs and
  hpijs-ppds are installed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
log.set_level('info')
39
39
 
40
40
MINIMUM_PYQT_MAJOR_VER = 3
41
 
MINIMUM_PYQT_MINOR_VER = 8
 
41
MINIMUM_PYQT_MINOR_VER = 14
42
42
MINIMUM_QT_MAJOR_VER = 3
43
43
MINIMUM_QT_MINOR_VER = 0
44
44
 
271
271
    True = (1==1)
272
272
    False = not True
273
273
    
 
274
# GUI/Console modes
 
275
INTERACTIVE_MODE = 0
 
276
GUI_MODE = 1
 
277
NON_INTERACTIVE_MODE = 2
 
278
 
 
279
 
 
280