Growing and curated ejabberd contributions repository - PR or ask to join !
Go to file
Holger Weiss d47310d239 Update erl(1) command line in build.bat files
The code path has changed due to the move from SVN to Git.
2014-05-28 22:16:55 +02:00
atom_pubsub Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
bfile Add ebin/ dirs with .keepme file to ensure Git tracks them 2013-04-15 12:18:19 +02:00
dns/src Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
ejabberd-dev Use Lager when compiling mod_rest, and include minimum in this repository (fixes #13) 2014-03-03 16:55:44 +01:00
ejabberdPrefs Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
ircd Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
jorge Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
mod_admin_extra Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_archive Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_cron Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_ctlextra Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_irc Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_log_chat Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_logsession Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_logxml Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_message_log Add mod_message_log module 2014-05-27 00:57:06 +02:00
mod_muc_admin Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_muc_log_http Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_multicast Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_openid Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_profile Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_register_web Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_rest Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_s2s_log Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_shcommands Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_statsdx Update erl(1) command line in build.bat files 2014-05-28 22:16:55 +02:00
mod_webpresence Refactor mod_webpresence to work with binary plus icons 2014-04-09 12:11:25 +02:00
openfire-export/OpenfireExporter Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
.gitignore Ignore .beam files 2014-03-14 11:47:54 -05:00
README.txt Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00
extract-mod-translations.sh Initial import from ejabberd-modules SVN 2013-04-15 12:03:14 +02:00

README.txt

ejabberd-modules is a collaborative development area for ejabberd
modules developers and users.


    For users
    =========

You need to have Erlang installed.

To use an ejabberd module coming from this repository:

- Read the module specific README to see if special steps are needed
  to deploy it.

- Run "./build.sh" or "build.bat" in the root (usually trunk
  directory) of the wanted module.

- Copy generated .beam files from the ebin directory to the directory
  where your ejabberd .beam files are.

- Use the configuration file examples provided in the conf dir to
  update your ejabberd.cfg configuration file.

If during compilation of a module you get an error like:
  {"init terminating in do_boot",{undef,[{make,all,[]},...
it means Erlang couldn't find its file make.beam
In Debian and other distributions you can try to install packages like:
  erlang-dev erlang-nox erlang-tools


    For developers
    ==============

The following organisation has been set-up for the development:

- Each module has its own SVN structure (trunk/branches/tags) to allow
  independent versioning.

- Development and compilation of module should be possible without
  ejabberd SVN, as long as developers check-out the ejabberd-dev
  module. This module contains include file to make compilation
  possible.

- The module directory structure is usually the following:
 README.txt: Module description
 LICENSE.txt: License for the module
 Emakefile: Erlang makefile to build the module (preferred way, if no
   dependencies on C code, as build will thus works on Windows)
 doc/: Documentation dir
 src/: Source directory
 src/msgs/: Directory with translation files (pot, po and msg).
 ebin/: empty (Target directory for the build).
 conf/: Directory containing example configuration for your module.
 build.sh: *nix build script.
 build.bat: Windows build script.

- Module developers should put in the README if the module has
  requirements or known incompatibilities with other modules (for
  example, by modifying the same main ejabberd modules).