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-7-g9b42328
Date: Wed, 26 Oct 2011 17:26:00 +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  9b42328d55db6ee97bc66ebb085dadf4d94c1df9 (commit)
       via  d95aef21346b04c1fc17d52b96d0dfaa0cf3d43c (commit)
       via  b3ac47bcf1bd096c1b9484bd8dbe19e6eaf015aa (commit)
      from  d6f4f6e74cf408ddd8a24435921e0a9dcb9c19cc (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 9b42328d55db6ee97bc66ebb085dadf4d94c1df9
Author: Sebastien Helleu <address@hidden>
Date:   Wed Oct 26 19:25:51 2011 +0200

    guile: new script plugin for scheme (task #7289)

commit d95aef21346b04c1fc17d52b96d0dfaa0cf3d43c
Author: Sebastien Helleu <address@hidden>
Date:   Wed Oct 26 18:51:16 2011 +0200

    script plugins: use new macros to reduce code length

commit b3ac47bcf1bd096c1b9484bd8dbe19e6eaf015aa
Author: Sebastien Helleu <address@hidden>
Date:   Wed Oct 26 18:23:54 2011 +0200

    core: remove extra colon in german translations

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

Summary of changes:
 CMakeLists.txt                                     |   47 +-
 ChangeLog                                          |    3 +-
 Makefile.am                                        |    1 +
 cmake/FindGuile.cmake                              |   51 +
 configure.in                                       |   42 +
 doc/de/autogen/plugin_api/completions.txt          |   12 +-
 doc/de/autogen/plugin_api/infolists.txt            |   12 +-
 .../user/{ruby_commands.txt => guile_commands.txt} |   12 +-
 doc/de/weechat_scripting.de.txt                    |   94 +-
 doc/de/weechat_user.de.txt                         |   65 +-
 doc/docgen.py                                      |   17 +-
 doc/en/autogen/plugin_api/completions.txt          |    2 +
 doc/en/autogen/plugin_api/infolists.txt            |    2 +
 .../user/{perl_commands.txt => guile_commands.txt} |   12 +-
 doc/en/weechat_scripting.en.txt                    |   91 +-
 doc/en/weechat_user.en.txt                         |   65 +-
 doc/fr/autogen/plugin_api/completions.txt          |    2 +
 doc/fr/autogen/plugin_api/infolists.txt            |    2 +
 .../user/{lua_commands.txt => guile_commands.txt}  |   12 +-
 doc/fr/weechat_scripting.fr.txt                    |   89 +-
 doc/fr/weechat_user.fr.txt                         |   63 +-
 doc/it/autogen/plugin_api/completions.txt          |    2 +
 doc/it/autogen/plugin_api/infolists.txt            |    2 +
 .../user/{lua_commands.txt => guile_commands.txt}  |   12 +-
 doc/it/weechat_scripting.it.txt                    |   94 +-
 doc/it/weechat_user.it.txt                         |   65 +-
 doc/pl/weechat_scripting.pl.txt                    |   93 +-
 po/POTFILES.in                                     |    4 +
 po/de.po                                           |    6 +-
 po/srcfiles.cmake                                  |    4 +
 src/plugins/CMakeLists.txt                         |    4 +-
 src/plugins/Makefile.am                            |    4 +
 src/plugins/scripts/CMakeLists.txt                 |    7 +
 src/plugins/scripts/Makefile.am                    |    6 +-
 .../scripts/{python => guile}/CMakeLists.txt       |   20 +-
 src/plugins/{demo => scripts/guile}/Makefile.am    |   15 +-
 src/plugins/scripts/guile/weechat-guile-api.c      | 5502 ++++++++++++++++++++
 .../scripts/guile/weechat-guile-api.h}             |   25 +-
 src/plugins/scripts/guile/weechat-guile.c          |  891 ++++
 src/plugins/scripts/guile/weechat-guile.h          |   47 +
 src/plugins/scripts/lua/weechat-lua-api.c          | 4354 ++++------------
 src/plugins/scripts/lua/weechat-lua.c              |   14 +-
 src/plugins/scripts/perl/weechat-perl-api.c        | 3416 +++----------
 src/plugins/scripts/perl/weechat-perl.c            |    8 +-
 src/plugins/scripts/python/weechat-python-api.c    | 3759 +++-----------
 src/plugins/scripts/python/weechat-python.c        |   12 +-
 src/plugins/scripts/ruby/weechat-ruby-api.c        | 3493 +++----------
 src/plugins/scripts/ruby/weechat-ruby.c            |   10 +-
 src/plugins/scripts/tcl/weechat-tcl-api.c          | 3658 +++----------
 src/plugins/scripts/tcl/weechat-tcl.c              |   14 +-
 50 files changed, 11505 insertions(+), 14732 deletions(-)
 create mode 100644 cmake/FindGuile.cmake
 copy doc/de/autogen/user/{ruby_commands.txt => guile_commands.txt} (79%)
 copy doc/en/autogen/user/{perl_commands.txt => guile_commands.txt} (76%)
 copy doc/fr/autogen/user/{lua_commands.txt => guile_commands.txt} (78%)
 copy doc/it/autogen/user/{lua_commands.txt => guile_commands.txt} (77%)
 copy src/plugins/scripts/{python => guile}/CMakeLists.txt (62%)
 copy src/plugins/{demo => scripts/guile}/Makefile.am (65%)
 create mode 100644 src/plugins/scripts/guile/weechat-guile-api.c
 copy src/{gui/gtk/gui-gtk-term.c => plugins/scripts/guile/weechat-guile-api.h} 
(60%)
 create mode 100644 src/plugins/scripts/guile/weechat-guile.c
 create mode 100644 src/plugins/scripts/guile/weechat-guile.h


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



reply via email to

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