Changeset 858

Show
Ignore:
Timestamp:
02/23/09 06:14:56 (9 months ago)
Author:
ykerherve
Message:

- Fixed a typo in the Service Discovery implementation (XEP 0030):

'hierarchy' and not 'heirarchy'

- POD Typos

Location:
trunk/DJabberd/lib/DJabberd
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/DJabberd/lib/DJabberd/Agent.pm

    r768 r858  
    9595=head2 handle_stanza($self, $vhost, $stanza) 
    9696 
    97 This method is the "entry point" of this class, and is called when a stanza is recieved 
     97This method is the "entry point" of this class, and is called when a stanza is received 
    9898which this agent expressed a desire to handle. The default implementation dispatches 
    9999to one of the higher-level C<handle_...> methods depending on the type of stanza that 
     
    143143If a true value is returned, the server will assume that your agent will handle the 
    144144stanza and will call C<handle_stanza>. If a false value is returned, the server will 
    145 continue to look for anothre appropriate delivery plugin to accept the stanza. 
     145continue to look for another appropriate delivery plugin to accept the stanza. 
    146146 
    147147=cut 
     
    226226Instead, subclasses should call this method to register a handler for a particular type of IQ 
    227227stanza. The default implementation of C<handle_iq> will then call the registered handlers 
    228 when an appropriate stanza is recieved. 
     228when an appropriate stanza is received. 
    229229 
    230230C<$signature> is a string containing the IQ signature using DJabberd's standard IQ signature 
  • trunk/DJabberd/lib/DJabberd/Component.pm

    r768 r858  
    8888component. (That is, jids of the form C<user@example.com>, rather than just C<example.com>.) 
    8989 
    90 When such a stanza is recieved, the C<get_node> method will be called to retrieve 
     90When such a stanza is received, the C<get_node> method will be called to retrieve 
    9191an object representing that node. 
    9292 
     
    174174     
    175175    return [ 
    176         [ 'heirarchy', 'branch', $self->name ], 
     176        [ 'hierarchy', 'branch', $self->name ], 
    177177    ]; 
    178178} 
  • trunk/DJabberd/lib/DJabberd/Component/External.pm

    r768 r858  
    88This component provides support for connecting external components that support the 
    99Jabber Component Protocol specified in JEP-0114. Specify the TCP port that the external component 
    10 will connect on and the secret it will use to authenticate. These should match the equivilent 
     10will connect on and the secret it will use to authenticate. These should match the equivalent 
    1111settings in the component's own configuration. 
    1212