diff --git a/configure b/configure index 17ceef6..ee5194b 100755 --- a/configure +++ b/configure @@ -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 . -logkeys home page: . +logkeys home page: . _ACEOF ac_status=$? fi @@ -5087,7 +5087,7 @@ Configuration commands: $config_commands Report bugs to . -logkeys home page: ." +logkeys home page: ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 diff --git a/configure.ac b/configure.ac index 32d0f2b..b8106b3 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/src/args.cc b/src/args.cc index e7c5741..fc1a316 100644 --- a/src/args.cc +++ b/src/args.cc @@ -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_ diff --git a/src/keytables.cc b/src/keytables.cc index f2f855e..2ec5dad 100644 --- a/src/keytables.cc +++ b/src/keytables.cc @@ -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_ diff --git a/src/llk.cc b/src/llk.cc index 2ec2d89..225dcdf 100644 --- a/src/llk.cc +++ b/src/llk.cc @@ -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 diff --git a/src/llkk.cc b/src/llkk.cc index 50d43ae..a11dc70 100644 --- a/src/llkk.cc +++ b/src/llkk.cc @@ -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 diff --git a/src/logkeys.cc b/src/logkeys.cc index c683fd3..58bf5b8 100644 --- a/src/logkeys.cc +++ b/src/logkeys.cc @@ -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 diff --git a/src/upload.cc b/src/upload.cc index 1549f7c..0a3536e 100644 --- a/src/upload.cc +++ b/src/upload.cc @@ -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"; diff --git a/src/usage.cc b/src/usage.cc index be47678..c734614 100644 --- a/src/usage.cc +++ b/src/usage.cc @@ -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: \n" +"logkeys homepage: \n" ); }