Jérôme Laheurte | 4 Feb 09:46
Picon
Favicon

thirdparty/flatnotebook.py

It's not used any more is it ?

Cheers
Jérôme

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

(Continue reading)

Frank Niessink | 4 Feb 21:11
Gravatar

Re: thirdparty/flatnotebook.py

2012/2/4 Jérôme Laheurte <fraca7@...>:
> It's not used any more is it ?

Yup. I just removed it.

Thanks, Frank

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
(Continue reading)

Jérôme Laheurte | 12 Feb 09:44
Picon
Favicon

Fwd: [Task Coach-commits] SF.net SVN: taskcoach:[5153] branches/Release1_3_Branch/taskcoach

This seems to bother the Debian and RPM builds:

http://www.fraca7.net:8010/builders/ubuntu10-rel/builds/563/steps/deb/logs/stdio

Début du message réexpédié :

Objet : [Task Coach-commits] SF.net SVN: taskcoach:[5153] branches/Release1_3_Branch/taskcoach
Date : 11 février 2012 23:12:28 HNEC

Revision: 5153
         http://taskcoach.svn.sourceforge.net/taskcoach/?rev=5153&view=rev
Author:   fniessink
Date:     2012-02-11 22:12:27 +0000 (Sat, 11 Feb 2012)
Log Message:
-----------
Prevent crash when language is Norsk.

Modified Paths:
--------------
   branches/Release1_3_Branch/taskcoach/changes.in/changes.py
   branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py
   branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py

Modified: branches/Release1_3_Branch/taskcoach/changes.in/changes.py
===================================================================
--- branches/Release1_3_Branch/taskcoach/changes.in/changes.py 2012-02-10 22:46:59 UTC (rev 5152)
+++ branches/Release1_3_Branch/taskcoach/changes.in/changes.py 2012-02-11 22:12:27 UTC (rev 5153)
<at> <at> -22,7 +22,7 <at> <at>

releases = [

-Release('1.3.8', 'February 10, 2012',
+Release('1.3.8', 'February 11, 2012',
    summary='''This is a mixed feature and bugfix release.''',
    featuresAdded=[
        Feature('''In task viewers, late tasks, due soon tasks, and over due
<at> <at> -45,6 +45,10 <at> <at>
        Bug('''Don't change the selection when deleting or hiding items that
are not selected. When adding a new item, select it. When adding a new sub
item, also expand the parent item if necessary.''', '3484930'),
+        Bug('''When using the Norsk translation on Linux (both Nynorsk and
+Bokmal), Task Coach would crash when displaying a date picker control. This is
+a bug in the underlying wxWidgets toolkit. Worked around by using another
+locale for dates and times when the language is Norsk.''', '1820497'),
        ],
    ),


Modified: branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py
===================================================================
--- branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py 2012-02-10 22:46:59 UTC (rev 5152)
+++ branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py 2012-02-11 22:12:27 UTC (rev 5153)
<at> <at> -82,6 +82,19 <at> <at>
                self.__locale.AddCatalogLookupPathPrefix(localeDir)
                self.__locale.AddCatalog('wxstd')
                break
+        if '_NO' in locale.getlocale(locale.LC_TIME)[0]:
+            # nb_BO and ny_NO cause crashes in the wx.DatePicker. Set the
+            # time part of the locale to some other locale. Since we don't
+            # know which ones are available we try a few:
+            for lang in ['', 'en_GB.utf8', 'C']:
+                try:
+                    locale.setlocale(locale.LC_TIME, lang)
+                except locale.Error:
+                    continue
+                current_language = locale.getlocale(locale.LC_TIME)[0]
+                if current_language and '_NO' in current_language:
+                    continue
+                break

    def _localeStrings(self, language):
        ''' Extract language and language_country from language if possible. '''

Modified: branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py
===================================================================
--- branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py 2012-02-10 22:46:59 UTC (rev 5152)
+++ branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py 2012-02-11 22:12:27 UTC (rev 5153)
<at> <at> -22,7 +22,7 <at> <at>

version = '1.3.8' # Current version number of the application
tskversion = 34 # Current version number of the task file format, changed to 34 for release 1.3.5.
-release_day = '10' # Day number of the release, 1-31, as string
+release_day = '11' # Day number of the release, 1-31, as string
release_month = 'February' # Month of the release in plain English
release_year = '2012' # Year of the release as string
release_status = 'stable' # One of 'alpha', 'beta', 'stable'

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Taskcoach-commits mailing list
Taskcoach-commits-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/taskcoach-commits





__._,_.___

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Frank Niessink | 12 Feb 14:35
Gravatar

Re: Fwd: [Task Coach-commits] SF.net SVN: taskcoach:[5153] branches/Release1_3_Branch/taskcoach

Ah, the locale is probably C so locale.getlocale(locale.LC_TIME) returns None. I'll fix it.

Thanks, Frank

2012/2/12 Jérôme Laheurte <fraca7-GANU6spQydw@public.gmane.org>


This seems to bother the Debian and RPM builds:

http://www.fraca7.net:8010/builders/ubuntu10-rel/builds/563/steps/deb/logs/stdio

Début du message réexpédié :

Objet : [Task Coach-commits] SF.net SVN: taskcoach:[5153] branches/Release1_3_Branch/taskcoach
Date : 11 février 2012 23:12:28 HNEC

Revision: 5153
         http://taskcoach.svn.sourceforge.net/taskcoach/?rev=5153&view=rev
Author:   fniessink
Date:     2012-02-11 22:12:27 +0000 (Sat, 11 Feb 2012)
Log Message:
-----------
Prevent crash when language is Norsk.

Modified Paths:
--------------
   branches/Release1_3_Branch/taskcoach/changes.in/changes.py
   branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py
   branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py

Modified: branches/Release1_3_Branch/taskcoach/changes.in/changes.py
===================================================================
--- branches/Release1_3_Branch/taskcoach/changes.in/changes.py 2012-02-10 22:46:59 UTC (rev 5152)
+++ branches/Release1_3_Branch/taskcoach/changes.in/changes.py 2012-02-11 22:12:27 UTC (rev 5153)
<at> <at> -22,7 +22,7 <at> <at>

releases = [

-Release('1.3.8', 'February 10, 2012',
+Release('1.3.8', 'February 11, 2012',
    summary='''This is a mixed feature and bugfix release.''',
    featuresAdded=[
        Feature('''In task viewers, late tasks, due soon tasks, and over due
<at> <at> -45,6 +45,10 <at> <at>
        Bug('''Don't change the selection when deleting or hiding items that
are not selected. When adding a new item, select it. When adding a new sub
item, also expand the parent item if necessary.''', '3484930'),
+        Bug('''When using the Norsk translation on Linux (both Nynorsk and
+Bokmal), Task Coach would crash when displaying a date picker control. This is
+a bug in the underlying wxWidgets toolkit. Worked around by using another
+locale for dates and times when the language is Norsk.''', '1820497'),
        ],
    ),


Modified: branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py
===================================================================
--- branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py 2012-02-10 22:46:59 UTC (rev 5152)
+++ branches/Release1_3_Branch/taskcoach/taskcoachlib/i18n/__init__.py 2012-02-11 22:12:27 UTC (rev 5153)
<at> <at> -82,6 +82,19 <at> <at>
                self.__locale.AddCatalogLookupPathPrefix(localeDir)
                self.__locale.AddCatalog('wxstd')
                break
+        if '_NO' in locale.getlocale(locale.LC_TIME)[0]:
+            # nb_BO and ny_NO cause crashes in the wx.DatePicker. Set the
+            # time part of the locale to some other locale. Since we don't
+            # know which ones are available we try a few:
+            for lang in ['', 'en_GB.utf8', 'C']:
+                try:
+                    locale.setlocale(locale.LC_TIME, lang)
+                except locale.Error:
+                    continue
+                current_language = locale.getlocale(locale.LC_TIME)[0]
+                if current_language and '_NO' in current_language:
+                    continue
+                break

    def _localeStrings(self, language):
        ''' Extract language and language_country from language if possible. '''

Modified: branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py
===================================================================
--- branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py 2012-02-10 22:46:59 UTC (rev 5152)
+++ branches/Release1_3_Branch/taskcoach/taskcoachlib/meta/data.py 2012-02-11 22:12:27 UTC (rev 5153)
<at> <at> -22,7 +22,7 <at> <at>

version = '1.3.8' # Current version number of the application
tskversion = 34 # Current version number of the task file format, changed to 34 for release 1.3.5.
-release_day = '10' # Day number of the release, 1-31, as string
+release_day = '11' # Day number of the release, 1-31, as string
release_month = 'February' # Month of the release in plain English
release_year = '2012' # Year of the release as string
release_status = 'stable' # One of 'alpha', 'beta', 'stable'

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Taskcoach-commits mailing list
Taskcoach-commits-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/taskcoach-commits








__._,_.___


Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Jérôme Laheurte | 25 Feb 09:26
Picon
Favicon

Release

Frank, I see you tried to trigger a release build yesterday. The VMs were automatically paused because the
disk was full :( It should work again now.

Cheers
Jérôme

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Frank Niessink | 25 Feb 15:19
Gravatar

Re: Release

Hi Jérôme,

2012/2/25 Jérôme Laheurte <fraca7@...>:
> Frank, I see you tried to trigger a release build yesterday. The VMs were automatically paused because the
disk was full :( It should work again now.

Thanks. I'll do a release today.

Cheers, Frank

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Jérôme Laheurte | 28 Feb 20:01
Picon
Favicon

Buildbot

The buildbot will be down for a few days. I must replace the disk and reinstall, it's dying…

Cheers
Jérôme

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Frank Niessink | 28 Feb 20:24
Gravatar

Re: Buildbot

2012/2/28 Jérôme Laheurte <fraca7@...>:
> The buildbot will be down for a few days. I must replace the disk and reinstall, it's dying…

I've signed up for jenkinshosting.com. It's free for open source
projects and I know from experience that Hudson/Jenkins is a nice
tool. Unfortunately, I couldn't see from the homepage what kind of
slaves they support so I signed up to do some testing.

Cheers, Frank

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Jérôme Laheurte | 1 Mar 09:16
Picon
Favicon

Re: Buildbot


Le 28 févr. 2012 à 20:24, Frank Niessink a écrit :

> 2012/2/28 Jérôme Laheurte <fraca7@...>:
>> The buildbot will be down for a few days. I must replace the disk and reinstall, it's dying…
> 
> I've signed up for jenkinshosting.com. It's free for open source
> projects and I know from experience that Hudson/Jenkins is a nice
> tool. Unfortunately, I couldn't see from the homepage what kind of
> slaves they support so I signed up to do some testing.

Interesting. Seems like they're running their own continuous integration software. Isn't there any
"public" view for projects that use this ? They don't mention any open source project using them it seems.

Cheers
Jérôme

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/

Frank Niessink | 1 Mar 13:49
Gravatar

Re: Buildbot

2012/3/1 Jérôme Laheurte <fraca7@...>:
>
> Interesting. Seems like they're running their own continuous integration software. Isn't there any
"public" view for projects that use this ? They don't mention any open source project using them it seems.

The website is a bit low on information, indeed. I have only had an
automated email after my request for an account. No credentials
received yet...

Cheers, Frank

------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/taskcoach-dev/join
    (Yahoo! ID required)

<*> To change settings via email:
    taskcoach-dev-digest@... 
    taskcoach-dev-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/


Gmane