<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://blog.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel">
    <title>gmane.comp.sysutils.pim.taskcoach.devel</title>
    <link>http://blog.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/57"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/52"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/50"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/45"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/42"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/25"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/18"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/7"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/4"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/3"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/2"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/1"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/57">
    <title>taskcoach mods</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/57</link>
    <description>I am finally getting around to implementing a feature I have wanted for 
a while.

This message has two parts. 

1) is the question, how do I go about getting SVN write access, and what 
is the development process.
2) Here is what I am trying to do, and my approach for review

Feature:
When you double click on an item (task) in the treeview, I would like 
the viewer to automatically open to the field that you clicked on.
For instance,  If I click on the categories column, I want the viewer to 
open to the category tab.  If I click on the "Start Date" column, I 
would like the "Dates" tab to show and the "Start Date" column to have 
focus.


Approach:
It is not hard to get the column that is clicked on from a treectrl,
the column number can be transfered to a "field" that the viewer will 
know about. (I have not figured out the mapping, but I suggest it be 
stored in the treectrl somehow)

I specifically want to add a kwarg to that viewers should process called 
"openOnField".  If the viewer doesn't process i</description>
    <dc:creator>Carl Zmola</dc:creator>
    <dc:date>2008-07-12T20:35:35</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/52">
    <title>Introduction and questions about reporting</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/52</link>
    <description>Hello!

My name is Istvan Zoltan Toth, I'm a programmer from Hungary.
I use TaskCoach and there are a few features I really would like to use, 
but they are not included yet.
The reason I subscribed to this list is that I've actually developed a 
feature I use on daily basis but it would be nice to have it integrated.

In a nutshell. I work on different projects and I switch between 
projects and tasks frequently (let's say I switch once in every 30 mins).
At the end of every day I have to make a detailed report of activities.
I've written a simple Python script which reads the TaskCoach file, 
summarizes efforts by categories and creates CSV files, one for each 
category and one which contains summaries.
Then it sends those files to the accounting by e-mail and they do the 
rest (billing).

If it is possilbe I would like to see it integrated like a plug-in, when 
I select the menu item it runs all the reports.
So, it would be great to know your opinion, and if you're positive, I 
would need some pointers wh</description>
    <dc:creator>tiz-tKRccxk9SbrTeHJm+VBaLA&lt; at &gt;public.gmane.org</dc:creator>
    <dc:date>2008-06-23T13:42:26</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/50">
    <title>Little bug, I think</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/50</link>
    <description>
Hi, Franck. What is the motivation of the "elif not 
self.__taskFile.isEmpty()" in IOController.save() ?

     def save(self, *args):
         if self.__taskFile.filename():
             self.__taskFile.save()
             self.__showSaveMessage(self.__taskFile)
             return True
         elif not self.__taskFile.isEmpty():
             return self.saveas()
         else:
             return False

The problem is the following: starting with an empty file, if I create 
a task, undo the create, and try to save, the taskfile is still marked 
dirty, the save button is still enabled and I get the confirmation 
dialog when quitting, which I suppose is not the intended behaviour :)

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

Yahoo! Groups Links

&lt;*&gt; To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

&lt;*&gt; Your email settings:
    Individual Email | Traditional

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

</description>
    <dc:creator>Jerome Laheurte</dc:creator>
    <dc:date>2008-06-21T08:13:22</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/45">
    <title>Testing SyncML</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/45</link>
    <description>
Hi. The first version of the SyncML prototype seems to be working OK 
for me. I have included binaries for Win32, Linux and MacOS PPC (the 
MacIntel version must wait until I get my hands on one of them). If 
anybody wants to try it out, the branch is at

https://taskcoach.svn.sourceforge.net/svnroot/taskcoach/branches/Feature_SyncML/taskcoach

See the inline help for tips and limitations.

Cheers
Jérôme
------------------------------------

Yahoo! Groups Links

&lt;*&gt; To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

&lt;*&gt; Your email settings:
    Individual Email | Traditional

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

&lt;*&gt; To change settings via email:
    mailto:taskcoach-dev-digest-hHKSG33TihhbjbujkaE4pw&lt; at &gt;public.gmane.org 
    mailto:taskcoach-dev-fullfeatured-hHKSG33TihhbjbujkaE4pw&lt; at &gt;public.gmane.org

&lt;*&gt; To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe-hHKSG33Tihhbj</description>
    <dc:creator>Jerome Laheurte</dc:creator>
    <dc:date>2008-06-08T12:09:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/42">
    <title>starting/stopping clock .</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/42</link>
    <description>Hi, 

I wanted to implement one small and easy (or rather "I thought that it's
easy") feature in taskcoach. Stop an effort when laptop lid is closed/PC is
suspended, and resume it after PC is resumed. 

My idea was such:
- taskcoach registers to dbus when started, 

- scripts in /etc/acpi/suspend.d and /etc/acpi/resume.d/ are sending
         signals to taskcoach 

Everything was ok, I learned how to use dbus, successfully sent/received
signals, and now I think that starting/stopping clock will be the easiest
thing (as I have experience with wxPython programming). 

But it appeared, that taskcoach code isn't so easy. I see that it's very
nice, and seems that is designed very good, but is complicated from other
side ... how the hell can I just stop timer? :) Could someone give me some
hints?

regards

Maho.


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

Yahoo! Groups Links

&lt;*&gt; To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

&lt;*&gt; Your email settings:
    Individual Email </description>
    <dc:creator>maho</dc:creator>
    <dc:date>2008-06-03T18:27:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/25">
    <title>Some news</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/25</link>
    <description>
I've spent the last 2 days playing with the Funambol 
(http://funambol.com/) C++ API, wrapping it as a Python extension in 
order to use it from TaskCoach. Now I have a working (though 
incomplete) prototype which is able to synchronize two-way with a 
Funambol server (I use ScheduleWorld for testing).

Through this server, I can now potentially synchronize my tasks with 
my PDA, cell phone, iPod, Evolution, Outlook, Domino server and 
probably several others in both directions :)

It may also be the start for a "collaborative" version (several people 
synchronizing on the same account from several TC instances).

So, this would obviously allow us to close quite a number of feature 
requests. The only problem is that since the Funambol API is in C++, 
we'll have to deploy a binary extension module, which implies building 
it for all supported platforms for each release:

  * Windows
  * Linux (tough one, which distro/Python version etc)
  * Mac PPC
  * Mac Intel

which is a PITA. Franck, what do you think ?</description>
    <dc:creator>Jerome Laheurte</dc:creator>
    <dc:date>2008-05-25T14:00:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/18">
    <title>How to add new preference setting for hour range in Edit Effort dialog?</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/18</link>
    <description>On the regular taskcoach mailing list I suggested that the start and
end values for the hour range in the Edit Effort dialog be controlled
by a preference setting either in the ini file or the preferences
dialog (or both).

The values are hard coded in class TimeCtrl, so the preference
settings would have to be passed there somehow.  The code is complex
and I wasn't able to narrow my focus through the obligatory
googling/mailing list searching, so I don't know where to jump in.

What I was thinking I needed to do was:

1) find some way to add a new preference value to the ini file

2) find out the correct TaskCoach idiom to get the preference values
to the TimeCtrl class

3) find out how to add the capability to modify the preference values
using the Preferences dialog so you didn't have to edit the .ini file
directly.

Any ideas on how to start, or where to look in the code?  I generally
try to start by trying to locate places in the code that do similar
things and modify from there, but have not seen anyth</description>
    <dc:creator>Rob McMullen</dc:creator>
    <dc:date>2008-05-16T21:32:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/7">
    <title>Please help me prepare release 0.70.0</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/7</link>
    <description>Hi,

I'd like to make release 0.70.0 available next weekend. Please help me
testing by checking out the latest version from Subversion and giving
it a try.

In the folder where you check out Task Coach, please do:
$ make icons i18n website

Check website.out/changes.html for an overview of the changes and bug
fixes in 0.70.0.

Thanks, Frank

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

Yahoo! Groups Links

&lt;*&gt; To visit your group on the web, go to:
    http://groups.yahoo.com/group/taskcoach-dev/

&lt;*&gt; Your email settings:
    Individual Email | Traditional

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

&lt;*&gt; To change settings via email:
    mailto:taskcoach-dev-digest-hHKSG33TihhbjbujkaE4pw&lt; at &gt;public.gmane.org 
    mailto:taskcoach-dev-fullfeatured-hHKSG33TihhbjbujkaE4pw&lt; at &gt;public.gmane.org

&lt;*&gt; To unsubscribe from this group, send an email to:
    taskcoach-dev-unsubscribe-hHKSG33TihhbjbujkaE4pw&lt; at &gt;public.gmane.org

&lt;*&gt; Your use of Yahoo! Groups is subjec</description>
    <dc:creator>Frank Niessink</dc:creator>
    <dc:date>2008-05-03T22:09:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/4">
    <title>Migrating to Subversion</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/4</link>
    <description>Hi all,

I'm in the process of migrating the Task Coach CVS repository at
Sourceforge to a Subversion repository. I'll let you know when it's
finished.

Cheers, Frank
</description>
    <dc:creator>Frank Niessink</dc:creator>
    <dc:date>2008-04-05T19:33:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/3">
    <title>Testing Gmane, please ignore</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/3</link>
    <description>Testing Gmane. This message should show up in the Gmane newsgroup at
http://dir.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel

Cheers, Frank
</description>
    <dc:creator>Frank Niessink</dc:creator>
    <dc:date>2008-04-03T19:16:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/2">
    <title>Welcome to the taskcoach-dev group</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/2</link>
    <description>
Hello,

I've added you to my taskcoach-dev group at Yahoo! Groups, a free, 
easy-to-use service. Yahoo! Groups makes it easy to send and receive
group messages, coordinate events, share photos and files, and more.

My introductory message to you:
------------------------------------------------------------------------
Addition of Gmane. 

Description of the group:
------------------------------------------------------------------------
Task Coach - Your friendly task manager.
Mailinglist about the development of the open source
(GPL) program Task Coach. 

Complete your Yahoo! Groups account:
----------------------------------------------------------------------
Your email address has been added to the email list of a Yahoo! Group.
To gain access to all of your group's web features (previous messages,
photos, files, calendar, etc.) and easier control of your message
delivery options, we highly recommend that you complete your account
by connecting your email address to a Yahoo account. It is easy and free.
P</description>
    <dc:creator>taskcoach-dev Moderator</dc:creator>
    <dc:date>2008-04-03T19:12:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/1">
    <title>Yahoo! Groups: You're invited! Join taskcoach-dev today.</title>
    <link>http://comments.gmane.org/gmane.comp.sysutils.pim.taskcoach.devel/1</link>
    <description>
frank-ZOags1uI1ddWk0Htik3J/w&lt; at &gt;public.gmane.org has invited you to join taskcoach-dev 
[http://groups.yahoo.com/group/taskcoach-dev/] on Yahoo! Groups,
the best way to discover and share information and advice with others.  All for free.

A personal invitation from frank-ZOags1uI1ddWk0Htik3J/w&lt; at &gt;public.gmane.org:

Invitation for Gmane. 



See for yourself why millions of people are members of Yahoo! Groups.  But
hurry.  This invitation expires in 30 days.


Join this group:
http://groups.yahoo.com/i?i=45FQbTvv1T80d24aYqgefBptkPg&amp;e=gcsptd-taskcoach-dev%40m%2Egmane%2Eorg 


------------------------------------------------------------------------
Yahoo! Groups is a free service that allows you to stay in touch with 
friends and family or meet new people who share your interests. 
Yahoo! Groups values your privacy. It is a violation of our service 
rules for Groups members to abuse this invitation feature. If you feel 
this has happened, please notify us:
http://help.yahoo.com/fast/help/us/groups/cgi_abuse

You ma</description>
    <dc:creator>taskcoach-dev moderator</dc:creator>
    <dc:date>2008-04-03T19:09:01</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.sysutils.pim.taskcoach.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.sysutils.pim.taskcoach.devel</link>
  </textinput>
</rdf:RDF>
