Browse Source

Update wiki links to use github

Bryan Drewery 6 years ago
parent
commit
fb0d9a0063
7 changed files with 13 additions and 15 deletions
  1. 4 4
      README.md
  2. 1 1
      build/autotools/configure.ac
  3. 1 1
      configure
  4. 1 1
      doc/UPDATES.md
  5. 1 1
      scripts/irssi/wraith.pl
  6. 1 1
      src/binary.cc
  7. 4 6
      src/cmds.cc

+ 4 - 4
README.md

@@ -2,7 +2,7 @@
 
 [![Build Status](https://travis-ci.org/wraith/wraith.png?branch=maint)](https://travis-ci.org/wraith/wraith)
 
-* http://wraith.botpack.net
+* https://github.com/wraith/wraith/wiki
 * http://github.com/wraith/wraith
 * @wraithbotpack
 
@@ -24,7 +24,7 @@ are referenced here.
 For official release announcements send an email to:
   wraith-announce-subscribe@botpack.net
 
-Download: http://wraith.botpack.net/wiki/Download
+Download: https://github.com/wraith/wraith/wiki/Download
 Git: git://github.com/wraith/wraith.git
 
 See git for a list of Contributors: git shortlog -sen master
@@ -32,8 +32,8 @@ See git for a list of Contributors: git shortlog -sen master
 Support:
 * How To Contribute: http://github.com/wraith/wraith/blob/master/CONTRIBUTING.md
 * Getting Started: http://github.com/wraith/wraith/wiki/GettingStarted
-* FAQ: http://wraith.botpack.net/wiki/FrequentlyAskedQuestions
-* Documentation Index: http://wraith.botpack.net/wiki/Documentation
+* FAQ: https://github.com/wraith/wraith/wiki/FrequentlyAskedQuestions
+* Documentation Index: https://github.com/wraith/wraith/wiki/Documentation
 * Issues can be reported at: https://github.com/wraith/wraith/issues
 * #wraith @ EFnet
 

+ 1 - 1
build/autotools/configure.ac

@@ -262,7 +262,7 @@ if [ "$GIT_REQUIRED" = "1" ]; then
     echo ""
     echo "You have downloaded a GIT version of wraith."
     echo "Either 'git clone' from a git repository or download a source tarball"
-    echo "A distribution version can be found at http://wraith.botpack.net/wiki/Download"
+    echo "A distribution version can be found at https://github.com/wraith/wraith/wiki/Download"
     echo ""
     echo ""
     exit 1

+ 1 - 1
configure

@@ -9918,7 +9918,7 @@ if [ "$GIT_REQUIRED" = "1" ]; then
     echo ""
     echo "You have downloaded a GIT version of wraith."
     echo "Either 'git clone' from a git repository or download a source tarball"
-    echo "A distribution version can be found at http://wraith.botpack.net/wiki/Download"
+    echo "A distribution version can be found at https://github.com/wraith/wraith/wiki/Download"
     echo ""
     echo ""
     exit 1

+ 1 - 1
doc/UPDATES.md

@@ -173,7 +173,7 @@
   * Add cmd_newhub for adding a new hub. All bots will add this to their config.
   * Hubs can now be overridden inside the botconfig (-C)
   * Optimize userfile writing by doing it asynchronously
-  * Groups support added. See: http://wraith.botpack.net/wiki/Groups
+  * Groups support added. See: https://github.com/wraith/wraith/wiki/Groups
     * Add [bot]set var 'groups' to configure what groups bots are in
     * Add chanset 'groups' to take a list of groups that should join. 'chanset #chan groups { main backup }'
     * Added group support to 'botcmd': 'botcmd [*|&|?] %group cmd'

+ 1 - 1
scripts/irssi/wraith.pl

@@ -9,7 +9,7 @@ $VERSION = "1.01";
           name        => 'wraith-auth',
           description => 'private auth script for botpack wraith',
           license     => 'ALL?',
-          url         => 'http://wraith.botpack.net/wiki/AuthSystem',
+          url         => 'https://github.com/wraith/wraith/wiki/AuthSystem',
           changed     => '$Date$ ',
 );
 

+ 1 - 1
src/binary.cc

@@ -354,7 +354,7 @@ readcfg(const char *cfgfile, bool read_stdin)
       t.c_lflag &= ~(ECHO | ISIG);
       tty_changed = (tcsetattr (fileno (stdin), TCSAFLUSH | TCSASOFT, &t) == 0);
     }
-    printf(STR("// Paste in your PACKCONFIG. Reference http://wraith.botpack.net/wiki/PackConfig\n"));
+    printf(STR("// Paste in your PACKCONFIG. Reference https://github.com/wraith/wraith/wiki/PackConfig\n"));
     printf(STR("// Press <enter> if it gets hung up. If that doesn't work hit ^D (CTRL+d)\n"));
     fflush(stdout);
   } else {

+ 4 - 6
src/cmds.cc

@@ -427,10 +427,8 @@ static void cmd_about(int idx, char *par)
   dprintf(idx, STR(" * $bMany$b others.\n"));
   dprintf(idx, " \n");
   dprintf(idx, STR("For a list of Contributors see: git shortlog -sen master\n"));
-  dprintf(idx, STR("To Contribute see: http://wraith.botpack.net/wiki/Contributing\n"));
-  dprintf(idx, STR("Credit for suggestions/bugs can be found at: http://wraith.botpack.net/report/9\n"));
-  dprintf(idx, STR("Bugs can be reported at: http://wraith.botpack.net/newticket\n"));
-  dprintf(idx, STR("Bugs can be looked up by #, ie, '#24' in url: http://wraith.botpack.net/ticket/24\n"));
+  dprintf(idx, STR("To Contribute see: https://github.com/wraith/wraith/wiki/Contributing\n"));
+  dprintf(idx, STR("Bugs can be reported at: https://github.com/wraith/wraith/issues\n"));
   dprintf(idx, " \n");
   dprintf(idx, STR("Please support wraith by signing up for a shell at http://www.xzibition.com (coupon 'wraith' for 30%% off)\n"));
   dprintf(idx, " \n");
@@ -727,8 +725,8 @@ static void cmd_help(int idx, char *par)
   } else if (!fnd) {
     dprintf(idx, "No match for '%s'.\n", match);
   }
-  dprintf(idx, "FAQ: http://wraith.botpack.net/wiki/FrequentlyAskedQuestions\n");
-  dprintf(idx, "Documentation: http://wraith.botpack.net/wiki/Documentation\n");
+  dprintf(idx, "FAQ: https://github.com/wraith/wraith/wiki/FrequentlyAskedQuestions\n");
+  dprintf(idx, "Documentation: https://github.com/wraith/wraith/wiki/Documentation\n");
 }
 
 static void cmd_addlog(int idx, char *par)