diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/.gitignore | 1 | ||||
| -rw-r--r-- | doc/Capabilities.txt | 4 | ||||
| -rw-r--r-- | doc/Commands.txt | 2 | ||||
| -rw-r--r-- | doc/Contributing.txt | 8 | ||||
| -rw-r--r-- | doc/FAQ.txt | 8 | ||||
| -rw-r--r-- | doc/GIT.txt | 65 | ||||
| -rw-r--r-- | doc/Makefile.am | 3 | ||||
| -rw-r--r-- | doc/src/.gitignore | 1 |
8 files changed, 15 insertions, 77 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/Capabilities.txt b/doc/Capabilities.txt index d26b8403..0f160edd 100644 --- a/doc/Capabilities.txt +++ b/doc/Capabilities.txt @@ -13,7 +13,7 @@ This document lists and describes the "IRC capabilities" that ngIRCd supports and can be requested by a IRC/IRCv3 client that supports the "CAP" command. ngIRCd implements the "IRC Client Capabilities Extension" as described here: -<http://www.leeh.co.uk/draft-mitchell-irc-capabilities-02.html> +<http://ircv3.net/specs/core/capability-negotiation-3.1.html> I. Supported Capabilities @@ -25,4 +25,4 @@ I. Supported Capabilities server to send all possible prefixes which apply to a user in NAMES and WHO output. - See <http://ircv3.atheme.org/extensions/multi-prefix-3.1>. + See <http://ircv3.net/specs/extensions/multi-prefix-3.1.html>. diff --git a/doc/Commands.txt b/doc/Commands.txt index e4f00904..50a52d58 100644 --- a/doc/Commands.txt +++ b/doc/Commands.txt @@ -78,7 +78,7 @@ Connection Handling Commands like this: "CAP REQ :capability1 capability2 capability3" for example. References: - - <http://ircv3.atheme.org/specification/capability-negotiation-3.1> + - <http://ircv3.net/specs/core/capability-negotiation-3.1.html> - <http://ngircd.barton.de/doc/Capabilities.txt> - doc/Capabilities.txt 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/FAQ.txt b/doc/FAQ.txt index 79ca2d72..ea260218 100644 --- a/doc/FAQ.txt +++ b/doc/FAQ.txt @@ -99,11 +99,11 @@ IV. Bugs!? ~~~~~~~~~~ Q: Is there a list of known bugs and desired feature enhancements? -A: Yes. Have a look at the bug tracking system (Bugzilla) for ngIRCd located - at <http://ngircd.barton.de/bugzilla/index.cgi>. There you can file bug +A: Yes. Have a look at the bug tracking system (Github issues) for ngIRCd located + at <https://github.com/ngircd/ngircd/issues>. There you can file bug reports and feature requests as well as search the bug database. Q: What should I do if I found a bug? -A: Please file a bug report at <http://ngircd.barton.de/bugzilla/index.cgi>! - The author of the particular component will be notified automagically :-) +A: Please file a bug report at <https://github.com/ngircd/ngircd/issues/new>! + The author will be notified automagically :-) 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/src/.gitignore b/doc/src/.gitignore deleted file mode 100644 index 1936cc1d..00000000 --- a/doc/src/.gitignore +++ /dev/null @@ -1 +0,0 @@ -html |