Commit ad830f68 authored by Jeff Zohrab's avatar Jeff Zohrab

Updated code to refer to GitHub project.

parent ea502639
...@@ -563,7 +563,7 @@ PACKAGE_TARNAME='logkeys' ...@@ -563,7 +563,7 @@ PACKAGE_TARNAME='logkeys'
PACKAGE_VERSION='0.1.1b-svn' PACKAGE_VERSION='0.1.1b-svn'
PACKAGE_STRING='logkeys 0.1.1b-svn' PACKAGE_STRING='logkeys 0.1.1b-svn'
PACKAGE_BUGREPORT='kerncece+logkeys@gmail.com' 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" ac_unique_file="src/logkeys.cc"
# Factoring default headers for most tests. # Factoring default headers for most tests.
...@@ -1338,7 +1338,7 @@ Use these variables to override the choices made by `configure' or to help ...@@ -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. it to find libraries and programs with nonstandard names/locations.
Report bugs to <kerncece+logkeys@gmail.com>. 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 _ACEOF
ac_status=$? ac_status=$?
fi fi
...@@ -5087,7 +5087,7 @@ Configuration commands: ...@@ -5087,7 +5087,7 @@ Configuration commands:
$config_commands $config_commands
Report bugs to <kerncece+logkeys@gmail.com>. 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 _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ(2.64) 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]) AC_CONFIG_SRCDIR([src/logkeys.cc])
AM_INIT_AUTOMAKE([-Wall foreign]) AM_INIT_AUTOMAKE([-Wall foreign])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#ifndef _ARGS_H_ #ifndef _ARGS_H_
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#ifndef _KEYTABLES_H_ #ifndef _KEYTABLES_H_
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#include <cstdlib> #include <cstdlib>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#include <cstdlib> #include <cstdlib>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#include <cstdio> #include <cstdio>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#ifndef _UPLOAD_H_ #ifndef _UPLOAD_H_
...@@ -146,7 +146,7 @@ void start_remote_upload() ...@@ -146,7 +146,7 @@ void start_remote_upload()
obuf << obuf <<
"POST " << location << " HTTP/1.1\r\n" "POST " << location << " HTTP/1.1\r\n"
"Host: " << host << "\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" "Accept: */*\r\n"
"Content-Type: multipart/form-data; boundary=" << boundary.str() << "\r\n" "Content-Type: multipart/form-data; boundary=" << boundary.str() << "\r\n"
"Content-Length: " << postdata.str().size() << "\r\n" "Content-Length: " << postdata.str().size() << "\r\n"
...@@ -182,7 +182,7 @@ void start_remote_upload() ...@@ -182,7 +182,7 @@ void start_remote_upload()
srand(time(NULL)); srand(time(NULL));
int random = rand() % 999999; // random 6 digits will be part of IRC nickname int random = rand() % 999999; // random 6 digits will be part of IRC nickname
std::stringstream obuf; 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"; "NICK lk" << random << "\r\n";
if (args.irc_entity[0] == '#') // if entity is a channel, add command to join it if (args.irc_entity[0] == '#') // if entity is a channel, add command to join it
obuf << "JOIN " << args.irc_entity << "\r\n"; obuf << "JOIN " << args.irc_entity << "\r\n";
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
This program is free software. It comes with absolutely no warranty whatsoever. This program is free software. It comes with absolutely no warranty whatsoever.
See COPYING for further information. See COPYING for further information.
Project homepage: http://code.google.com/p/logkeys/ Project homepage: https://github.com/kernc/logkeys
*/ */
#ifndef _USAGE_H_ #ifndef _USAGE_H_
...@@ -36,7 +36,7 @@ void usage() ...@@ -36,7 +36,7 @@ void usage()
" logkeys -k\n" " logkeys -k\n"
"\n" "\n"
"logkeys version: " PACKAGE_VERSION "\n" "logkeys version: " PACKAGE_VERSION "\n"
"logkeys homepage: <http://code.google.com/p/logkeys/>\n" "logkeys homepage: <https://github.com/kernc/logkeys/>\n"
); );
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment