README
changeset 56 f0e3c123d506
parent 11 18de00544c46
equal deleted inserted replaced
55:e01cbf23a88b 56:f0e3c123d506
     1 
     1 docs/readme.mdwn
     2 This is a module for mcabber to send service discovery requests.
       
     3 
       
     4 It provides mcabber command 'disco'. To use this module just
       
     5 load it - then command will be available.
       
     6 
       
     7 With this you can discover abilities of various jabber entities,
       
     8 like servers, transports etc. Note, that it can only provide
       
     9 information, what to do with this information (eg register to
       
    10 entity, that supports it) is not this module's task. Note also,
       
    11 that if you want to get abilities of some buddy, you should send
       
    12 disco request to specific resource of that buddy (because of this
       
    13 this command supports extended notation ./resource), if you'll
       
    14 send request to bare jid, you'll get reply from server, that
       
    15 serves that jid.
       
    16 
       
    17 INSTALLATION
       
    18 
       
    19 To install it, you need:
       
    20 gcc
       
    21 make
       
    22 cmake
       
    23 glib
       
    24 loudmouth
       
    25 mcabber headers
       
    26 
       
    27 Then do
       
    28 $ mkdir build
       
    29 $ cd build
       
    30 $ cmake ..
       
    31 $ make edit_cache
       
    32 $ make
       
    33 # make install
       
    34 
       
    35 Debian users can instead of make install do
       
    36 $ fakeroot make package
       
    37 # dpkg -i ...-*.deb
       
    38 
       
    39 Users of other distributions can select appropriate package
       
    40 generator, using cache editor.
       
    41 
       
    42 LICENSE
       
    43 
       
    44 This code underlies terms of GNU GPL v2 or later. You can find it in file COPYING
       
    45 from this distribution or on a GNU web-site <http://www.gnu.org/licenses/>.
       
    46 
       
    47 CONTACTS
       
    48 
       
    49 I will be happy to get feedback, patches, suggestions, etc.
       
    50 You can send me email or contact via jabber <isbear@unixzone.org.ua>.
       
    51 
       
    52   -- Myhailo Danylenko <isbear@ukrpost.net>
       
    53 
       
    54