Skip to content

Commit 6befd84

Browse files
committed
Update AskMonty and Atlassian references to MariaDB
1 parent 3c37f35 commit 6befd84

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

Docs/mysql.info

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
MariaDB is in most aspects identical to MySQL.
22

33
Differences between MySQL and MariaDB can be found at:
4-
http://kb.askmonty.org/en/mariadb-versus-mysql-features/
5-
http://kb.askmonty.org/en/mariadb-versus-mysql-compatibility/
4+
https://mariadb.com/kb/en/mariadb-vs-mysql-features/
5+
https://mariadb.com/kb/en/mariadb-vs-mysql-compatibility/
66

77
The MariaDB manual can be found at:
8-
http://kb.askmonty.org/
8+
https://mariadb.com/kb/
99

1010
The MySQL Reference Manual is available in various formats on
1111
http://dev.mysql.com/doc.

INSTALL-SOURCE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Instructions for building MariaDB can be found at:
2-
https://kb.askmonty.org/en/compiling-mariadb-from-source/
2+
https://mariadb.com/kb/en/compiling-mariadb-from-source
33

INSTALL-WIN-SOURCE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Up-to-date instructions about building MariaDB on Windows can be found
2-
at: http://kb.askmonty.org/en/building-mariadb-on-windows
2+
at: https://mariadb.com/kb/en/Building_MariaDB_on_Windows
33

client/mysqlcheck.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,8 +277,8 @@ static void usage(void)
277277
printf("Usage: %s [OPTIONS] database [tables]\n", my_progname);
278278
printf("OR %s [OPTIONS] --databases DB1 [DB2 DB3...]\n",
279279
my_progname);
280-
puts("Please consult the MariaDB/MySQL knowledgebase at");
281-
puts("http://kb.askmonty.org/v/mysqlcheck for latest information about");
280+
puts("Please consult the MariaDB Knowledge Base at");
281+
puts("https://mariadb.com/kb/en/mysqlcheck for latest information about");
282282
puts("this program.");
283283
print_defaults("my", load_default_groups);
284284
puts("");

cmake/cpack_rpm.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ SET(CPACK_RPM_PACKAGE_DESCRIPTION "${CPACK_RPM_PACKAGE_SUMMARY}
4343
It is GPL v2 licensed, which means you can use the it free of charge under the
4444
conditions of the GNU General Public License Version 2 (http://www.gnu.org/licenses/).
4545
46-
MariaDB documentation can be found at http://kb.askmonty.org/
47-
MariaDB bug reports should be submitted through https://mariadb.atlassian.net/
46+
MariaDB documentation can be found at https://mariadb.com/kb
47+
MariaDB bug reports should be submitted through https://jira.mariadb.org
4848
4949
")
5050

debian/copyright

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The MariaDB packages were initally made by http://ourdelta.org/, and
99
are now managed by the MariaDB development team,
1010
1111

12-
MariaDB can be downloaded from http://downloads.askmonty.org/mariadb/
12+
MariaDB can be downloaded from https://downloads.mariadb.org/
1313

1414
Copyright:
1515

include/mysql/service_progress_report.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
if requested.
2323
2424
The functions are documented at
25-
http://kb.askmonty.org/en/progress-reporting#how-to-add-support-for-progress-reporting-to-a-storage-engine
25+
https://mariadb.com/kb/en/progress-reporting/#how-to-add-support-for-progress-reporting-to-a-storage-engine
2626
*/
2727

2828
#ifdef __cplusplus

mysql-test/README

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ All tests must pass. If one or more of them fail on your system, please
1111
read the following manual section for instructions on how to report the
1212
problem:
1313

14-
http://kb.askmonty.org/v/reporting-bugs
14+
https://mariadb.com/kb/en/reporting-bugs
1515

1616
If you want to use an already running MySQL server for specific tests,
1717
use the --extern option to mysql-test-run. Please note that in this mode,

scripts/mysqlaccess.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2422,15 +2422,15 @@ sub Print_Header {
24222422
sub Print_Footer {
24232423
if ($MySQLaccess::CMD) { #command-line mode
24242424
print "\n"
2425-
."BUGs can be reported at https://mariadb.atlassian.net/browse/MDEV\n";
2425+
."BUGs can be reported at https://jira.mariadb.org\n";
24262426
}
24272427
if ($MySQLaccess::CGI) { #CGI-BIN mode
24282428
if ($MySQLaccess::Param{'brief'}) {
24292429
print "</table>\n"; #close table in brief-output
24302430
}
24312431
print "<HR>\n"
24322432
."<ADDRESS>\n"
2433-
."BUGs can be reported at <a href=\"https://mariadb.atlassian.net/browse/MDEV\">MariaDB JIRA</a><BR>\n"
2433+
."BUGs can be reported at <a href=\"https://jira.mariadb.org\">MariaDB JIRA</a><BR>\n"
24342434
# ."Don't forget to mention the version $VERSION!<BR>\n"
24352435
."</ADDRESS>\n"
24362436
."</BODY>\n"

sql/mysql_install_db.cc

+3-3
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ static void die(const char *fmt, ...)
119119
if (verbose_errors)
120120
{
121121
fprintf(stderr,
122-
"http://kb.askmonty.org/v/installation-issues-on-windows contains some help\n"
122+
"https://mariadb.com/kb/en/installation-issues-on-windows contains some help\n"
123123
"for solving the most common problems. If this doesn't help you, please\n"
124-
"leave a comment in the Knowledgebase or file a bug report at\n"
125-
"http://mariadb.org/jira");
124+
"leave a comment in the Knowledge Base or file a bug report at\n"
125+
"https://jira.mariadb.org");
126126
}
127127
fflush(stderr);
128128
va_end(args);

sql/signal_handler.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ extern "C" sig_handler handle_fatal_signal(int sig)
100100
"or misconfigured. This error can also be caused by malfunctioning hardware.\n\n");
101101

102102
my_safe_printf_stderr("%s",
103-
"To report this bug, see http://kb.askmonty.org/en/reporting-bugs\n\n");
103+
"To report this bug, see https://mariadb.com/kb/en/reporting-bugs\n\n");
104104

105105
my_safe_printf_stderr("%s",
106106
"We will try our best to scrape up some info that will hopefully help\n"

0 commit comments

Comments
 (0)