Changeset 418
- Timestamp:
- 05/19/03 14:23:29 (6 years ago)
- Files:
-
- trunk/NEWS (modified) (2 diffs)
- trunk/src/presence.c (modified) (2 diffs)
- trunk/src/register.c (modified) (3 diffs)
- trunk/src/sessions.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/NEWS
r417 r418 9 9 Changes from 2.0.3: 10 10 11 * All GG users use a "GG" resource 11 * All GG users use a "GG" resource. 12 12 13 13 * 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. 19 19 20 20 Version 2.0.3 … … 25 25 Changes from 2.0.2: 26 26 27 * Browsing support updated to the active JEP-11 version 27 * Browsing support updated to the active JEP-11 version. 28 28 29 29 * More proxy configuration settings added: username, password and 30 http_only flag 30 http_only flag. 31 31 32 32 Version 2.0.2 trunk/src/presence.c
r416 r418 1 /* $Id: presence.c,v 1.4 1 2003/05/19 11:48:35jajcus Exp $ */1 /* $Id: presence.c,v 1.42 2003/05/19 12:23:29 jajcus Exp $ */ 2 2 3 3 /* … … 173 173 } 174 174 xmlnode_put_attrib(pres,"to",to); 175 175 176 176 if (available==-1) xmlnode_put_attrib(pres,"type","invisible"); 177 177 else if (!available) xmlnode_put_attrib(pres,"type","unavailable"); trunk/src/register.c
r405 r418 1 /* $Id: register.c,v 1.4 3 2003/05/09 10:02:55jajcus Exp $ */1 /* $Id: register.c,v 1.44 2003/05/19 12:23:29 jajcus Exp $ */ 2 2 3 3 /* … … 59 59 if (default_user_locale && default_user_locale[0]) tmp=default_user_locale; 60 60 else tmp="_default_"; 61 61 62 62 field=form_add_field(form,"list-single","locale",_("Language"),tmp,0); 63 63 form_add_option(field,_("-default-"),"_default_"); … … 133 133 } 134 134 if (locale && !strcmp(locale,"_default_")) locale=""; 135 135 136 136 field=xmlnode_get_tag(form,"field?var=invisible"); 137 137 if (field!=NULL){ trunk/src/sessions.c
r416 r418 1 /* $Id: sessions.c,v 1.7 6 2003/05/19 11:48:35jajcus Exp $ */1 /* $Id: sessions.c,v 1.77 2003/05/19 12:23:29 jajcus Exp $ */ 2 2 3 3 /* … … 131 131 proxy_username=config_load_string("proxy/username"); 132 132 proxy_password=config_load_string("proxy/password"); 133 133 134 134 tag=xmlnode_get_tag(config,"proxy"); 135 135 proxy_http_only=xmlnode_get_attrib(tag,"http_only"); … … 586 586 587 587 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 589 589 && !strcmp(r->status,s->gg_status_descr)) return 0; 590 590 if (r->status==NULL && s->gg_status_descr==NULL) return 0;
