Re: [Wengophone-devel] Phone call states

2006-01-31 Thread Cantemir Mihu
Hello,again about the different phone states: If I make a call to WP NG, then I receive following debug messages for a conversation:PhoneCall: call state changed state=PCSIncomingPhoneCall: call state changed state=PCSOk
PhoneCall: call acceptedPhoneCall: call state changed state=PCSClosedThe PhoneCallStateRinging state does not appear. Why?So the right way to accept a call is:on state incoming: start a ringing sound
the pick up with PhoneCall::accept()then hang up with PhoneCall:close()Is thir right?10xOn 1/31/06, Tanguy Krotoff 
[EMAIL PROTECTED] wrote:Cantemir Mihu wrote: thank you, very usefull reply.
If you need more informations, more diagrams; just ask ;)--Tanguy Krotoff [EMAIL PROTECTED]http://dev.openwengo.com
-- Best regards / Mit freundlichen GrüssenCantemir Mihu
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Spanish wikipedia

2006-01-31 Thread Sebastian Heine
Patrick Aljord schrieb:

 @Sebastian: maybe we could both translate our stuff to English to work
 something out and submit it to Julien (jgi)?   :)

Hi Patrick,

of course we can do that. I don't know if I can translate it during the
week but it should be done during the weekend.

By the way, we also need one or two good screenshots from WP|C, WP|NG
and OpenWengo for the Wikimedia which we can use inside the articles.
Maybe someone made allready a few for the new website, we could use.

 Maybe we could post it in English on the openwengo Wiki first because
 the wiki needs a clear defintion of wengophones,openwengo and wengo
 anyway IMHO. Once we have a stable version on the wiki translators
 could easilly pick it up and translate it on the various wikipedias.

For OpenWengo we allready have a good article in english from Julien,
which we can modify if needed.

Sebastian

-- 
Sebastia Heine
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


Re: [Wengophone-devel] Spanish wikipedia

2006-01-31 Thread Patrick Aljord
On 1/31/06, Sebastian Heine [EMAIL PROTECTED] wrote:
 Patrick Aljord schrieb:

  @Sebastian: maybe we could both translate our stuff to English to work
  something out and submit it to Julien (jgi)?   :)

 Hi Patrick,

 of course we can do that. I don't know if I can translate it during the
 week but it should be done during the weekend.

that would be great, I was thinking maybe a http://babel.altavista.com
translation could be understandable enough, what do you think?

 By the way, we also need one or two good screenshots from WP|C, WP|NG
 and OpenWengo for the Wikimedia which we can use inside the articles.
 Maybe someone made allready a few for the new website, we could use.

Yes it does need screenshots indeed but maybe it would be better to
have localized screenshots showing German version for de.wikipedia and
Spanish for es.wikipedia, some people are scared with English here,
don't know about Germany though :) etc


  Maybe we could post it in English on the openwengo Wiki first because
  the wiki needs a clear defintion of wengophones,openwengo and wengo
  anyway IMHO. Once we have a stable version on the wiki translators
  could easilly pick it up and translate it on the various wikipedias.

 For OpenWengo we allready have a good article in english from Julien,
 which we can modify if needed.
Yes, my [[OpenWengo]] is basically Julien's translated into Spanish.
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


Re: [Wengophone-devel] Phone call states

2006-01-31 Thread Tanguy Krotoff

Cantemir Mihu wrote:
again about the different phone states: If I make a call to WP NG, then 
I receive following debug messages for a conversation:


PhoneCall: call state changed state=PCSIncoming
PhoneCall: call state changed state=PCSOk
PhoneCall: call accepted
PhoneCall: call state changed state=PCSClosed

The PhoneCallStateRinging state does not appear. Why?


Just discovered that my diagram is wrong

for an incoming call:
PhoneCallStateIncoming
PhoneCallStateTalking

for an outgoing call:
PhoneCallStateDialing
PhoneCallStateRinging
PhoneCallStateTalking

(PhoneCallStateTalking was showing PhoneCallStateOk because 
PhoneCallStateTalking::toString() was returning a wrong string)



SIP trace is for an incoming phone call is:
- server - client INVITE sip:client@//PhoneCallStateIncoming
- client - server 180 Ringing
//User clicks on accept call button
- client - server 200 OK
- server - client ACK sip:client@   //PhoneCallStateTalking

So there is only 2 states (PhoneCallStateInconing  
PhoneCallStateTalking) corresponding to the 2 SIP msg (INVITE  ACK) 
from the server. There is no need for a PhoneCallStateRinging when 
receiving a phone call.



So the right way to accept a call is:
on state incoming: start a ringing sound
the pick up with PhoneCall::accept()
then hang up with PhoneCall:close()

Is thir right?


You don't have to play a ringing sound since there is a ring back tone.
So just do accept() and that's all.

--
Tanguy Krotoff [EMAIL PROTECTED]
http://dev.openwengo.com
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


Re: [Wengophone-devel] Phone call states

2006-01-31 Thread Cantemir Mihu
Thank you for clarifying this.Maybe you should replace the image on the wiki, so others won't use the bad diagram.On 1/31/06, Tanguy Krotoff 
[EMAIL PROTECTED] wrote:Cantemir Mihu wrote:
 again about the different phone states: If I make a call to WP NG, then I receive following debug messages for a conversation: PhoneCall: call state changed state=PCSIncoming PhoneCall: call state changed state=PCSOk
 PhoneCall: call accepted PhoneCall: call state changed state=PCSClosed The PhoneCallStateRinging state does not appear. Why?Just discovered that my diagram is wrongfor an incoming call:
PhoneCallStateIncomingPhoneCallStateTalkingfor an outgoing call:PhoneCallStateDialingPhoneCallStateRingingPhoneCallStateTalking(PhoneCallStateTalking was showing PhoneCallStateOk because
PhoneCallStateTalking::toString() was returning a wrong string)SIP trace is for an incoming phone call is:- server - client INVITE sip:client@ //PhoneCallStateIncoming- client - server 180 Ringing
//User clicks on accept call button- client - server 200 OK- server - client ACK sip:client@//PhoneCallStateTalkingSo there is only 2 states (PhoneCallStateInconing PhoneCallStateTalking) corresponding to the 2 SIP msg (INVITE  ACK)
from the server. There is no need for a PhoneCallStateRinging whenreceiving a phone call. So the right way to accept a call is: on state incoming: start a ringing sound the pick up with PhoneCall::accept()
 then hang up with PhoneCall:close() Is thir right?You don't have to play a ringing sound since there is a ring back tone.So just do accept() and that's all.--Tanguy Krotoff 
[EMAIL PROTECTED]http://dev.openwengo.com-- Best regards / Mit freundlichen Grüssen
Cantemir Mihu
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Phone call states

2006-01-31 Thread Julien Gilli

Hello,

Cantemir Mihu a écrit :


Thank you for clarifying this.

Maybe you should replace the image on the wiki, so others won't use 
the bad diagram.


We should convert these images to UML or anything-else diagrams, so that 
we can actually use subversion to track changes.

Does anyone know a better free tools than dia?

All the best,

--
Julien Gilli
OpenWengo, the free and multiplatform VoIP client
http://dev.openwengo.com/

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


[Wengophone-devel] (no subject)

2006-01-31 Thread Joseph Zibara
When is the PDA (MM5) version starting to be developped?Share a single photo or an entire slide show right inside your e-mail with  MSN Premium. Join now and get the first two months FREE*

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

[Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Cantemir Mihu
Hello,I'm very new to using Scons. Sorry for the silly question, but how can I compile NG version in release mode?Another question: If i set the option enable-video to 0, then the output will not depend on avcodec.dll
?Yet another question: what is wengocurl.dll? :)Thank you for your patience-- Best regards / Mit freundlichen GrüssenCantemir Mihu
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Julien Gilli

Hello,

Cantemir Mihu a écrit :

I'm very new to using Scons. Sorry for the silly question, but how can 
I compile NG version in release mode?


Use the mode=release command line switch like this:
QTDIR=/whatever scons mode=release qtwengophone

Another question: If i set the option enable-video to 0, then the 
output will not depend on avcodec.dll ?


Exactly.


Yet another question: what is wengocurl.dll? :)


It is curl with small changes added. We named it wengocurl so that we 
don't get into the issue where we link the main executable binary with 
curl and it actually links with the system's curl. The changes are being 
submitted upstream, but it has not been accepted yet by curl's maintainer.




Thank you for your patience


You're welcome!

--
Julien Gilli
OpenWengo, the free and multiplatform VoIP client
http://dev.openwengo.com/

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Cantemir Mihu
I cannot compile it. Could you have a look at this output please? (I'm on WindowsXP, and QT is installed under C:\qt\4.1.0)http://pastebin.com/532188
On 1/31/06, Julien Gilli [EMAIL PROTECTED] wrote:
Hello,Cantemir Mihu a écrit : I'm very new to using Scons. Sorry for the silly question, but how can I compile NG version in release mode?Use the mode=release command line switch like this:
QTDIR=/whatever scons mode=release qtwengophone Another question: If i set the option enable-video to 0, then the output will not depend on avcodec.dll ?Exactly. Yet another question: what is 
wengocurl.dll? :)It is curl with small changes added. We named it wengocurl so that wedon't get into the issue where we link the main executable binary withcurl and it actually links with the system's curl. The changes are being
submitted upstream, but it has not been accepted yet by curl's maintainer. Thank you for your patienceYou're welcome!--Julien GilliOpenWengo, the free and multiplatform VoIP client
http://dev.openwengo.com/___Wengophone-devel mailing listWengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel-- Best regards / Mit freundlichen Grüssen
Cantemir Mihu
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Klaus Darilion

Cantemir Mihu wrote:
I cannot compile it. Could you have a look at this output please? (I'm 
on WindowsXP, and QT is installed under C:\qt\4.1.0)


maybe this thread can help you.
http://dev.openwengo.com/pipermail/wengophone-devel/2006-January/002057.html

regards
klaus




http://pastebin.com/532188


On 1/31/06, *Julien Gilli* [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED] wrote:


Hello,

Cantemir Mihu a écrit :

  I'm very new to using Scons. Sorry for the silly question, but
how can
  I compile NG version in release mode?

Use the mode=release command line switch like this:
QTDIR=/whatever scons mode=release qtwengophone

  Another question: If i set the option enable-video to 0, then the
  output will not depend on avcodec.dll ?

Exactly.

  Yet another question: what is wengocurl.dll? :)

It is curl with small changes added. We named it wengocurl so that we
don't get into the issue where we link the main executable binary with
curl and it actually links with the system's curl. The changes are
being
submitted upstream, but it has not been accepted yet by curl's
maintainer.

 
  Thank you for your patience

You're welcome!

--
Julien Gilli
OpenWengo, the free and multiplatform VoIP client
http://dev.openwengo.com/

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
mailto:Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel




--

Best regards / Mit freundlichen Grüssen
Cantemir Mihu




___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Cantemir Mihu
Thank you,but not of any help. I already compiled it successfully in debug mode with this command: scons qtwengophone wengocurl phapi avcodecNow I tried scons mode=release enable-video=0 qtwengophone
with no success.On 1/31/06, Klaus Darilion [EMAIL PROTECTED] wrote:
Cantemir Mihu wrote: I cannot compile it. Could you have a look at this output please? (I'm
 on WindowsXP, and QT is installed under C:\qt\4.1.0)maybe this thread can help you.http://dev.openwengo.com/pipermail/wengophone-devel/2006-January/002057.html
regardsklaus http://pastebin.com/532188 On 1/31/06, *Julien Gilli* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote: Hello, Cantemir Mihu a écrit : I'm very new to using Scons. Sorry for the silly question, but
 how can I compile NG version in release mode? Use the mode=release command line switch like this: QTDIR=/whatever scons mode=release qtwengophone Another question: If i set the option enable-video to 0, then the
 output will not depend on avcodec.dll ? Exactly. Yet another question: what is wengocurl.dll? :) It is curl with small changes added. We named it wengocurl so that we
 don't get into the issue where we link the main executable binary with curl and it actually links with the system's curl. The changes are being submitted upstream, but it has not been accepted yet by curl's
 maintainer. Thank you for your patience You're welcome! -- Julien Gilli OpenWengo, the free and multiplatform VoIP client
 http://dev.openwengo.com/ ___ Wengophone-devel mailing list 
Wengophone-devel@lists.openwengo.com mailto:Wengophone-devel@lists.openwengo.com 
http://dev.openwengo.com/mailman/listinfo/wengophone-devel --  Best regards / Mit freundlichen Grüssen Cantemir Mihu 
 ___ Wengophone-devel mailing list Wengophone-devel@lists.openwengo.com 
http://dev.openwengo.com/mailman/listinfo/wengophone-devel-- Best regards / Mit freundlichen GrüssenCantemir Mihu
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Julien Gilli

Hello,

Cantemir Mihu a écrit :

I cannot compile it. Could you have a look at this output please? (I'm 
on WindowsXP, and QT is installed under C:\qt\4.1.0)


http://pastebin.com/532188


Thank you very much for having pasted the console output. It seems that 
the include paths are wrong. Which version of scons do you use?


All the best,

--
Julien Gilli
OpenWengo, the free and multiplatform VoIP client
http://dev.openwengo.com/

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel


Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Cantemir Mihu
scons-0.96.1On 1/31/06, Julien Gilli [EMAIL PROTECTED] wrote:
Hello,Cantemir Mihu a écrit : I cannot compile it. Could you have a look at this output please? (I'm on WindowsXP, and QT is installed under C:\qt\4.1.0) 
http://pastebin.com/532188Thank you very much for having pasted the console output. It seems thatthe include paths are wrong. Which version of scons do you use?All the best,--Julien Gilli
OpenWengo, the free and multiplatform VoIP clienthttp://dev.openwengo.com/___Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.comhttp://dev.openwengo.com/mailman/listinfo/wengophone-devel
-- Best regards / Mit freundlichen GrüssenCantemir Mihu
___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Spanish wikipedia

2006-01-31 Thread Pearl WINCHESTER
Hi,
I updated the French page about OpenWengo then, translating the
English one. Maybe we should try to put the picture on Wikimedia
Commons, just to share it easily between the different languages
pages...

On the otherside, the OpenWengo Wikipedia french page already existed
and there is a little more stuff here than in the other language pages.
I didn't wanted to remove it, the information is actually right (I just
changed from OpenWengo is a software to OpenWengo is a community)

Pearl2006/1/31, Patrick Aljord [EMAIL PROTECTED]:
On 1/31/06, Sebastian Heine [EMAIL PROTECTED] wrote: Patrick Aljord schrieb:  @Sebastian: maybe we could both translate our stuff to English to work  something out and submit it to Julien (jgi)? :)
 Hi Patrick, of course we can do that. I don't know if I can translate it during the week but it should be done during the weekend.that would be great, I was thinking maybe a 
http://babel.altavista.comtranslation could be understandable enough, what do you think? By the way, we also need one or two good screenshots from WP|C, WP|NG and OpenWengo for the Wikimedia which we can use inside the articles.
 Maybe someone made allready a few for the new website, we could use.Yes it does need screenshots indeed but maybe it would be better tohave localized screenshots showing German version for de.wikipedia
 andSpanish for es.wikipedia, some people are scared with English here,don't know about Germany though :) etc  Maybe we could post it in English on the openwengo Wiki first because  the wiki needs a clear defintion of wengophones,openwengo and wengo
  anyway IMHO. Once we have a stable version on the wiki translators  could easilly pick it up and translate it on the various wikipedias. For OpenWengo we allready have a good article in english from Julien,
 which we can modify if needed.Yes, my [[OpenWengo]] is basically Julien's translated into Spanish.___Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.comhttp://dev.openwengo.com/mailman/listinfo/wengophone-devel
-- Pearl WINCHESTERElève-Ingénieur dernière année Ecole des Mines d'Albi-CarmauxOption Génie des Systèmes d'Informationhttp://hercules.enstimac.fr/~poipoi

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Re: [Wengophone-devel] Compile release mode of NG version

2006-01-31 Thread Julien Gilli

Hello,

Cantemir Mihu a écrit :

but not of any help. I already compiled it successfully in debug mode 
with this command:


scons qtwengophone wengocurl phapi avcodec

Now I tried 
scons mode=release enable-video=0 qtwengophone



with no success.
 

Indeed, there seems to be a problem with the build system. Created 
ticket #341 to track this issue.


Thank you very much for the report!

All the best,

--
Julien Gilli
OpenWengo, the free and multiplatform VoIP client
http://dev.openwengo.com/

___
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel