~ubuntu-branches/ubuntu/raring/software-center/raring-proposed

« back to all changes in this revision

Viewing changes to softwarecenter/db/pkginfo.py

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2012-12-06 17:30:50 UTC
  • Revision ID: package-import@ubuntu.com-20121206173050-n7mxi5fzlsvtdh9l
Tags: 5.5.2
* lp:~mvo/software-center/fix-pygobject-deprecation-warnings:
  - fix deprecation warninings with the latest python-gi
* lp:~mvo/software-center/minor-logging-fixes:
  - drop some LOG.info() messages to LOG.debug() to spam the user
    less
* lp:~mvo/software-center/trivial-close-ui-tweak:
  - hide the main window immediately when closing down
* lp:~mvo/software-center/5.4-fix-save-person-to-config:
  - This branch ensures that the "username" is saved everytime
    that the ubuntu sso whoami call is done
* lp:~mvo/software-center/use-dpkg-builddeps:
  - use dpkg-checkbuilddeps to find test-dependencies
* lp:~mvo/software-center/update-sc-cmdline-flexibility:
  - update-software-center-agent: 
    + add --target-db-path commandline
  - update-software-center: 
    + add --app-install-desktop-dir and --target-db-path commandline
* lp:~mvo/software-center/raring-pep8:
  - fixes for new pep8

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
class PackageInfo(GObject.GObject):
113
113
    """ abstract interface for the packageinfo information """
114
114
 
115
 
    __gsignals__ = {'cache-ready': (GObject.SIGNAL_RUN_FIRST,
116
 
                                    GObject.TYPE_NONE,
117
 
                                    ()),
118
 
                    'cache-invalid': (GObject.SIGNAL_RUN_FIRST,
119
 
                                      GObject.TYPE_NONE,
120
 
                                      ()),
121
 
                    'cache-broken': (GObject.SIGNAL_RUN_FIRST,
122
 
                                      GObject.TYPE_NONE,
123
 
                                      ()),
124
 
                    'query-total-size-on-install-done': (
125
 
                                      GObject.SIGNAL_RUN_FIRST,
126
 
                                      GObject.TYPE_NONE,
127
 
                                      (str, int, int)),
128
 
                    }
 
115
    __gsignals__ = {
 
116
        'cache-ready': (GObject.SIGNAL_RUN_FIRST,
 
117
                        GObject.TYPE_NONE,
 
118
                        ()),
 
119
        'cache-invalid': (GObject.SIGNAL_RUN_FIRST,
 
120
                          GObject.TYPE_NONE,
 
121
                          ()),
 
122
        'cache-broken': (GObject.SIGNAL_RUN_FIRST,
 
123
                         GObject.TYPE_NONE,
 
124
                         ()),
 
125
        'query-total-size-on-install-done': (
 
126
            GObject.SIGNAL_RUN_FIRST,
 
127
            GObject.TYPE_NONE,
 
128
            (str, int, int)),
 
129
    }
129
130
 
130
131
    def __getitem__(self, k):
131
132
        return _Package(k, self)