Changeset 3507 for lliurex-homework-harvester
- Timestamp:
- Feb 2, 2017, 1:53:56 PM (4 years ago)
- Location:
- lliurex-homework-harvester/trunk/fuentes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-homework-harvester/trunk/fuentes/debian/control
r2093 r3507 10 10 Package: lliurex-homework-harvester 11 11 Architecture: any 12 Depends: ${shlibs:Depends}, ${misc:Depends}, python, n4d(>=0.47.2), python-glade2 12 Depends: ${shlibs:Depends}, ${misc:Depends}, python, n4d(>=0.47.2), python-glade2, python-caja 13 13 Description: Application to send files to teachers 14 14 Application to send files to teachers with a right click. -
lliurex-homework-harvester/trunk/fuentes/install-files/usr/share/nautilus-python/extensions/lliurex-homework-harvester-extension.py
r1863 r3507 1 1 import urllib 2 from gi.repository import Nautilus,GObject2 from gi.repository import Caja,GObject 3 3 import pwd 4 4 import getpass … … 60 60 61 61 62 class LliurexHomeworkExtension(GObject.GObject, Nautilus.MenuProvider):62 class LliurexHomeworkExtension(GObject.GObject,Caja.MenuProvider): 63 63 64 64 def __init__(self): … … 141 141 142 142 143 item = Nautilus.MenuItem(name='Nautilus::set_harverst_folder',143 item = Caja.MenuItem(name='Caja::set_harverst_folder', 144 144 label=_('Set this folder to receive homeworks')+"...", 145 145 tip=_('Set this folder to receive homeworks'), … … 159 159 160 160 161 item = Nautilus.MenuItem(name='Nautilus::send_homework',161 item = Caja.MenuItem(name='Caja::send_homework', 162 162 label=_('Send file to teacher')+"...", 163 163 tip=_('Send file to teacher'),
Note: See TracChangeset
for help on using the changeset viewer.