Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r268 r269 7 7 * Switch to GPLv3 8 8 * Better console help 9 * Report Itaka version in HTTP headers 9 10 * Don't clean out status labels when restarting server 10 11 * Don't check for system compatibility of Libnotify -
trunk/Makefile
r237 r269 15 15 DATADIR = $(DESTDIR)/share/itaka 16 16 IMAGESDIR = $(DATADIR)/images 17 LOCALEDIR = $(D ESTDIR)/locale17 LOCALEDIR = $(DATADIR)/locale 18 18 APPLICATIONSDIR = $(DESTDIR)/share/applications 19 19 ICONDIR = $(DESTDIR)/share/pixmaps … … 22 22 # For debian compatibility, these are hardcoded 23 23 REPLACEIMAGESDIR = $(PREFIX)/share/itaka/images/ 24 REPLACELOCALEDIR = $(PREFIX)/ locale/24 REPLACELOCALEDIR = $(PREFIX)/share/itaka/locale/ 25 25 26 26 PYFILES := $(shell $(FIND) . -name "*.py" -print) -
trunk/README
r268 r269 101 101 For more information, please see the GNU gettext manual at http://www.gnu.org/software/gettext/manual/gettext.html 102 102 103 NOTE: Your system must have the locale you want to work with installed prior to working with Itaka, if not you might get this message from Python "locale.Error: unsupported locale setting". Refer to your system documentations on how to install/set locales/languages. 104 103 105 7. RELEASE NOTES: 104 106 -
trunk/itaka.py
r268 r269 47 47 48 48 #: To be changed on install to specify where the installed files actually are 49 locale_prefix = "/usr/share/ locale/"49 locale_prefix = "/usr/share/itaka/locale/" 50 50 51 51 if os.path.exists(locale_prefix): -
trunk/server.py
r268 r269 475 475 if self.configuration['server']['notify'] and self.itaka_globals.notify_available: 476 476 import pynotify 477 uri = "file://" + (os.path.join(self.itaka_globals.image_dir, "itaka64x64.png"))478 print_m(uri)479 480 n = pynotify.Notification(_('Screenshot taken'), _('%s requested screenshot' % (self.ip)), uri)477 # 48x48 image by default looks bad in Ubuntu 478 uri = "file://" + (os.path.join(self.itaka_globals.image_dir, "itaka-take.png")) 479 480 n = pynotify.Notification(_('Screenshot taken'), _('%s captured the screen' % (self.ip)), uri) 481 481 482 482 n.set_timeout(1500)
Note: See TracChangeset
for help on using the changeset viewer.

