diff options
author | Joel Rosdahl <joel@rosdahl.net> | 2011-08-21 16:17:57 +0200 |
---|---|---|
committer | Joel Rosdahl <joel@rosdahl.net> | 2011-08-24 22:24:04 +0200 |
commit | 864d13cc3f50417819f6cfe0480c425f0db6b633 (patch) | |
tree | 7d18238e771af54f69be28259c6f1ba87a789f24 | |
parent | 29e494a9f59d651c731816f09664463beae473f4 (diff) | |
download | miniircd-864d13cc3f50417819f6cfe0480c425f0db6b633.tar.gz miniircd-864d13cc3f50417819f6cfe0480c425f0db6b633.zip |
Convert README to markdown
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README | 53 | ||||
-rw-r--r-- | README.md | 50 |
3 files changed, 51 insertions, 54 deletions
@@ -1,6 +1,6 @@ VERSION := $(shell sed -n -e '/version = /{s/version = "\(.*\)"/\1/;p;}' <miniircd) -DISTFILES = miniircd COPYING README +DISTFILES = miniircd COPYING README.md all: echo "Nothing to do." @@ -1,53 +0,0 @@ -miniircd -- A (very) simple Internet Relay Chat (IRC) server ------------------------------------------------------------- - -Description: - - miniircd is a small and limited IRC server written in Python. - Despite its size, it is a functional alternative to a full-blown - ircd for private or internal use. Installation is simple; no - configuration is required. - - Features: - - * Knows about the basic IRC protocol and commands. - * Easy installation. - * No configuration. - * No ident lookup (so that people behind firewalls that filter - the ident port without sending NACK can connect without long - timeouts). - - Limitations: - - * Can't connect to other IRC servers. - * Only knows the most basic IRC commands. - * No IRC operators. - * No channel operators. - * No user or channel modes. - * No reverse DNS lookup. - * No other mechanism to reject clients than requiring a password. - -Requirements: - - Python 2.3 or newer. Get it at http://www.python.org. - -Installation: - - None. Just run "./miniircd --help" (or "python miniircd --help") - to get some help. - -License: - - See COPYING. - -Homepage: - - http://joel.rosdahl.net/projects/#miniircd - -Author: - - Joel Rosdahl <joel@rosdahl.net> - -Thanks to: - - Linus Sjöberg diff --git a/README.md b/README.md new file mode 100644 index 0000000..ecdefbe --- /dev/null +++ b/README.md @@ -0,0 +1,50 @@ +miniircd -- A (very) simple Internet Relay Chat (IRC) server +============================================================ + +Description +----------- + +miniircd is a small and limited IRC server written in Python. Despite its size, +it is a functional alternative to a full-blown ircd for private or internal +use. Installation is simple; no configuration is required. + +Features +-------- + +* Knows about the basic IRC protocol and commands. +* Easy installation. +* No configuration. +* No ident lookup (so that people behind firewalls that filter the ident port + without sending NACK can connect without long timeouts). + +Limitations +----------- + +* Can't connect to other IRC servers. +* Only knows the most basic IRC commands. +* No IRC operators. +* No channel operators. +* No user or channel modes. +* No reverse DNS lookup. +* No other mechanism to reject clients than requiring a password. + +Requirements +------------ + +Python 2.5 or newer. Get it at http://www.python.org. + +Installation +------------ + +None. Just run "./miniircd --help" (or "python miniircd --help") to get some +help. + +License +------- + +GNU General Public License version 2 or later. + +Author +------ + +Joel Rosdahl <joel@rosdahl.net> |