~bkrpr/bookliberator/trunk

« back to all changes in this revision

Viewing changes to bkrpr.py

  • Committer: James Vasile
  • Date: 2009-01-13 20:25:09 UTC
  • Revision ID: james@hackervisions.org-20090113202509-4gairbhb1csyiuot
user level implemented, verbose levels adjusted, comm.verbose propagated throughout code, pref fiddling

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import config
25
25
import cli
26
26
import GUI.bkrpr
 
27
from oneline import comm
27
28
 
28
29
## TODO
29
30
# TODO: Write some routines for actually OCRing the images
140
141
        elif opt in ("-c", "--crop"): ret['crop'] = True        
141
142
        elif opt in (      "--continue"): config.cont = True
142
143
        elif opt in (      "--contrast"): ret['contrast'] = arg
143
 
        elif opt in ("-d", "--debug"):  
144
 
            config.verbose = True
145
 
            config.debug = True
 
144
        elif opt in ("-d", "--debug"):  config.verbose_level = config.DEBUG
146
145
        elif opt in (      "--destination"): ret['destination'] = arg
147
146
        elif opt in (      "--doctest"): 
148
147
            import doctest
162
161
        elif opt in (      "--regex"): ret['regex'] = arg
163
162
        elif opt in (      "--resume"): ret['resume'] = True
164
163
        elif opt in (      "--tilt"): ret['tilt'] = arg
165
 
        elif opt in ("-v", "--verbose"):
166
 
            config.verbose = True
 
164
        elif opt in ("-v", "--verbose"): config.verbose_level = config.VERBOSE
167
165
        else:
168
166
            print "Invalid commandline option: %s %s" % (opt, arg)
169
167
            print "Incidentally, if you're seeing this, "\
207
205
            print "psyco not found, things might be slow."
208
206
 
209
207
 
 
208
    comm.set_verbose(config.verbose())
 
209
    comm.set_debug(config.debug())
 
210
 
210
211
    if config.cli:
211
212
        bkrpr = cli.OcrGlob(opt)
212
213