release prepared
This commit is contained in:
parent
7e890e305d
commit
c8ea25a172
6
FAQ
6
FAQ
@ -1,4 +1,5 @@
|
|||||||
FAQ
|
FAQ
|
||||||
|
===
|
||||||
|
|
||||||
Where is IRC command xy (ignore etc.)?
|
Where is IRC command xy (ignore etc.)?
|
||||||
--------------------------------------
|
--------------------------------------
|
||||||
@ -10,10 +11,11 @@ Where is a graphical interface?
|
|||||||
Basically ii follows the UNIX philosophy so it is only file based. But it
|
Basically ii follows the UNIX philosophy so it is only file based. But it
|
||||||
should be easy to build different interface because they only have to handle
|
should be easy to build different interface because they only have to handle
|
||||||
the FIFOs and output files. Feel free to implement or wait until we have done
|
the FIFOs and output files. Feel free to implement or wait until we have done
|
||||||
this.
|
this. Actually I use ii in combination with vim, multitail and screen and it works
|
||||||
|
like a charm.
|
||||||
|
|
||||||
Which commands are supported?
|
Which commands are supported?
|
||||||
-----------------------------
|
-----------------------------
|
||||||
j (join), t (topic), a (away), m (msg), n (nick), l (leave). The missing are
|
j (join or msg), t (topic), a (away), n (nick), l (leave). The missing are
|
||||||
obsolete or can be easily used by typing the IRC commands itself (i.e. /WHO
|
obsolete or can be easily used by typing the IRC commands itself (i.e. /WHO
|
||||||
instead of /who).
|
instead of /who).
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,7 +1,7 @@
|
|||||||
MIT/X Consortium License
|
MIT/X Consortium License
|
||||||
|
|
||||||
(C)opyright MMV Anselm R. Garbe <garbeam@wmii.de>
|
(C)opyright MMV Anselm R. Garbe <garbeam@wmii.de>
|
||||||
(C)opyright MMV Nico Golde <nico at ngolde dot de>
|
(C)opyright MMV-MMVII Nico Golde <nico at ngolde dot de>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
copy of this software and associated documentation files (the "Software"),
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
2
Makefile
2
Makefile
@ -1,5 +1,5 @@
|
|||||||
# ii - irc it - simple but flexible IRC client
|
# ii - irc it - simple but flexible IRC client
|
||||||
# (C)opyright MMV Anselm R. Garbe, Nico Golde
|
# (C)opyright MMV-MMVII Anselm R. Garbe, Nico Golde
|
||||||
|
|
||||||
include config.mk
|
include config.mk
|
||||||
|
|
||||||
|
@ -10,11 +10,13 @@ DESTDIR =
|
|||||||
|
|
||||||
INCDIR = ${PREFIX}/include
|
INCDIR = ${PREFIX}/include
|
||||||
LIBDIR = ${PREFIX}/lib
|
LIBDIR = ${PREFIX}/lib
|
||||||
VERSION = 1-rc2
|
VERSION = 1
|
||||||
|
|
||||||
# includes and libs
|
# includes and libs
|
||||||
INCLUDES = -I. -I${INCDIR} -I/usr/include
|
INCLUDES = -I. -I${INCDIR} -I/usr/include
|
||||||
LIBS = -L${LIBDIR} -L/usr/lib -lc
|
LIBS = -L${LIBDIR} -L/usr/lib -lc
|
||||||
|
# uncomment for compiling on Solaris
|
||||||
|
# LIBS = -L${LIBDIR} -L/usr/lib -lc -lsocket -lnsl
|
||||||
|
|
||||||
# compiler
|
# compiler
|
||||||
CC = cc
|
CC = cc
|
||||||
|
11
ii.1
11
ii.1
@ -44,7 +44,7 @@ lets you override the default servername (irc.freenode.net)
|
|||||||
lets you override the default port (6667)
|
lets you override the default port (6667)
|
||||||
.TP
|
.TP
|
||||||
.BI \-k " password"
|
.BI \-k " password"
|
||||||
lets you use a password to authentifacte your nick on the server
|
lets you use a password to authenticate your nick on the server
|
||||||
.TP
|
.TP
|
||||||
.BI \-i " prefix"
|
.BI \-i " prefix"
|
||||||
lets you override the default irc path (~/irc)
|
lets you override the default irc path (~/irc)
|
||||||
@ -66,11 +66,11 @@ will be created in the ~/irc/$servername/ directory.
|
|||||||
|
|
||||||
.SH COMMANDS
|
.SH COMMANDS
|
||||||
.TP
|
.TP
|
||||||
.FN /j " #channel/nickname"
|
.FN /j " #channel/nickname [<message>]"
|
||||||
join a channel or open private conversation with user
|
join a channel or open private conversation with user
|
||||||
.TP
|
.TP
|
||||||
.FN /l " #channel"
|
.FN /l " #channel/nickname"
|
||||||
leave a channel
|
leave a channel or query
|
||||||
.TP
|
.TP
|
||||||
.FN /n " nick"
|
.FN /n " nick"
|
||||||
change the nick name
|
change the nick name
|
||||||
@ -79,6 +79,7 @@ change the nick name
|
|||||||
set the topic of a channel
|
set the topic of a channel
|
||||||
.TP
|
.TP
|
||||||
Everything which is not a command will simply be posted into the channel or to the server.
|
Everything which is not a command will simply be posted into the channel or to the server.
|
||||||
|
So if you need /who just write /WHO as described in the RFC to the server in FIFO.
|
||||||
.TP
|
.TP
|
||||||
.FH out file usage
|
.FH out file usage
|
||||||
Write wrappers, pagers or use your tools of choice to display the out file contents (loco, multitail, etc.).
|
Write wrappers, pagers or use your tools of choice to display the out file contents (loco, multitail, etc.).
|
||||||
@ -86,7 +87,7 @@ Write wrappers, pagers or use your tools of choice to display the out file conte
|
|||||||
.TP
|
.TP
|
||||||
Write to ii (at) modprobe (dot) de for suggestions, fixes, 7|-|>< ;) etc.
|
Write to ii (at) modprobe (dot) de for suggestions, fixes, 7|-|>< ;) etc.
|
||||||
.SH AUTHORS
|
.SH AUTHORS
|
||||||
Copyright \(co 2005 by Anselm R. Garbe <garbeam (at) gmail (dot) com> and Nico Golde <nico (at) ngolde (dot) de>
|
Copyright \(co 2005-2007 by Anselm R. Garbe <garbeam (at) gmail (dot) com> and Nico Golde <nico (at) ngolde (dot) de>
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.BR echo (1),
|
.BR echo (1),
|
||||||
.BR tail (1),
|
.BR tail (1),
|
||||||
|
2
ii.c
2
ii.c
@ -49,7 +49,7 @@ static char message[PIPE_BUF]; /* message buf used for communication */
|
|||||||
static void usage() {
|
static void usage() {
|
||||||
fprintf(stderr, "%s",
|
fprintf(stderr, "%s",
|
||||||
"ii - irc it - " VERSION "\n"
|
"ii - irc it - " VERSION "\n"
|
||||||
"(C)opyright MMVI Anselm R. Garbe, Nico Golde\n"
|
"(C)opyright MMV-MMVII Anselm R. Garbe, Nico Golde\n"
|
||||||
"usage: ii [-i <irc dir>] [-s <host>] [-p <port>]\n"
|
"usage: ii [-i <irc dir>] [-s <host>] [-p <port>]\n"
|
||||||
" [-n <nick>] [-k <password>] [-f <fullname>]\n");
|
" [-n <nick>] [-k <password>] [-f <fullname>]\n");
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
|
Loading…
Reference in New Issue
Block a user