* src/lib/check_encodings.py (EncodingDialog): Fix type on encodings.
(EncodingDialog.diff_texts): Make sure we base our diffs on the
encoding with the most lines. Otherwise, utf-16 screws us up in
most cases so the diff-view no longer works properly.
* src/lib/plugins/import_export/pdf_plugin/pdf_exporter.py (PdfExporter.__init__):
Sshhh.
* src/lib/gtk_extras/dialog_extras.py (MessageDialog): Allow
passing modal=False to make this a non-modal dialog.
* src/lib/GourmetRecipeManager.py (RecGui.offer_url): Make dialog
non-modal -- the modal dialog was freezing up Gourmet after user
clicked "Jump to" button.
2009-02-15 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/nutritional_information/databaseGrabber.py (DatabaseGrabber.parse_abbrevfile):
Use new do_add_fast and commit_fast_adds method to drastically
speed-up initial population of nutritional DB
(DatabaseGrabber.parse_weightfile): Use new do_add_fast and
commit_fast_adds method to drastically speed-up initial population
of nutritional DB.
* src/lib/backends/db.py (RecData.do_add_fast): Add method that
uses sqlite (bypassing sqlalchemy) to add to the DB. This
substantially speeds up adding things to the DB. The method
returns nothing (unlike do_add, which returns a reference to the
added object) and we need to call commit_fast_adds in order to
commit the additions to the DB.
(RecData.commit_fast_adds): A method to commit anything added
using do_add_fast
2009-02-13 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/shopping_associations/shopping_key_editor_plugin.py (KeyEditorPlugin):
Add text box that allows editing shopping category for multiple
selected ingredient keys at a time.
* src/lib/plugins/nutritional_information/data_plugin.py (NutritionDataPlugin.create_tables):
Use Text() type from sqlalchemy instead of deprecated
String(length=None)
* src/lib/plugins/key_editor/recipeEditorPlugin.py (IngredientKeyEditor.setup_main_interface):
Make TreeView allow multiple selections so we can do actions on
multiple keys at once.
(IngredientKeyEditor.setup_main_interface): Setup any extra
widgets provided by plugins.
* src/lib/plugins/key_editor/keyEditorPluggable.py (KeyEditorPlugin):
Update API to allow plugins to provide a widget for changing value
for all selected rows.
* src/lib/backends/db.py (RecData.alter_table): Use embedded
select in insert statement rather than pythonic for-loop to loop
through data -- this is enormously faster.
* src/lib/reccard.py (RecEditor.ui): Remove KeyEditor (moved to plugin)
(UndoableTreeStuff.record_positions): Fix mess with attribute name changes.
* src/lib/GourmetRecipeManager.py (GourmetApplication.show_about):
Remove colons from strings marked for translation.
2009-02-08 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/key_editor/keyEditor.py (KeyEditor.tree_edited):
rd.update -> rd.update_by_criteria (correct method name)
* src/lib/defaults/defaults.py: Fix SF bug 1947796 where calling
Gourmet with an unsupported locale broke Gourmet and made it fail
to start.
2009-02-07 Thomas Mills Hinkle <tomhydrophax>
* glade/recCardIngredientsEditor.glade: Simplify ingredient
interface -- remove detailed expander widget. We now simply have
an "Add" textbox and a list of ingredients. All of the complexity
of ingredient keys is hidden in this view now, leaving our basic
interface simpler and cleaner.
* src/lib/plugin.py (RecEditorPlugin): Create RecEditorPlugin
class.
(RecEditorModule.__gsignals__): Add signals 'saved' and
'toggle-edited' to RecEditorModule for communicating state-changes
of individual modules.
(IngredientControllerPlugin): ++IngredientControllerPlugin.
* src/lib/reccard.py (RecEditor.add_plugin): Rework
plugin-interface as part of making ingkey-editor plugin a recipe
card editor module.
(DescriptionEditorModule.save): Use new signal interface to
indicate saved.
(IngredientController): Make controller pluggable so that plugins
can add info to ingredients if they like.
(IngredientTreeUI.setup_columns): Remove ingredient key and
shopping category from standard treeview -- these are now only
visible with plugins.
* src/lib/version.py (version): Version->0.14.6
2009-02-03 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/defaults/defaults_en_GB.py: Replace missing
comma (syntax error)
* src/lib/version.py: Version->0.14.5 for release
* src/lib/reccard.py: Change icon to new recipe card/editor icons.
2009-02-01 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/key_editor/keyeditor.glade: Remove "Edit
nutritional info" button.
* src/lib/plugins/key_editor/keyEditor.py (KeyEditor): Remove
references to nutritional info. Update to work with current DB
front-end.
* src/lib/gtk_extras/treeview_extras.py (selectionSaver.add_selection):
Fix mysterious bug that occurred when we tried to use sqlalchemy
0.5 rowobjects as dictionary keys.
(selectionSaver.restore_selections): Fix mysterious bug that
occurred when we tried to use sqlalchemy 0.5 rowobjects as
dictionary keys.
* src/lib/backends/db.py (RecData.get_ingkeys_with_count):
Implement the functionality needed for a keyEditor interface.
* src/lib/gglobals.py: ++ png icons for reccard and reccard_edit.
2009-01-31 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/unit_display_prefs: New plugin that allows user
to specify which kinds of units to display, resulting in
displaying e.g. all metric units without the need to tinker with
the underlying data.
* src/lib/defaults/defaults_en_GB.py (CONVERTER_TABLE): Add units for
non-American cups (Japanese cup, metric cup, imperial cup,
imperial pint).
* src/lib/defaults/defaults_en.py (CONVERTER_TABLE): same change as defaults_en.py
* src/lib/defaults/defaults.py (unit_rounding_guide): Add
parameter unit_rounding_guide (which can be overridden in the
defaults_XX files). This allows us to hone what kinds of decimal
values we show for different units.
* src/lib/backends/db.py (RecData.get_amount_and_unit): Make
get_amount_and_unit take arguments favor_current_unit and
preferred_unit_group to allow further control over how it handles
conversion. Also make pluggable, enabling our new
unit_display_prefs plugin to do its work.
* src/lib/shopping.py (Shopper._ing_compare): Disable special
ingorder comparisons, falling back to alphabetical. In the future,
it would be worth looking into what was implemented and why it was
failing -- I've simply disabled the functionality since it wasn't
working properly anyway.
* src/lib/reccard.py (RecCardDisplay.toggle_readable_units_cb):
Fix reference to obsolete method resetIngList (replaced by
display_ingredients)
* src/lib/plugin_loader.py (Pluggable.run_pre_hook): Changed API
around pre_hook -- pre-hooks can now modify the args fed to the
function they're hooking around by returning args,kwargs as the
return value. If they don't return a tuple and a dictionary, then
we fail with a warning (this means the old API will fail with a
warning until I update old plugins that use this).
(pluggable_method._): Changed pre-hook API (see above)
* src/lib/convert.py (float_to_metric): Changes to float-to-metric
to allow rounding based on an approx value rather than always
assuming we want 2 decimal points.
(float_to_frac): Return a simple integer if we're within approx of
an integer.
(Converter.adjust_unit): Accept a parameter
preferred_unit_groups. If we have this parameter, we look for
conversions within our preferred groups and convert if possible. A
group could be, e.g. metric mass, metric volume, imperial volume,
etc., as defined in UNIT_GROUPS in defaults.
(Converter.readability_score): Adjust scoring algorithm: being a
weird decimal is less bad than being out of the defined range (I
was getting values like 2034 mL instead of 2 L because it
preferred the integer (2034) to the decimal even though the
integer was outside the preferred range for mL).
2009-01-28 Thomas Mills Hinkle <tomhydrophax>
* src/lib/reccard.py: Add shop-recipe to menus. Add key commands
for most menu items.
* glade/shopList.glade: Remove nutritional info button/icon (this
should become a plugin anyway)
* test_deb.sh (LATEST_DEB): Remove python version specificity.
* Released 0.14.4 to SF as .deb and .tar.gz
* src/lib/gtk_extras/treeview_extras.py (selectionSaver.restore_selections):
Change variable names from iter->itr (to avoid unintended
consequences). Unsuccessfully trying to get at mysterious
traceback in restore_selections and add_selection (somehow builtin
dictionary method get() is not working).
* images/reccard.ico: Added reccard icon
* images/Nutrition.png: Moved to the plugin
* src/lib/plugins/nutritional_information/images/Nutrition.png: Moved from images/
2009-01-27 Thomas Mills Hinkle <tomhydrophax>
* create_manifest.py: Add png's to plugin files to include; add images/*.ico to included files.
* gourmet.desktop.in (Categories): Category->Utility
* setup.py: Apply debian patch; include png etc.
* src/lib/plugins/nutritional_information/main_plugin.py (NutritionMainPlugin.activate):
Add nutritional icon.
* src/lib/plugins/import_export/website_import_plugins/foodnetwork_plugin.py (test_url):
Be less verbose.
* src/lib/plugins/import_export/website_import_plugins/about_dot_com_plugin.py (test_url):
Be less verbose.
* src/lib/gtk_extras/treeview_extras.py: Remove python version
dependency
* src/lib/version.py (version): Version->0.14.4
(copyright): ++2009
* src/lib/threadManager.py (ThreadManagerGui): Fix resizing
ugliness on table (it's still ugly, but less so)
* src/lib/reccard.py (RecCardDisplay.setup_main_window): Add icon
(RecEditor.setup_main_interface): Add icon
* src/lib/gglobals.py (add_icon): Rework code for adding icons to
make it easy for plugins to add stock icons using the convenience
function add_icon
* src/lib/gdebug.py: Remove python version dependency.
* src/lib/GourmetRecipeManager.py (RecGui.setup_main_window): Add icon to window.
2009-01-19 Thomas Mills Hinkle <tomhydrophax>
* src/lib/timeScanner.py (make_time_links): Remove line that
escaped text automatically (caller can handle escaping)
2009-01-18 Thomas Mills Hinkle <tomhydrophax>
* src/lib/gtk_extras/TextBufferMarkup.py (PangoBuffer.set_text):
Give a better error message when we have problems with unescaped
text.
* src/lib/gtk_extras/LinkedTextView.py (set_text): Remove line
that unescapes incoming text (this was an attempt to fix another
bug in the wrong place, but it causes problems when the clients
are behaving properly...)
(set_text): Remove line that unescapes incoming text (see above
comment about dumb fixes creating more problems than they solve).
* src/lib/plugins/python_shell/ipython_view.py: Eitan Isaacson's
IPython console widget, with a few modifications.
* src/lib/plugins/python_shell/__init__.py (ConsolePlugin): Plugin
to allow access to a python shell from within Gourmet. This is
incredibly handy for testing/development. It also allows a
super-geeky user to modify their DB on the fly etc.
* src/lib/plugins/field_editor/__init__.py (FieldEditorPlugin.show_field_editor):
Grab GourmetApplication singleton rather than relying on pluggable
being the GourmetApp, which it isn't always.
* src/lib/plugins/browse_recipes/browser.py (RecipeBrowserView):
to selection-multiple mode
(RecipeBrowserView.get_selected_recipes): Add handy method to grab
selected recs.
(RecipeBrowserView.reset_model): Add handy method to reset model
in response to DB updates.
* src/lib/plugins/browse_recipes/__init__.py (BrowserPlugin): Set
up hooks so that actions-on-recipes work (add-to-shopping list,
delete, etc)
* src/lib/backends/db.py (RecData.fetch_count): Fix fetch_count to
actually work as described. Previously, it ignored criteria.
(RecData.fetch_len): Fix fetch_len to actually use criteria.
* src/lib/plugin_loader.py (Pluggable.run_post_hook): Post hooks
should be allowed to modify the return value -- now they're
required to do so (otherwise they change the return value of the
method to None, of course.
* src/lib/GourmetRecipeManager.py (RecGui.get_selected_recs_from_rec_tree):
Add this method here as a pluggable_method so that plugins can
implement recipe browsers/search of their own and have it work
with actions that require selected recipes.
(RecGui.update_recipe): Make pluggable
(RecGui.redo_search): Make pluggable
(RecGui.delete_open_card_carefully): Use
get_selected_recs_from_rec_tree for deletion (this allows plugins
to simply modify get_selected_recs_from_rec_tree and have deletion
of selected recipes work right)
(RecGui.rec_tree_delete_recs): Add call to show user a message
telling them they've deleted recipes and offering undo.
(RecGui.setup_delete_messagebox): Method to set up a message to
user offering undo after delete.
2009-01-16 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/field_editor.gourmet-plugin.in: Added field
editor plugin (provides material previously in valueEditor
module).
* src/lib/GourmetRecipeManager.py (showValueEditor): Removed value
editor -- this is now a plugin (field-editor).
* src/lib/ValueEditor.py - removed file (moved to field_editor plugin)
2009-01-13 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/browse_recipes/images/cooktime_empty_clock.png:
Adjust pixel height so preptime and cooktime clock-pie-wedges can
be drawn with same size and position
* src/lib/batchEditor.py (BatchEditor.setup_glade): Use new
gglobals-based custom handler system.
* src/lib/GourmetRecipeManager.py (StuffThatShouldBePlugins.batch_edit_recs):
Fix batch edit callback (self.update_rec_iter ->
self.rmodel.update_recipe
2009-01-13 Thomas Mills Hinkle <tomhydrophax>
* src/lib/backends/db.py (RecData.fetch_count): Correctly alias
select "COUNT AS COUNT" using sqlalchemy's "label" keyword,
avoiding ugly hack that fails in 0.5 anyway.
* src/lib/exporters/exportManager.py (ExportManager.do_single_export):
Fix API for exporting single recipes (this fixes recipe export
from recipe card view).
2009-01-12 Thomas Mills Hinkle <tomhydrophax>
* src/lib/backends/db.py (make_order_by): Sort nulls last
(RecData.search_recipes): Special case sorting of 'rating' (the
default feels backwards)
2009-01-11 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/browse_recipes/browser.py (RecipeBrowser.append_button):
Use i18n'd text rather than attribute names themselves for
breadcrumbs buttons.
(RecipeBrowserView.get_pixbuf): Use generic icons differentiated
by attribute (source, category, etc)
(RecipeBrowserView.build_base_model): Don't browse by link attribute.
(RecipeBrowserView.get_base_icon): Use base icons from icon_helpers.py
* src/lib/plugins/browse_recipes/icon_helpers.py (get_pixbuf_from_image):
Add the rest of the icons.
2009-01-11 Thomas Mills Hinkle <tomhydrophax>
* src/lib/importers/imageBrowser.py (ImageBrowserDialog.setup_dialog):
Fix giant-dialog-window problem caused when Progressbar gets
super-long text (e.g. if an image name is gigantic). Fixes Ubuntu
bug 289861
* src/lib/backends/db.py (make_simple_select_arg): Update in_()
call to comply with SQLAlchemy 0.5 API change.
2009-01-10 Thomas Mills Hinkle <tomhydrophax>
* src/lib/backends/db.py (RecData._setup_object_for_table): All
tables need an explicit primary key declared now -- sqlalchemy no
longer supports implicit oid/rowid in 0.5
(RecData.setup_info_table): Add sqlite rowid column to table
explicitly.
* src/lib/plugin.py (MainPlugin): Add base methods to MainPlugin
to make it easy to add a tab to main interface (add_tab)
* src/lib/GourmetRecipeManager.py (RecGui.setup_main_window): Add
notebook to which plugins can add tabs.
2009-01-07 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/nutritional_information/parser_data.py (ABBREVS):
Remove RED as abbreviation (and add more specification
abbreviations like RED NA, RED FAT, RED CAL). (bug 2492442)
* src/lib/plugins/browse_recipes/* Implement basic recipe browsing
interface as alternative to search (a new plugin).
2009-01-03 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/duplicate_finder/recipeMerger.glade: Add
auto-merge button to glade file. Rename some buttons for
convenient handling from recipeMerger dialog.
* src/lib/importers/plaintext_importer.py (TextImporter.pre_run):
Change attribute total to total_lines to avoid confusing ourbase
class into thinking that we know how many recipes have based on
how many lines we have (this fixes a bug where users would see
something like "Imported 56 of 5000 recipes" for a 5000 lines text
file with 56 recipes in it).
* src/lib/importers/importManager.py (ImportManager.__init__): Add
support for ImportManager plugins (which are separate from our
standard ImporterPlugins). This allows our RecipeMerger plugin to
add a post-import hook.
* src/lib/plugin.py (ImportManagerPlugin): Add base class for
plugings that modify the ImportManager itself (not new import
plugins which are already covered by the ImporterPlugin)
* src/lib/plugins/duplicate_finder/recipeMergerPlugin.py (RecipeMergerImportManagerPlugin):
Separate out plugin that adds a check for duplicates after new
imports
* src/lib/plugins/duplicate_finder/recipeMerger.py (RecipeMergerDialog.merge_next_recipe):
Add label to interface showing how many recipes have been merged
so far (giving user a sense of progress).
(RecipeMergerDialog): Add last_modified time to list of attributes
shown to user so they can see which recipe is older/newer.
(RecipeMergerDialog.offer_auto_merge): Add option to automatically
merge, always selecting for newer or older recipes.
* src/lib/GourmetRecipeManager.py (GourmetApplication.setup_recipes):
Remove misleading catchall database connection error message
* src/lib/check_encodings.py (getEncoding): Fix typo that broke
encoding dialog by always returning ascii
2008-12-28 Thomas Mills Hinkle <tomhydrophax>
* README: Cut down README to keep it from going out of date so
fast; update README to describe plugin system; add reportlab as a
requirement.
2008-12-22 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/import_export/mealmaster_plugin/mealmaster_exporter_plugin.py (MealmasterExporterPlugin):
Mealmaster file are text/plain, not text/html
* src/lib/plugins/import_export/gxml_plugin/gxml_exporter_plugin.py (GourmetExporterPlugin.get_multiple_exporter):
Remove obsolete references to progress_func
* src/lib/plugins/import_export/gxml_plugin/gxml2_exporter.py (__init__):
Remove obsolete references to progress_func
* src/lib/plugins/import_export/pdf_plugin/pdf_exporter_plugin.py (PdfExporterPlugin.get_default_prefs):
Add method to bypass prefs dialog when necessary.
* src/lib/gtk_extras/dialog_extras.py (get_type_for_filters):
Separate function to grab the type of a file based on the filters
used to save it. Split this out of the functions that get the
actual file.
* src/lib/exporters/exportManager.py (ExportManager): Split off
separate do_multiple_export and do_single_export methods to allow
outside functions/plugins to use exporters without having the user
select the file name/type through the UI.
* src/lib/backends/db.py (RecData.backup_db): Warn user when doing
a DB update with little/no feedback on progress.
* src/lib/plugin.py (ExporterPlugin): Add get_default_prefs method
as alternative to run_extra_prefs_dialog (to enable full
automation, for example, of libraries that like to ask users for
prefs)
* src/lib/plugins/email_plugin/*: Pluginify email
functionality. We now just support PDF and plain text (the HTML
was a failed attempt to write HTML email anyway)
* TESTS: Add some more tests we should do before stable releases.
2008-12-21 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/import_export/plaintext.gourmet-plugin.in (_Comment):
++export.
* src/lib/plugins/import_export/plaintext_plugin/__init__.py: Add
plaintext_exporter to plaintext_plugin.
* src/lib/backends/db.py (RecData.backup_db): Let user know when
we're doing a potentially slow DB upgrade (note that this is
implemented directly in GTK so the DB code now depends on GTK at
least in the upgrade spot; if we ever properly abstract the DB for
another front-end we'll need to rework this.
* src/lib/plugin.py (BaseExporterPlugin.add_field.do_write): Don't
pass mark-up to exporters that expect plain text.
2008-12-19 Thomas Hinkle <Thomas_Hinklesf.net>
* src/tests/testImporters.py (ImportTestCase.testArchive): Add
test of archive plugin
* src/lib/plugins/import_export/archive_plugin/zip_importer_plugin.py (ArchiveImporterPlugin.test_file):
Fix file pattern matching using fnmatch.
* glade/preferenceDialog.glade: Hide label for removing items you
don't use from recipe card interface, since this interface isn't
currently functional anyway.
* src/lib/exporters/exporter.py (exporter): Create new
ALLOW_PLUGINS_TO_WRITE_NEW_FIELDS attribute (defaults to True).
* src/lib/plugins/import_export/gxml_plugin/gxml2_exporter.py (rec_to_xml):
Don't allow plugins to create new fields since supposedly we could
be creating valid XML and plugins would create a moving target.
* src/lib/plugin.py (BaseExporterPlugin.add_field.do_write):
Respect new exporter attribute ALLOW_PLUGINS_TO_WRITE_NEW_FIELDS
which allows exporters to prevent their write_attr/write_text
methods from being called with new plugin-invented fields
* src/lib/importers/importManager.py (ImportManager.get_filters):
Remove repeat filetypes in file dialog filter dropdown + add "All
importable files" filter as default file filter.
* src/lib/check_encodings.py (EncodingDialog.create_options): Make
encodings in encoding choosing dialog follow order given in source
code for encodings/all_encodings (presumably the order of common
to uncommon).
(getEncoding): If user cancels dialog, give them the first
encoding on the list rather than throwing an error.
2008-12-19 Thomas Mills Hinkle <tomhydrophax>
* src/lib/check_encodings.py: Fix bug 2446589 by adding utf-16 to
our list of commonly tried encodings. Also, fix a bug in
check-encodings/diffy code.
2008-12-16 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/import_export/web_import_plugin/webpage_importer.py (WebParser.__init__):
Instantiate InteractiveImporter in __init__.py call.
* src/lib/importers/imageBrowser.py (grab_thumbnail): Ignore errors
in thumbnail creation (with warning).
* src/lib/plugins/nutritional_information/data_plugin.py (NutritionDataPlugin.do_add_nutrition):
Add do_add_nutrition convenience method (fix bug 2405494)
2008-12-15 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugin_loader.py (MasterLoader.register_pluggable):
Fixed warning message.
* src/lib/GourmetRecipeManager.py (SuspendableDeletions): Create
class for running deletions in their own thread. This used to be
in the moribund GourmetThreads module.
(purge_selected_recs): Update deletion code to work with new
threadManager module.
(ImporterExporter): Get rid of unused old code.
(purge_rec_tree): Remove old lock-checking code.
(RecGui.purge_rec_tree): Update deletion code to work with new
threadManager module.
* src/lib/gtk_extras/LinkedTextView.py (LinkedPangoBuffer.set_text):
Unescape all text so that markup outside of links works
properly (fixes bug where <span> tags showed up in recipe card
display view.)
2008-12-13 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/exporters/exportManager.py (ExportManager.offer_single_export):
Give us a useful error message when ignoring an invalid file mode.
* src/lib/backends/db.py (RecData._format_amount_string_from_amount):
Don't set default here to be FRACTIONS_ALL. Instead, default to
use the converter default (whatever that has been set to). This
will be correct as far as i18n etc.
2008-12-13 Thomas Mills Hinkle <tomhydrophax>
* src/tests/testImporters.py: Update testImporters to work with
importManager.
* src/tests/test.py: Use same method gourmet_in_place uses for
making sure we use our version of Gourmet libraries and not ones
installed elsewhere in system.
(profile): Add convenience function for profiling calls.
* src/lib/plugins/unit_converter/convertGui.py (ConvGui.__init__):
Use new convert.get_converter() method instead of
convert.Converter()
* src/lib/plugins/nutritional_information/enter_nutritional_defaults.py:
Use new get_converter() method.
* src/lib/plugins/import_export/mastercook_import_plugin/mastercook_importer_plugin.py (MastercookTextImporterPlugin.get_importer):
Fix typo (actually return an importer object instead of none).
* src/lib/plugins/import_export/mastercook_import_plugin/mastercook_importer.py (MastercookXMLHandler.IngR_handler):
Update start_ing() call (we no longer set recipe_ids before
commit-time.
* src/lib/plugins/import_export/gxml_plugin/gxml2_importer.py (RecHandler.endElement):
Make sure our keys in our dictionary rec are all strings and not
unicode objects (this throws an error on the DB side).
* src/lib/version.py (version): 0.14.3 - Get ready for another release soon.
* src/lib/importers/importer.py (Importer.__init__): use new
get_converter() method to get Converter singleton. This speeds up
import by a factor of 3 or so (we were wasting a lot of time
instantiating new Converter classes all the time because we
weren't passing it around as designed. It's easier just to use the
singleton and not have to worry about remembering to pass the
converter instance back and forth.
(Importer.check_for_sleep): Fix name error (we no longer import
anything as gt)
(Importer.start_rec): Add a warning when ingredients are left from
previous recipe at start of next recipe.
(Importer.start_rec): Don't generate new id in start_rec code.
(Importer.commit_rec): Fix IDs here -- if we have an ID from our
importer, we add it here to our ID converter (or get it from our
ID converter if we already created it -- if, for example, another
recipe in the import referenced this recipe before it was
created). We also add ingredients to the database all at once now
rather than making separate INSERT calls for each ingredient.
(Importer.start_ing): No longer set recipe_id up in start_ing --
it will be handled in commit_rec now.
(Importer.finish_ing): Change commit_ing to finish_ing as we no
longer commit our ingredients here (we commit all ingredients
together in commit_rec. This should help speed up imports.
(Importer.commit_ing): commit_ing is now an alias for finish_ing
-- this enables all our old code to keep working. However, if any
old code actually depended on commit_ing commiting the ingredient
to the database, it will break. The model now is that we run
start_ing and finish_ing for each ing before running commit_rec.
(MultipleImporter): Remove MultipleImporter class. This is now
handled in importManager (and has been for some time)
* src/lib/importers/importManager.py (ImportManager.__init__):
Singleton exception should be the first thing that happens here.
(ImportManager.get_app_and_prefs): Move the get_application() call
out of __init__ for convenience of subclassing (this allows the
creation of non-gui-dependant subclasses easily.
* src/lib/gtk_extras/timeEntry.py (TimeEntry.__init__): use new
get_converter() method to get Converter singleton.
* src/lib/exporters/exporter.py (exporter.__init__): use new
get_converter() method to get Converter singleton.
* src/lib/backends/db.py (RecData.initialize_connection): Run
commit() once after initialization. This appears to fix a problem
where some importers were throwing a "database locked" error on
import if no recipe had been created yet in that instance of the
application.
(RecData.add_rec): Always return ID of recipe (it was
unpredictable before whether this would return an ID or an object.
* src/lib/timeScanner.py (c): use new get_converter() method to
get Converter singleton
* src/lib/recipeManager.py (DatabaseShopper.init_converter): use
new get_converter() method to get Converter singleton
* src/lib/recipeIdentifier.py (hash_recipe): use new
get_converter() method to get Converter singleton
* src/lib/convertGui.py (ConvGui.__init__): Converter is now a singleton.
(get_converter): Convenience method to get the Converter singleton.
* src/lib/convert.py (Converter.__single): Converter is now a singleton.
(get_converter): Convenience method to get the Converter singleton.
* src/lib/GourmetRecipeManager.py (GourmetApplication.__init__):
use new get_converter() method to get Converter singleton
(GourmetApplication.setup_prefs): Make sure that we set
useFractions the same way from prefs and from user toggling.
2008-12-06 Thomas Mills Hinkle <tomhydrophax>
* src/lib/importers/importManager.py: Remove broken import of
zip_importer (this has moved into a plugin)
* test_tarball.sh: Print contents of TESTS as a reminder of what
to test.
* create_manifest.py (STARTER_LIST): Include TESTS file in MANIFEST
* MANIFEST: Include TESTS file in MANIFEST (list of common tests
we should run on releases -- this might be something downstream
packages want to make sure they run through.
* src/lib/plugins/import_export/web_import_plugin/webpage_importer.py (WebParser.get_images):
Ignore <img> tags with no src= attribute (I didn't realize there
were such tags)
* src/lib/recipeIdentifier.py (apply_line_markup): Don't throw
error when we get diff markup we don't expect
* src/lib/gglobals.py (launch_url): Project Ridley -
gnome.url_show -> gtk.show_uri
* MANIFEST Update manifest.
* src/lib/plugins/import_export/pdf_plugin/pdf_exporter_plugin.py (PdfExporterPlugin.do_single_export):
Fix name of method.
* src/lib/plugins/import_export/pdf_plugin/pdf_exporter.py (PdfExporter.__init__):
Fix handling of output arg that is an open file.
2008-12-04 Thomas Mills Hinkle <tomhydrophax>
* src/lib/gtk_extras/treeview_extras.py (print_tree): Add a handy
convenience function for debugging treeview changes
(move_iter): Fix destination description on drag-n-drop
calls. This should fix dnd.
* src/lib/gdebug.py (debug_decorator): Add handy decorator for
quick debugging.
2008-12-02 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/import_export/html_plugin/html_exporter_plugin.py (HtmlExporterPlugin.do_single_export):
Fix single export (export from recipe card view)
* src/lib/reccard.py (RecCardDisplay.ui): Eliminate KeyEditor (it's a plugin now).
(IngredientEditorModule.setup_action_groups): Shorten button names
for ingredient editing toolbar.
(TextEditor): Add generic TextEditor base class with copy/paste/cut support.
(DescriptionEditorModule.ui): Add "Cut" item
(TextFieldEditor.ui): Add "Cut" item
(TextFieldEditor.setup_action_groups): Add rich text editing (bold/italic/underline)
(IngredientController.get_path_from_persistent_ref): Avoid
throwing error when we don't find an iter (return None instead)
(IngredientController.commit_ingredients.commit_iter): Save new
ingredient object into ListStore -- this fixes bug that broke
editing of new ingredients once committed.
(UndoableTreeStuff.record_positions): Fix typo (rc->re)
2008-12-01 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/backends/db.py (RecData.setup_info_table): String->Text
fix to avoid annoying warning.
(make_simple_select_arg): Make sure we use unicode in our select
args.
2008-11-23 Thomas Hinkle <Thomas_Hinklesf.net>
* setup.py: Fix typo that prevented new import/export .in files from being i18n'd.
2008-11-23 Thomas Mills Hinkle <tomhydrophax>
* setup.py (crawl): Automate addition of plugin directories to
setup.py script.
2008-11-23 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugins/import_export/krecipe_plugin.gourmet-plugin.in:
Port old krecipe importer to new plugin system.
* src/lib/plugins/import_export/krecipe_plugin/ New krecipe plugin.
* src/lib/threadManager.py (ThreadManagerGui.thread_done): Handle
case where there is no text when we're done with progress bar;
show completed processes as progress 100% no matter what.
* src/lib/plugin_loader.py (MasterLoader): Add all import/export
as defaults (these don't clog up the interface, so why not include
them).
* src/lib/GourmetRecipeManager.py (GourmetApplication.quit): Fix
error saving recipe card on quit.
2008-11-22 Thomas Hinkle <Thomas_Hinklesf.net>
This is the warning-fix edition, where we get rid of all the
annoying warnings on Gourmet startup!
* src/lib/backends/db.py: Use Text() class explicitly for strings
without length limit instead of deprecated String(length=None
* src/lib/GourmetRecipeManager.py (RecGui.__init__): Add action
group search_action before calling setup_main_window -- this gets
rid of annoying warning about missing actions on startup.
* src/lib/recindex.py (RecIndex.setup_reccolumns.get_colnum): cell
renderers take pango.WRAP_* enums, not gtk.WRAP_* enums
* src/lib/reccard.py (IngredientDisplay.setup_widgets): cell
renderers take pango.WRAP_ enums, not gtk.WRAP_* enums.
* glade/preferenceDialog.glade: Fix deprecation error about
setting an adjustment with non-zero page size.
2008-11-20 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/import_export/web_import_plugin/webpage_importer.py:
Change back to BeautifulSoup instead of BeautifulStoneSoup -- this
makes sure we know about, e.g., standard self-closing tags.
2008-11-17 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/import_export/gxml_plugin/gxml2_exporter.py (rec_to_xml.write_text):
Make sure we don't create element names with spaces in them.
2008-11-15 Thomas Mills Hinkle <tomhydrophax>
* src/lib/plugins/import_export/web_import_plugin/webpage_importer.py (WebParser.add_buffer_to_parsed):
Add code to cycle through MS chars and eliminate those that
remain/were foobarred by beautifupsoup.
2008-11-11 Thomas Mills Hinkle <thomas_hinkleusers.sf.net>
* src/lib/importers/importManager.py (ImportManager.finish_web_import):
Recognize mimetypes with ;'s and encoding declarations to fix
issue reported at
https://sourceforge.net/forum/message.php?msg_id=5619998
2008-11-08 Thomas Mills Hinkle <thomas_hinkleusers.sf.net>
* src/lib/plugin_loader.py: Catch plugin errors and display as
warning; don't let plugin failures bring down whole app at
start-up.
2008-10-27 Thomas Hinkle <Thomas_Hinklesf.net>
* Version->0.14.2
* src/lib/importers/html_importer.py: Don't import old
html_plugins directory
v * setup.py (result): Add new plugins.
(data_files): Fix data files.
* src/lib/backends/db.py (RecData.backup_db): Automatically make a
copy of the database when we're about to do a DB update, just in
case something ugly happens.
2008-10-27 Thomas Hinkle <Thomas_Hinklesf.net>
* src/lib/plugin_loader.py: Add debug calls to make it easy to see
what plugins are being loaded from where with a -v flag.
* src/lib/backends/db.py (RecData.do_add): On ValueError, try
coercing our dictionary of column->values into proper types or
None and reinserting. This fixes a bug with the update code, where
empty strings were being passed where we needed null (None).
2008-10-25 Thomas Hinkle <thomas_hinkleusers.sourceforge.net>