weechat-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Weechat-cvs] [SCM] Fast, light and extensible chat client branch, maste


From: Sebastien Helleu
Subject: [Weechat-cvs] [SCM] Fast, light and extensible chat client branch, master, updated. v0.3.6-85-g013f8cc
Date: Tue, 06 Dec 2011 22:06:29 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Fast, light and extensible chat client".

The branch, master has been updated
       via  013f8cc7570a283e4c265d2a03920ff60f681885 (commit)
       via  00a3f990b3e512a7dc14343dd522a3a8497c4762 (commit)
      from  23c70b013bef27399911f14dae918afc702a3937 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 013f8cc7570a283e4c265d2a03920ff60f681885
Author: Sebastien Helleu <address@hidden>
Date:   Tue Dec 6 23:06:23 2011 +0100

    relay: add WeeChat protocol (for remote GUI), doc about protocol, new 
options
    
    The protocol is partial, under development, and NOT ready for usage.
    
    New options added in relay.conf:
    - relay.network.allowed_ips: allow only some IPs on relay plugin (by default
      all IPs are allowed)
    - relay.network.compression_level: compression level used in WeeChat 
protocol
      (compression is made using zlib)

commit 00a3f990b3e512a7dc14343dd522a3a8497c4762
Author: Sebastien Helleu <address@hidden>
Date:   Tue Dec 6 22:57:21 2011 +0100

    api: add new function nicklist_get_next_item

-----------------------------------------------------------------------

Summary of changes:
 CMakeLists.txt                                     |    1 +
 ChangeLog                                          |    6 +-
 cmake/FindPackageHandleStandardArgs.cmake          |  260 ++++++
 cmake/FindZLIB.cmake                               |   77 ++
 configure.in                                       |   36 +
 debian/control                                     |    4 +-
 debian/weechat-doc.doc-base.relay-protocol-en      |   10 +
 doc/de/autogen/user/relay_options.txt              |   10 +
 doc/en/CMakeLists.txt                              |   11 +
 doc/en/Makefile.am                                 |    8 +-
 doc/en/autogen/user/relay_options.txt              |   10 +
 doc/en/weechat_dev.en.txt                          |  218 +++---
 doc/en/weechat_plugin_api.en.txt                   |   51 +
 doc/en/weechat_relay_protocol.en.txt               |  708 ++++++++++++++
 doc/fr/autogen/user/relay_options.txt              |   10 +
 doc/fr/weechat_plugin_api.fr.txt                   |   52 ++
 doc/it/autogen/user/relay_options.txt              |   10 +
 doc/it/weechat_plugin_api.it.txt                   |   54 ++
 po/POTFILES.in                                     |   12 +-
 po/cs.po                                           |   52 +-
 po/de.po                                           |   54 +-
 po/es.po                                           |   54 +-
 po/fr.po                                           |   66 ++-
 po/hu.po                                           |   50 +-
 po/it.po                                           |   54 +-
 po/pl.po                                           |   52 +-
 po/pt_BR.po                                        |   50 +-
 po/ru.po                                           |   50 +-
 po/srcfiles.cmake                                  |   12 +-
 po/weechat.pot                                     |   50 +-
 src/CMakeLists.txt                                 |    8 +
 src/plugins/plugin.c                               |    1 +
 src/plugins/relay/CMakeLists.txt                   |   14 +-
 src/plugins/relay/Makefile.am                      |   16 +-
 .../relay/{relay-client-irc.c => irc/relay-irc.c}  |  419 +++++-----
 .../relay/{relay-client-irc.h => irc/relay-irc.h}  |   30 +-
 src/plugins/relay/relay-buffer.c                   |   10 +-
 src/plugins/relay/relay-client-weechat.c           |  347 -------
 src/plugins/relay/relay-client-weechat.h           |   43 -
 src/plugins/relay/relay-client.c                   |   31 +-
 src/plugins/relay/relay-client.h                   |    7 +-
 src/plugins/relay/relay-command.c                  |    2 +-
 src/plugins/relay/relay-config.c                   |   58 ++
 src/plugins/relay/relay-config.h                   |    5 +
 src/plugins/relay/relay-raw.c                      |   44 +-
 src/plugins/relay/relay-raw.h                      |    7 +-
 src/plugins/relay/relay-server.c                   |   16 +
 src/plugins/relay/relay-upgrade.c                  |   12 +-
 src/plugins/relay/relay.c                          |    2 -
 src/plugins/relay/weechat/relay-weechat-msg.c      |  963 ++++++++++++++++++++
 src/plugins/relay/weechat/relay-weechat-msg.h      |   82 ++
 src/plugins/relay/weechat/relay-weechat-protocol.c |  429 +++++++++
 src/plugins/relay/weechat/relay-weechat-protocol.h |   63 ++
 src/plugins/relay/weechat/relay-weechat.c          |  217 +++++
 src/plugins/relay/weechat/relay-weechat.h          |   54 ++
 src/plugins/weechat-plugin.h                       |    7 +-
 56 files changed, 4057 insertions(+), 922 deletions(-)
 create mode 100644 cmake/FindPackageHandleStandardArgs.cmake
 create mode 100644 cmake/FindZLIB.cmake
 create mode 100644 debian/weechat-doc.doc-base.relay-protocol-en
 create mode 100644 doc/en/weechat_relay_protocol.en.txt
 rename src/plugins/relay/{relay-client-irc.c => irc/relay-irc.c} (68%)
 rename src/plugins/relay/{relay-client-irc.h => irc/relay-irc.h} (66%)
 delete mode 100644 src/plugins/relay/relay-client-weechat.c
 delete mode 100644 src/plugins/relay/relay-client-weechat.h
 create mode 100644 src/plugins/relay/weechat/relay-weechat-msg.c
 create mode 100644 src/plugins/relay/weechat/relay-weechat-msg.h
 create mode 100644 src/plugins/relay/weechat/relay-weechat-protocol.c
 create mode 100644 src/plugins/relay/weechat/relay-weechat-protocol.h
 create mode 100644 src/plugins/relay/weechat/relay-weechat.c
 create mode 100644 src/plugins/relay/weechat/relay-weechat.h


hooks/post-receive
-- 
Fast, light and extensible chat client



reply via email to

[Prev in Thread] Current Thread [Next in Thread]