Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update one more place where we had -include("xmpp.hrl") | Paweł Chmielowski | 2020-09-03 | 1 | -1/+1 |
| | |||||
* | For mod_vcard_* modules, redirect options to mod_vcard | Badlop | 2020-08-21 | 1 | -1/+9 |
| | |||||
* | Revert "Dirty workarounds to compile jiffy with Erlang/OTP 23 (#3282)" | Badlop | 2020-07-15 | 1 | -0/+0 |
| | | | | This reverts commit 2ca5712507473578fe00e4a1bce8e25a0d9f1bca. | ||||
* | Dirty workarounds to compile jiffy with Erlang/OTP 23 (#3282) | Badlop | 2020-06-01 | 1 | -0/+0 |
| | | | | | | | | | | | | | | | | | | Works for me with: ./configure --disable-pam ./rebar get-deps ./rebar configure-deps ./rebar compile make install changes in erlang-native-compiler used by jiffy: src/rebar_port_compiler.erl - {"ERL_LDFLAGS" , " -L$ERL_EI_LIBDIR -lerl_interface -lei"}, + {"ERL_LDFLAGS" , " -L$ERL_EI_LIBDIR -lei"}, src/rebar_utils.erl --dialyzer({no_missing_calls, escript_foldl/3}). | ||||
* | Hide false-positive warnings about mod_delegation Type atom and NS binary | Badlop | 2020-05-07 | 1 | -0/+4 |
| | |||||
* | Extract translatable strings also from the xmpp library | Badlop | 2020-05-04 | 2 | -5/+4 |
| | |||||
* | Don't extract for translation strings from man pages, at least for now | Badlop | 2020-04-17 | 1 | -0/+12 |
| | |||||
* | Fix previous commit | Badlop | 2020-04-17 | 1 | -1/+1 |
| | |||||
* | Log messages generated by msgmerge and display unexpected ones | Badlop | 2020-04-17 | 1 | -1/+4 |
| | |||||
* | Update copyright to 2020 (#3149) | Badlop | 2020-01-28 | 1 | -1/+1 |
| | |||||
* | Introduce 'vcard' option for the modules supporting vCards | Evgeny Khramtsov | 2019-08-02 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | The mapping between vCard's XML elements and YAML elements of 'vcard' option is straightforward. For example, if you want mod_muc to return the following vCard: ``` <vCard xmlns='vcard-temp'> <FN>Conferences</FN> <ADR> <WORK/> <STREET>Elm Street</STREET> </ADR> </vCard> ``` you need to set the configuration as: ``` modules: ... mod_muc: vcard: fn: Conferences adr: - work: true street: Elm Street ... ``` | ||||
* | Improve hooks validator and fix bugs related to hooks registration | Evgeny Khramtsov | 2019-07-29 | 1 | -194/+236 |
| | |||||
* | Fix UTF-8 support in translation files | Evgeny Khramtsov | 2019-07-24 | 1 | -1/+1 |
| | |||||
* | Fix opt_type.sh script and re-generate options | Evgeny Khramtsov | 2019-07-16 | 1 | -4/+4 |
| | |||||
* | Report invalid translation strings | Evgeny Khramtsov | 2019-06-24 | 1 | -4/+11 |
| | |||||
* | Generate paths for poedit | Evgeny Khramtsov | 2019-06-22 | 1 | -1/+3 |
| | |||||
* | Update extract-tr.sh script | Evgeny Khramtsov | 2019-06-22 | 1 | -2/+2 |
| | |||||
* | Improve extraction of translated strings | Evgeny Khramtsov | 2019-06-22 | 1 | -249/+67 |
| | | | | | | | | | | | | | Now every such string MUST be encapsulated into ?T() macro. The macro itself is defined in include/translate.hrl. Example: -module(foo). -export([bar/1]). -include("translate.hrl"). bar(Lang) -> translate:translate(Lang, ?T("baz")). | ||||
* | Fix creation of type spec for map() options | Evgeny Khramtsov | 2019-06-20 | 1 | -1/+1 |
| | |||||
* | Add helper to check xep implementations and versions | Christophe Romain | 2019-06-17 | 1 | -0/+21 |
| | |||||
* | Get rid of "well-known" type | Evgeny Khramtsov | 2019-06-15 | 1 | -12/+4 |
| | |||||
* | Ignore beams compiled by Elixir | Evgeny Khramtsov | 2019-06-14 | 2 | -28/+56 |
| | |||||
* | Accept output argument in tools/opt_types.sh | Evgeny Khramtsov | 2019-06-14 | 1 | -4/+4 |
| | |||||
* | Use new configuration validator | Evgeny Khramtsov | 2019-06-14 | 3 | -24/+645 |
| | |||||
* | Improve captcha.sh script documentation | Mickaël Rémond | 2019-05-25 | 1 | -0/+13 |
| | |||||
* | Write hooks_type_test.erl to correct location | Evgeny Khramtsov | 2019-05-15 | 1 | -2/+2 |
| | |||||
* | Make static hooks analyzer working again | Evgeny Khramtsov | 2019-05-15 | 1 | -91/+62 |
| | |||||
* | Commit back, change reverted by mistake | Paweł Chmielowski | 2019-02-26 | 1 | -2/+24 |
| | |||||
* | Update deps | Paweł Chmielowski | 2019-02-26 | 1 | -24/+2 |
| | |||||
* | Improve update-deps-releases | Paweł Chmielowski | 2019-02-26 | 1 | -2/+24 |
| | |||||
* | Provide source code filename in *.po, so editors can show the source code | Badlop | 2019-02-22 | 1 | -1/+1 |
| | |||||
* | Fix "make translations", got broken in 446e6e6f3 | Badlop | 2019-02-22 | 1 | -1/+1 |
| | |||||
* | Update copyright to 2019 (#2756) | Badlop | 2019-01-08 | 1 | -1/+1 |
| | |||||
* | Fix decompressing of custom elements with custom namespace | Paweł Chmielowski | 2019-01-07 | 1 | -2/+2 |
| | |||||
* | Add xml compression to sql backend of mam | Paweł Chmielowski | 2018-11-28 | 1 | -0/+417 |
| | |||||
* | Add check for files missing in hex packaging | Paweł Chmielowski | 2018-06-29 | 1 | -0/+44 |
| | |||||
* | Update ejabberd.pot | Evgeniy Khramtsov | 2018-06-20 | 1 | -14/+20 |
| | |||||
* | Remove 'iqdisc' option | Evgeniy Khramtsov | 2018-02-11 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | | | Since we got rid of all bottle-neck processes and we have a connection pool for every database, the option is no longer needed and in fact is detrimental: in practice what you get is just a bunch of overloaded processes in the IQ handlers pool no matter how much you increase the `iqdisc` value. Given that there are close to zero operators understanding the meaning of the option and, hence, not using it all, it's not simply deprecated but completely removed. The commit also deprecates the following functions: - gen_iq_handler:add_iq_handler/6 - gen_iq_handler:handle/5 - gen_iq_handler:iqdisc/1 | ||||
* | Make update-deps-releases.pl work with older perl | Paweł Chmielowski | 2017-11-20 | 1 | -2/+2 |
| | |||||
* | Remove find-outdated-deps script, we have better replacement for it | Paweł Chmielowski | 2017-10-02 | 1 | -127/+0 |
| | |||||
* | Generate more readable code for run_fold hooks | Evgeniy Khramtsov | 2017-10-02 | 1 | -14/+11 |
| | |||||
* | Simplify prepare-tr.sh to work with new extract-tr.sh | Badlop | 2017-09-27 | 1 | -282/+16 |
| | |||||
* | Move prepare-translations.sh from contrib to tools/prepare-tr.sh | Badlop | 2017-09-27 | 1 | -0/+366 |
| | |||||
* | Replace translate:mark/1 with ?T() macro | Evgeniy Khramtsov | 2017-09-24 | 1 | -27/+95 |
| | |||||
* | Add script to extract translation strings | Evgeniy Khramtsov | 2017-09-24 | 1 | -0/+232 |
| | |||||
* | Add ability to update changelog in update-deps-releases | Paweł Chmielowski | 2017-07-20 | 1 | -47/+103 |
| | |||||
* | Add refresh repos option in update-deps-releases | Paweł Chmielowski | 2017-07-14 | 1 | -5/+20 |
| | |||||
* | Fix clone code in update-deps-release | Paweł Chmielowski | 2017-06-28 | 1 | -2/+1 |
| | |||||
* | Fix problem with updating deps in rebar.config for non-tags | Paweł Chmielowski | 2017-06-28 | 1 | -2/+2 |
| | |||||
* | Improve update-deps-releases deps parsing | Paweł Chmielowski | 2017-06-27 | 1 | -2/+8 |
| |