Just recompile ffmpeg and fix the recordings

2010-02-05 Thread John Davis
The recording feature seems to be working well from my build, however
I don't get the cursor in the recorded video. Is there a way to show
the cursor?

 Nice app though.

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Issues (??) at recorder and whiteboard

2010-02-05 Thread Victor Sartori
I found what are happened

The ffmpeg of debian does have lamemp3 support...
Was necessary to get the source code of ffmpeg, and compile with lamemp3
support.

Anyway, I'll do a howto for debian how to install (including this solution)


Thanks for all!

Victor

2010/2/5 Victor Sartori 

>
>
> 2010/2/5 Sebastian Wagner 
>
> hi,
>>
>> *Cannot run program "sox": java.io.IOException*
>> should give you an idea what is wrong => SoX might be installed but *sox*
>> cannot be executed.
>>
>
> Nice I'll do more tests if I can resolve this, I would post here.
>
>
>>
>> The latter about the documents + drawing is actually no Issue in that
>> meaning. It would be just quite useful to refactor the Whiteboard to have
>> drawings saved by page. But that will is not in the scope of the current
>> release.
>>
>
> I have imagined this
>
> Thanks Sebastian
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: No mail for No update

2010-02-05 Thread Bicho4191
Hi again sebastian

this is my solution:

if (this.startDate.getDate() == this.startDate2.getDate() &&
this.startDate.getMonth() == 
this.startDate2.getMonth() &&
this.startDate.getFullYear() == 
this.startDate2.getFullYear() &&
this.startDate.getHours() == 
this.startDate2.getHours() &&
this.startDate.getMinutes() == 
this.startDate2.getMinutes() &&
this.endDate.getDate() == 
this.endDate2.getDate() &&
this.endDate.getMonth() == 
this.endDate2.getMonth() &&
this.endDate.getFullYear() == 
this.endDate2.getFullYear() &&
this.endDate.getHours() == 
this.endDate2.getHours() &&
this.endDate.getMinutes() == 
this.endDate2.getMinutes())

how you can see the condition covers all the atributtes in startDate
and startDate2 same way to endDate and endDate2

grettings and thx for all i hope this fix the issue


On 5 feb, 12:41, Bicho4191  wrote:
> i agree with you
> and try to understand why this happen i try to setminutes(0) and the
> diference still
> if you try startDate without .getTime() you found the string of
> startDate and startDate2 its not the same
> and that be weird. i will still testing and make some changes about
> this issue
>
> Thx and greetings
>
> On 5 feb, 12:23, Sebastian Wagner  wrote:
>
>
>
> > hi,
>
> > I think the only way to fix that issue is really to check why:
>
> > if (this.startDate.getTime() == this.startDate2.getTime() &&
> > this.endDate.getTime() == this.endDate2.getTime())
>
> > is not true when actually there is no change, or where this minute is
> > comming from that you reported to be too much.
>
> > Sebastian
>
> > 2010/2/5 Bicho4191 
>
> > > Hi sebastian
>
> > > i wanna just a little comment result i found the line:
>
> > >         lz.Timer.resetTimer( this.startDragDel , 150 );
>
> > > and i think maybe if move the time do a litle click over the event not
> > > be invoked the start drag and that was work
> > > i try to make the startdate and startdate2 was equals but i cant
> > > accomplish and that all the problem was resolved for me :S
>
> > > grettins
>
> > > On 5 feb, 11:11, Bicho4191  wrote:
> > > > Hi again sebastian i was checking the eventselector.lzx file and i
> > > > found when the domouseup method and i think found the problem
>
> > > > first i see the comparation between startdate and startdate2 always
> > > > thrown false and  go to the debug to see the value of this variables
> > > > and debug.inspect throws this
>
> > > > lzx> Debug.inspect(Wed Feb 3 09:00:00 GMT-0600 2010)
> > > > «Date#314»
> > > > «Date#314| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > lzx> Debug.inspect(Wed Feb 3 09:01:00 GMT-0600 2010)
> > > > «Date#350»
> > > > «Date#350| Wed Feb 3 09:01:00 GMT-0600 2010»
>
> > > > yes the date is diferent  by a minute!! i dont know why
>
> > > > well i going to try to resolve in the client side
> > > > (eventselector.lzx)
> > > > thx sebastian
>
> > > > On 5 feb, 09:44, Sebastian Wagner  wrote:
>
> > > > > okay the function you are searching for is called:
> > > > > public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
> > > > >             Date appointmentstart, Date appointmentend, String 
> > > > > baseurl,
> > > > >             Long language_id)
> > > > > in Calendar Service.
> > > > > And you're right I think it is invoked too early, it should only
> > > trigger if
> > > > > there was really a change in the meeting time. The function is invoked
> > > > > whenever the user drag-n-drop a meeting in the calendar to another 
> > > > > time
> > > or
> > > > > date.
>
> > > > >http://code.google.com/p/openmeetings/issues/detail?id=1124
>
> > > > > Sebastian
>
> > > > > 2010/2/5 Bicho4191 
>
> > > > > > hi
>
> > > > > > the question is that I not click the save button, simply click on 
> > > > > > the
> > > > > > event I do not even show the info_panel
>
> > > > > > greetings
> > > > > > i will try to identify the responsible class and make the changes on
> > > > > > the server side,
>
> > > > > > i thinkl the solution maybe be on the client side when the start 
> > > > > > drag
> > > > > > method is throw beyond that i lost
>
> > > > > > and thx sebastian
>
> > > > > > On 5 feb, 05:54, Sebastian Wagner  wrote:
> > > > > > > hm,
>
> > > > > > > okay but what I wondering is:
> > > > > > > Why do you hit the save button when you actually did not change
> > > anything?
>
> > > > > > > Anyway we can make something server-side to check if the meeting 
> > > > > > > is
> > > 100%
> > > > > > the
> > > > > > > same and do send only update-mails in case if not.
>
> > > > > > > Sebastian
>
> > > > > > > 2010/2/5 Bicho4191 
>
> > > > > > > > hi everyone i have a ltle problem with OM2797
>
> > > > > 

Re: No mail for No update

2010-02-05 Thread Bicho4191
i agree with you
and try to understand why this happen i try to setminutes(0) and the
diference still
if you try startDate without .getTime() you found the string of
startDate and startDate2 its not the same
and that be weird. i will still testing and make some changes about
this issue

Thx and greetings



On 5 feb, 12:23, Sebastian Wagner  wrote:
> hi,
>
> I think the only way to fix that issue is really to check why:
>
> if (this.startDate.getTime() == this.startDate2.getTime() &&
> this.endDate.getTime() == this.endDate2.getTime())
>
> is not true when actually there is no change, or where this minute is
> comming from that you reported to be too much.
>
> Sebastian
>
> 2010/2/5 Bicho4191 
>
>
>
>
>
> > Hi sebastian
>
> > i wanna just a little comment result i found the line:
>
> >         lz.Timer.resetTimer( this.startDragDel , 150 );
>
> > and i think maybe if move the time do a litle click over the event not
> > be invoked the start drag and that was work
> > i try to make the startdate and startdate2 was equals but i cant
> > accomplish and that all the problem was resolved for me :S
>
> > grettins
>
> > On 5 feb, 11:11, Bicho4191  wrote:
> > > Hi again sebastian i was checking the eventselector.lzx file and i
> > > found when the domouseup method and i think found the problem
>
> > > first i see the comparation between startdate and startdate2 always
> > > thrown false and  go to the debug to see the value of this variables
> > > and debug.inspect throws this
>
> > > lzx> Debug.inspect(Wed Feb 3 09:00:00 GMT-0600 2010)
> > > «Date#314»
> > > «Date#314| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > lzx> Debug.inspect(Wed Feb 3 09:01:00 GMT-0600 2010)
> > > «Date#350»
> > > «Date#350| Wed Feb 3 09:01:00 GMT-0600 2010»
>
> > > yes the date is diferent  by a minute!! i dont know why
>
> > > well i going to try to resolve in the client side
> > > (eventselector.lzx)
> > > thx sebastian
>
> > > On 5 feb, 09:44, Sebastian Wagner  wrote:
>
> > > > okay the function you are searching for is called:
> > > > public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
> > > >             Date appointmentstart, Date appointmentend, String baseurl,
> > > >             Long language_id)
> > > > in Calendar Service.
> > > > And you're right I think it is invoked too early, it should only
> > trigger if
> > > > there was really a change in the meeting time. The function is invoked
> > > > whenever the user drag-n-drop a meeting in the calendar to another time
> > or
> > > > date.
>
> > > >http://code.google.com/p/openmeetings/issues/detail?id=1124
>
> > > > Sebastian
>
> > > > 2010/2/5 Bicho4191 
>
> > > > > hi
>
> > > > > the question is that I not click the save button, simply click on the
> > > > > event I do not even show the info_panel
>
> > > > > greetings
> > > > > i will try to identify the responsible class and make the changes on
> > > > > the server side,
>
> > > > > i thinkl the solution maybe be on the client side when the start drag
> > > > > method is throw beyond that i lost
>
> > > > > and thx sebastian
>
> > > > > On 5 feb, 05:54, Sebastian Wagner  wrote:
> > > > > > hm,
>
> > > > > > okay but what I wondering is:
> > > > > > Why do you hit the save button when you actually did not change
> > anything?
>
> > > > > > Anyway we can make something server-side to check if the meeting is
> > 100%
> > > > > the
> > > > > > same and do send only update-mails in case if not.
>
> > > > > > Sebastian
>
> > > > > > 2010/2/5 Bicho4191 
>
> > > > > > > hi everyone i have a ltle problem with OM2797
>
> > > > > > > every time i do clic over the event on the calendar a mail about
> > the
> > > > > > > appointment is send
>
> > > > > > > this is the log about the moment of the action
>
> > > > > > > appointementId  2
> > > > > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > > > Usuario:  «Object#550| {activateha...
> > > > > > > startDrag  false 1265331006112
> > > > > > > Remove Drag State
>
> > > > > > > WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update
> > Cal
> > > > > > > Event  «#477| #main_content/@_content/@inner/
> > > > > > > lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> > > > > > > @container/@dataview/calendar_event[2]»
>
> > > > > > > appointementId  2
> > > > > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > > > startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > > > endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > > > DO Update Changes  2
> > > > > > > Do save and update item  2
> > > > > > > updateAppointmentTimeOnly  2
>
> > > > > > > how you can se the update is thrown but the appointment not be
> > > > > > > modified, anyone have a clue where is launch the method uodate
> > > > > > > changes?
>
> > > > > > > or maybe a newest version of OM correct th

Re: No mail for No update

2010-02-05 Thread Sebastian Wagner
hi,

I think the only way to fix that issue is really to check why:

if (this.startDate.getTime() == this.startDate2.getTime() &&
this.endDate.getTime() == this.endDate2.getTime())

is not true when actually there is no change, or where this minute is
comming from that you reported to be too much.

Sebastian

2010/2/5 Bicho4191 

> Hi sebastian
>
> i wanna just a little comment result i found the line:
>
> lz.Timer.resetTimer( this.startDragDel , 150 );
>
> and i think maybe if move the time do a litle click over the event not
> be invoked the start drag and that was work
> i try to make the startdate and startdate2 was equals but i cant
> accomplish and that all the problem was resolved for me :S
>
> grettins
>
> On 5 feb, 11:11, Bicho4191  wrote:
> > Hi again sebastian i was checking the eventselector.lzx file and i
> > found when the domouseup method and i think found the problem
> >
> > first i see the comparation between startdate and startdate2 always
> > thrown false and  go to the debug to see the value of this variables
> > and debug.inspect throws this
> >
> > lzx> Debug.inspect(Wed Feb 3 09:00:00 GMT-0600 2010)
> > «Date#314»
> > «Date#314| Wed Feb 3 09:00:00 GMT-0600 2010»
> > lzx> Debug.inspect(Wed Feb 3 09:01:00 GMT-0600 2010)
> > «Date#350»
> > «Date#350| Wed Feb 3 09:01:00 GMT-0600 2010»
> >
> > yes the date is diferent  by a minute!! i dont know why
> >
> > well i going to try to resolve in the client side
> > (eventselector.lzx)
> > thx sebastian
> >
> > On 5 feb, 09:44, Sebastian Wagner  wrote:
> >
> >
> >
> > > okay the function you are searching for is called:
> > > public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
> > > Date appointmentstart, Date appointmentend, String baseurl,
> > > Long language_id)
> > > in Calendar Service.
> > > And you're right I think it is invoked too early, it should only
> trigger if
> > > there was really a change in the meeting time. The function is invoked
> > > whenever the user drag-n-drop a meeting in the calendar to another time
> or
> > > date.
> >
> > >http://code.google.com/p/openmeetings/issues/detail?id=1124
> >
> > > Sebastian
> >
> > > 2010/2/5 Bicho4191 
> >
> > > > hi
> >
> > > > the question is that I not click the save button, simply click on the
> > > > event I do not even show the info_panel
> >
> > > > greetings
> > > > i will try to identify the responsible class and make the changes on
> > > > the server side,
> >
> > > > i thinkl the solution maybe be on the client side when the start drag
> > > > method is throw beyond that i lost
> >
> > > > and thx sebastian
> >
> > > > On 5 feb, 05:54, Sebastian Wagner  wrote:
> > > > > hm,
> >
> > > > > okay but what I wondering is:
> > > > > Why do you hit the save button when you actually did not change
> anything?
> >
> > > > > Anyway we can make something server-side to check if the meeting is
> 100%
> > > > the
> > > > > same and do send only update-mails in case if not.
> >
> > > > > Sebastian
> >
> > > > > 2010/2/5 Bicho4191 
> >
> > > > > > hi everyone i have a ltle problem with OM2797
> >
> > > > > > every time i do clic over the event on the calendar a mail about
> the
> > > > > > appointment is send
> >
> > > > > > this is the log about the moment of the action
> >
> > > > > > appointementId  2
> > > > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > > Usuario:  «Object#550| {activateha...
> > > > > > startDrag  false 1265331006112
> > > > > > Remove Drag State
> >
> > > > > > WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update
> Cal
> > > > > > Event  «#477| #main_content/@_content/@inner/
> > > > > > lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> > > > > > @container/@dataview/calendar_event[2]»
> >
> > > > > > appointementId  2
> > > > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > > startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > > endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > > DO Update Changes  2
> > > > > > Do save and update item  2
> > > > > > updateAppointmentTimeOnly  2
> >
> > > > > > how you can se the update is thrown but the appointment not be
> > > > > > modified, anyone have a clue where is launch the method uodate
> > > > > > changes?
> >
> > > > > > or maybe a newest version of OM correct the issue
> >
> > > > > > thanks for your help
> >
> > > > > > --
> > > > > > You received this message because you are subscribed to the
> Google
> > > > Groups
> > > > > > "OpenMeetings User" group.
> > > > > > To post to this group, send email to
> > > > openmeetings-u...@googlegroups.com.
> > > > > > To unsubscribe from this group, send email to
> > > > > > openmeetings-user+unsubscr...@googlegroups.com i...@googlegroups.com> > > > i...@googlegroups.com>
> > > > > > .
> > > > > > For mo

Re: No mail for No update

2010-02-05 Thread Bicho4191
Hi sebastian

i wanna just a little comment result i found the line:

 lz.Timer.resetTimer( this.startDragDel , 150 );

and i think maybe if move the time do a litle click over the event not
be invoked the start drag and that was work
i try to make the startdate and startdate2 was equals but i cant
accomplish and that all the problem was resolved for me :S

grettins

On 5 feb, 11:11, Bicho4191  wrote:
> Hi again sebastian i was checking the eventselector.lzx file and i
> found when the domouseup method and i think found the problem
>
> first i see the comparation between startdate and startdate2 always
> thrown false and  go to the debug to see the value of this variables
> and debug.inspect throws this
>
> lzx> Debug.inspect(Wed Feb 3 09:00:00 GMT-0600 2010)
> «Date#314»
> «Date#314| Wed Feb 3 09:00:00 GMT-0600 2010»
> lzx> Debug.inspect(Wed Feb 3 09:01:00 GMT-0600 2010)
> «Date#350»
> «Date#350| Wed Feb 3 09:01:00 GMT-0600 2010»
>
> yes the date is diferent  by a minute!! i dont know why
>
> well i going to try to resolve in the client side
> (eventselector.lzx)
> thx sebastian
>
> On 5 feb, 09:44, Sebastian Wagner  wrote:
>
>
>
> > okay the function you are searching for is called:
> > public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
> >             Date appointmentstart, Date appointmentend, String baseurl,
> >             Long language_id)
> > in Calendar Service.
> > And you're right I think it is invoked too early, it should only trigger if
> > there was really a change in the meeting time. The function is invoked
> > whenever the user drag-n-drop a meeting in the calendar to another time or
> > date.
>
> >http://code.google.com/p/openmeetings/issues/detail?id=1124
>
> > Sebastian
>
> > 2010/2/5 Bicho4191 
>
> > > hi
>
> > > the question is that I not click the save button, simply click on the
> > > event I do not even show the info_panel
>
> > > greetings
> > > i will try to identify the responsible class and make the changes on
> > > the server side,
>
> > > i thinkl the solution maybe be on the client side when the start drag
> > > method is throw beyond that i lost
>
> > > and thx sebastian
>
> > > On 5 feb, 05:54, Sebastian Wagner  wrote:
> > > > hm,
>
> > > > okay but what I wondering is:
> > > > Why do you hit the save button when you actually did not change 
> > > > anything?
>
> > > > Anyway we can make something server-side to check if the meeting is 100%
> > > the
> > > > same and do send only update-mails in case if not.
>
> > > > Sebastian
>
> > > > 2010/2/5 Bicho4191 
>
> > > > > hi everyone i have a ltle problem with OM2797
>
> > > > > every time i do clic over the event on the calendar a mail about the
> > > > > appointment is send
>
> > > > > this is the log about the moment of the action
>
> > > > > appointementId  2
> > > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > Usuario:  «Object#550| {activateha...
> > > > > startDrag  false 1265331006112
> > > > > Remove Drag State
>
> > > > > WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update Cal
> > > > > Event  «#477| #main_content/@_content/@inner/
> > > > > lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> > > > > @container/@dataview/calendar_event[2]»
>
> > > > > appointementId  2
> > > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > > endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > > DO Update Changes  2
> > > > > Do save and update item  2
> > > > > updateAppointmentTimeOnly  2
>
> > > > > how you can se the update is thrown but the appointment not be
> > > > > modified, anyone have a clue where is launch the method uodate
> > > > > changes?
>
> > > > > or maybe a newest version of OM correct the issue
>
> > > > > thanks for your help
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > > Groups
> > > > > "OpenMeetings User" group.
> > > > > To post to this group, send email to
> > > openmeetings-u...@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > > openmeetings-user+unsubscr...@googlegroups.com > > > >  i...@googlegroups.com> > > i...@googlegroups.com>
> > > > > .
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/openmeetings-user?hl=en.
>
> > > > --
> > > > Sebastian
> > > Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://
> > >www.laszlo-forum.de
> > > > seba.wag...@gmail.com
>
> > > --
> > > You received this message because you are subscribed to the Google Groups
> > > "OpenMeetings User" group.
> > > To post to this group, send email to openmeetings-u...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > openmeetings-user+unsubscr...@googlegroups.com > >  i.

Re: No mail for No update

2010-02-05 Thread Bicho4191
Hi again sebastian i was checking the eventselector.lzx file and i
found when the domouseup method and i think found the problem

first i see the comparation between startdate and startdate2 always
thrown false and  go to the debug to see the value of this variables
and debug.inspect throws this

lzx> Debug.inspect(Wed Feb 3 09:00:00 GMT-0600 2010)
«Date#314»
«Date#314| Wed Feb 3 09:00:00 GMT-0600 2010»
lzx> Debug.inspect(Wed Feb 3 09:01:00 GMT-0600 2010)
«Date#350»
«Date#350| Wed Feb 3 09:01:00 GMT-0600 2010»

yes the date is diferent  by a minute!! i dont know why

well i going to try to resolve in the client side
(eventselector.lzx)
thx sebastian

On 5 feb, 09:44, Sebastian Wagner  wrote:
> okay the function you are searching for is called:
> public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
>             Date appointmentstart, Date appointmentend, String baseurl,
>             Long language_id)
> in Calendar Service.
> And you're right I think it is invoked too early, it should only trigger if
> there was really a change in the meeting time. The function is invoked
> whenever the user drag-n-drop a meeting in the calendar to another time or
> date.
>
> http://code.google.com/p/openmeetings/issues/detail?id=1124
>
> Sebastian
>
> 2010/2/5 Bicho4191 
>
>
>
>
>
> > hi
>
> > the question is that I not click the save button, simply click on the
> > event I do not even show the info_panel
>
> > greetings
> > i will try to identify the responsible class and make the changes on
> > the server side,
>
> > i thinkl the solution maybe be on the client side when the start drag
> > method is throw beyond that i lost
>
> > and thx sebastian
>
> > On 5 feb, 05:54, Sebastian Wagner  wrote:
> > > hm,
>
> > > okay but what I wondering is:
> > > Why do you hit the save button when you actually did not change anything?
>
> > > Anyway we can make something server-side to check if the meeting is 100%
> > the
> > > same and do send only update-mails in case if not.
>
> > > Sebastian
>
> > > 2010/2/5 Bicho4191 
>
> > > > hi everyone i have a ltle problem with OM2797
>
> > > > every time i do clic over the event on the calendar a mail about the
> > > > appointment is send
>
> > > > this is the log about the moment of the action
>
> > > > appointementId  2
> > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > Usuario:  «Object#550| {activateha...
> > > > startDrag  false 1265331006112
> > > > Remove Drag State
>
> > > > WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update Cal
> > > > Event  «#477| #main_content/@_content/@inner/
> > > > lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> > > > @container/@dataview/calendar_event[2]»
>
> > > > appointementId  2
> > > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > > endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > > DO Update Changes  2
> > > > Do save and update item  2
> > > > updateAppointmentTimeOnly  2
>
> > > > how you can se the update is thrown but the appointment not be
> > > > modified, anyone have a clue where is launch the method uodate
> > > > changes?
>
> > > > or maybe a newest version of OM correct the issue
>
> > > > thanks for your help
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "OpenMeetings User" group.
> > > > To post to this group, send email to
> > openmeetings-u...@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > openmeetings-user+unsubscr...@googlegroups.com > > >  i...@googlegroups.com> > i...@googlegroups.com>
> > > > .
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/openmeetings-user?hl=en.
>
> > > --
> > > Sebastian
> > Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://
> >www.laszlo-forum.de
> > > seba.wag...@gmail.com
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "OpenMeetings User" group.
> > To post to this group, send email to openmeetings-u...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > openmeetings-user+unsubscr...@googlegroups.com > i...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/openmeetings-user?hl=en.
>
> --
> Sebastian 
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.laszlo-forum.de
> seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmee

Re: No mail for No update

2010-02-05 Thread Sebastian Wagner
okay the function you are searching for is called:
public Long updateAppointmentTimeOnly(String SID, Long appointmentId,
Date appointmentstart, Date appointmentend, String baseurl,
Long language_id)
in Calendar Service.
And you're right I think it is invoked too early, it should only trigger if
there was really a change in the meeting time. The function is invoked
whenever the user drag-n-drop a meeting in the calendar to another time or
date.

http://code.google.com/p/openmeetings/issues/detail?id=1124

Sebastian


2010/2/5 Bicho4191 

> hi
>
> the question is that I not click the save button, simply click on the
> event I do not even show the info_panel
>
> greetings
> i will try to identify the responsible class and make the changes on
> the server side,
>
> i thinkl the solution maybe be on the client side when the start drag
> method is throw beyond that i lost
>
> and thx sebastian
>
> On 5 feb, 05:54, Sebastian Wagner  wrote:
> > hm,
> >
> > okay but what I wondering is:
> > Why do you hit the save button when you actually did not change anything?
> >
> > Anyway we can make something server-side to check if the meeting is 100%
> the
> > same and do send only update-mails in case if not.
> >
> > Sebastian
> >
> > 2010/2/5 Bicho4191 
> >
> >
> >
> >
> >
> >
> >
> > > hi everyone i have a ltle problem with OM2797
> >
> > > every time i do clic over the event on the calendar a mail about the
> > > appointment is send
> >
> > > this is the log about the moment of the action
> >
> > > appointementId  2
> > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > Usuario:  «Object#550| {activateha...
> > > startDrag  false 1265331006112
> > > Remove Drag State
> >
> > > WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update Cal
> > > Event  «#477| #main_content/@_content/@inner/
> > > lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> > > @container/@dataview/calendar_event[2]»
> >
> > > appointementId  2
> > > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> > > endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> > > DO Update Changes  2
> > > Do save and update item  2
> > > updateAppointmentTimeOnly  2
> >
> > > how you can se the update is thrown but the appointment not be
> > > modified, anyone have a clue where is launch the method uodate
> > > changes?
> >
> > > or maybe a newest version of OM correct the issue
> >
> > > thanks for your help
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "OpenMeetings User" group.
> > > To post to this group, send email to
> openmeetings-u...@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > openmeetings-user+unsubscr...@googlegroups.com i...@googlegroups.com>
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/openmeetings-user?hl=en.
> >
> > --
> > Sebastian
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://
> www.laszlo-forum.de
> > seba.wag...@gmail.com
>
> --
> You received this message because you are subscribed to the Google Groups
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>
>


-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.laszlo-forum.de
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: No mail for No update

2010-02-05 Thread Bicho4191
hi

the question is that I not click the save button, simply click on the
event I do not even show the info_panel

greetings
i will try to identify the responsible class and make the changes on
the server side,

i thinkl the solution maybe be on the client side when the start drag
method is throw beyond that i lost

and thx sebastian

On 5 feb, 05:54, Sebastian Wagner  wrote:
> hm,
>
> okay but what I wondering is:
> Why do you hit the save button when you actually did not change anything?
>
> Anyway we can make something server-side to check if the meeting is 100% the
> same and do send only update-mails in case if not.
>
> Sebastian
>
> 2010/2/5 Bicho4191 
>
>
>
>
>
>
>
> > hi everyone i have a ltle problem with OM2797
>
> > every time i do clic over the event on the calendar a mail about the
> > appointment is send
>
> > this is the log about the moment of the action
>
> > appointementId  2
> > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > Usuario:  «Object#550| {activateha...
> > startDrag  false 1265331006112
> > Remove Drag State
>
> > WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update Cal
> > Event  «#477| #main_content/@_content/@inner/
> > lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> > @container/@dataview/calendar_event[2]»
>
> > appointementId  2
> > startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> > endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> > startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> > endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> > DO Update Changes  2
> > Do save and update item  2
> > updateAppointmentTimeOnly  2
>
> > how you can se the update is thrown but the appointment not be
> > modified, anyone have a clue where is launch the method uodate
> > changes?
>
> > or maybe a newest version of OM correct the issue
>
> > thanks for your help
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "OpenMeetings User" group.
> > To post to this group, send email to openmeetings-u...@googlegroups.com.
> > To unsubscribe from this group, send email to
> > openmeetings-user+unsubscr...@googlegroups.com > i...@googlegroups.com>
> > .
> > For more options, visit this group at
> >http://groups.google.com/group/openmeetings-user?hl=en.
>
> --
> Sebastian 
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.laszlo-forum.de
> seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Issues (??) at recorder and whiteboard

2010-02-05 Thread Victor Sartori
2010/2/5 Sebastian Wagner 

> hi,
>
> *Cannot run program "sox": java.io.IOException*
> should give you an idea what is wrong => SoX might be installed but *sox*
> cannot be executed.
>

Nice I'll do more tests if I can resolve this, I would post here.


>
> The latter about the documents + drawing is actually no Issue in that
> meaning. It would be just quite useful to refactor the Whiteboard to have
> drawings saved by page. But that will is not in the scope of the current
> release.
>

I have imagined this

Thanks Sebastian

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: OpenMeetings 1.1 Key Features Mini Demo Video

2010-02-05 Thread Deemac
Cool, thanks for the link.

I'll give that a go.

Thanks again

On Feb 5, 12:38 pm, Sebastian Wagner  wrote:
> hi,
>
> OpenMeetings 1.1 is not officially in the downloads yet as there is
> some documentation missing.
>
> But you can try a nightly:http://i4demo.com/openmeetings/builds/
>
> that will have all the functionality that is described in the Demo.
>
> Sebastian
>
> On Feb 5, 1:27 pm, Deemac  wrote:
>
>
>
> > Great little demo Sebastian, and of course an excellent piece of
> > software.
>
> > I've just installed the latest version 2688 and can't find the
> > recording section. I seem to remember seeing a post saying that it was
> > in beta and would be offered at some time later. Is this still the
> > case and have you a rough idea when this will be?
>
> > Many thanks
>
> > Deemac
>
> > On Feb 4, 5:45 pm, Sebastian Wagner  wrote:
>
> > > I just made a small Demo Video about the very basic key features of
> > > OpenMeetings
>
> > >http://opensourcewebconferencing.blogspot.com/2010/02/openmeetings-11...
>
> > > Hoping my accent is not too strong ^^
>
> > > Btw: The Video is made with the new Recording Feature of OpenMeetings :)
>
> > > Feedback is welcome
>
> > > --
> > > Sebastian 
> > > Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://...
> > > seba.wag...@gmail.com- Hide quoted text -
>
> - Show quoted text -

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Issues (??) at recorder and whiteboard

2010-02-05 Thread Sebastian Wagner
hi,

*Cannot run program "sox": java.io.IOException*
should give you an idea what is wrong => SoX might be installed but *sox*
cannot be executed.

The latter about the documents + drawing is actually no Issue in that
meaning. It would be just quite useful to refactor the Whiteboard to have
drawings saved by page. But that will is not in the scope of the current
release.

Sebastian

2010/2/5 Victor Sartori 

> Hi Folks!
>
> Today, I started to try the OM 1.1 rc 2873 to see the translation pack and
> test the new resources
> At my tests, I found two problems
>
> 1 - Recording
> I record my desktop share, but when I'll watch the recorded session, the
> error message appears:
>
>
> Log:05.02.2010 10:45:15
>> generateFFMPEG
>> process-generateFFMPEG
>> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
>> file or directory
>> command-[ffmpeg, -async, 1, -i,
>> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_1_05_02_2010_07_44_28.flv,
>> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_1_05_02_2010_07_44_28_WAVE.wav]
>> exitValue--1
>>
>>
>> Log:05.02.2010 10:45:15
>> generateFFMPEG
>> process-mergeWave
>> error-Cannot run program "sox": java.io.IOException: error=2, No such file
>> or directory
>> command-[sox,
>> /opt/red5/webapps/openmeetings/streams/hibernate/one_second.wav,
>> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_043137d0e915207660fbf55021278e8a_05_02_2010_07_44_29_FINAL_WAVE.wav,
>> pad, 0, 46.0]
>> exitValue--1
>>
>>
>> Log:05.02.2010 10:45:15
>> generateFFMPEG
>> process-generateFullFLV
>> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
>> file or directory
>> command-[ffmpeg, -i,
>> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_043137d0e915207660fbf55021278e8a_05_02_2010_07_44_29.flv,
>> -i,
>> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_043137d0e915207660fbf55021278e8a_05_02_2010_07_44_29_FINAL_WAVE.wav,
>> -ar, 22050, -acodec, libmp3lame, -ab, 32k, -s, 640x400, -vcodec, flashsv,
>> -map, 0.0, -map, 1.0,
>> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.flv]
>> exitValue--1
>>
>>
>> Log:05.02.2010 10:45:15
>> generateFFMPEG
>> process-generateFullFLV
>> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
>> file or directory
>> command-[ffmpeg, -i,
>> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.flv,
>> -vcodec, mjpeg, -vframes, 1, -an, -f, rawvideo, -s, 640x400,
>> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.jpg]
>> exitValue--1
>>
>>
>> Log:05.02.2010 10:45:15
>> generateFFMPEG
>> process-alternateDownload
>> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
>> file or directory
>> command-[ffmpeg, -i,
>> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.flv,
>> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.avi]
>> exitValue--1
>>
>
> I have the ffmpeg and sox installed at my Debian 5. I can run the
> command ffmeg and sox using the user nobody (this user is used to run the
> red5). Anybody have one idea?
>
> Other issue (I think), is at whiteboard, when any thing is loaded, and the
> any resource is used (like pen, circle...) and a slide is changed to next,
> this things still appear in the next slide  It is a issue?
>
> Regards
>
> Victor Sartori
>
>  --
> You received this message because you are subscribed to the Google Groups
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>



-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.laszlo-forum.de
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Issues (??) at recorder and whiteboard

2010-02-05 Thread Victor Sartori
Hi Folks!

Today, I started to try the OM 1.1 rc 2873 to see the translation pack and
test the new resources
At my tests, I found two problems

1 - Recording
I record my desktop share, but when I'll watch the recorded session, the
error message appears:


Log:05.02.2010 10:45:15
> generateFFMPEG
> process-generateFFMPEG
> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
> file or directory
> command-[ffmpeg, -async, 1, -i,
> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_1_05_02_2010_07_44_28.flv,
> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_1_05_02_2010_07_44_28_WAVE.wav]
> exitValue--1
>
>
> Log:05.02.2010 10:45:15
> generateFFMPEG
> process-mergeWave
> error-Cannot run program "sox": java.io.IOException: error=2, No such file
> or directory
> command-[sox,
> /opt/red5/webapps/openmeetings/streams/hibernate/one_second.wav,
> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_043137d0e915207660fbf55021278e8a_05_02_2010_07_44_29_FINAL_WAVE.wav,
> pad, 0, 46.0]
> exitValue--1
>
>
> Log:05.02.2010 10:45:15
> generateFFMPEG
> process-generateFullFLV
> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
> file or directory
> command-[ffmpeg, -i,
> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_043137d0e915207660fbf55021278e8a_05_02_2010_07_44_29.flv,
> -i,
> /opt/red5/webapps/openmeetings/streams/1/rec_1_stream_043137d0e915207660fbf55021278e8a_05_02_2010_07_44_29_FINAL_WAVE.wav,
> -ar, 22050, -acodec, libmp3lame, -ab, 32k, -s, 640x400, -vcodec, flashsv,
> -map, 0.0, -map, 1.0,
> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.flv]
> exitValue--1
>
>
> Log:05.02.2010 10:45:15
> generateFFMPEG
> process-generateFullFLV
> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
> file or directory
> command-[ffmpeg, -i,
> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.flv,
> -vcodec, mjpeg, -vframes, 1, -an, -f, rawvideo, -s, 640x400,
> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.jpg]
> exitValue--1
>
>
> Log:05.02.2010 10:45:15
> generateFFMPEG
> process-alternateDownload
> error-Cannot run program "ffmpeg": java.io.IOException: error=2, No such
> file or directory
> command-[ffmpeg, -i,
> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.flv,
> /opt/red5/webapps/openmeetings/streams/hibernate/flvRecording_1.avi]
> exitValue--1
>

I have the ffmpeg and sox installed at my Debian 5. I can run the
command ffmeg and sox using the user nobody (this user is used to run the
red5). Anybody have one idea?

Other issue (I think), is at whiteboard, when any thing is loaded, and the
any resource is used (like pen, circle...) and a slide is changed to next,
this things still appear in the next slide  It is a issue?

Regards

Victor Sartori

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: OpenMeetings 1.1 Key Features Mini Demo Video

2010-02-05 Thread Sebastian Wagner
hi,

OpenMeetings 1.1 is not officially in the downloads yet as there is
some documentation missing.

But you can try a nightly:
http://i4demo.com/openmeetings/builds/

that will have all the functionality that is described in the Demo.


Sebastian

On Feb 5, 1:27 pm, Deemac  wrote:
> Great little demo Sebastian, and of course an excellent piece of
> software.
>
> I've just installed the latest version 2688 and can't find the
> recording section. I seem to remember seeing a post saying that it was
> in beta and would be offered at some time later. Is this still the
> case and have you a rough idea when this will be?
>
> Many thanks
>
> Deemac
>
> On Feb 4, 5:45 pm, Sebastian Wagner  wrote:
>
> > I just made a small Demo Video about the very basic key features of
> > OpenMeetings
>
> >http://opensourcewebconferencing.blogspot.com/2010/02/openmeetings-11...
>
> > Hoping my accent is not too strong ^^
>
> > Btw: The Video is made with the new Recording Feature of OpenMeetings :)
>
> > Feedback is welcome
>
> > --
> > Sebastian 
> > Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://...
> > seba.wag...@gmail.com
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: OpenMeetings 1.1 Key Features Mini Demo Video

2010-02-05 Thread Deemac
Great little demo Sebastian, and of course an excellent piece of
software.

I've just installed the latest version 2688 and can't find the
recording section. I seem to remember seeing a post saying that it was
in beta and would be offered at some time later. Is this still the
case and have you a rough idea when this will be?

Many thanks

Deemac

On Feb 4, 5:45 pm, Sebastian Wagner  wrote:
> I just made a small Demo Video about the very basic key features of
> OpenMeetings
>
> http://opensourcewebconferencing.blogspot.com/2010/02/openmeetings-11...
>
> Hoping my accent is not too strong ^^
>
> Btw: The Video is made with the new Recording Feature of OpenMeetings :)
>
> Feedback is welcome
>
> --
> Sebastian 
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.laszlo-forum.de
> seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: No mail for No update

2010-02-05 Thread Sebastian Wagner
hm,

okay but what I wondering is:
Why do you hit the save button when you actually did not change anything?

Anyway we can make something server-side to check if the meeting is 100% the
same and do send only update-mails in case if not.


Sebastian

2010/2/5 Bicho4191 

>
> hi everyone i have a ltle problem with OM2797
>
> every time i do clic over the event on the calendar a mail about the
> appointment is send
>
> this is the log about the moment of the action
>
> appointementId  2
> startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> Usuario:  «Object#550| {activateha...
> startDrag  false 1265331006112
> Remove Drag State
>
> WARNING @modules/lzcalendar/day.lzx#101: ON MOUSE UP => Update Cal
> Event  «#477| #main_content/@_content/@inner/
> lzCalendar/@lzCalendarContent/@calgrid/@cell4/@details/@bgrect/
> @container/@dataview/calendar_event[2]»
>
> appointementId  2
> startDate  «Date#548| Wed Feb 3 09:00:00 GMT-0600 2010»
> endDate  «Date#549| Wed Feb 3 20:00:00 GMT-0600 2010»
> startDate2  «Date#583| Wed Feb 3 09:00:00 GMT-0600 2010»
> endDate2  «Date#584| Wed Feb 3 20:00:00 GMT-0600 2010»
> DO Update Changes  2
> Do save and update item  2
> updateAppointmentTimeOnly  2
>
> how you can se the update is thrown but the appointment not be
> modified, anyone have a clue where is launch the method uodate
> changes?
>
> or maybe a newest version of OM correct the issue
>
> thanks for your help
>
> --
> You received this message because you are subscribed to the Google Groups
> "OpenMeetings User" group.
> To post to this group, send email to openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>
>


-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.laszlo-forum.de
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: About the quality of audio in OM r2688

2010-02-05 Thread The Anh
Thanks Mr Sebastian Wagner, I tested with some kinds of microphone and
I realized the best kinds are the headphone using in Contact Center
department. I've tested with FreeMate Headphone and the quality is
quite good!
Regards,

On Feb 4, 9:31 pm, Sebastian Wagner  wrote:
> ah oder ist das system weit die einstellung? Ich hab es nicht wirklich
> begriffen ob dieser OpenMeetings account nun für einen einzelnen user oder
> für das komplette sytem gilt.
>
> gruß
>
> 2010/2/4 Sebastian Wagner 
>
>
>
> > hi,
>
> > the quality strongly depends on what kind of Microphone/Headset you're
> > using.
> > The Echo Cancellation is basically a Client Problem, not a OpenMeetings
> > Issue.
> > A recommended headset for example would be for OSx or Windows:
> >  Logitech ClearChat PC Wireless, for example from 
> > Amazonor
> >  EBay
> > Auctions
>
> > Sebastian
>
> > 2010/2/4 The Anh 
>
> > Hi there,
> >> OM is quite good in some faces but I had a problem with its quality of
> >> audio. There is a loop (or the echo is too strong). After saying, I
> >> still hear these voices by myself. I tried to reduce the echo by
> >> decrease the volume. But the result is not as I expected.
> >> So, could anyone tell me how to increase the quality of audio in OM?
> >> PS: I'm using OM ver1.0 r2688
>
> >> Thanks,
>
> >> --
> >> You received this message because you are subscribed to the Google Groups
> >> "OpenMeetings User" group.
> >> To post to this group, send email to openmeetings-u...@googlegroups.com.
> >> To unsubscribe from this group, send email to
> >> openmeetings-user+unsubscr...@googlegroups.com
> >> .
> >> For more options, visit this group at
> >>http://groups.google.com/group/openmeetings-user?hl=en.
>
> > --
> > Sebastian Wagner
> >http://www.webbase-design.de
> >http://openmeetings.googlecode.com
> >http://www.laszlo-forum.de
> > seba.wag...@gmail.com
>
> --
> Sebastian 
> Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.laszlo-forum.de
> seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.