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

« back to all changes in this revision

Viewing changes to plugins/launchpad_exchange.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:
30
30
from checkbox.lib.log import format_delta
31
31
from checkbox.lib.transport import HTTPTransport
32
32
 
33
 
from checkbox.properties import Int, Map, String
 
33
from checkbox.properties import File, Int, Map, String
34
34
from checkbox.plugin import Plugin
35
35
 
36
36
 
46
46
    "field.submission_key": String(),
47
47
    "field.system": String(),
48
48
    "field.emailaddress": String(),
49
 
    "field.live_cd": String()})
 
49
    "field.live_cd": String(),
 
50
    "field.submission_data": File(required=False)})
50
51
 
51
52
 
52
53
class LaunchpadExchange(Plugin):