~vorlon/ubuntu/saucy/gourmet/trunk

« back to all changes in this revision

Viewing changes to src/lib/plugins/nutritional_information/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2009-12-29 09:12:49 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091229091249-n45z95fou0yr2t1t
Tags: 0.15.2-0ubuntu1
* New upstream release (LP: #431806, Closes: #530841). Also fixes the
  following bugs:
  - LP: #315836
  - LP: #295982
  - LP: #316445 (the GUI has been changed so this no longer applies)
* Drop forcing of python2.5
* debian/control: Recommends python-gnome2-extras for printing
* drop debian/patches/05-add_manpage.patch, which is now included upstream
* Fix some lintian warnings:
  - add debian/README.source
  - debian/control: bump Standards-Version to 3.8.3
  - debian/compat: bump to 5
* debian/control: Depends on python-poppler (needed for printing)
* debian/patches/01_fix_raise_str.patch: don't raise str exception
  in src/lib/plugin_gui.py
* debian/patches/02_fix_nutrition_index_out_of_range.patch: don't
  add entries beyond the width of the field in databaseGrabber.py
* debian/patches/03_dont_remove_nonexistent_plugin.patch: don't
  remove an inactive plugin in plugin_loader.py and don't deactivate
  a plugin from a non-existent database

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import data_plugin, main_plugin, reccard_plugin, export_plugin
 
1
import data_plugin, main_plugin, reccard_plugin, export_plugin, shopping_plugin
 
2
import nutPrefsPlugin
2
3
plugins = [
3
4
    data_plugin.NutritionDataPlugin,
4
5
    main_plugin.NutritionMainPlugin,
5
6
    reccard_plugin.NutritionDisplayPlugin,
6
 
    export_plugin.NutritionBaseExporterPlugin
 
7
    export_plugin.NutritionBaseExporterPlugin,
 
8
    shopping_plugin.ShoppingNutritionalInfoPlugin,
 
9
    nutPrefsPlugin.NutritionPrefs,
7
10
    ]