diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/.gitignore | 1 | ||||
| -rw-r--r-- | doc/Contributing.txt | 8 | ||||
| -rw-r--r-- | doc/GIT.txt | 65 | ||||
| -rw-r--r-- | doc/Makefile.am | 3 | ||||
| -rw-r--r-- | doc/Modes.txt | 1 | ||||
| -rw-r--r-- | doc/src/.gitignore | 1 |
6 files changed, 9 insertions, 70 deletions
diff --git a/doc/.gitignore b/doc/.gitignore deleted file mode 100644 index 0035855c..00000000 --- a/doc/.gitignore +++ /dev/null @@ -1 +0,0 @@ -sample-ngircd.conf diff --git a/doc/Contributing.txt b/doc/Contributing.txt index 089afd4c..677a1b80 100644 --- a/doc/Contributing.txt +++ b/doc/Contributing.txt @@ -2,7 +2,7 @@ ngIRCd - Next Generation IRC Server http://ngircd.barton.de/ - (c)2001-2011 Alexander Barton and Contributors. + (c)2001-2015 Alexander Barton and Contributors. ngIRCd is free software and published under the terms of the GNU General Public License. @@ -52,3 +52,9 @@ get an idea of how to do it the best :-) And this is open source, your work must not be 100% finished and perfect, work in progress is interesting, too: "release early, release often"! + +- Use GitHub to create "Pull Requests" + + ngIRCd is hosted on GitHub (<https://github.com/ngircd>), so please use the + tools available there and open issues (comment!) and create pull requests! + See <https://help.github.com/articles/using-pull-requests/> for details. diff --git a/doc/GIT.txt b/doc/GIT.txt deleted file mode 100644 index f3b2e63c..00000000 --- a/doc/GIT.txt +++ /dev/null @@ -1,65 +0,0 @@ - - ngIRCd - Next Generation IRC Server - http://ngircd.barton.de/ - - (c)2001-2011 Alexander Barton and Contributors. - ngIRCd is free software and published under the - terms of the GNU General Public License. - - -- GIT.txt -- - - -The source code of ngIRCd is maintained using GIT, an distributed version -control system. Homepage including documentation: <http://git-scm.com/>. - - -I. Viewing the source code online -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The ngIRCd "GITweb" interface allows you to browse the GIT repository and -to see all individual files, tags, branches, commits etc.: - - <http://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git> - - -II. Getting the source code -~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -To access (copy, clone) the source tree repository anonymously, run: - - $ git clone git://ngircd.barton.de/ngircd.git - -Thereby a new folder "ngircd" will be created containing all the individual -source files. - -The newly created directory ("ngircd") is the "working directory", all -GIT commands will be executed from within this directory in the future. - -Please note: When checking out a fresh copy of ngIRCd using GIT, the -configure script doesn't exist; you have to run the autogen.sh shell script -(which is included in the source tree) to generate it. This requires you to -have GNU automake and GNU autoconf installed on your system. Please see the -file INSTALL for details! - -To update the local GIT repository: - - $ git pull - -This retrieves all changes and merges them into the current branch. - - -III. Contributing -~~~~~~~~~~~~~~~~~ - -Patches should be sent to the ngircd mailing list. List homepage: -http://arthur.barton.de/mailman/listinfo/ngircd-ml - -If you do not want to send them to the list, you can also mail them -to Alex Barton, <alex@barton.de>. - - -IV. Write Access -~~~~~~~~~~~~~~~~ - -If you want to contribute a couple of patches and write access to the GIT -repository would be handy, please contact Alex Barton, <alex@barton.de>. diff --git a/doc/Makefile.am b/doc/Makefile.am index 27942dd3..5913c94e 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,6 +1,6 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2013 Alexander Barton (alex@barton.de) and Contributors +# Copyright (c)2001-2015 Alexander Barton (alex@barton.de) and Contributors # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -23,7 +23,6 @@ static_docs = \ Commands.txt \ Contributing.txt \ FAQ.txt \ - GIT.txt \ HowToRelease.txt \ Modes.txt \ PAM.txt \ diff --git a/doc/Modes.txt b/doc/Modes.txt index 07f16eb0..d2f6dad7 100644 --- a/doc/Modes.txt +++ b/doc/Modes.txt @@ -56,6 +56,7 @@ users to lists (e.g. "invite list", "ban list"), others have parameters m 0.3.0 Channel is moderated, only "voiced" users can send messages. M 20 Only registered users (and IRC Ops) can send messages. n 0.3.0 Channel doesn't allow messages of users not being members. + N 23 Users can't change their nickname while on this channel. O 18 Only IRC operators are allowed to join this channel. P 0.5.0 Channel is "persistent". Q 20 Nobody can be kicked from the channel. diff --git a/doc/src/.gitignore b/doc/src/.gitignore deleted file mode 100644 index 1936cc1d..00000000 --- a/doc/src/.gitignore +++ /dev/null @@ -1 +0,0 @@ -html |