~ubuntu-branches/ubuntu/precise/checkbox/precise

« back to all changes in this revision

Viewing changes to checkbox/properties.py

  • Committer: Bazaar Package Importer
  • Author(s): Marc Tardif, Daniel Manrique, Jochen Kemnade, Jeff Lane, Michael Terry
  • Date: 2011-03-17 11:15:12 UTC
  • Revision ID: james.westby@ubuntu.com-20110317111512-4n52l4z7vxy57yhe
Tags: 0.11.2
New upstream release (LP: #736919):
* Added version to dpkg dependency
* Added multiarch support to install script (LP: #727411)
* Fixed submitting data twice (LP: #531010)
* Fixed job descriptions for checkbox-cli (LP: #221400)

[Daniel Manrique]
* Fixed strings in audio tests and updated pot file (LP: #691241)

[Jochen Kemnade]
* Fixed grammar in user-apps tests (LP: #642001)

[Jeff Lane]
* Added reboot instructions to suspend/hibernate tests (LP: #420493)
* Made the firewire instructions make more sense (LP: #693068)

[Michael Terry]
* Fixed several strings appear in English although translated (LP: #514401)
  - jobs/fingerprint.txt.in
  - jobs/media.txt.in
  - jobs/monitor.txt.in
  - jobs/sleep.txt.in
  - jobs/firewire.txt.in
  - po/checkbox.pot
* Fixed grammar (LP: #525454)
  + jobs/fingerprint.txt.in

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from checkbox.variables import (ConstantVariable, BoolVariable, StringVariable,
21
21
    PathVariable, UnicodeVariable, IntVariable, FloatVariable, TimeVariable,
22
22
    ListVariable, TupleVariable, AnyVariable, DictVariable, MapVariable,
23
 
    VariableFactory, Variable, get_variable)
 
23
    FileVariable, VariableFactory, Variable, get_variable)
24
24
 
25
25
 
26
26
class Property(object):
196
196
        super(Map, self).__init__(**kwargs)
197
197
 
198
198
 
 
199
class File(PropertyType):
 
200
 
 
201
    variable_class = FileVariable
 
202
 
 
203
 
199
204
class Message(Map):
200
205
 
201
206
    def __init__(self, type, schema={}, **kwargs):