Changeset 418

Show
Ignore:
Timestamp:
05/19/03 14:23:29 (6 years ago)
Author:
jajcus
Message:

- cosmetics

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/NEWS

    r417 r418  
    99Changes from 2.0.3: 
    1010 
    11 * All GG users use a "GG" resource 
     11* All GG users use a "GG" resource. 
    1212 
    1313* Search and registration form should now be fully compatible with JAJC's 
    14   JEP-004 implementation 
    15  
    16 * Support for Jabber presence type "invisible" added 
    17  
    18 * Statistics gathering fixed, so multiple stats may be read at once 
     14  JEP-004 implementation. 
     15 
     16* Support for Jabber presence type "invisible" added. 
     17 
     18* Statistics gathering fixed, so multiple stats may be read at once. 
    1919 
    2020Version 2.0.3 
     
    2525Changes from 2.0.2: 
    2626 
    27 * Browsing support updated to the active JEP-11 version 
     27* Browsing support updated to the active JEP-11 version. 
    2828 
    2929* More proxy configuration settings added: username, password and 
    30   http_only flag 
     30  http_only flag. 
    3131 
    3232Version 2.0.2 
  • trunk/src/presence.c

    r416 r418  
    1 /* $Id: presence.c,v 1.41 2003/05/19 11:48:35 jajcus Exp $ */ 
     1/* $Id: presence.c,v 1.42 2003/05/19 12:23:29 jajcus Exp $ */ 
    22 
    33/* 
     
    173173        } 
    174174        xmlnode_put_attrib(pres,"to",to); 
    175          
     175 
    176176        if (available==-1) xmlnode_put_attrib(pres,"type","invisible"); 
    177177        else if (!available) xmlnode_put_attrib(pres,"type","unavailable"); 
  • trunk/src/register.c

    r405 r418  
    1 /* $Id: register.c,v 1.43 2003/05/09 10:02:55 jajcus Exp $ */ 
     1/* $Id: register.c,v 1.44 2003/05/19 12:23:29 jajcus Exp $ */ 
    22 
    33/* 
     
    5959        if (default_user_locale && default_user_locale[0]) tmp=default_user_locale; 
    6060        else tmp="_default_"; 
    61          
     61 
    6262        field=form_add_field(form,"list-single","locale",_("Language"),tmp,0); 
    6363        form_add_option(field,_("-default-"),"_default_"); 
     
    133133        } 
    134134        if (locale && !strcmp(locale,"_default_")) locale=""; 
    135          
     135 
    136136        field=xmlnode_get_tag(form,"field?var=invisible"); 
    137137        if (field!=NULL){ 
  • trunk/src/sessions.c

    r416 r418  
    1 /* $Id: sessions.c,v 1.76 2003/05/19 11:48:35 jajcus Exp $ */ 
     1/* $Id: sessions.c,v 1.77 2003/05/19 12:23:29 jajcus Exp $ */ 
    22 
    33/* 
     
    131131        proxy_username=config_load_string("proxy/username"); 
    132132        proxy_password=config_load_string("proxy/password"); 
    133          
     133 
    134134        tag=xmlnode_get_tag(config,"proxy"); 
    135135        proxy_http_only=xmlnode_get_attrib(tag,"http_only"); 
     
    586586 
    587587        if (status==s->gg_status){ 
    588                 if (r->status!=NULL && s->gg_status_descr!=NULL  
     588                if (r->status!=NULL && s->gg_status_descr!=NULL 
    589589                                && !strcmp(r->status,s->gg_status_descr)) return 0; 
    590590                if (r->status==NULL && s->gg_status_descr==NULL) return 0;