Skip to content

Commit

Permalink
Update MAVProxy documentation links
Browse files Browse the repository at this point in the history
  • Loading branch information
stephendade authored and peterbarker committed Jun 19, 2020
1 parent 7b5ea05 commit ac93b53
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions MAVProxy/modules/mavproxy_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, mpstate):
if mp_util.has_wxpython:
self.menu_added_console = False
self.menu = MPMenuSubMenu('Help',
items=[MPMenuItem('MAVProxy website', 'MAVProxy website', '', handler=MPMenuOpenWeblink('http://ardupilot.github.io/MAVProxy/')),
items=[MPMenuItem('MAVProxy website', 'MAVProxy website', '', handler=MPMenuOpenWeblink('https://ardupilot.org/mavproxy/index.html')),
MPMenuItem('Check for Updates', 'Check for Updates', '', handler=MPMenuChildMessageDialog(title="Updates", message=self.newversion)),
MPMenuItem('About', 'About', '', handler=MPMenuChildMessageDialog(title="About MAVProxy", message=self.about_string()))])

Expand Down Expand Up @@ -94,7 +94,7 @@ def cmd_help(self, args):
if args[0] == "about":
print(self.about_string())
elif args[0] == "site":
print("See http://ardupilot.github.io/MAVProxy/ for documentation")
print("See https://ardupilot.org/mavproxy/index.html for documentation")
else:
self.print_usage()

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAVProxy

This is a MAVLink ground station written in python.

Please see http://ardupilot.github.io/MAVProxy/ for more information
Please see https://ardupilot.org/mavproxy/index.html for more information

This ground station was developed as part of the CanberraUAV OBC team
entry
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def package_files(directory):
subdirectory for some example modules. MAVProxy was developed by CanberraUAV
for use in the 2012 Outback Challenge, and includes a module for the
CanberraUAV search and rescue system. See
http://ardupilot.github.io/MAVProxy/ for more information
https://ardupilot.org/mavproxy/index.html for more information
on how to use MAVProxy.''',
url='https://github.com/ArduPilot/MAVProxy',
author='Andrew Tridgell',
Expand Down
6 changes: 3 additions & 3 deletions windows/mavproxy.iss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
; Note MyAppVersion is defined in MAVProxyWinBuild.bat
; #define MyAppVersion {code:GetVersion}
#define MyAppPublisher "Andrew Tridgell"
#define MyAppURL "http://ardupilot.github.io/MAVProxy"
#define MyAppURL "https://ardupilot.org/mavproxy/index.html"
#define MyAppExeName "mavproxy.exe"

[Setup]
Expand Down Expand Up @@ -53,7 +53,7 @@ Source: "..\windows\Startup Examples\MAVProxyMultiOutput.bat"; DestDir: "{app}\E
Name: "{group}\{#MyAppName} (No GUI)"; Filename: "{app}\{#MyAppExeName}"
Name: "{group}\MAVExplorer"; Filename: "{app}\MAVExplorer.exe"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
Name: "{group}\Documentation"; Filename: "http://ardupilot.github.io/MAVProxy/"
Name: "{group}\Documentation"; Filename: "https://ardupilot.org/mavproxy/index.html"
Name: "{group}\Startup Examples"; Filename: "{app}\Examples"
Name: "{group}\Ardupilot MAVProxy Forum"; Filename: "http://discuss.ardupilot.org/c/ground-control-software/mavproxy"
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Parameters: "--map --console --load-module=graph"
Expand Down Expand Up @@ -164,4 +164,4 @@ begin
RemovePath(ExpandConstant('{app}'));
RefreshEnvironment();
end;
end;
end;

0 comments on commit ac93b53

Please sign in to comment.