From 6cfcc6f8bf69371814bcc3db9b554de17dbcd850 Mon Sep 17 00:00:00 2001 From: flavio Date: Wed, 02 May 2012 19:22:38 +0000 Subject: Cierre VersiĆ³n 1 --- diff --git a/CeibalNotifica.py b/CeibalNotifica.py index fcf240f..5de438c 100644 --- a/CeibalNotifica.py +++ b/CeibalNotifica.py @@ -23,7 +23,8 @@ import os import gtk import sys import gobject -from store import * +#from store import * +from ceibal.notifier.store import * BASE = os.path.dirname(__file__) pixbuf1 = gtk.gdk.pixbuf_new_from_file_at_size(os.path.join(BASE, "Iconos", "ceibal-gris.png"), 32,32) @@ -68,7 +69,8 @@ class CeibalNotifica(gtk.Window): self.text_view.set_editable(False) self.text_view.set_justification(gtk.JUSTIFY_LEFT) hpanel = gtk.HPaned() - self.store = Store(db_filename="prueba.db") + #self.store = Store(db_filename="prueba.db") + self.store = Store() scroll = gtk.ScrolledWindow() scroll.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC) scroll.add_with_viewport(self.notify_store) diff --git a/MANIFEST b/MANIFEST index c15dfe1..53f15fd 100644 --- a/MANIFEST +++ b/MANIFEST @@ -4,7 +4,6 @@ CeibalNotifica MANIFEST CeibalNotifica.desktop CeibalNotificaUninstall -store.py setup.py CeibalNotificaUninstall.py Iconos/ceibal.png diff --git a/setup.py b/setup.py index 148d217..f728a66 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup(name="CeibalNotifica", author_email = "fdanesse@activitycentral.com", license = "GPL3", scripts = ["CeibalNotifica", "CeibalNotificaUninstall"], - py_modules = ['CeibalNotifica', 'store', 'CeibalNotificaUninstall'], + py_modules = ['CeibalNotifica', 'CeibalNotificaUninstall'], data_files = [('/usr/share/applications/', ['CeibalNotifica.desktop']), ('', ['CeibalNotificaUninstall.py']), ('Iconos', ['Iconos/ceibal.png', 'Iconos/ceibal-gris.png'])]) -- cgit v0.9.1