Re: gsoc: another task

2013-05-31 Thread Andun Sameera
Hi, If I clarify my problem more, what wysiwyg do is converting Type Here to a text area which linked to the wysiwyg button panel. When a person type in the wysiwyg text area, I can see the editorArea div tag is updated with html content, which represent the typed text. What I want to do is get

Re: gsoc: another task

2013-05-31 Thread Andun Sameera
Hi Maxim, In the example which you have given they have used private TextFieldemailField; public UserEditPanel(String id, IModeluserModel) { super(id, userModel); emailField = new TextField("emailField", new Model("")); } to get the email as a string to the object

Re: [DISCUSS] OM user architectural changes

2013-05-31 Thread Maxim Solodovnik
Hello Sebastian, sorry for the late reply (been busy) I'm afraid UserContact entity should not be removed since currently it is used for implementing "in-system" messages My idea was: 1) add "type" to the user table 2) remove copied fields from MeetingMember, ChatMessage and later from Invitation

Re: gsoc: another task

2013-05-31 Thread Maxim Solodovnik
Yes! you are correct The this component will be added to the chat and Calendar appointment :) On Fri, May 31, 2013 at 6:45 PM, Andun Sameera wrote: > Hi Maxim, > > I think, I understood the point. I am creating a Wysiwyg component. It > should include the Editor area + Buttons Toolbar. Also the

Re: gsoc: another task

2013-05-31 Thread Andun Sameera
Hi Maxim, I think, I understood the point. I am creating a Wysiwyg component. It should include the Editor area + Buttons Toolbar. Also there should be a model with name like EditorText, which holds the textual content of editor. Using the EditorText object we can initialize the editor with a text

Re: Openmeetings plugins API

2013-05-31 Thread Artyom Horuzhenko
Yes, I have: http://code.google.com/p/jain-sip/ But the main reason of rewriting red5sip as a plugin is a code which located directly in Openmeetings. 2013/5/31 Alexei Fedotov > Oh, I see. Having most of red5sip functionality under APL would be > great achievement. You once mentioned you have f

Re: Openmeetings plugins API

2013-05-31 Thread Alexei Fedotov
Oh, I see. Having most of red5sip functionality under APL would be great achievement. You once mentioned you have found MIT-licensed SIP stack, haven't you? -- With best regards / с наилучшими пожеланиями, Alexei Fedotov / Алексей Федотов, http://dataved.ru/ +7 916 562 8095 On Fri, May 31, 2013 a

Re: Openmeetings plugins API

2013-05-31 Thread Artyom Horuzhenko
I also would be glad to rewrite red5sip as a plugin and remove all red5sip code from Openmeetings 2013/5/31 Alexei Fedotov > Ok, I see you've mentioned IP camera integration task. > -- > With best regards / с наилучшими пожеланиями, > Alexei Fedotov / Алексей Федотов, > http://dataved.ru/ > +7

Re: gsoc: another task

2013-05-31 Thread Maxim Solodovnik
The model is necessary, you will be unable to extract the value without it. I believe you code need to be improved :) On Fri, May 31, 2013 at 4:22 PM, Andun Sameera wrote: > Hi Maxim, > > I have use the the same strcture in the implementation. But I didnt use a > object validation model. Reason

Re: Openmeetings plugins API

2013-05-31 Thread Alexei Fedotov
Ok, I see you've mentioned IP camera integration task. -- With best regards / с наилучшими пожеланиями, Alexei Fedotov / Алексей Федотов, http://dataved.ru/ +7 916 562 8095 On Fri, May 31, 2013 at 3:26 PM, Alexei Fedotov wrote: > Artyom, > noone will argue with good and documented API, yet there

Re: Openmeetings plugins API

2013-05-31 Thread Alexei Fedotov
Artyom, noone will argue with good and documented API, yet there are many other directions ahead e.g. HTML5 challenge. Do you have any particular particular task in mind where these plug-ins would be immediately useful? -- With best regards / с наилучшими пожеланиями, Alexei Fedotov / Алексей Фе

Re: svn commit: r1488124 - in /openmeetings/branches/2.1: WebContent/openmeetings/openmeetings_functions.js WebContent/src/base/externalJavaScript.lzx WebContent/src/main.lzx WebContent/swf10/base/mai

2013-05-31 Thread Maxim Solodovnik
no reports are sent to FF without confirmation IMHO coockie is not enough here On Fri, May 31, 2013 at 5:48 PM, Alexei Fedotov wrote: > I wrote, > > >> Adding a cookie check and a single popup if the cookie is not set for > disabling error data sending would take 20 minutes anyway. Does this w

Re: svn commit: r1488124 - in /openmeetings/branches/2.1: WebContent/openmeetings/openmeetings_functions.js WebContent/src/base/externalJavaScript.lzx WebContent/src/main.lzx WebContent/swf10/base/mai

2013-05-31 Thread Alexei Fedotov
I wrote, >> Adding a cookie check and a single popup if the cookie is not set for >> disabling error data sending would take 20 minutes anyway. Does this work >> for you? There was no answer to this from you. I expected you at least to hint why you are unhappy with the patch. If this is a pr

Re: svn commit: r1488124 - in /openmeetings/branches/2.1: WebContent/openmeetings/openmeetings_functions.js WebContent/src/base/externalJavaScript.lzx WebContent/src/main.lzx WebContent/swf10/base/mai

2013-05-31 Thread Maxim Solodovnik
Hello Alexey, The patch was reverted after long discussion (still continued). I did ask to change it with no result. I'm going to announce 2.1.1 next Monday, so no time to wait any longer. Additionally please see my answer in the other thread. On Fri, May 31, 2013 at 3:57 PM, Alexei Fedotov wr

Re: -retrieve-red5-client target failing

2013-05-31 Thread Maxim Solodovnik
There is no log attached :( Maybe svn of googlecode is down? On Fri, May 31, 2013 at 4:28 PM, Alexey Ghenov wrote: > Hello, > > I try do "ant prepare-eclipse" command and getting "-retrieve-red5-client" > target failing. > > Looks like mine system configuration not changed. (all things working

-retrieve-red5-client target failing

2013-05-31 Thread Alexey Ghenov
Hello, I try do "ant prepare-eclipse" command and getting "-retrieve-red5-client" target failing. Looks like mine system configuration not changed. (all things working fine - before i deleted old workspace and tried to rebuild project) Can somebody advice, what dependencies have "-retrieve-red5-

Re: gsoc: another task

2013-05-31 Thread Andun Sameera
Hi Maxim, I have use the the same strcture in the implementation. But I didnt use a object validation model. Reason was I implemented the button panel only. That don't have a realted object model. Thoughts? Thanks! On May 31, 2013 10:08 AM, "Maxim Solodovnik" wrote: > What I would like to achie

Re: svn commit: r1488124 - in /openmeetings/branches/2.1: WebContent/openmeetings/openmeetings_functions.js WebContent/src/base/externalJavaScript.lzx WebContent/src/main.lzx WebContent/swf10/base/mai

2013-05-31 Thread Alexei Fedotov
We have discussed that a bit on the private list. Let me continue here. Most of problems of 2.1 release were intermittent. They include thread safety issues, sound quality issues, and incorrect resource clean up. Developers do not address them because there is no simple and known way to reproduce

Re: Latest stable build of 2.1.x tree

2013-05-31 Thread Maxim Solodovnik
Interview room seems to be fixed in both 2.1.1 and 3.0.0 Thanks! On Fri, May 31, 2013 at 1:06 PM, Maxim Solodovnik wrote: > OK, Interview room was broken after this changelist: > http://svn.apache.org/viewvc?view=revision&revision=r1293596 > Will try to fix it ... > > > On Thu, May 30, 2013 at 4