michal | 6 Jan 2008 06:00
Favicon
Gravatar

[SVN] wammu: r1037 - in trunk: . Wammu

Author: nijel
Date: Sun Jan  6 06:00:31 2008
New Revision: 1037
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1037

Log:
Update copyright info.

Modified:
   trunk/Wammu/About.py
   trunk/Wammu/App.py
   trunk/Wammu/BluezDiscovery.py
   trunk/Wammu/Browser.py
   trunk/Wammu/Calendar.py
   trunk/Wammu/Composer.py
   trunk/Wammu/Data.py
   trunk/Wammu/Displayer.py
   trunk/Wammu/EditContactList.py
   trunk/Wammu/Editor.py
   trunk/Wammu/Error.py
   trunk/Wammu/ErrorLog.py
   trunk/Wammu/ErrorMessage.py
   trunk/Wammu/Events.py
   trunk/Wammu/GammuSettings.py
   trunk/Wammu/IMAP.py
   trunk/Wammu/Image.py
   trunk/Wammu/Info.py
   trunk/Wammu/Locales.py
   trunk/Wammu/Logger.py
   trunk/Wammu/MailWriter.py
(Continue reading)

michal | 6 Jan 2008 06:08
Favicon
Gravatar

[SVN] wammu: r1038 - in trunk/locale: ca de hu

Author: nijel
Date: Sun Jan  6 06:08:21 2008
New Revision: 1038
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1038

Log:
Translation update.

Modified:
   trunk/locale/ca/wammu.po
   trunk/locale/de/wammu.po
   trunk/locale/hu/wammu.po

Modified: trunk/locale/ca/wammu.po
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/locale/ca/wammu.po?r1=1037&r2=1038
==============================================================================
--- trunk/locale/ca/wammu.po	(original)
+++ trunk/locale/ca/wammu.po	Sun Jan  6 06:08:21 2008
 <at>  <at>  -8,12 +8,13  <at>  <at> 
 "Project-Id-Version: wammu\n"
 "Report-Msgid-Bugs-To: michal <at> cihar.com\n"
 "POT-Creation-Date: 2007-12-19 21:05+0900\n"
-"PO-Revision-Date: 2006-10-12 12:35+0000\n"
-"Last-Translator: nakki <makkarainen <at> gmail.com>\n"
+"PO-Revision-Date: 2007-12-26 13:00+0100\n"
+"Last-Translator: Alberto Sanchez Molero <frikifeldes <at> gmail.com>\n"
 "Language-Team: Catalan <ca <at> li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
(Continue reading)

michal | 6 Jan 2008 06:12
Favicon
Gravatar

[SVN] wammu: r1039 - in trunk: admin locale locale/af locale/ca locale/cs locale/de locale/es locale/et locale/fi locale/fr locale/hu locale/it locale/ko locale/nl locale/pl locale/pt_BR locale/ru locale/sk locale/sv locale/zh_CN

Author: nijel
Date: Sun Jan  6 06:12:35 2008
New Revision: 1039
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1039

Log:
Regenerate locales.


Modified:
   trunk/admin/locales-update
   trunk/locale/af/wammu.po
   trunk/locale/ca/wammu.po
   trunk/locale/cs/wammu.po
   trunk/locale/de/wammu.po
   trunk/locale/es/wammu.po
   trunk/locale/et/wammu.po
   trunk/locale/fi/wammu.po
   trunk/locale/fr/wammu.po
   trunk/locale/hu/wammu.po
   trunk/locale/it/wammu.po
   trunk/locale/ko/wammu.po
   trunk/locale/nl/wammu.po
   trunk/locale/pl/wammu.po
   trunk/locale/pt_BR/wammu.po
   trunk/locale/ru/wammu.po
   trunk/locale/sk/wammu.po
   trunk/locale/sv/wammu.po
   trunk/locale/wammu.pot
   trunk/locale/zh_CN/wammu.po
(Continue reading)

michal | 6 Jan 2008 07:12
Favicon
Gravatar

[SVN] wammu: r1040 - trunk/Wammu

Author: nijel
Date: Sun Jan  6 07:12:33 2008
New Revision: 1040
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1040

Log:
Fix crash when D-Bus session can not be autolaunched (bug #468).

Modified:
   trunk/Wammu/Main.py

Modified: trunk/Wammu/Main.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/Main.py?r1=1039&r2=1040
==============================================================================
--- trunk/Wammu/Main.py	(original)
+++ trunk/Wammu/Main.py	Sun Jan  6 07:12:33 2008
 <at>  <at>  -564,13 +564,17  <at>  <at> 
         self.dbus_notify = None
         self.last_dbus_id = 0
         if HAVE_DBUS:
-            bus = dbus.SessionBus() #mainloop = self.appparent.MainLoop)
-            interface = 'org.freedesktop.Notifications'
-            path = '/org/freedesktop/Notifications'
-            if Wammu.Utils.DBUSServiceAvailable(bus, interface, True):
-                obj = bus.get_object(interface, path)
-                self.dbus_notify = dbus.Interface(obj, interface)
-                self.dbus_notify.connect_to_signal('ActionInvoked', self.DBUSActionCallback)
+            try:
+                bus = dbus.SessionBus() #mainloop = self.appparent.MainLoop)
+                interface = 'org.freedesktop.Notifications'
(Continue reading)

michal | 8 Jan 2008 04:55
Favicon
Gravatar

[SVN] wammu: r1041 - trunk/Wammu

Author: nijel
Date: Tue Jan  8 04:55:30 2008
New Revision: 1041
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1041

Log:
Check whether there is connection defined (bug #465).

Modified:
   trunk/Wammu/Settings.py

Modified: trunk/Wammu/Settings.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/Settings.py?r1=1040&r2=1041
==============================================================================
--- trunk/Wammu/Settings.py	(original)
+++ trunk/Wammu/Settings.py	Tue Jan  8 04:55:30 2008
 <at>  <at>  -486,15 +486,24  <at>  <at> 

     def Okay(self, evt):
         lst, choices = self.config.gammu.GetConfigList()
-        current = lst[self.editsection.GetSelection()]
-        self.config.gammu = self.gammu_config
-        self.config.gammu.SetConfig(current['Id'],
-            self.editdev.GetValue(),
-            self.editconn.GetValue(),
-            self.editname.GetValue(),
-            self.editmodel.GetValue())
-        self.config.Write('/Gammu/Gammurc', self.editcfgpath.GetValue())
-        self.config.WriteInt('/Gammu/Section', current['Id'])
+
(Continue reading)

michal | 8 Jan 2008 06:12
Favicon
Gravatar

[SVN] wammu: r1042 - trunk

Author: nijel
Date: Tue Jan  8 06:12:26 2008
New Revision: 1042
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1042

Log:
Disable errors from not found DLLs.

Modified:
   trunk/wammu.py

Modified: trunk/wammu.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/wammu.py?r1=1041&r2=1042
==============================================================================
--- trunk/wammu.py	(original)
+++ trunk/wammu.py	Tue Jan  8 06:12:26 2008
 <at>  <at>  -36,6 +36,14  <at>  <at> 
 except ImportError:
     pass

+# Disable warning about missing files
+# This can be caused by attempt to import Python modules, which don't
+# have all DLLs satisfied.
+if sys.platform.startswith('win'):
+    import win32api
+    import win32con
+    win32api.SetErrorMode(win32con.SEM_NOOPENFILEERRORBOX)
+
 def version():
     '''
(Continue reading)

michal | 8 Jan 2008 07:46
Favicon
Gravatar

[SVN] wammu: r1043 - trunk/locale/es

Author: nijel
Date: Tue Jan  8 07:46:50 2008
New Revision: 1043
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1043

Log:
Update spanish.

Modified:
   trunk/locale/es/wammu.po

Modified: trunk/locale/es/wammu.po
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/locale/es/wammu.po?r1=1042&r2=1043
==============================================================================
--- trunk/locale/es/wammu.po	(original)
+++ trunk/locale/es/wammu.po	Tue Jan  8 07:46:50 2008
 <at>  <at>  -8,8 +8,8  <at>  <at> 
 "Project-Id-Version: wammu\n"
 "Report-Msgid-Bugs-To: michal <at> cihar.com\n"
 "POT-Creation-Date: 2008-01-06 14:09+0900\n"
-"PO-Revision-Date: 2007-11-29 21:41+0100\n"
-"Last-Translator: Juan Jose Pablos <juanjo <at> apertus.es>\n"
+"PO-Revision-Date: 2008-01-07 21:10+0100\n"
+"Last-Translator: Josean P. Vidaurre <jplazavidaurre <at> yahoo.es>\n"
 "Language-Team: Spanish <es <at> li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 <at>  <at>  -68,114 +68,117  <at>  <at> 

 #: Wammu/App.py:68
(Continue reading)

michal | 8 Jan 2008 07:48
Favicon
Gravatar

[SVN] wammu: r1044 - in trunk/locale: . af ca cs de es et fi fr hu it ko nl pl pt_BR ru sk sv zh_CN

Author: nijel
Date: Tue Jan  8 07:48:35 2008
New Revision: 1044
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1044

Log:
Regenerate.


Modified:
   trunk/locale/af/wammu.po
   trunk/locale/ca/wammu.po
   trunk/locale/cs/wammu.po
   trunk/locale/de/wammu.po
   trunk/locale/es/wammu.po
   trunk/locale/et/wammu.po
   trunk/locale/fi/wammu.po
   trunk/locale/fr/wammu.po
   trunk/locale/hu/wammu.po
   trunk/locale/it/wammu.po
   trunk/locale/ko/wammu.po
   trunk/locale/nl/wammu.po
   trunk/locale/pl/wammu.po
   trunk/locale/pt_BR/wammu.po
   trunk/locale/ru/wammu.po
   trunk/locale/sk/wammu.po
   trunk/locale/sv/wammu.po
   trunk/locale/wammu.pot
   trunk/locale/zh_CN/wammu.po

(Continue reading)

michal | 8 Jan 2008 08:49
Favicon
Gravatar

[SVN] wammu: r1045 - trunk/Wammu

Author: nijel
Date: Tue Jan  8 08:49:06 2008
New Revision: 1045
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1045

Log:
Improve main window layout, thanks to David Corrales.

Modified:
   trunk/Wammu/Main.py

Modified: trunk/Wammu/Main.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/Main.py?r1=1044&r2=1045
==============================================================================
--- trunk/Wammu/Main.py	(original)
+++ trunk/Wammu/Main.py	Tue Jan  8 08:49:06 2008
 <at>  <at>  -223,6 +223,10  <at>  <at> 

         wx.EVT_TREE_SEL_CHANGED(self, self.tree.GetId(), self.OnTreeSel)

+        # common border sizes (Gnome HIG)
+        self.separatorHalf = 3
+        self.separatorNormal = 6
+        self.separatorTwice = 12

         # right frame
         self.rightsplitter = wx.SplitterWindow(self.splitter, -1)
 <at>  <at>  -231,7 +235,7  <at>  <at> 

         # title text
(Continue reading)

michal | 8 Jan 2008 09:06
Favicon
Gravatar

[SVN] wammu: r1046 - trunk/Wammu

Author: nijel
Date: Tue Jan  8 09:06:17 2008
New Revision: 1046
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1046

Log:
Add .mbox extension to mailbox export (thanks to Tomasz Pala).

Modified:
   trunk/Wammu/SMSExport.py

Modified: trunk/Wammu/SMSExport.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/SMSExport.py?r1=1045&r2=1046
==============================================================================
--- trunk/Wammu/SMSExport.py	(original)
+++ trunk/Wammu/SMSExport.py	Tue Jan  8 09:06:17 2008
 <at>  <at>  -31,13 +31,21  <at>  <at> 

 def SMSToMailbox(parent, messages, contacts):
     count = len(messages)
-    wildcard = _('All files') + ' (*.*)|*.*;*'
+    wildcard = _('Mailboxes') + ' (*.mbox)|*.mbox|' + _('All files') + ' (*.*)|*.*;*'
+    exts = ['mbox']
+    exts.append(None)
     dlg = wx.FileDialog(parent, _('Select mailbox file...'), os.getcwd(), "", wildcard, wx.SAVE |
wx.OVERWRITE_PROMPT | wx.CHANGE_DIR)

     if dlg.ShowModal() != wx.ID_OK:
         return

(Continue reading)


Gmane