diff -Nru bauble-0.9.6~karmic~ppa1/bauble/editor.py bauble-0.9.7~karmic~ppa1/bauble/editor.py --- bauble-0.9.6~karmic~ppa1/bauble/editor.py 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/bauble/editor.py 2009-12-12 01:40:05.000000000 +0000 @@ -395,6 +395,14 @@ # used by assign_completions_handler self._prev_text = {} + # _problem_widgets was introduced in 0.9.7 in order to cache the + # widgets that had problems attached to them so that the + # widget background could be reverted to normal after the + # presenter is closed...this because an issue when we starting + # using cached gtk+...this should be fixed in 1.0 + self._problem_widgets = [] + + # whether the presenter should be commited or not def dirty(self): @@ -442,10 +450,12 @@ self.problems.add(problem_id) if isinstance(problem_widgets, (tuple, list)): for w in problem_widgets: + self._problem_widgets.append(w) w.modify_bg(gtk.STATE_NORMAL, self.problem_color) w.modify_base(gtk.STATE_NORMAL, self.problem_color) w.queue_draw() elif problem_widgets is not None: + self._problem_widgets.append(problem_widgets) problem_widgets.modify_bg(gtk.STATE_NORMAL, self.problem_color) problem_widgets.modify_base(gtk.STATE_NORMAL, self.problem_color) problem_widgets.queue_draw() @@ -653,6 +663,9 @@ def cleanup(self): + for widget in self._problem_widgets: + widget.modify_bg(gtk.STATE_NORMAL, None) + widget.modify_base(gtk.STATE_NORMAL, None) self.view.cleanup() diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/bauble/__init__.py /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/bauble/__init__.py --- bauble-0.9.6~karmic~ppa1/bauble/__init__.py 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/bauble/__init__.py 2009-12-12 01:40:05.000000000 +0000 @@ -9,7 +9,7 @@ import bauble.i18n # major, minor, revision version tuple -version = '0.9.6' # :bump +version = '0.9.7' # :bump version_tuple = version.split('.') def main_is_frozen(): diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/bauble/plugins/garden/accession.py /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/bauble/plugins/garden/accession.py --- bauble-0.9.6~karmic~ppa1/bauble/plugins/garden/accession.py 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/bauble/plugins/garden/accession.py 2009-12-12 01:40:05.000000000 +0000 @@ -1232,11 +1232,14 @@ except Exception: pass from utils import ilike - return query.filter(and_(Species.genus_id == Genus.id, - or_(ilike(Genus.genus, '%s%%' % text), - ilike(Genus.genus, '%s%%' % genus), - ilike(Genus.hybrid, - utils.utf8(text))))) + if text.startswith('x'): + or_cond = or_(ilike(Genus.genus, '%s%%' % text), + ilike(Genus.genus, '%s%%' % genus), + ilike(Genus.hybrid, utils.utf8(text[0]))) + else: + or_cond = or_(ilike(Genus.genus, '%s%%' % text), + ilike(Genus.genus, '%s%%' % genus)) + return query.filter(and_(Species.genus_id == Genus.id, or_cond)) def on_select(value): self.set_model_attr('species', value) diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/bauble/plugins/plants/species_editor.py /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/bauble/plugins/plants/species_editor.py --- bauble-0.9.6~karmic~ppa1/bauble/plugins/plants/species_editor.py 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/bauble/plugins/plants/species_editor.py 2009-12-12 01:40:05.000000000 +0000 @@ -60,8 +60,11 @@ # connect signals def gen_get_completions(text): - clause = or_(utils.ilike(Genus.genus, '%s%%' % unicode(text)), - utils.ilike(Genus.hybrid, '%s%%' % unicode(text))) + if text.startswith('x'): + clause = or_(utils.ilike(Genus.genus, '%s%%' % unicode(text)), + utils.ilike(Genus.hybrid, '%s%%' % unicode(text[0]))) + else: + clause = utils.ilike(Genus.genus, '%s%%' % unicode(text)) return self.session.query(Genus).filter(clause) #def set_in_model(self, field, value): diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/bauble/plugins/tag/__init__.py /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/bauble/plugins/tag/__init__.py --- bauble-0.9.6~karmic~ppa1/bauble/plugins/tag/__init__.py 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/bauble/plugins/tag/__init__.py 2009-12-12 01:40:05.000000000 +0000 @@ -299,12 +299,18 @@ if not isinstance(tag, Tag): if not session: session = bauble.Session() - tag = session.query(Tag).filter_by(tag=utils.utf8(tag)).one() + tag = session.query(Tag).filter_by(tag=utils.utf8(tag)).first() elif not session: session = object_session(tag) - r = [session.query(mapper).filter_by(id=obj_id).one() \ + # filter out any None values from the query which can happen if + # you tag something and then delete it from the datebase + + # TODO: the missing tagged objects should probably be removed from + # the database + r = [session.query(mapper).filter_by(id=obj_id).first() \ for mapper, obj_id in _get_tagged_object_pairs(tag)] + r = filter(lambda x: x != None, r) if close_session: session.close() return r diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/bauble.egg-info/PKG-INFO /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/bauble.egg-info/PKG-INFO --- bauble-0.9.6~karmic~ppa1/bauble.egg-info/PKG-INFO 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/bauble.egg-info/PKG-INFO 2009-12-12 01:40:05.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: bauble -Version: 0.9.6 +Version: 0.9.7 Summary: Bauble is a biodiversity collection manager software application Home-page: http://bauble.belizebotanic.org Author: Brett Adams diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/data/bauble.desktop /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/data/bauble.desktop --- bauble-0.9.6~karmic~ppa1/data/bauble.desktop 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/data/bauble.desktop 2009-12-12 01:40:05.000000000 +0000 @@ -1,7 +1,7 @@ [Desktop Entry] Encoding=UTF-8 Name=Bauble -Version=0.9.6 # :bump +Version=0.9.7 # :bump Comment=An application for managing botanical collections Terminal=False Icon=bauble diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/debian/changelog /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/debian/changelog --- bauble-0.9.6~karmic~ppa1/debian/changelog 2009-11-19 15:41:25.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/debian/changelog 2009-12-12 01:40:06.000000000 +0000 @@ -1,3 +1,9 @@ +bauble (0.9.7~karmic~ppa1) karmic; urgency=low + + * 0.9.7 Release + + -- Brett Adams Fri, 11 Dec 2009 19:20:08 -0600 + bauble (0.9.6~karmic~ppa1) karmic; urgency=low * 0.9.6 Release diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/PKG-INFO /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/PKG-INFO --- bauble-0.9.6~karmic~ppa1/PKG-INFO 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/PKG-INFO 2009-12-12 01:40:05.000000000 +0000 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: bauble -Version: 0.9.6 +Version: 0.9.7 Summary: Bauble is a biodiversity collection manager software application Home-page: http://bauble.belizebotanic.org Author: Brett Adams diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/ar.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/ar.po --- bauble-0.9.6~karmic~ppa1/po/ar.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/ar.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/ca.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/ca.po --- bauble-0.9.6~karmic~ppa1/po/ca.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/ca.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/cs.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/cs.po --- bauble-0.9.6~karmic~ppa1/po/cs.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/cs.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/da.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/da.po --- bauble-0.9.6~karmic~ppa1/po/da.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/da.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/de.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/de.po --- bauble-0.9.6~karmic~ppa1/po/de.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/de.po 2009-12-12 01:40:05.000000000 +0000 @@ -8,13 +8,13 @@ "Project-Id-Version: bauble\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-27 22:09-0400\n" -"PO-Revision-Date: 2009-05-28 17:01+0000\n" -"Last-Translator: Paul Nückel \n" +"PO-Revision-Date: 2009-12-02 20:43+0000\n" +"Last-Translator: ucn| \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:373 @@ -279,7 +279,7 @@ #: bauble/_gui.py:66 bauble/connmgr.py:203 #, python-format msgid "Could not load icon from %s" -msgstr "" +msgstr "Konnte Symbol nicht aus %s laden" #: bauble/_gui.py:267 msgid "history size must be greater than zero and less than the history size" @@ -341,10 +341,13 @@ "\n" "%s" msgstr "" +"Konnte keine neue Datenbank erstellen.\n" +"\n" +"%s" #: bauble/_gui.py:684 msgid "Would you like the cancel the current tasks?" -msgstr "" +msgstr "Möchten Sie die momentanen Aufgaben abbrechen?" #: bauble/view.py:108 msgid "Type:" diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/en_CA.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/en_CA.po --- bauble-0.9.6~karmic~ppa1/po/en_CA.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/en_CA.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/eo.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/eo.po --- bauble-0.9.6~karmic~ppa1/po/eo.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/eo.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/es.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/es.po --- bauble-0.9.6~karmic~ppa1/po/es.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/es.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/et.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/et.po --- bauble-0.9.6~karmic~ppa1/po/et.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/et.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/fr.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/fr.po --- bauble-0.9.6~karmic~ppa1/po/fr.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/fr.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/view.py:108 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/gl.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/gl.po --- bauble-0.9.6~karmic~ppa1/po/gl.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/gl.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/hu.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/hu.po --- bauble-0.9.6~karmic~ppa1/po/hu.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/hu.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/it.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/it.po --- bauble-0.9.6~karmic~ppa1/po/it.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/it.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/nl.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/nl.po --- bauble-0.9.6~karmic~ppa1/po/nl.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/nl.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/pl.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/pl.po --- bauble-0.9.6~karmic~ppa1/po/pl.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/pl.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/plugins/plants/species.py:206 bauble/plugins/plants/genus.py:843 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/pt_BR.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/pt_BR.po --- bauble-0.9.6~karmic~ppa1/po/pt_BR.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/pt_BR.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/bauble.glade.h:2 bauble/connmgr.glade.h:1 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/pt.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/pt.po --- bauble-0.9.6~karmic~ppa1/po/pt.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/pt.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/ro.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/ro.po --- bauble-0.9.6~karmic~ppa1/po/ro.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/ro.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/ru.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/ru.po --- bauble-0.9.6~karmic~ppa1/po/ru.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/ru.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/sk.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/sk.po --- bauble-0.9.6~karmic~ppa1/po/sk.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/sk.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/sq.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/sq.po --- bauble-0.9.6~karmic~ppa1/po/sq.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/sq.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203 diff -Nru /tmp/CjyHz361Mi/bauble-0.9.6~karmic~ppa1/po/sv.po /tmp/MXYJOGLyLP/bauble-0.9.7~karmic~ppa1/po/sv.po --- bauble-0.9.6~karmic~ppa1/po/sv.po 2009-11-19 15:41:24.000000000 +0000 +++ bauble-0.9.7~karmic~ppa1/po/sv.po 2009-12-12 01:40:05.000000000 +0000 @@ -14,7 +14,7 @@ "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2009-11-19 01:28+0000\n" +"X-Launchpad-Export-Date: 2009-12-12 01:12+0000\n" "X-Generator: Launchpad (build Unknown)\n" #: bauble/_gui.py:66 bauble/connmgr.py:203