Re: [Evolution-hackers] Calling construct() multiply times?

2002-05-02 Thread Shawn Walker
Figured out why I kept getting called back into the construct() callback whenever I select a folder. In the connect() callback, I checked to see if service-url-port is 0, if so, set it to the port to the default port number. I did this because I wanted to know what the port number whereever

[Evolution-hackers] Calling construct() multiply times?

2002-05-01 Thread Shawn Walker
Why is Camel keep calling my construct() routine multiple times? I have the callback setup to call into my connect() function and I do my own connection, return TRUE. Camel then calls my get_folder_info() and I return the folder tree. I select a folder that I want to show the messages, Camel

Re: [Evolution-hackers] Calling construct() multiply times?

2002-05-01 Thread Shawn Walker
I constructed my base_url as: provider://username@server/ In get_folder_info_online() I created a URL for each folder as: provider://username@server/folder1 That URL is being created by camel_url_to_string(). In hash_folder_name(), I get:

Re: [Evolution-hackers] Calling construct() multiply times?

2002-05-01 Thread Dan Winship
On Wed, 2002-05-01 at 13:02, Shawn Walker wrote: I constructed my base_url as: provider://username@server/ In get_folder_info_online() I created a URL for each folder as: provider://username@server/folder1 That URL is being created by camel_url_to_string(). In

Re: [Evolution-hackers] Calling construct() multiply times?

2002-05-01 Thread Jeffrey Stedfast
You realise this doesn't excuse you from licensing GPL, right? Just making sure :-) Jeff On Wed, 2002-05-01 at 09:28, Shawn Walker wrote: [snip] Note, I'm not using any of Camel connection calls to establish the connection to the server, I'm doing it.