~ubuntu-branches/ubuntu/jaunty/beagle/jaunty-security

« back to all changes in this revision

Viewing changes to beagled/LuceneBitArray.cs

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-04 00:31:32 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20080504003132-2tkm5o8moo5952ri
Tags: 0.3.7-2ubuntu1
 * Merge from Debian unstable. (LP: #225746) Remaining Ubuntu changes:
  - debian/control:
    + Rename ice{weasel,dove}-beagle to {mozilla,thunderbird}-beagle and
      and update the dependencies accordingly.
    + Change Maintainer to Ubuntu Mono Team.
  - debian/rules:
    + Install the mozilla-beagle and thunderbird-beagle extensions.
  - ice{dove,weasel}.dirs:
    + Renamed to {mozilla,thunderbird}-beagle.dirs.
    + Fixed paths to point to usr/lib/{firefox,thunderbird}

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
 
199
199
                ////////////////////////////////////////////////////////////
200
200
 
 
201
                static FieldSelector fields_uri = new MapFieldSelector (new string[] {"Uri"});
 
202
 
201
203
                public void ProjectOnto (LuceneBitArray other)
202
204
                {
203
205
                        int j = 0;
209
211
                                j = i+1;
210
212
 
211
213
                                Document doc;
212
 
                                doc = searcher.Doc (i);
 
214
                                doc = searcher.Doc (i, fields_uri);
213
215
 
214
216
                                other.AddUri (doc.Get ("Uri"));
215
217
                        }