Re: No scrool bar in 8.2 rc2?

2009-04-28 Thread Alexei Fedotov

Well, please start with explaining which bar are you talking about.
Taking you literally, here [1] goes a scroll bar example in the OpenLaszlo.

[1] 
http://forum.openlaszlo.org/showthread.php?s=threadid=2299highlight=scrollbar

2009/4/27 brunorossete brunoross...@gmail.com:

 Well, but how i can insert the bar in version 0.8 rc2?

 On 27 abr, 13:29, Alexei Fedotov alexei.fedo...@gmail.com wrote:
 You can compare the scroll bar behavior using our test servers:

 212.45.28.27 RC 0.8 (with Rodion's patches)
 212.45.28.28 RC 0.7

 On Thu, Apr 23, 2009 at 11:47 PM, brunorossete brunoross...@gmail.com 
 wrote:

  I have a question:
  There is no scroll bar in this version? existed in previous versions
  but did not find that.

   Thanks

 --
 With best regards / с наилучшими пожеланиями,
 Alexei Fedotov / Алексей 
 Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://harmony.apache.org/http://code.google.com/p/openmeetings/
 




-- 
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://www.telecom-express.ru/
http://people.apache.org/~aaf/
http://harmony.apache.org/
http://code.google.com/p/openmeetings/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread smoeker

hola,

u need to change the java part : LdapLoginManagement contains mappings
between User fields OM and Ldap Fields :

public static final String LDAP_KEY_LASTNAME = sn;
public static final String LDAP_KEY_FIRSTNAME = givenName;
public static final String LDAP_KEY_MAIL = mail;
public static final String LDAP_KEY_STREET = streetAddress;
public static final String LDAP_KEY_ADDITIONAL_NAME = description;
public static final String LDAP_KEY_FAX =
facsimileTelephoneNumber;
public static final String LDAP_KEY_ZIP = postalCode;
public static final String LDAP_KEY_COUNTRY = co;
public static final String LDAP_KEY_TOWN = l;
public static final String LDAP_KEY_PHONE = telephoneNumber;


see ya

Smoeker

On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:
 Hi,

 I use openmeetings 0.7RC1 and LDAP.
 When a new user is created thanks to LDAP connection, there are somes
 informations about the user inside his profile, for example his
 description (Ivan Bolzer - Workplacement in network) for example.

 This is good, in fact I would this information displays on the textbox
 comment and not in additionalname. I'm not sure, I found
 userSettings.lzx and registerNewUser.lzx but I don't know if it's here
 because I would applicate this modification just for LDAP connection
 (if it's possible)...

 Thanks

 Bidab
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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 scrool bar in 8.2 rc2?

2009-04-28 Thread brunorossete

is the scrool bar at the right side, that exist in 0.5 but not in 0.8

i see the topic in forum, but he wrote:

view name=scrollView


/view

what goes between views in the place of ... ?

and where I input this?

On 28 abr, 03:03, Alexei Fedotov alexei.fedo...@gmail.com wrote:
 Well, please start with explaining which bar are you talking about.
 Taking you literally, here [1] goes a scroll bar example in the OpenLaszlo.

 [1]http://forum.openlaszlo.org/showthread.php?s=threadid=2299highlight...

 2009/4/27 brunorossete brunoross...@gmail.com:





  Well, but how i can insert the bar in version 0.8 rc2?

  On 27 abr, 13:29, Alexei Fedotov alexei.fedo...@gmail.com wrote:
  You can compare the scroll bar behavior using our test servers:

  212.45.28.27 RC 0.8 (with Rodion's patches)
  212.45.28.28 RC 0.7

  On Thu, Apr 23, 2009 at 11:47 PM, brunorossete brunoross...@gmail.com 
  wrote:

   I have a question:
   There is no scroll bar in this version? existed in previous versions
   but did not find that.

    Thanks

  --
  With best regards / с наилучшими пожеланиями,
  Alexei Fedotov / Алексей 
  Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://ha...

 --
 With best regards / с наилучшими пожеланиями,
 Alexei Fedotov / Алексей 
 Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://harmony.apache.org/http://code.google.com/p/openmeetings/
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread bidab

Hi Smoeker

I try to change some java part but without success...

This is what I made :

change -- public static final String LDAP_KEY_ADDITIONAL_NAME =
description;
to -- public static final String LDAP_KEY_COMMENT = description;

and here :

change --
String additionalname = additionalname;
if(userdata.containsKey(LDAP_KEY_ADDITIONAL_NAME)  userdata.get
(LDAP_KEY_ADDITIONAL_NAME) != null)
comment = userdata.get(LDAP_KEY_ADDITIONAL_NAME);

to --
String comment = comment;
if(userdata.containsKey(LDAP_KEY_COMMENT)  userdata.get
(LDAP_KEY_COMMENT) != null)
comment = userdata.get(LDAP_KEY_COMMENT);

and finally here :
try{
newUserId= 
Usermanagement.getInstance().registerUserInit(
2,//user_level
1,//level_id
1,//available
1,// status
login,// loginname
passwd,//passwd
lastname,
firstname,
email,
new java.util.Date(),
street,
comment, //additionnalname before

But it doesn't function, the description is always write in
additionnal name and not in comment...

Thanks
Bidab

On Apr 28, 8:40 am, smoeker o.beche...@medint.de wrote:
 hola,

 u need to change the java part : LdapLoginManagement contains mappings
 between User fields OM and Ldap Fields :

 public static final String LDAP_KEY_LASTNAME = sn;
         public static final String LDAP_KEY_FIRSTNAME = givenName;
         public static final String LDAP_KEY_MAIL = mail;
         public static final String LDAP_KEY_STREET = streetAddress;
         public static final String LDAP_KEY_ADDITIONAL_NAME = description;
         public static final String LDAP_KEY_FAX =
 facsimileTelephoneNumber;
         public static final String LDAP_KEY_ZIP = postalCode;
         public static final String LDAP_KEY_COUNTRY = co;
         public static final String LDAP_KEY_TOWN = l;
         public static final String LDAP_KEY_PHONE = telephoneNumber;

 see ya

 Smoeker

 On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:

  Hi,

  I use openmeetings 0.7RC1 and LDAP.
  When a new user is created thanks to LDAP connection, there are somes
  informations about the user inside his profile, for example his
  description (Ivan Bolzer - Workplacement in network) for example.

  This is good, in fact I would this information displays on the textbox
  comment and not in additionalname. I'm not sure, I found
  userSettings.lzx and registerNewUser.lzx but I don't know if it's here
  because I would applicate this modification just for LDAP connection
  (if it's possible)...

  Thanks

  Bidab
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread smoeker

hola,

u need to do it vice versa - the static keys represent the Fields
within OM user table, the values (i.e. description) are expected
within LDAP - Result


see ya

Smoeker

On 28 Apr., 13:21, bidab ivan.bol...@gmail.com wrote:
 Hi Smoeker

 I try to change some java part but without success...

 This is what I made :

 change -- public static final String LDAP_KEY_ADDITIONAL_NAME =
 description;
 to -- public static final String LDAP_KEY_COMMENT = description;

 and here :

 change --
 String additionalname = additionalname;
 if(userdata.containsKey(LDAP_KEY_ADDITIONAL_NAME)  userdata.get
 (LDAP_KEY_ADDITIONAL_NAME) != null)
 comment = userdata.get(LDAP_KEY_ADDITIONAL_NAME);

 to --
 String comment = comment;
 if(userdata.containsKey(LDAP_KEY_COMMENT)  userdata.get
 (LDAP_KEY_COMMENT) != null)
 comment = userdata.get(LDAP_KEY_COMMENT);

 and finally here :
 try{
                         newUserId= 
 Usermanagement.getInstance().registerUserInit(
                                 2,//user_level
                                 1,//level_id
                                 1,//available
                                 1,// status
                                 login,// loginname
                                 passwd,//passwd
                                 lastname,
                                 firstname,
                                 email,
                                 new java.util.Date(),
                                 street,
                                 comment, //additionnalname before

 But it doesn't function, the description is always write in
 additionnal name and not in comment...

 Thanks
 Bidab

 On Apr 28, 8:40 am, smoeker o.beche...@medint.de wrote:



  hola,

  u need to change the java part : LdapLoginManagement contains mappings
  between User fields OM and Ldap Fields :

  public static final String LDAP_KEY_LASTNAME = sn;
          public static final String LDAP_KEY_FIRSTNAME = givenName;
          public static final String LDAP_KEY_MAIL = mail;
          public static final String LDAP_KEY_STREET = streetAddress;
          public static final String LDAP_KEY_ADDITIONAL_NAME = description;
          public static final String LDAP_KEY_FAX =
  facsimileTelephoneNumber;
          public static final String LDAP_KEY_ZIP = postalCode;
          public static final String LDAP_KEY_COUNTRY = co;
          public static final String LDAP_KEY_TOWN = l;
          public static final String LDAP_KEY_PHONE = telephoneNumber;

  see ya

  Smoeker

  On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:

   Hi,

   I use openmeetings 0.7RC1 and LDAP.
   When a new user is created thanks to LDAP connection, there are somes
   informations about the user inside his profile, for example his
   description (Ivan Bolzer - Workplacement in network) for example.

   This is good, in fact I would this information displays on the textbox
   comment and not in additionalname. I'm not sure, I found
   userSettings.lzx and registerNewUser.lzx but I don't know if it's here
   because I would applicate this modification just for LDAP connection
   (if it's possible)...

   Thanks

   Bidab- Zitierten Text ausblenden -

 - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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
-~--~~~~--~~--~--~---



Online Dating and friend finder

2009-04-28 Thread shamili

Online Dating and friend finder

http://friendfinder.com/go/g1100916

http://friendfinder.com/go/g1100916
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: Doubt - revome a window in openlaszo

2009-04-28 Thread brunorossete

anyone?

On 27 abr, 08:29, brunorossete brunoross...@gmail.com wrote:
 Good morning, my question is:
   I would like to remove 2 windows, which appear when meeting (one
 that shows the users in the room and another that shows what they are
 talking with one who is outside can still participate in the chat).

   I installed the openlaszlo but I do not know which part refers to
 these two windows, can anyone help me?

   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-user@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: Doubt - revome a window in openlaszo

2009-04-28 Thread smoeker

howdy,

do u mean the chat window within a conference room or the chat window
within the room's overview?


see ya

Smoeker

On 28 Apr., 16:35, brunorossete brunoross...@gmail.com wrote:
 anyone?

 On 27 abr, 08:29, brunorossete brunoross...@gmail.com wrote:



  Good morning, my question is:
    I would like to remove 2 windows, which appear when meeting (one
  that shows the users in the room and another that shows what they are
  talking with one who is outside can still participate in the chat).

    I installed the openlaszlo but I do not know which part refers to
  these two windows, can anyone help me?

    Thanks- Zitierten Text ausblenden -

 - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread bidab

Hi,

Hum sorry, what do you mean by u need to do it vice versa ?

I understand that static keys represents OM Fields and description
is the value returned in OpenMeetings.
So I known that if I just change everywhere the static keys, the value
description will be write where I want...but apparently not.

I forget something ?

Thanks,

Bidab

On Apr 28, 1:57 pm, smoeker o.beche...@medint.de wrote:
 hola,

 u need to do it vice versa - the static keys represent the Fields
 within OM user table, the values (i.e. description) are expected
 within LDAP - Result

 see ya

 Smoeker

 On 28 Apr., 13:21, bidab ivan.bol...@gmail.com wrote:

  Hi Smoeker

  I try to change some java part but without success...

  This is what I made :

  change -- public static final String LDAP_KEY_ADDITIONAL_NAME =
  description;
  to -- public static final String LDAP_KEY_COMMENT = description;

  and here :

  change --
  String additionalname = additionalname;
  if(userdata.containsKey(LDAP_KEY_ADDITIONAL_NAME)  userdata.get
  (LDAP_KEY_ADDITIONAL_NAME) != null)
  comment = userdata.get(LDAP_KEY_ADDITIONAL_NAME);

  to --
  String comment = comment;
  if(userdata.containsKey(LDAP_KEY_COMMENT)  userdata.get
  (LDAP_KEY_COMMENT) != null)
  comment = userdata.get(LDAP_KEY_COMMENT);

  and finally here :
  try{
                          newUserId= 
  Usermanagement.getInstance().registerUserInit(
                                  2,//user_level
                                  1,//level_id
                                  1,//available
                                  1,// status
                                  login,// loginname
                                  passwd,//passwd
                                  lastname,
                                  firstname,
                                  email,
                                  new java.util.Date(),
                                  street,
                                  comment, //additionnalname before

  But it doesn't function, the description is always write in
  additionnal name and not in comment...

  Thanks
  Bidab

  On Apr 28, 8:40 am, smoeker o.beche...@medint.de wrote:

   hola,

   u need to change the java part : LdapLoginManagement contains mappings
   between User fields OM and Ldap Fields :

   public static final String LDAP_KEY_LASTNAME = sn;
           public static final String LDAP_KEY_FIRSTNAME = givenName;
           public static final String LDAP_KEY_MAIL = mail;
           public static final String LDAP_KEY_STREET = streetAddress;
           public static final String LDAP_KEY_ADDITIONAL_NAME = 
   description;
           public static final String LDAP_KEY_FAX =
   facsimileTelephoneNumber;
           public static final String LDAP_KEY_ZIP = postalCode;
           public static final String LDAP_KEY_COUNTRY = co;
           public static final String LDAP_KEY_TOWN = l;
           public static final String LDAP_KEY_PHONE = telephoneNumber;

   see ya

   Smoeker

   On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:

Hi,

I use openmeetings 0.7RC1 and LDAP.
When a new user is created thanks to LDAP connection, there are somes
informations about the user inside his profile, for example his
description (Ivan Bolzer - Workplacement in network) for example.

This is good, in fact I would this information displays on the textbox
comment and not in additionalname. I'm not sure, I found
userSettings.lzx and registerNewUser.lzx but I don't know if it's here
because I would applicate this modification just for LDAP connection
(if it's possible)...

Thanks

Bidab- Zitierten Text ausblenden -

  - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread bidab

or maybe the static keys LDAP_KEY_COMMENT does'nt exist ?

Thanks

On Apr 28, 4:49 pm, bidab ivan.bol...@gmail.com wrote:
 Hi,

 Hum sorry, what do you mean by u need to do it vice versa ?

 I understand that static keys represents OM Fields and description
 is the value returned in OpenMeetings.
 So I known that if I just change everywhere the static keys, the value
 description will be write where I want...but apparently not.

 I forget something ?

 Thanks,

 Bidab

 On Apr 28, 1:57 pm, smoeker o.beche...@medint.de wrote:

  hola,

  u need to do it vice versa - the static keys represent the Fields
  within OM user table, the values (i.e. description) are expected
  within LDAP - Result

  see ya

  Smoeker

  On 28 Apr., 13:21, bidab ivan.bol...@gmail.com wrote:

   Hi Smoeker

   I try to change some java part but without success...

   This is what I made :

   change -- public static final String LDAP_KEY_ADDITIONAL_NAME =
   description;
   to -- public static final String LDAP_KEY_COMMENT = description;

   and here :

   change --
   String additionalname = additionalname;
   if(userdata.containsKey(LDAP_KEY_ADDITIONAL_NAME)  userdata.get
   (LDAP_KEY_ADDITIONAL_NAME) != null)
   comment = userdata.get(LDAP_KEY_ADDITIONAL_NAME);

   to --
   String comment = comment;
   if(userdata.containsKey(LDAP_KEY_COMMENT)  userdata.get
   (LDAP_KEY_COMMENT) != null)
   comment = userdata.get(LDAP_KEY_COMMENT);

   and finally here :
   try{
                           newUserId= 
   Usermanagement.getInstance().registerUserInit(
                                   2,//user_level
                                   1,//level_id
                                   1,//available
                                   1,// status
                                   login,// loginname
                                   passwd,//passwd
                                   lastname,
                                   firstname,
                                   email,
                                   new java.util.Date(),
                                   street,
                                   comment, //additionnalname before

   But it doesn't function, the description is always write in
   additionnal name and not in comment...

   Thanks
   Bidab

   On Apr 28, 8:40 am, smoeker o.beche...@medint.de wrote:

hola,

u need to change the java part : LdapLoginManagement contains mappings
between User fields OM and Ldap Fields :

public static final String LDAP_KEY_LASTNAME = sn;
        public static final String LDAP_KEY_FIRSTNAME = givenName;
        public static final String LDAP_KEY_MAIL = mail;
        public static final String LDAP_KEY_STREET = streetAddress;
        public static final String LDAP_KEY_ADDITIONAL_NAME = 
description;
        public static final String LDAP_KEY_FAX =
facsimileTelephoneNumber;
        public static final String LDAP_KEY_ZIP = postalCode;
        public static final String LDAP_KEY_COUNTRY = co;
        public static final String LDAP_KEY_TOWN = l;
        public static final String LDAP_KEY_PHONE = telephoneNumber;

see ya

Smoeker

On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:

 Hi,

 I use openmeetings 0.7RC1 and LDAP.
 When a new user is created thanks to LDAP connection, there are somes
 informations about the user inside his profile, for example his
 description (Ivan Bolzer - Workplacement in network) for example.

 This is good, in fact I would this information displays on the textbox
 comment and not in additionalname. I'm not sure, I found
 userSettings.lzx and registerNewUser.lzx but I don't know if it's here
 because I would applicate this modification just for LDAP connection
 (if it's possible)...

 Thanks

 Bidab- Zitierten Text ausblenden -

   - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread smoeker

howdy,

principally i think its easier to change a variables content than
changing the whole variable in this case


- the function registerUserInit doesnt handle users.comment as
parameter.
- u would have to change this function receiving one more parameter
and passing it to saveAddress
- u just changed the variable name, but u r passing the description
still as additional name...


see ya

Smoeker

On 28 Apr., 16:50, bidab ivan.bol...@gmail.com wrote:
 or maybe the static keys LDAP_KEY_COMMENT does'nt exist ?

 Thanks

 On Apr 28, 4:49 pm, bidab ivan.bol...@gmail.com wrote:



  Hi,

  Hum sorry, what do you mean by u need to do it vice versa ?

  I understand that static keys represents OM Fields and description
  is the value returned in OpenMeetings.
  So I known that if I just change everywhere the static keys, the value
  description will be write where I want...but apparently not.

  I forget something ?

  Thanks,

  Bidab

  On Apr 28, 1:57 pm, smoeker o.beche...@medint.de wrote:

   hola,

   u need to do it vice versa - the static keys represent the Fields
   within OM user table, the values (i.e. description) are expected
   within LDAP - Result

   see ya

   Smoeker

   On 28 Apr., 13:21, bidab ivan.bol...@gmail.com wrote:

Hi Smoeker

I try to change some java part but without success...

This is what I made :

change -- public static final String LDAP_KEY_ADDITIONAL_NAME =
description;
to -- public static final String LDAP_KEY_COMMENT = description;

and here :

change --
String additionalname = additionalname;
if(userdata.containsKey(LDAP_KEY_ADDITIONAL_NAME)  userdata.get
(LDAP_KEY_ADDITIONAL_NAME) != null)
comment = userdata.get(LDAP_KEY_ADDITIONAL_NAME);

to --
String comment = comment;
if(userdata.containsKey(LDAP_KEY_COMMENT)  userdata.get
(LDAP_KEY_COMMENT) != null)
comment = userdata.get(LDAP_KEY_COMMENT);

and finally here :
try{
                        newUserId= 
Usermanagement.getInstance().registerUserInit(
                                2,//user_level
                                1,//level_id
                                1,//available
                                1,// status
                                login,// loginname
                                passwd,//passwd
                                lastname,
                                firstname,
                                email,
                                new java.util.Date(),
                                street,
                                comment, //additionnalname before

But it doesn't function, the description is always write in
additionnal name and not in comment...

Thanks
Bidab

On Apr 28, 8:40 am, smoeker o.beche...@medint.de wrote:

 hola,

 u need to change the java part : LdapLoginManagement contains mappings
 between User fields OM and Ldap Fields :

 public static final String LDAP_KEY_LASTNAME = sn;
         public static final String LDAP_KEY_FIRSTNAME = givenName;
         public static final String LDAP_KEY_MAIL = mail;
         public static final String LDAP_KEY_STREET = streetAddress;
         public static final String LDAP_KEY_ADDITIONAL_NAME = 
 description;
         public static final String LDAP_KEY_FAX =
 facsimileTelephoneNumber;
         public static final String LDAP_KEY_ZIP = postalCode;
         public static final String LDAP_KEY_COUNTRY = co;
         public static final String LDAP_KEY_TOWN = l;
         public static final String LDAP_KEY_PHONE = telephoneNumber;

 see ya

 Smoeker

 On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:

  Hi,

  I use openmeetings 0.7RC1 and LDAP.
  When a new user is created thanks to LDAP connection, there are 
  somes
  informations about the user inside his profile, for example his
  description (Ivan Bolzer - Workplacement in network) for example.

  This is good, in fact I would this information displays on the 
  textbox
  comment and not in additionalname. I'm not sure, I found
  userSettings.lzx and registerNewUser.lzx but I don't know if it's 
  here
  because I would applicate this modification just for LDAP connection
  (if it's possible)...

  Thanks

  Bidab- Zitierten Text ausblenden -

- Zitierten Text anzeigen -- Zitierten Text ausblenden -

 - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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: How modify information provided by LDAP Connection

2009-04-28 Thread bidab

Hi,

principally i think its easier to change a variables content than
changing the whole variable in this case

It's not the variable content I want to change but where it is
written.
I want to keep description but just display it on textfield
comment...

Thanks,

Bidab

On Apr 28, 5:01 pm, smoeker o.beche...@medint.de wrote:
 howdy,

 principally i think its easier to change a variables content than
 changing the whole variable in this case

 - the function registerUserInit doesnt handle users.comment as
 parameter.
 - u would have to change this function receiving one more parameter
 and passing it to saveAddress
 - u just changed the variable name, but u r passing the description
 still as additional name...

 see ya

 Smoeker

 On 28 Apr., 16:50, bidab ivan.bol...@gmail.com wrote:

  or maybe the static keys LDAP_KEY_COMMENT does'nt exist ?

  Thanks

  On Apr 28, 4:49 pm, bidab ivan.bol...@gmail.com wrote:

   Hi,

   Hum sorry, what do you mean by u need to do it vice versa ?

   I understand that static keys represents OM Fields and description
   is the value returned in OpenMeetings.
   So I known that if I just change everywhere the static keys, the value
   description will be write where I want...but apparently not.

   I forget something ?

   Thanks,

   Bidab

   On Apr 28, 1:57 pm, smoeker o.beche...@medint.de wrote:

hola,

u need to do it vice versa - the static keys represent the Fields
within OM user table, the values (i.e. description) are expected
within LDAP - Result

see ya

Smoeker

On 28 Apr., 13:21, bidab ivan.bol...@gmail.com wrote:

 Hi Smoeker

 I try to change some java part but without success...

 This is what I made :

 change -- public static final String LDAP_KEY_ADDITIONAL_NAME =
 description;
 to -- public static final String LDAP_KEY_COMMENT = description;

 and here :

 change --
 String additionalname = additionalname;
 if(userdata.containsKey(LDAP_KEY_ADDITIONAL_NAME)  userdata.get
 (LDAP_KEY_ADDITIONAL_NAME) != null)
 comment = userdata.get(LDAP_KEY_ADDITIONAL_NAME);

 to --
 String comment = comment;
 if(userdata.containsKey(LDAP_KEY_COMMENT)  userdata.get
 (LDAP_KEY_COMMENT) != null)
 comment = userdata.get(LDAP_KEY_COMMENT);

 and finally here :
 try{
                         newUserId= 
 Usermanagement.getInstance().registerUserInit(
                                 2,//user_level
                                 1,//level_id
                                 1,//available
                                 1,// status
                                 login,// loginname
                                 passwd,//passwd
                                 lastname,
                                 firstname,
                                 email,
                                 new java.util.Date(),
                                 street,
                                 comment, //additionnalname before

 But it doesn't function, the description is always write in
 additionnal name and not in comment...

 Thanks
 Bidab

 On Apr 28, 8:40 am, smoeker o.beche...@medint.de wrote:

  hola,

  u need to change the java part : LdapLoginManagement contains 
  mappings
  between User fields OM and Ldap Fields :

  public static final String LDAP_KEY_LASTNAME = sn;
          public static final String LDAP_KEY_FIRSTNAME = givenName;
          public static final String LDAP_KEY_MAIL = mail;
          public static final String LDAP_KEY_STREET = 
  streetAddress;
          public static final String LDAP_KEY_ADDITIONAL_NAME = 
  description;
          public static final String LDAP_KEY_FAX =
  facsimileTelephoneNumber;
          public static final String LDAP_KEY_ZIP = postalCode;
          public static final String LDAP_KEY_COUNTRY = co;
          public static final String LDAP_KEY_TOWN = l;
          public static final String LDAP_KEY_PHONE = 
  telephoneNumber;

  see ya

  Smoeker

  On 27 Apr., 16:43, bidab ivan.bol...@gmail.com wrote:

   Hi,

   I use openmeetings 0.7RC1 and LDAP.
   When a new user is created thanks to LDAP connection, there are 
   somes
   informations about the user inside his profile, for example his
   description (Ivan Bolzer - Workplacement in network) for 
   example.

   This is good, in fact I would this information displays on the 
   textbox
   comment and not in additionalname. I'm not sure, I found
   userSettings.lzx and registerNewUser.lzx but I don't know if it's 
   here
   because I would applicate this modification just for LDAP 
   connection
   (if it's possible)...

   Thanks

   Bidab- Zitierten Text ausblenden -

 - Zitierten Text anzeigen -- Zitierten Text ausblenden -

  

Re: Doubt - revome a window in openlaszo

2009-04-28 Thread brunorossete

The windows that shows only the chat of a conference room, for who is
out the room know?

that window:
http://img.photobucket.com/albums/v357/Brunoeu/window.jpg

BTW, those 2 windows.

 And, where is the tool bar that always exists in another version but
not in 0.8 rc2?

 Thanks man

On 28 abr, 11:40, smoeker o.beche...@medint.de wrote:
 howdy,

 do u mean the chat window within a conference room or the chat window
 within the room's overview?

 see ya

 Smoeker

 On 28 Apr., 16:35, brunorossete brunoross...@gmail.com wrote:

  anyone?

  On 27 abr, 08:29, brunorossete brunoross...@gmail.com wrote:

   Good morning, my question is:
     I would like to remove 2 windows, which appear when meeting (one
   that shows the users in the room and another that shows what they are
   talking with one who is outside can still participate in the chat).

     I installed the openlaszlo but I do not know which part refers to
   these two windows, can anyone help me?

     Thanks- Zitierten Text ausblenden -

  - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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 scrool bar in 8.2 rc2?

2009-04-28 Thread brunorossete

the tool bar tha dont exist in right site ( = ? )
http://img.photobucket.com/albums/v357/Brunoeu/window.jpg

On 28 abr, 08:10, brunorossete brunoross...@gmail.com wrote:
 is the scrool bar at the right side, that exist in 0.5 but not in 0.8

 i see the topic in forum, but he wrote:
 
 view name=scrollView
 
 
 /view

 what goes between views in the place of ... ?

 and where I input this?

 On 28 abr, 03:03, Alexei Fedotov alexei.fedo...@gmail.com wrote:

  Well, please start with explaining which bar are you talking about.
  Taking you literally, here [1] goes a scroll bar example in the OpenLaszlo.

  [1]http://forum.openlaszlo.org/showthread.php?s=threadid=2299highlight...

  2009/4/27 brunorossete brunoross...@gmail.com:

   Well, but how i can insert the bar in version 0.8 rc2?

   On 27 abr, 13:29, Alexei Fedotov alexei.fedo...@gmail.com wrote:
   You can compare the scroll bar behavior using our test servers:

   212.45.28.27 RC 0.8 (with Rodion's patches)
   212.45.28.28 RC 0.7

   On Thu, Apr 23, 2009 at 11:47 PM, brunorossete brunoross...@gmail.com 
   wrote:

I have a question:
There is no scroll bar in this version? existed in previous versions
but did not find that.

 Thanks

   --
   With best regards / с наилучшими пожеланиями,
   Alexei Fedotov / Алексей 
   Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://ha...

  --
  With best regards / с наилучшими пожеланиями,
  Alexei Fedotov / Алексей 
  Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://ha...
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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 scrool bar in 8.2 rc2?

2009-04-28 Thread Alexei Fedotov

Hello,

1. Thanks for a good and explanatory image. Keep posting better
explanations of your problems, and it would be easier for us to
answer.

If you are talking about fitting openmeetings into different
resolutions, we have that item on todo list from Evgeny. Well, the
task might be a bit more like changing design than just adding a
scrollbar because people with smaller screens have to prioritize
things they can see.

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

2. You have asked about ... between view and /view tags. If I
understand the example properly, this tag content should remain as is.
Adding the attribute would add a scrollbar to the window described by
the content.



2009/4/28 brunorossete brunoross...@gmail.com:

 the tool bar tha dont exist in right site ( = ? )
 http://img.photobucket.com/albums/v357/Brunoeu/window.jpg

 On 28 abr, 08:10, brunorossete brunoross...@gmail.com wrote:
 is the scrool bar at the right side, that exist in 0.5 but not in 0.8

 i see the topic in forum, but he wrote:
 
 view name=scrollView
 
 
 /view

 what goes between views in the place of ... ?

 and where I input this?

 On 28 abr, 03:03, Alexei Fedotov alexei.fedo...@gmail.com wrote:

  Well, please start with explaining which bar are you talking about.
  Taking you literally, here [1] goes a scroll bar example in the OpenLaszlo.

  [1]http://forum.openlaszlo.org/showthread.php?s=threadid=2299highlight...

  2009/4/27 brunorossete brunoross...@gmail.com:

   Well, but how i can insert the bar in version 0.8 rc2?

   On 27 abr, 13:29, Alexei Fedotov alexei.fedo...@gmail.com wrote:
   You can compare the scroll bar behavior using our test servers:

   212.45.28.27 RC 0.8 (with Rodion's patches)
   212.45.28.28 RC 0.7

   On Thu, Apr 23, 2009 at 11:47 PM, brunorossete brunoross...@gmail.com 
   wrote:

I have a question:
There is no scroll bar in this version? existed in previous versions
but did not find that.

 Thanks

   --
   With best regards / с наилучшими пожеланиями,
   Alexei Fedotov / Алексей 
   Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://ha...

  --
  With best regards / с наилучшими пожеланиями,
  Alexei Fedotov / Алексей 
  Федотов,http://www.telecom-express.ru/http://people.apache.org/~aaf/http://ha...
 




-- 
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://www.telecom-express.ru/
http://people.apache.org/~aaf/
http://harmony.apache.org/
http://code.google.com/p/openmeetings/

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@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
-~--~~~~--~~--~--~---