Changeset e5d8d21


Ignore:
Timestamp:
2009-11-25T00:45:27Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
487f555
Parents:
0ac1a375
Message:

Added in-memory help info, which I wanted to implement for ages already.
Sadly the way I'm using it now doesn't work yet since nogaim_init() is
called before help_init(). I'll fix that later. (Have to do that anyway
to at least make ForkDaemon mode work..)

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • help.c

    r0ac1a375 re5d8d21  
    22  * BitlBee -- An IRC to other IM-networks gateway                     *
    33  *                                                                    *
    4   * Copyright 2002-2005 Wilmer van der Gaast and others                *
     4  * Copyright 2002-2009 Wilmer van der Gaast and others                *
    55  \********************************************************************/
    66
     
    169169        return NULL;
    170170}
     171
     172int help_add_mem( help_t **help, const char *title, const char *content )
     173{
     174        help_t *h, *l = NULL;
     175       
     176        for( h = *help; h; h = h->next )
     177        {
     178                if( g_strcasecmp( h->title, title ) == 0 )
     179                        return 0;
     180               
     181                l = h;
     182        }
     183       
     184        if( l )
     185                h = l->next = g_new0( struct help, 1 );
     186        else
     187                *help = h = g_new0( struct help, 1 );
     188        h->fd = -1;
     189        h->title = g_strdup( title );
     190        h->length = strlen( content );
     191        h->offset.mem_offset = g_strdup( content );
     192       
     193        return 1;
     194}
  • help.h

    r0ac1a375 re5d8d21  
    4646void help_free( help_t **help );
    4747char *help_get( help_t **help, char *title );
     48int help_add_mem( help_t **help, const char *title, const char *content_ );
    4849
    4950#endif
  • protocols/purple/purple.c

    r0ac1a375 re5d8d21  
    2323
    2424#include "bitlbee.h"
     25#include "help.h"
    2526
    2627#include <stdarg.h>
     
    475476       
    476477        g_free( q );
     478       
     479        return pqad;
    477480}
    478481
     
    535538        struct prpl funcs;
    536539        GList *prots;
     540        GString *help;
    537541       
    538542        if( B_EV_IO_READ != PURPLE_INPUT_READ ||
     
    574578        funcs.handle_cmp = g_strcasecmp;
    575579       
     580        help = g_string_new("BitlBee libpurple module supports the following IM protocols:\n");
     581       
    576582        for( prots = purple_plugins_get_protocols(); prots; prots = prots->next )
    577583        {
     
    584590                        ret->name += 5;
    585591                register_protocol( ret );
     592               
     593                g_string_append_printf( help, "\n* %s (%s)", ret->name, prot->info->name );
    586594               
    587595                if( g_strcasecmp( prot->info->id, "prpl-aim" ) == 0 )
     
    593601                }
    594602        }
    595 }
     603       
     604        help_add_mem( &global.help, "purple", help->str );
     605        g_string_free( help, TRUE );
     606}
Note: See TracChangeset for help on using the changeset viewer.