~kelemeng/software-center/bug640969

« back to all changes in this revision

Viewing changes to test/xapian_query.py

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt, Colin Watson, Michael Vogt, Kiwinote
  • Date: 2010-09-10 20:32:48 UTC
  • Revision ID: james.westby@ubuntu.com-20100910203248-rfwc90aiew6bfrbj
Tags: 2.1.18.1
[ Colin Watson ]
* Update tests/xapian_query.py for compatibility with Xapian 1.2.x.

[ Michael Vogt ]
* softwarecenter/backend/aptd.py:
  - fix bug in removal (thanks to davmor2)
* data/software-center.menu.in:
  - update icon names for latest additions from humanity (thanks
    to vish!

[ Kiwinote ]
* data/ui/SoftwareCenter.ui:
  - no more icon for software sources (LP: #634987)
* softwarecenter/backend/aptd.py:
  - allow us to remove pkgs again (LP: #634929)

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    print "ESet:"
48
48
    rset = xapian.RSet()
49
49
    for m in matches:
50
 
        rset.add_document(m[xapian.MSET_DID])
 
50
        rset.add_document(m.docid)
51
51
    for m in enquire.get_eset(10, rset):
52
52
        print m.term
53
53