mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
general: Fix broken links.
This fixes a number of broken links throughout the tree, mostly caused by wiki.asterisk.org being replaced with docs.asterisk.org, which should eliminate the need for sporadic fixes as inf28047db36
. Resolves: #430 (cherry picked from commit8f5581b0d0
)
This commit is contained in:
committed by
Asterisk Development Team
parent
98a44b95df
commit
91127a618f
@@ -468,7 +468,7 @@ int ast_yyerror (const char *s, yyltype *loc, struct parse_io *parseio )
|
||||
(extra_error_message_supplied ? extra_error_message : ""), s2, parseio->string, spacebuf);
|
||||
#endif
|
||||
#ifndef STANDALONE
|
||||
ast_log(LOG_WARNING,"If you have questions, please refer to https://wiki.asterisk.org/wiki/display/AST/Channel+Variables\n");
|
||||
ast_log(LOG_WARNING,"If you have questions, please refer to https://docs.asterisk.org/Configuration/Dialplan/Variables/Channel-Variables/\n");
|
||||
#endif
|
||||
free(s2);
|
||||
return(0);
|
||||
|
@@ -2604,7 +2604,7 @@ int ast_yyerror (const char *s, yyltype *loc, struct parse_io *parseio )
|
||||
(extra_error_message_supplied ? extra_error_message : ""), s2, parseio->string, spacebuf);
|
||||
#endif
|
||||
#ifndef STANDALONE
|
||||
ast_log(LOG_WARNING,"If you have questions, please refer to https://wiki.asterisk.org/wiki/display/AST/Channel+Variables\n");
|
||||
ast_log(LOG_WARNING,"If you have questions, please refer to https://docs.asterisk.org/Configuration/Dialplan/Variables/Channel-Variables/\n");
|
||||
#endif
|
||||
free(s2);
|
||||
return(0);
|
||||
|
@@ -70,8 +70,8 @@
|
||||
/*!
|
||||
* \page asterisk_community_resources Asterisk Community Resources
|
||||
* \par Websites
|
||||
* \li http://www.asterisk.org Asterisk Homepage
|
||||
* \li http://wiki.asterisk.org Asterisk Wiki
|
||||
* \li https://www.asterisk.org Asterisk Homepage
|
||||
* \li https://docs.asterisk.org Asterisk documentation
|
||||
*
|
||||
* \par Mailing Lists
|
||||
* \par
|
||||
|
@@ -23,7 +23,7 @@
|
||||
* \author Mark Spencer <markster@digium.com>
|
||||
*
|
||||
* Includes the Asterisk Realtime API - ARA
|
||||
* See http://wiki.asterisk.org
|
||||
* See https://docs.asterisk.org
|
||||
*/
|
||||
|
||||
/*** MODULEINFO
|
||||
|
@@ -467,7 +467,7 @@ void pbx_live_dangerously(int new_live_dangerously)
|
||||
{
|
||||
if (new_live_dangerously && !live_dangerously) {
|
||||
ast_log(LOG_WARNING, "Privilege escalation protection disabled!\n"
|
||||
"See https://wiki.asterisk.org/wiki/x/1gKfAQ for more details.\n");
|
||||
"See https://docs.asterisk.org/Configuration/Dialplan/Privilege-Escalations-with-Dialplan-Functions/ for more details.\n");
|
||||
}
|
||||
|
||||
if (!new_live_dangerously && live_dangerously) {
|
||||
|
@@ -288,8 +288,8 @@
|
||||
* \par Subscriber shutdown sequencing
|
||||
*
|
||||
* Subscribers are sensitive to shutdown sequencing, specifically in how the
|
||||
* reference message types. This is fully detailed on the wiki at
|
||||
* https://wiki.asterisk.org/wiki/x/K4BqAQ.
|
||||
* reference message types. This is fully detailed in the documentation at
|
||||
* https://docs.asterisk.org/Development/Roadmap/Asterisk-12-Projects/Asterisk-12-API-Improvements/Stasis-Message-Bus/Using-the-Stasis-Message-Bus/Stasis-Subscriber-Shutdown-Problem/.
|
||||
*
|
||||
* In short, the lifetime of the \a data (and \a callback, if in a module) must
|
||||
* be held until the stasis_subscription_final_message() has been received.
|
||||
|
Reference in New Issue
Block a user