Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2012-05-02 19:22:38 (GMT)
committer flavio <fdanesse@gmail.com>2012-05-02 19:22:38 (GMT)
commit6cfcc6f8bf69371814bcc3db9b554de17dbcd850 (patch)
tree9eb05f3660b0ed48a66c1f3278360ff85d16d0eb
parent2a3ac4519467e99cdaf6c396c7c3c5e732216072 (diff)
Cierre VersiĆ³n 1
-rw-r--r--CeibalNotifica.py6
-rw-r--r--MANIFEST1
-rwxr-xr-xsetup.py2
3 files changed, 5 insertions, 4 deletions
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'])])