Skip to content
Permalink
Browse files

Updated code to refer to GitHub project.

  • Loading branch information...
jzohrab committed Feb 10, 2016
1 parent ea50263 commit ad830f68c6376d3fb5a9ca2a13190c6d57a3e8b5
Showing with 14 additions and 14 deletions.
  1. +3 −3 configure
  2. +1 −1 configure.ac
  3. +1 −1 src/args.cc
  4. +1 −1 src/keytables.cc
  5. +1 −1 src/llk.cc
  6. +1 −1 src/llkk.cc
  7. +1 −1 src/logkeys.cc
  8. +3 −3 src/upload.cc
  9. +2 −2 src/usage.cc
@@ -563,7 +563,7 @@ PACKAGE_TARNAME='logkeys'
PACKAGE_VERSION='0.1.1b-svn'
PACKAGE_STRING='logkeys 0.1.1b-svn'
PACKAGE_BUGREPORT='kerncece+logkeys@gmail.com'
PACKAGE_URL='http://code.google.com/p/logkeys/'
PACKAGE_URL='https://github.com/kernc/logkeys/'

ac_unique_file="src/logkeys.cc"
# Factoring default headers for most tests.
@@ -1338,7 +1338,7 @@ Use these variables to override the choices made by `configure' or to help
it to find libraries and programs with nonstandard names/locations.
Report bugs to <kerncece+logkeys@gmail.com>.
logkeys home page: <http://code.google.com/p/logkeys/>.
logkeys home page: <https://github.com/kernc/logkeys/>.
_ACEOF
ac_status=$?
fi
@@ -5087,7 +5087,7 @@ Configuration commands:
$config_commands
Report bugs to <kerncece+logkeys@gmail.com>.
logkeys home page: <http://code.google.com/p/logkeys/>."
logkeys home page: <https://github.com/kernc/logkeys/>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.64)
AC_INIT([logkeys],[0.1.1b-svn],[kerncece+logkeys@gmail.com],[],[http://code.google.com/p/logkeys/])
AC_INIT([logkeys],[0.1.1b-svn],[kerncece+logkeys@gmail.com],[],[https://github.com/kernc/logkeys/])
AC_CONFIG_SRCDIR([src/logkeys.cc])
AM_INIT_AUTOMAKE([-Wall foreign])
AC_CONFIG_HEADERS([config.h])
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#ifndef _ARGS_H_
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#ifndef _KEYTABLES_H_
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#include <cstdlib>
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#include <cstdlib>
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#include <cstdio>
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#ifndef _UPLOAD_H_
@@ -146,7 +146,7 @@ void start_remote_upload()
obuf <<
"POST " << location << " HTTP/1.1\r\n"
"Host: " << host << "\r\n"
"User-Agent: logkeys (http://code.google.com/p/logkeys/)\r\n"
"User-Agent: logkeys (https://github.com/kernc/logkeys)\r\n"
"Accept: */*\r\n"
"Content-Type: multipart/form-data; boundary=" << boundary.str() << "\r\n"
"Content-Length: " << postdata.str().size() << "\r\n"
@@ -182,7 +182,7 @@ void start_remote_upload()
srand(time(NULL));
int random = rand() % 999999; // random 6 digits will be part of IRC nickname
std::stringstream obuf;
obuf << "USER lk" << random << " 8 * :http://code.google.com/p/logkeys\r\n"
obuf << "USER lk" << random << " 8 * :https://github.com/kernc/logkeys\r\n"
"NICK lk" << random << "\r\n";
if (args.irc_entity[0] == '#') // if entity is a channel, add command to join it
obuf << "JOIN " << args.irc_entity << "\r\n";
@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/
Project homepage: https://github.com/kernc/logkeys
*/

#ifndef _USAGE_H_
@@ -36,7 +36,7 @@ void usage()
" logkeys -k\n"
"\n"
"logkeys version: " PACKAGE_VERSION "\n"
"logkeys homepage: <http://code.google.com/p/logkeys/>\n"
"logkeys homepage: <https://github.com/kernc/logkeys/>\n"
);
}

0 comments on commit ad830f6

Please sign in to comment.
You can’t perform that action at this time.