michal | 7 May 2009 14:16
Favicon
Gravatar

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

Author: nijel
Date: Thu May  7 14:16:19 2009
New Revision: 1275
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1275

Log:
Allow to export only new messages to IMAP (thanks to Tilmann Bitterberg).

Modified:
   trunk/ChangeLog
   trunk/Wammu/MailWriter.py
   trunk/Wammu/SMSExport.py

Modified: trunk/ChangeLog
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/ChangeLog?r1=1274&r2=1275
==============================================================================
--- trunk/ChangeLog	(original)
+++ trunk/ChangeLog	Thu May  7 14:16:19 2009
 <at>  <at>  -8,6 +8,7  <at>  <at> 
 ==== (2009-??-??)

 * Better formatting of message (bug #869).
+* Allow to export only new messages to IMAP (thanks to Tilmann Bitterberg).

 0.30.1
 ==== (2009-03-07)

Modified: trunk/Wammu/MailWriter.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/MailWriter.py?r1=1274&r2=1275
==============================================================================
(Continue reading)

michal | 7 May 2009 14:17
Favicon
Gravatar

[SVN] wammu: r1276 - trunk/Wammu

Author: nijel
Date: Thu May  7 14:17:27 2009
New Revision: 1276
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1276

Log:
Fix typo.

Modified:
   trunk/Wammu/MailWriter.py
   trunk/Wammu/WammuSettings.py

Modified: trunk/Wammu/MailWriter.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/MailWriter.py?r1=1275&r2=1276
==============================================================================
--- trunk/Wammu/MailWriter.py	(original)
+++ trunk/Wammu/MailWriter.py	Thu May  7 14:17:27 2009
 <at>  <at>  -115,7 +115,7  <at>  <at> 
                 DateToString(sms['SMS'][0]['SMSCDateTime']))

     remote = '%s<%s <at> wammu.sms>' % (name, sms['Number'].replace(' ', '_'))
-    local = cfg.Read('/MesageExport/From')
+    local = cfg.Read('/MessageExport/From')

     if sms['SMS'][0]['Type'] == 'Submit':
         msg['To'] = remote

Modified: trunk/Wammu/WammuSettings.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/WammuSettings.py?r1=1275&r2=1276
==============================================================================
(Continue reading)

michal | 7 May 2009 14:17
Favicon
Gravatar

[SVN] wammu: r1277 - trunk/Wammu

Author: nijel
Date: Thu May  7 14:17:55 2009
New Revision: 1277
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1277

Log:
Whitespace cleanup.

Modified:
   trunk/Wammu/MailWriter.py

Modified: trunk/Wammu/MailWriter.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/MailWriter.py?r1=1276&r2=1277
==============================================================================
--- trunk/Wammu/MailWriter.py	(original)
+++ trunk/Wammu/MailWriter.py	Thu May  7 14:17:55 2009
 <at>  <at>  -42,13 +42,13  <at>  <at> 
 HEADER_FORMAT = 'X-Wammu-%s'
 CID_FORMAT = '%d*sms <at> wammu.sms'
 PARTS_TO_HEADER = [
-        'Folder', 
-        'Memory', 
-        'Location', 
-        'Name', 
-        'Type', 
-        'State', 
-        'Class', 
+        'Folder',
+        'Memory',
+        'Location',
(Continue reading)

michal | 18 May 2009 12:46
Favicon
Gravatar

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

Author: nijel
Date: Mon May 18 12:46:40 2009
New Revision: 1278
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1278

Log:
Do not emit warnings in Python 2.6.

Modified:
   trunk/ChangeLog
   trunk/Wammu/Error.py

Modified: trunk/ChangeLog
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/ChangeLog?r1=1277&r2=1278
==============================================================================
--- trunk/ChangeLog	(original)
+++ trunk/ChangeLog	Mon May 18 12:46:40 2009
 <at>  <at>  -9,6 +9,7  <at>  <at> 

 * Better formatting of message (bug #869).
 * Allow to export only new messages to IMAP (thanks to Tilmann Bitterberg).
+* Do not emit warnings in Python 2.6.

 0.30.1
 ==== (2009-03-07)

Modified: trunk/Wammu/Error.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/Error.py?r1=1277&r2=1278
==============================================================================
--- trunk/Wammu/Error.py	(original)
(Continue reading)

michal | 25 May 2009 11:49
Favicon
Gravatar

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

Author: nijel
Date: Mon May 25 11:49:49 2009
New Revision: 1279
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1279

Log:
Properly escape XML in XML export (bug #914).

Modified:
   trunk/ChangeLog
   trunk/Wammu/MessageDisplay.py
   trunk/Wammu/SMSXML.py

Modified: trunk/ChangeLog
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/ChangeLog?r1=1278&r2=1279
==============================================================================
--- trunk/ChangeLog	(original)
+++ trunk/ChangeLog	Mon May 25 11:49:49 2009
 <at>  <at>  -10,6 +10,7  <at>  <at> 
 * Better formatting of message (bug #869).
 * Allow to export only new messages to IMAP (thanks to Tilmann Bitterberg).
 * Do not emit warnings in Python 2.6.
+* Properly escape XML in XML export (bug #914).

 0.30.1
 ==== (2009-03-07)

Modified: trunk/Wammu/MessageDisplay.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/MessageDisplay.py?r1=1278&r2=1279
==============================================================================
(Continue reading)

michal | 26 May 2009 11:57
Favicon
Gravatar

[SVN] wammu: r1280 - in trunk: . Wammu locale locale/af locale/bg locale/ca locale/cs locale/da locale/de locale/el locale/es locale/et locale/fi locale/fr locale/gl locale/he locale/hu locale/id locale/it locale/ko locale/nl locale/pl locale/pt_BR locale/ru locale/sk locale/sv locale/zh_CN locale/zh_TW

Author: nijel
Date: Tue May 26 11:57:53 2009
New Revision: 1280
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1280

Log:
Improve some English texts (bug #859).


Modified:
   trunk/ChangeLog
   trunk/Wammu/Main.py
   trunk/Wammu/PhoneWizard.py
   trunk/locale/af/wammu.po
   trunk/locale/bg/wammu.po
   trunk/locale/ca/wammu.po
   trunk/locale/cs/wammu.po
   trunk/locale/da/wammu.po
   trunk/locale/de/wammu.po
   trunk/locale/el/wammu.po
   trunk/locale/es/wammu.po
   trunk/locale/et/wammu.po
   trunk/locale/fi/wammu.po
   trunk/locale/fr/wammu.po
   trunk/locale/gl/wammu.po
   trunk/locale/he/wammu.po
   trunk/locale/hu/wammu.po
   trunk/locale/id/wammu.po
   trunk/locale/it/wammu.po
   trunk/locale/ko/wammu.po
(Continue reading)

michal | 26 May 2009 12:00
Favicon
Gravatar

[SVN] wammu: r1281 - trunk/locale/cs

Author: nijel
Date: Tue May 26 12:00:03 2009
New Revision: 1281
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1281

Log:
Unfuzzy some texts.

Modified:
   trunk/locale/cs/wammu.po

Modified: trunk/locale/cs/wammu.po
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/locale/cs/wammu.po?r1=1280&r2=1281
==============================================================================
--- trunk/locale/cs/wammu.po	(original)
+++ trunk/locale/cs/wammu.po	Tue May 26 12:00:03 2009
 <at>  <at>  -1,12 +1,12  <at>  <at> 
 # translation of Wammu to Czech
 # Copyright (C) 2004-2006 Michal Čihař
-# Michal Čihař <michal <at> cihar.com>, 2004, 2005, 2006.
+# Michal Čihař <michal <at> cihar.com>, 2004, 2005, 20, 2009.
 msgid ""
 msgstr ""
 "Project-Id-Version: wammu\n"
 "Report-Msgid-Bugs-To: michal <at> cihar.com\n"
 "POT-Creation-Date: 2009-05-26 11:56+0200\n"
-"PO-Revision-Date: 2009-01-27 15:02+0100\n"
+"PO-Revision-Date: 2009-05-26 11:59+0200\n"
 "Last-Translator: Michal Čihař <michal <at> cihar.com>\n"
 "Language-Team: Czech <cs <at> li.org>\n"
(Continue reading)

michal | 27 May 2009 09:02
Favicon
Gravatar

[SVN] wammu: r1282 - in trunk/locale: af bg ca cs da de el es et fi fr gl he hu id it ko nl pl pt_BR ru sk sv zh_CN zh_TW

Author: nijel
Date: Wed May 27 09:02:26 2009
New Revision: 1282
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1282

Log:
Update ignore lists.

Modified:
   trunk/locale/af/   (props changed)
   trunk/locale/bg/   (props changed)
   trunk/locale/ca/   (props changed)
   trunk/locale/cs/   (props changed)
   trunk/locale/da/   (props changed)
   trunk/locale/de/   (props changed)
   trunk/locale/el/   (props changed)
   trunk/locale/es/   (props changed)
   trunk/locale/et/   (props changed)
   trunk/locale/fi/   (props changed)
   trunk/locale/fr/   (props changed)
   trunk/locale/gl/   (props changed)
   trunk/locale/he/   (props changed)
   trunk/locale/hu/   (props changed)
   trunk/locale/id/   (props changed)
   trunk/locale/it/   (props changed)
   trunk/locale/ko/   (props changed)
   trunk/locale/nl/   (props changed)
   trunk/locale/pl/   (props changed)
   trunk/locale/pt_BR/   (props changed)
   trunk/locale/ru/   (props changed)
(Continue reading)

michal | 27 May 2009 10:21
Favicon
Gravatar

[SVN] wammu: r1283 - in trunk: . Wammu glade

Author: nijel
Date: Wed May 27 10:21:11 2009
New Revision: 1283
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1283

Log:
Better configuration of IMAP export (thanks to Tilmann Bitterberg).

Added:
   trunk/glade/imapdiag.wxg
Modified:
   trunk/   (props changed)
   trunk/Wammu/SMSExport.py
   trunk/Wammu/WammuSettings.py

Modified: trunk/Wammu/SMSExport.py
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu/trunk/Wammu/SMSExport.py?r1=1282&r2=1283
==============================================================================
--- trunk/Wammu/SMSExport.py	(original)
+++ trunk/Wammu/SMSExport.py	Wed May 27 10:21:11 2009
 <at>  <at>  -171,56 +171,22  <at>  <at> 
     return (path, flags)

 def SMSToIMAP(parent, messages, contacts):
-    count = len(messages)
-    ssl = False
-    if wx.MessageDialog(parent,
-        _('Do you wish to use SSL while uploading messages to IMAP server?'),
-        _('Use SSL?'),
-        wx.YES_NO | wx.YES_DEFAULT | wx.ICON_QUESTION).ShowModal() == wx.ID_YES:
(Continue reading)

michal | 27 May 2009 10:21
Favicon
Gravatar

[SVN] wammu: r1284 - in trunk/locale: . af bg ca cs da de el es et fi fr gl he hu id it ko nl pl pt_BR ru sk sv zh_CN zh_TW

Author: nijel
Date: Wed May 27 10:21:38 2009
New Revision: 1284
URL: http://viewsvn.cihar.com/viewvc.cgi/wammu?view=rev&revision=1284

Log:
Update.


Modified:
   trunk/locale/af/wammu.po
   trunk/locale/bg/wammu.po
   trunk/locale/ca/wammu.po
   trunk/locale/cs/wammu.po
   trunk/locale/da/wammu.po
   trunk/locale/de/wammu.po
   trunk/locale/el/wammu.po
   trunk/locale/es/wammu.po
   trunk/locale/et/wammu.po
   trunk/locale/fi/wammu.po
   trunk/locale/fr/wammu.po
   trunk/locale/gl/wammu.po
   trunk/locale/he/wammu.po
   trunk/locale/hu/wammu.po
   trunk/locale/id/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
(Continue reading)


Gmane