Sébastien Helleu
a10769f0f8
doc: move spell chapter after scripts in user's guide
2019-02-26 08:01:42 +01:00
Sébastien Helleu
57aa9e060e
spell: rename "aspell" plugin to "spell" (issue #1299 )
...
The following things have been renamed:
- file aspell.conf -> spell.conf
- options aspell.* -> spell.*
- bar item aspell_dict -> spell_dict
- bar item and local variable aspell_suggest -> spell_suggest
- info aspell_dict -> spell_dict
2019-02-19 21:15:56 +01:00
Krzysztof Korościk
c2a94d93c5
doc: updated polish translation
2019-02-09 19:50:01 +01:00
Sébastien Helleu
6932810c70
doc: remove obsolete note about gcrypt in chapter on IRC SASL authentication (user's guide)
2019-01-31 21:34:02 +01:00
Sébastien Helleu
6d217ca8c5
doc: fix regex examples to be compatible with FreeBSD
...
The following special sequences are not supported in regular expressions on
FreeBSD:
- "\w": replaced with "[a-zA-Z0-9_]"
- "\S": replaced with "[^ ]" (it should be "[^ \t\n\r\f\v]", but in practice
only spaces could be a problem when we use this sequence).
2019-01-26 10:15:35 +01:00
Sébastien Helleu
e847068a3c
buflist: add default keys ctrl-F1/F2 to scroll up/down one page in buflist (same action as F1/F2)
2019-01-20 01:29:33 +01:00
Sébastien Helleu
9d6ebeda0d
core: add default keys ctrl-F11/F12 to scroll up/down one page in nicklist (same action as F11/F12)
2019-01-20 01:29:28 +01:00
Sébastien Helleu
d9849b4efe
doc: add example of aspell dict for all channels of an IRC server (user's guide) ( closes #1284 )
2018-12-13 21:24:12 +01:00
Sébastien Helleu
342261d35b
core: use https for all links where secured http is supported
2018-11-29 23:18:55 +01:00
Sébastien Helleu
d26380a9bb
core: replace "Mac OS X" and "OS X" by "macOS" (issue #1272 )
2018-11-18 11:04:29 +01:00
Sébastien Helleu
dd0b3c5692
core: replace "web site" by "website"
2018-11-04 21:32:35 +01:00
Sébastien Helleu
738535e7f6
relay: add support of Time-based One-Time Password (TOTP) as second authentication factor in weechat protocol
2018-11-04 14:50:53 +01:00
Krzysztof Korościk
585257196d
doc: updated polish translation
2018-10-19 19:46:23 +02:00
Sébastien Helleu
669aa2741a
doc: rename variable "tg_tags" to "tags" in line trigger (user guide)
2018-08-17 08:16:14 +02:00
Sébastien Helleu
968d7ede29
trigger: add variables "tg_prefix_nocolor" and "tg_message_nocolor" in line trigger
2018-08-17 07:59:20 +02:00
Sébastien Helleu
e7096810c4
trigger: rename variable "tg_tags" to "tags" in line trigger
2018-08-17 07:43:56 +02:00
Sébastien Helleu
9105c3ba1f
trigger: allow creation of temporary variables with the regex
2018-08-16 22:47:47 +02:00
Sébastien Helleu
ba820a0172
doc: fix list of variables that can be updated in a hook_line trigger (user guide)
2018-08-15 12:28:15 +02:00
Sébastien Helleu
51bda896c8
doc: add list of variables that can be updated by type of trigger (user guide)
2018-08-15 09:07:01 +02:00
Sébastien Helleu
42be1a74a0
api: add function hook_line
2018-08-12 21:45:00 +02:00
Sébastien Helleu
48cbf3ad37
doc: add "/msg nickserv set password" in list of commands handled by default trigger "cmd_pass" (user guide)
2018-08-11 09:48:32 +02:00
Sébastien Helleu
737a16b7de
doc: fix default conditions of beep trigger (user guide)
2018-08-11 09:38:54 +02:00
Sébastien Helleu
b3fc7c1b1a
core: update weechat.org URLs to match latest version of the site
2018-07-29 11:03:24 +02:00
Jos Ahrens
738585d9e2
doc: mention there is an option to enable crash core files (user's guide)
...
For people skimming the section, it will not be immediately clear to
them, especially since everything seems to suggest this option is
enabled by default.
2018-07-15 14:18:07 +02:00
Krzysztof Korościk
0834c9c966
doc: updated polish translation
2018-07-08 17:49:28 +02:00
Sébastien Helleu
4aa0e570d0
doc: add default triggers in user's guide
2018-07-07 07:54:11 +02:00
Sébastien Helleu
ce682bb02a
Merge pull request #1164 from wking/openssl-ecparam-out
...
doc: use '-out' instead of shell redirection for openssl ecparam
2018-03-31 12:06:02 +02:00
Sébastien Helleu
330e13ac61
doc: update Ruby version in dependencies (user's guide)
2018-03-22 21:25:00 +01:00
Sébastien Helleu
8fd13eefb9
doc: update PHP packages in dependencies (user's guide)
2018-03-22 21:22:32 +01:00
W. Trevor King
5d91765da7
doc: use '-out' instead of shell redirection for openssl ecparam
...
Generated with:
$ sed -i 's|openssl ecparam -genkey -name prime256v1 >~/.weechat/ecdsa.pem|openssl ecparam -genkey -name prime256v1 -out ~/.weechat/ecdsa.pem|' $(git grep -l 'openssl ecparam')
There's no reason to involve shell redirection, which we've had since
88073243 (doc: add instructions for SASL "ecdsa-nist256p-challenge",
2015-01-21). We already use -in or -out for our other openssl
invocations, as shown by:
$ git grep 'openssl.*\(<\|>\|-in\|-out\)'
2018-03-19 15:55:34 -07:00
Krzysztof Korościk
afadcf59d4
doc: updated polish translation
2018-03-10 17:59:01 +01:00
Sébastien Helleu
15723bccdf
doc: update dependencies for PHP plugin in user's guide (issue #1154 )
2018-03-05 20:51:22 +01:00
Krzysztof Korościk
211d5aa7ec
doc: updated polish translation
2018-01-20 14:57:29 +01:00
Sébastien Helleu
21e63e7958
scripts: add configuration file for each script plugin
2018-01-15 21:57:06 +01:00
Sébastien Helleu
04926c8c37
doc: replace "/help autosetbuffer" by "/help buffer_autoset" in user's guide ( closes #1116 )
2017-12-14 07:30:38 +01:00
Sébastien Helleu
d4a6758b8b
doc: replace download page with a link to relay chapter (user's guide)
2017-12-04 20:50:37 +01:00
Krzysztof Korościk
e6c143b6d9
doc: updated polish translation
2017-11-19 14:24:28 +01:00
Sébastien Helleu
42d98a6865
doc: fix typo in user's guide
2017-10-31 14:09:25 +01:00
Sébastien Helleu
17554fda68
doc: add bar items "buflist2" and "buflist3" in user's guide
2017-10-19 22:07:47 +02:00
Grant Wu
4a2a6f7934
doc: clarify "home directory" in user's guide ( closes #1086 )
2017-10-16 20:36:39 +02:00
Sébastien Helleu
f6fe6be7a4
doc: reformat PHP dependency in user's guide
2017-10-05 22:38:26 +02:00
Sébastien Helleu
6fc988a647
doc: add dependency libxml2-dev for PHP plugin (user's guide)
2017-09-28 01:09:50 +02:00
Sébastien Helleu
d6558f5327
doc: replace php 7.0 by php 7.1 in dependencies (user's guide)
...
Compilation with PHP 7.0 is still OK, the version in dependencies is the latest
available in Debian Sid (unstable).
2017-09-27 16:58:17 +02:00
Sébastien Helleu
92b9533efe
core: fix typo: Javascript -> JavaScript
2017-09-23 16:24:52 +02:00
Sébastien Helleu
997768c4cf
doc: add PHP plugin in user's guide
2017-09-03 15:34:29 +02:00
Sébastien Helleu
a2f2d41dda
doc: add links to other docs in user's guide
2017-08-21 23:12:49 +02:00
Sébastien Helleu
86cfce07f0
doc: remove centering in some tables (user's guide)
2017-08-12 18:37:46 +02:00
Sébastien Helleu
d6b6a1d85c
doc: update titles with options (user's guide)
2017-08-12 18:37:46 +02:00
Sébastien Helleu
9d49c782f3
doc: remove word "plugin" in chapter titles (user's guide)
2017-08-12 18:37:46 +02:00
Sébastien Helleu
2e7fd30ae5
doc: add a chapter about aspell dictionaries (user's guide)
2017-08-12 18:37:45 +02:00