~ubuntu-branches/debian/experimental/synaptic/experimental

« back to all changes in this revision

Viewing changes to common/rpackage.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-02-11 19:58:40 UTC
  • Revision ID: james.westby@ubuntu.com-20100211195840-boor3ejy4wpp84iz
Tags: 0.63.1
* po/pt_BR.po:
  - Updated pt_BR.po, thanks to Sergio Cipolla (closes: #561853)
* po/sk.po:
  - Updated sk.po, thanks to helix84 (closes: #559283)
* po/uk.po
  - add ukrainian translation, thanks to Serhij Dubyk 
* common/rpackageview.{cc,h}:
  - remember search history accross package transactions
* make the origin filter more fine grained
* gtk/rgsummarywindow.cc:
  - move the gtk_tree_view_set_model() down to speed up the
    operation
* gtk/rgdebinstallprogress.cc:
  - on error, set error string into status label
  - when the recovery is run (dpkg --configure -a) display a 
    proper status label for that
* gtk/rgaboutpanel.cc:
  - fix FTBFS with gcc-4.5 (closes: #565077)
* additions to the (internal) API
* gtk/rgdebinstallprogress.cc:
  - make the dpkg progress code less cpu intensive

Show diffs side-by-side

added added

removed removed

Lines of Context:
160
160
   // get all available versions (version, release)
161
161
   vector<pair<string, string> > getAvailableVersions();
162
162
 
163
 
   // get origin of the package
164
 
   string getCanidateOrigin();
 
163
   // get origin url of the package 
 
164
   string getCandidateOriginSiteUrl();
 
165
   // get origin "archive" release header (e.g. karmic, karmic-updates)
 
166
   string getCandidateOriginSuite();
 
167
   // get origin "origin" release header (e.g. Ubuntu, 
 
168
   string getCandidateOriginStr();
165
169
 
166
170
   // get the release file for the givel origin label string
167
171
   string getReleaseFileForOrigin(string label, string release);
181
185
   const char *installedVersion();
182
186
   long installedSize();
183
187
 
 
188
   // get tag from pkg record
 
189
   string findTagFromPkgRecord(const char *tag);
 
190
 
 
191
   // get the raw package record
 
192
   string getRawRecord(bool useCandidateVersion=true);
 
193
 
184
194
   // sourcepkg
185
195
   const char *srcPackage();
186
196