Alexander Færøy
5a04430998
Kill support for DANE.
...
This patch removes support for DANE validation of TLS certificates.
There wasn't enough support in the IRC community to push for this on the
majority of bigger IRC networks. If you believe this should be
reintroduced into irssi, then please come up with an implementation that
does not rely on the libval library. It is causing a lot of troubles for
our downstream maintainers.
2016-10-22 22:04:33 +02:00
Alexander Færøy
5146ce9631
Add x509 certificate and public key pinning support.
...
This patch adds two new options to /CONNECT and /SERVER to let the user
pin either an x509 certificate and/or the public key of a given server.
It is possible to fetch the certificate outside of Irssi itself to
verify the checksum. To fetch the certificate call:
$ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \
openssl x509 > freenode.cert
This will download chat.freenode.net:6697's TLS certificate and put it into the
file freenode.cert.
-tls_pinned_cert
----------------
This option allows you to specify the SHA-256 hash of the x509
certificate. When succesfully connected to the server, irssi will verify
that the given server certificate matches the pin set by the user.
The SHA-256 hash of a given certificate can be verified outside of irssi
using the OpenSSL command line tool:
$ openssl x509 -in freenode.cert -fingerprint -sha256 -noout
-tls_pinned_pubkey
------------------
This option allows you to specify the SHA-256 hash of the subject public key
information section of the server certificate. This section contains both the
cryptographic parameters for the public key, but also information about the
algorithm used together with the public key parameters.
When succesfully connected to the server, irssi will verify that the
given public key matches the pin set by the user.
The SHA-256 hash of a public key can be verified outside of irssi using
the OpenSSL command line tool:
$ openssl x509 -in freenode.cert -pubkey -noout | \
openssl pkey -pubin -outform der | \
openssl dgst -sha256 -c | \
tr a-z A-Z
It is possible to specify both -tls_pinned_cert and -tls_pinned_pubkey
together.
2016-10-22 22:01:50 +02:00
Alexander Færøy
99d017720d
Add TLS_REC.
...
This patch adds the TLS_REC structure. This structure is used to emit
information about the TLS handshake from the core of irssi to the
front-end layers such that we can display connection information to the
user.
2016-10-22 20:37:33 +02:00
Alexander Færøy
2be7289085
Rename SSL to TLS.
...
This patch changes the internal name of SSL to TLS. We also add -tls_*
options to /CONNECT and /SERVER, but make sure that the -ssl_* versions
of the commands continue to work like before.
2016-10-22 20:36:50 +02:00
LemonBoy
f492ec8abf
Document the addition of the -autorun switch for /script reset.
2016-09-11 17:05:03 +02:00
ailin-nemui
de11e0f4f2
remove broken dummy mode
2016-08-12 19:33:56 +02:00
dx
3e28bf7a94
Merge pull request #518 from vague666/hilight_help
...
Wrong order in the arguments in /hilight example, -mask doesn't take …
2016-07-17 12:37:57 -03:00
Jari Matilainen
ccf1ca124b
Wrong order in the arguments in /hilight example, -mask doesn't take a parameter
2016-07-17 17:28:21 +02:00
LemonBoy
0fe81cae83
Correct the prototype for the 'message private' signal.
2016-07-12 15:46:36 +02:00
LemonBoy
798ce006c2
Merge pull request #498 from vague666/add_modify_functions
...
Add modify to /channel, /server and /network
2016-06-21 22:46:52 +02:00
Jari Matilainen
054a98b0ac
Add info about MODIFY to help files
2016-06-18 17:59:59 +02:00
ailin-nemui
cf98260ede
Merge pull request #476 from isundil/master
...
Add an option to make /hilight case sensitive
2016-04-30 21:46:18 +02:00
dennisschagt
b24921db7a
Correct error/typo "You"->"Your" in help message
2016-04-30 09:44:26 +02:00
B Thibault
ddd5416430
changed command-line -case to -matchcase
2016-04-29 11:00:34 +02:00
B Thibault
d8a6e66699
Ref #421 (Add an option to make /hilight case sensitive)
...
Allow use of /hilight -case exAMPle (compatible with other options)
Added matchcase to hilight config file (exemple: { text = exAMPle; matchcase = yes; } )
2016-04-29 01:01:34 +02:00
ailin-nemui
1349755bb5
Merge pull request #453 from LemonBoy/dcc-quote
...
Support quoted filenames in some /DCC commands
2016-04-05 22:39:54 +02:00
ailin-nemui
ec4ecd844b
Revert "Removed the obsolete SQUERY and SERVLIST commands"
...
This reverts commit 4beebe3238
.
2016-03-29 22:41:01 +02:00
LemonBoy
be93c8d5be
Update the documentation about DCC
2016-03-22 16:03:05 +01:00
ailin-nemui
7baf3a28bb
correct quoting in /help dcc
2016-03-20 22:43:12 +01:00
ailin-nemui
9174ec584f
Merge tag '0.8.18'
...
master now on 0.8.19-head
2016-02-29 22:45:54 +01:00
Lukas Mai
effb00b858
add some documentation
2016-02-18 01:20:33 +01:00
ailin-nemui
8ab537cf22
sync docs
2016-02-08 21:18:04 +01:00
ailin-nemui
b229138b2e
Update perl.txt
...
Mention known Perl Bugs (#386 )
2016-01-26 09:33:46 +01:00
mh
620d0a9299
script should be plural
2015-12-14 19:12:47 +01:00
Wieland Hoffmann
ca96444784
DCC close always requires a type
2015-12-09 11:21:51 +01:00
Chirag Aggarwal
0f066aac11
Remove Typo from FAQs
2015-09-28 08:54:19 +05:30
ailin-nemui
18989e76db
Merge pull request #304 from LemonBoy/sasl_user_options
...
Allow the user to set and modify the SASL parameters
2015-09-26 19:07:54 +02:00
LemonBoy
1a2c479bc0
Allow the user to set and modify the SASL parameters
...
The /NETWORK ADD command now is able to modify the SASL mechanism, the
username and the password on a chatnet basis.
2015-09-26 18:53:10 +02:00
dequis
c9be1a7a80
Revert "Revert "Bug fix - docdir is ignored during installation.""
...
This reverts commit d222c11f74
.
2015-09-23 13:58:22 -03:00
Ailin Nemui
d3df165e0b
Improve the WINDOW help
...
Properly describe the window command.
Make help sort order deterministic.
2015-09-23 14:21:27 +02:00
ailin-nemui
f5f3d7cc98
Revert "Network and IPv{4,6} related changes"
2015-09-22 21:59:17 +02:00
LemonBoy
564829610d
Ding dong the switch is dead
2015-09-21 14:55:35 +02:00
LemonBoy
203c00938a
Use formats instead of g_warning
...
Add some copyright headers here and there too.
2015-09-21 00:04:37 +02:00
Geert Hauwaerts
3e7c8a6f26
Merge pull request #284 from ailin-nemui/document-perl-crashes
...
Document some shortcomings in perl.txt
2015-09-19 13:24:19 +02:00
ailin-nemui
2b13e793c4
Merge pull request #259 from dequis/irssiproxy
...
Updates for irssiproxy
2015-09-19 02:53:25 +02:00
ailin-nemui
54a2fafbde
Update perl.txt
2015-09-18 23:33:52 +02:00
Alexander Færøy
d2c9f30977
Merge pull request #222 from LemonBoy/cap-support
...
[RFC] CAP support
2015-08-24 22:22:01 +02:00
dequis
a47f45b5b7
Rename /proxy command to /irssiproxy for clarity
2015-06-14 11:57:11 -03:00
dequis
29fb0d9802
Merge branch 'master' into irssiproxy
...
Conflicts:
src/irc/proxy/listen.c
2015-06-14 10:42:41 -03:00
Geert Hauwaerts
fb5513ef4a
Merge pull request #257 from GeertHauwaerts/master
...
Clarify the help for /LIST (#228 )
2015-06-12 20:48:50 +02:00
Geert Hauwaerts
e2eb2483b7
Updated the man page ( #251 )
...
Updated the man page (#251 )
2015-06-12 20:41:47 +02:00
Geert Hauwaerts
d222c11f74
Revert "Bug fix - docdir is ignored during installation."
2015-06-12 18:50:55 +02:00
Geert Hauwaerts
a79f150a76
Clarify the help for /LIST ( #228 )
...
Clarify the help for /LIST (#228 )
2015-06-12 17:23:49 +02:00
Filip Szczepański
ae742f3f13
lastlog doc fix
...
Only the filename can come right after `-file`. Having `-force` in that position causes an `Irssi: Could not open lastlog: No such file or directory` error.
2015-05-14 13:06:50 +01:00
LemonBoy
2d7030a844
Implement support for IRCv3.1 CAP negotiation
2015-05-05 23:14:26 +02:00
Alexander Færøy
9540a60c52
Merge pull request #232 from dimkr/master
...
Bug fix - docdir is ignored during installation.
2015-04-21 00:14:39 +02:00
Haw Loeung
9f77dd802d
trivial: Minor cosmetic changes fixing docs as per review from ahf.
2015-04-18 13:53:07 +10:00
Haw Loeung
50e955e342
ssl: Add option to specify SSL cipher suite preference.
2015-04-14 18:07:35 +10:00
Dima Krasner
be8c3c378a
Bug fix - docdir is ignored during installation.
2015-04-07 12:14:20 +03:00
Hans Nielsen
7beffbdcc5
Add help files for proxy module
2015-02-24 19:53:23 -08:00
Hans Nielsen
ee3f059e6d
Update proxy documentation with changes
2015-02-24 19:52:17 -08:00
Vesa Pirila
cd5a571fd8
Added customization possibility for the lastlog date format, lastlog_date
2015-02-08 16:58:30 +02:00
Vesa Pirila
466166010b
Added a -date parameter to /lastlog to prepend each row with the row's date
2015-02-08 13:00:51 +02:00
ailin-nemui
a26a909af0
Fix the lastlog help
...
Correct some confusing inaccuracies and document a parameters that got lost on the rewrite.
2015-02-01 19:21:59 +01:00
dequis
7ca9c86445
/help lastlog: Clarify usage of -<level> parameter
2015-01-31 11:49:01 -03:00
Geert Hauwaerts
08b390b11b
Documentation fix for #185
...
Documentation fix for #185
2014-12-08 21:28:02 +01:00
Alexander Færøy
bbd7333924
Merge pull request #171 from vlajos/typofixes-vlajos-20141108
...
typo fixes - https://github.com/vlajos/misspell_fixer
2014-12-06 16:09:11 +01:00
dequis
0bba34bbe9
Fix -ssl_pass documentation in /server and /connect
...
Copied text from 68f8229
(SVN r5231)
2014-11-14 03:46:02 -03:00
Veres Lajos
f285332c5b
typo fixes - https://github.com/vlajos/misspell_fixer
2014-11-08 22:26:53 +00:00
Matt Lewandowsky
3ea2a8dab8
Remove duplicate example from ignore.in
...
Duplicated line inserted in commit 66f5fb6
. Reported by @sharethebug on IRC.
2014-10-27 03:44:28 -07:00
David Leadbeater
7938af8092
Actually fix the params for /SERVER REMOVE
2014-10-20 21:11:20 +01:00
dequis
7847bdf67c
Tiny fix to the param order in the /SERVER REMOVE help
2014-10-15 23:52:55 -03:00
Ailin Nemui
9f6c76b028
Add the signal for printtext_after that was missed in the original commit.
...
Now properly sends "gui print text after finished" signal when using
the printtext_after API that was fixed after 0.8.16
2014-08-25 14:50:41 +02:00
Geert Hauwaerts
22d4dc729e
Updated ALIAS help
...
Updated ALIAS help.
2014-08-07 23:36:53 +02:00
Geert Hauwaerts
71ab0fbda6
Applied grammar and styling corrections
...
Applied grammar and styling corrections.
2014-08-07 22:00:40 +02:00
Geert Hauwaerts
f0aa2d2049
Syntax rewrite of U-Z commands
...
Rewrote the syntax documentation of U-Z commands.
2014-08-05 22:00:30 +02:00
Geert Hauwaerts
1933c92532
Fixed a typo in the cmdmax argument
...
Fixed a typo in the cmdmax argument.
2014-07-30 23:27:41 +02:00
Geert Hauwaerts
a775a7c229
Updated the documentation for LIST
...
Updated the documentation for LIST.
2014-07-30 23:12:39 +02:00
Geert Hauwaerts
822db3090f
Syntax rewrite for S-commands
...
Rewrote the syntax documentation for all commands starting with S.
2014-07-30 14:29:06 +02:00
Geert Hauwaerts
4beebe3238
Removed the obsolete SQUERY and SERVLIST commands
...
Removed the obsolete SQUERY and SERVLIST commands.
2014-07-30 13:02:26 +02:00
tomaw
cb6266f212
Fix typo in help for network command
2014-07-25 17:05:19 +01:00
Geert Hauwaerts
6e68b83723
Syntax rewrite for R-commands
...
Rewrote the syntax documentation for all commands starting with the
letter R.
2014-07-15 19:52:56 +02:00
Geert Hauwaerts
dde8540e3e
Removed the obsolete RPING command
...
The RPING command is obsolete.
2014-07-14 20:38:01 +02:00
Geert Hauwaerts
fcee49a441
Fixed an example of QUOTE
...
Fixed an example of QUOTE
2014-07-13 14:10:40 +02:00
Geert Hauwaerts
9fd1e2f5da
Syntax documentation rewrite for Q-commands
...
Rewrote the syntax documentation for all commands starting with the
letter Q.
2014-07-12 18:46:44 +02:00
Geert Hauwaerts
ee80ed16cb
Aligned the help for DEOP, DEVOICE and OP
...
Aligned the help for DEOP, DEVOICE and OP
2014-07-11 16:32:20 +02:00
Geert Hauwaerts
d460ba48d1
Syntax documentation rewrite of O and P commands
...
Rewrote the syntax documentation of the commands starting with the
letters O and P.
2014-07-10 20:43:52 +02:00
Geert Hauwaerts
8014fd2cb0
Syntax documentation rewrite for N-commands.
...
Rewrote the syntax documentation for all commands starting with the
letter N.
2014-07-09 18:21:39 +02:00
Geert Hauwaerts
7ee7bf79ed
Syntax documentation rewrite for M-commands
...
Rewrote the syntax documentation for all commands starting with the
letter M.
2014-07-08 21:02:35 +02:00
Alexander Færøy
a9ff985a91
Merge pull request #15 from ailin-nemui/hilights-network-tag
...
FS#155 hilight -tag
2014-07-07 22:49:29 +02:00
Ailin Nemui
d3093418d4
cleanup hilight -network patch
2014-07-07 22:45:29 +02:00
Alexander Færøy
09a1801186
Merge pull request #58 from ailin-nemui/italics
...
Implement italics support for Irssi
2014-07-07 22:16:23 +02:00
Geert Hauwaerts
5e8947a8b0
Syntax documentation rewrite for L-commands
...
Rewrote the syntax documentation for all commands starting with L.
2014-07-07 19:47:51 +02:00
Lukas Mai
0e294d5c2e
add italics support; don't use standout for reverse
2014-07-07 00:32:07 +02:00
Geert Hauwaerts
4c6ba664c4
Updated SERVER documentation
...
Added the noautosendcmd parameters to the SERVER syntax documentation
2014-07-06 22:52:50 +02:00
Geert Hauwaerts
19b636e2a2
Improved the UNACT example ALIAS
...
Improved the UNACT example ALIAS
2014-07-06 22:36:13 +02:00
Geert Hauwaerts
4ca8d56869
Updated the ALIAS documentation
...
Updated the ALIAS documentation.
2014-07-06 19:18:31 +02:00
Geert Hauwaerts
0885282294
Replaced google.com with irssi.org examples
...
Replaced google.com with irssi.org examples.
2014-07-06 18:53:05 +02:00
Geert Hauwaerts
66f5fb699b
Added information about the NO_ACT level
...
Added information about the NO_ACT level
2014-07-06 18:49:02 +02:00
Geert Hauwaerts
47b925917d
Added a new example for ALIAS
...
Added a new example for ALIAS
2014-07-06 18:36:20 +02:00
Geert Hauwaerts
074735db08
New syntax documentation for NETWORK and SERVER
...
Rewrote the syntax documentation for NETWORK and SERVER
2014-07-06 18:17:05 +02:00
Geert Hauwaerts
120508c14f
Syntax documentation rewrite for J-K commands
...
Rewrote the syntax documentation for all commands starting with the
letters J and K.
2014-07-06 15:00:46 +02:00
Geert Hauwaerts
3b76487d0f
Wrote the missing syntax documentation for UPTIME
...
Wrote the missing syntax documentation for UPTIME.
2014-07-06 02:44:28 +02:00
Geert Hauwaerts
492d98358d
Improved the IGNORE examples
...
Improved the IGNORE examples.
2014-07-06 02:11:31 +02:00
Geert Hauwaerts
e891b29aef
Improved some examples
...
Improved some examples.
2014-07-06 02:06:36 +02:00
Geert Hauwaerts
591e10b3b6
Syntax documentation rewrite for H-I-commands
2014-07-05 22:16:35 +02:00
richlv
940566b111
Update connect.in
...
add trailing dot for consistency; mention that existing connections are kept
2014-07-05 20:47:06 +03:00
Alexander Færøy
ed51629514
Merge pull request #80 from dgl/noact
...
Change NO_ACT so it can be combined with other levels
2014-07-04 23:48:41 +02:00
Geert Hauwaerts
4c8fe0963c
Syntax documentation rewrite for F-commands
...
Rewrote the syntax documentation for all commands starting with the
letter F.
2014-07-04 20:38:37 +02:00
Geert Hauwaerts
f295a02cda
Syntax documentation rewrite for E-commands
...
Rewrote the syntax documentation for commands starting with the letter
E.
2014-07-03 21:42:37 +02:00
Geert Hauwaerts
037fae0ed5
Syntax format changes for A-C commands
...
Updated the file format template for commands A through C.
2014-07-03 21:41:10 +02:00
Geert Hauwaerts
878411edc4
Syntax documentation rewrite for D-commands
...
Rewrote the syntax documentation for all commands starting with the
letter D.
2014-07-03 21:37:41 +02:00
Geert Hauwaerts
3f79c8553c
Syntax documentation rewrite for C-commands
...
Rewrote the syntax documentation for all the commands starting with the
letter C.
2014-07-03 17:41:15 +02:00
Alexander Færøy
fd3676e407
Merge pull request #48 from ailin-nemui/256-colour-history
...
256 colour support for Irssi
2014-07-02 23:17:36 +02:00
Geert Hauwaerts
0a22174264
Syntax documentation rewrite for B-commands
...
Rewrote the syntax documentation for all the commands starting with B.
2014-07-02 22:35:17 +02:00
Geert Hauwaerts
b2f265f44e
Rewrote the syntax documentation for all the commands starting with A.
2014-07-02 22:25:33 +02:00
Geert Hauwaerts
ba4f6c4056
Aligned the /NETWORK documentation with docs/manual.txt
2014-06-30 22:27:22 +02:00
Geert Hauwaerts
0d1758a2b5
Merge pull request #71 from dgl/nickserv-doc
...
Suggest using ^ so this doesn't pop-up a NickServ window
2014-06-30 21:47:50 +02:00
Jari Matilainen
70e49f673e
Improve docs of special_vars wrt. to escaping rules in /alias
2014-06-30 21:03:50 +02:00
Ailin Nemui
96a292d40e
Finish 256 colour support for Irssi
...
256 colour patch is cleaned up and the remaining cases are made work,
this includes especially Theme support, which was not implemented
before. Changes not related to colours were reverted again, making a
review of the two patches against master easier to follow.
As a byproduct of the Hex-colour code parser, the 24bit colours are
also implemented. Actually using them in the terminal is guarded by a
compile time switch (as well as a run time switch), as it breaks the
existing colour protocol and requires additional storage.
To make a seamless usage, down-conversion is provided for 8 and 16
colours.
Diverging from Tom's approach, the colour protocol is reverted back to
the original one. Unfortunately, the changes required in the Theme
engine will break the API.
For more details, please refer to the patch documentation at either
http://irssi-docs.wikispaces.com/Notes-256-Colour or
https://github.com/shabble/irssi-docs/wiki/Notes-256-Colour
2014-06-30 02:41:34 +02:00
David Leadbeater
819f9d16c9
Change NO_ACT so it can be used in addition to other ignores
...
This results in a more flexible system and is less surprising as it means levels
can be used in the way they normally can in an ignore.
As an example the current approach to NO_ACT provides no way to let HILIGHTS
be shown, with this change /set activity_hide_targets can be recreated with:
/ignore #channel NO_ACT
/ignore #channel -except -regexp -pattern . NO_ACT HILIGHTS
(but obviously this can be configured in many more ways if desired).
2014-06-30 00:31:53 +01:00
David Leadbeater
d823823c43
Suggest using ^ so this doesn't pop-up a NickServ window
2014-06-30 00:24:48 +01:00
Alexander Færøy
2e6f16c0fa
Merge pull request #11 from ailin-nemui/print_text_after_time-api
...
add print_text_after_time to specify time stamp for lines
2014-06-30 00:07:14 +02:00
David Leadbeater
fa70021ac8
Update crash.txt to point at github
2014-06-29 15:09:32 +01:00
Ailin Nemui
e71c9f1b06
add print_text_after_time to specify time stamp for lines
...
add signal for line removal from textbuffer
2014-06-27 15:50:36 +02:00
David Leadbeater
0e17da4a1c
Document that /UPGRADE doesn't work with SSL
2014-06-16 00:11:59 +01:00
Jaroslav Škarvada
57f138c087
Remove nonexistant usage from man page
2014-06-15 21:05:04 +02:00
Alexander Færøy
68f8229373
Add -ssl_pass to /connect and /server
...
Fixes: Bug #305
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5231 dbcabf3a-b0e7-0310-adc4-f8d773084564
2014-01-11 19:53:17 +00:00
Alexander Færøy
4d36a9e498
Add TLSA related signals
...
This patch adds 3 new signals:
* tlsa avalable: emitted if TLSA is available for a given domain.
* tlsa verification success: emitted if the TLSA check was successful.
* tlsa verification failed: emitted if the TLSA check was unsuccessful.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5220 dbcabf3a-b0e7-0310-adc4-f8d773084564
2013-06-23 23:50:32 +00:00
Jase Thew
d74c9788b7
Update help for /log - change default for log_create_mode to 0600
...
(Bug #830 ).
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5211 dbcabf3a-b0e7-0310-adc4-f8d773084564
2012-01-10 21:36:07 +00:00
Alexander Færøy
796134ffbd
Add -noautosendcmd to /SERVER and /CONNECT.
...
Passing this option will force Irssi to not execute the content of the
autosendcmd chatnet-setting upon connect.
Fixes : #738
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5209 dbcabf3a-b0e7-0310-adc4-f8d773084564
2011-11-21 21:27:58 +00:00
Jase Thew
b77539816c
Document available options for /JOIN command.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5207 dbcabf3a-b0e7-0310-adc4-f8d773084564
2011-07-31 16:25:33 +00:00
Jase Thew
04911955fe
Clarify delimiter needed for -channels option of /HILIGHT and /IGNORE commands.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5206 dbcabf3a-b0e7-0310-adc4-f8d773084564
2011-07-30 23:24:06 +00:00
Jase Thew
f3419c3936
Add a reference to /help levels for IGNORE help entry.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5204 dbcabf3a-b0e7-0310-adc4-f8d773084564
2011-05-04 20:10:48 +00:00
Jase Thew
be5b3cf8b8
Correct typo (it's -> its) - spotted by coekie.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5172 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-05-19 19:44:39 +00:00
Alexander Færøy
e37be456cd
Allow servers with the same server and port to be part of multiple networks. This should make life much easier for znc users. Thanks to Tykling, Bazerka and znx.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5125 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-03-21 20:06:10 +00:00
Alexander Færøy
2cc1db2e71
Add NAMES to the WHO help entry. Patch by Thomas Karpiniec. Fixes ticket:728
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5111 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-02-09 20:15:08 +00:00
Alexander Færøy
38e406d0fa
Suffix != prefix. Patch by Ismael Luceno. Closes ticket:730
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5110 dbcabf3a-b0e7-0310-adc4-f8d773084564
2010-02-09 20:11:08 +00:00
Alexander Færøy
5c6ebb9f93
Documentation cleanup. Thanks to Remco Lanting.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5098 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-09-05 13:18:10 +00:00
Jilles Tjoelker
eedd174bac
Helpfile improvements from "rudi_s".
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5097 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-09-02 21:46:57 +00:00
Wouter Coekaerts
e52277c162
Add "window item moved" (added in r5012) to signals.txt
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5037 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-10 21:16:16 +00:00
Jilles Tjoelker
6740017fc5
Add "default event numeric" to signals.txt.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5035 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-03-10 18:12:04 +00:00
Alexander Færøy
3e58d2cc92
Add "window dehilight" to signals.txt
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@5009 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-02-10 12:59:49 +00:00
Emanuele Giaquinta
1f7311272a
Suggest a better method to provide a backtrace with gdb.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4997 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-01-23 17:48:32 +00:00
Emanuele Giaquinta
db1b74b7f9
Fix 'defination' typo.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4996 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-01-20 14:15:01 +00:00
Emanuele Giaquinta
57282ee557
Doc fix.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4988 dbcabf3a-b0e7-0310-adc4-f8d773084564
2009-01-15 11:14:51 +00:00
Jilles Tjoelker
8c510be0a6
Document Irssi::signal_continue() and clarify new signal registration requirements
...
(r4953).
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4966 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-12-12 21:01:48 +00:00
Emanuele Giaquinta
8a5aa22ed8
Document command syntax.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4955 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-12-08 16:55:29 +00:00
Jilles Tjoelker
861781bac5
Add brief documentation for Irssi::signal_register() perl function.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4945 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-12-06 00:14:19 +00:00
Geert Hauwaerts
51d9d6947d
Typo fix by Richard Hartmann (RichiH)
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4918 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-22 12:43:39 +00:00
Jilles Tjoelker
289b1ab81c
Remove reference to wallchops.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4903 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-12 21:47:21 +00:00
Jilles Tjoelker
c5109787eb
Remove /wallchops, do not suggest other commands in /help wall.
...
The only major ircd supporting /wallchops also supports
/notice @#channel.
The /wall command has used /notice @#channel (if it is
supported which is pretty much everywhere) for a while
and so it can be used without problems on large channels.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4902 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-12 21:00:05 +00:00
Emanuele Giaquinta
e39a087979
Fix punctuation.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4897 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-11 23:49:59 +00:00
Emanuele Giaquinta
f0647439a9
Add Irssi::command_parse_options function to parse options for a command which
...
have been set with Irssi::command_set_options.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4896 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-11 23:33:47 +00:00
Emanuele Giaquinta
f4e9745c9f
Fix broken url.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4895 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-11 18:16:24 +00:00
Emanuele Giaquinta
d63f6d4a88
Fix typo.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4894 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-11 14:28:55 +00:00
Jochen Eisinger
f8461d39bc
introduce the type Irssi::Irc::Client and signals to communicate with proxy
...
clients to allow for scripting parts of the irssi-proxy.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4882 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-11-02 12:13:36 +00:00
Emanuele Giaquinta
86a5e8085a
Remove scrollback_levelclear_levels setting and add a 'level' option to
...
'sb levelclear' to specify a comma separated list of levels.
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4876 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-10-21 11:09:51 +00:00
Emanuele Giaquinta
7e3bf21139
Remove duplicated help file.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4870 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-08-22 11:47:21 +00:00
Emanuele Giaquinta
13849ba4f2
Fix typos.
...
git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4865 dbcabf3a-b0e7-0310-adc4-f8d773084564
2008-08-01 12:27:37 +00:00