Commit Graph

1809 Commits

Author SHA1 Message Date
ZNC-Jenkins bot
27540a8d40 Update translations from Crowdin (#1552) 2018-06-16 10:15:05 +01:00
Alexey Sokolov
bdbcaca055 Merge branch '1.7.x' 2018-06-15 19:34:49 +01:00
ZNC-Jenkins bot
38a007d5c5 Update translations from Crowdin (#1551) 2018-06-15 19:34:12 +01:00
Alexey Sokolov
ac037766f0 Merge branch '1.7.x' 2018-06-14 22:26:42 +01:00
Casper
c74f41d67d Change GetParamsColon(1) to (0) in adminlog, as (1) does not show the error message, it will show an empty [] in the adminlog
Close #1557
2018-06-14 22:25:41 +01:00
ZNC-Jenkins bot
8edcdf3263 Update translations from Crowdin (#1539) 2018-06-04 22:38:56 +01:00
ZNC-Jenkins bot
633e695aba Update translations from Crowdin (#1544) 2018-06-04 22:38:33 +01:00
Alexey Sokolov
fda73d8c81 Merge branch '1.7.x' 2018-06-04 22:30:53 +01:00
Alexey Sokolov
664105eabd Fix #1548: fix description of flooddetach commands.
Ref #1549
2018-06-04 22:27:39 +01:00
Alexey Sokolov
4b92790562 Fix #1543 for modperl too
While at it, fix a memory leak in NV handling

Add some tests
2018-06-04 22:03:10 +01:00
Alexey Sokolov
8eebdf750d Slightly cleaner way to fix #1543 2018-06-02 10:45:03 +01:00
Alexey Sokolov
11fb428878 Fix VCString return values in modpython
The list of functions which returned list of unknown objects instead of
list of strings:
* CMessage::GetParams()
* CZNC::GetMotd()
* CZNC::GetTrustedProxies()
* CZNC::GetBindHosts()
2018-06-02 01:02:40 +01:00
Alexey Sokolov
e531fe870a Replace the deprecated overload of CMessage::GetParam 2018-06-01 22:22:44 +01:00
Alexey Sokolov
add1316517 Merge branch '1.7.x' 2018-06-01 19:43:00 +01:00
ZNC-Jenkins bot
309eafa6f7 Update translations from Crowdin (#1540) 2018-05-31 08:40:31 +01:00
Alexey Sokolov
e0a53310d1 Merge branch '1.7.x' 2018-05-28 21:22:29 +01:00
Alexey Sokolov
255fc53cad Fix double "id" attribute of <textarea> in CTCP replies editor.
That prevented the javascript version of the editor to work correctly.

Thanks to luk3yx for the report.
2018-05-27 01:02:14 +01:00
Alexey Sokolov
b7ba41fb3d Merge branch '1.7.x' 2018-05-14 21:35:02 +01:00
ZNC-Jenkins bot
ddb1564aa8 Update translations from Crowdin (#1534) 2018-05-14 22:33:49 +02:00
ZNC-Jenkins bot
ad7e447bf3 Update translations from Crowdin (#1530) 2018-05-09 08:42:03 +01:00
Alexey Sokolov
3e3cd9e4d7 Merge branch '1.7.x' 2018-05-08 21:55:20 +01:00
ZNC-Jenkins
c5e7ec2aa1 Update translations from Crowdin and remove old .po files without full locale name 2018-05-08 21:52:38 +01:00
ZNC-Jenkins bot
828e88c93c Update translations from Crowdin (#1525) 2018-05-06 09:51:57 +01:00
Alexey Sokolov
1196c97b45 Merge branch '1.7.x' 2018-05-06 00:29:40 +01:00
ZNC-Jenkins bot
62744c3aae Update translations from Crowdin (#1523) 2018-05-06 00:23:49 +01:00
ZNC-Jenkins bot
bbc5cfe76d Update translations from Crowdin (#1522) 2018-05-06 00:23:36 +01:00
Alexey Sokolov
22ef6de8e4 Merge pull request #1506 from Zarthus/feature/simpleaway-timezone-info-utc
simple_away: Convert to UTC time
2018-05-05 23:41:41 +01:00
Alexey Sokolov
f669c42588 Merge pull request #1443 from Zarthus/fix/1421-route-replies-rizon
route_replies: rizon: [MODE] Add 403, 442 expectations
2018-05-05 22:14:17 +01:00
ZNC-Jenkins bot
19a53c0994 Update translations from Crowdin (#1509) 2018-04-13 08:27:28 +01:00
ZNC-Jenkins bot
b9743d8320 Update translations from Crowdin (#1502) 2018-04-04 01:40:11 +01:00
Jos Ahrens
c6845b7fae simple_away: Convert to UTC time
- convert to utc time
- add tz to the away string subst
2018-04-02 11:30:52 +00:00
Jos Ahrens
b35e61401e route_replies: rizon: Add 403, 442 expectations
Rizon replies with a 403 if the channel does not exist,
and with a 442 if you're not on that channel.

Resolves #1421
2018-04-01 18:10:45 +00:00
Alexey Sokolov
6eaa93f8da Fix python sockets after latest changes.
The issue was triggered by CCoreTranslationMixin being parent of
CZNCSock, and DisableReadLine wasn't found as attribute anymore.

Thanks to obiw4n for report.
2018-03-27 22:26:05 +01:00
ZNC-Jenkins bot
9791d2c18e Update translations from Crowdin (#1493) 2018-03-12 08:10:14 +00:00
Alexey Sokolov
908fa96b3f Modernize several modules to use CMessage 2018-03-11 17:26:30 +00:00
Alexey Sokolov
48df7c7fe2 Switch some modules to newer API 2018-02-18 22:04:02 +00:00
Alexey Sokolov
5a09a81c35 Fix interaction between crypt and echo-message.
Close #1481
2018-02-11 14:17:51 +00:00
Alexey Sokolov
a2470b3dd3 Make chan modes and permissions to be char instead of unsigned char.
Deprecate old module hooks which accept mode as unsigned char.

SWIG handles unsigned char as int, but char as a string.
Before this commit, usage of HasPerm from perl modules required this:
either $chan->HasPerm(ord('@')) or $chan->HasPerm(ord($ZNC::CChan::Op)).
Now ord() is not necessary, and these calls work too:
$chan->HasPerm('@') and $chan->HasPerm($ZNC::CChan::Op).

Fix #1486
2018-02-10 15:55:55 +00:00
ZNC-Jenkins
fcc710b4b8 Update translations from Crowdin 2018-01-19 19:39:46 +00:00
Falk Seidel
d647eaabc0 Welcome to 2018
The same procedure as last year, Miss Sophie?
The same procedure as every year, James.

[skip ci]
2018-01-19 19:38:58 +00:00
ZNC-Jenkins
d4ae311535 Update translations from Crowdin 2018-01-01 23:18:09 +00:00
Alexey Sokolov
57a1fff1af crypt: fix usage of DH_compute_key, close #1469 2018-01-01 23:13:13 +00:00
Fox Wilson
42939c998f Add "AuthOnlyViaModule" global/user setting
Setting AuthOnlyViaModule on a user causes CheckPass to never return true,
causing all authentication attempts using the configured password to fail, both
on IRC connections and for webadmin. This is useful in situations where an
external module (cyrusauth, certauth, imapauth) handles authentication. Setting
the global AuthOnlyViaModule option causes similar behavior across every
user. If AuthOnlyViaModule is set to true globally, it cannot be overridden
per-user.

Close #1474
Close #331
2017-12-22 14:23:17 +00:00
ZNC-Jenkins
58ae4517cb Update translations from Crowdin 2017-12-21 09:14:07 +00:00
Alexey Sokolov
a0cbe130d9 Fix newly introduced warning in modperl 2017-12-17 22:26:46 +00:00
Alexey Sokolov
9474c3dc09 Support ValidateWebRequestCSRFCheck in perl/python. Fix #1424 2017-12-17 22:10:41 +00:00
Alexey Sokolov
ddd3023d5d Refactor default return values of callbacks of perl/python modules
See #1424
2017-12-17 22:03:47 +00:00
ZNC-Jenkins
9dbe7bb859 Update translations from Crowdin 2017-12-15 01:23:44 +00:00
Alexey Sokolov
4a2c223379 Add comments for translator to .tmpl files (#1473)
They are ignored in CTemplate, because the string doesn't reference it
as {N}
2017-12-14 10:26:07 +00:00
Alexey Sokolov
fd83bb3473 Merge branch 'master' of github.com:znc/znc 2017-12-13 08:30:27 +00:00