diff --git a/tools/c2man.pl b/tools/c2man.pl index e4056849f73..c736c842b8d 100755 --- a/tools/c2man.pl +++ b/tools/c2man.pl @@ -1,6 +1,6 @@ #! /usr/bin/perl -w # -# Generate API documentation. See http://www.winehq.org/docs/winedev-guide/api-docs for details. +# Generate API documentation. See https://www.winehq.org/docs/winedev-guide/api-docs for details. # # Copyright (C) 2000 Mike McCormack # Copyright (C) 2003 Jon Griffiths @@ -1367,7 +1367,7 @@ sub output_api_header($) if ($opt_output_format eq "h") { print OUTPUT "\n"; - print OUTPUT "\n"; + print OUTPUT "\n"; print OUTPUT "\n\n"; print OUTPUT "\n"; print OUTPUT "\n"; @@ -1394,7 +1394,7 @@ sub output_api_footer($) { print OUTPUT "

Copyright © ".$year." The Wine Project.". " All trademarks are the property of their respective owners.". - " Visit WineHQ for license details.". + " Visit WineHQ for license details.". " Generated $date.

\n\n\n"; } elsif ($opt_output_format eq "s" || $opt_output_format eq "x") @@ -1620,9 +1620,9 @@ sub output_api_comment($) { if ($opt_output_format eq "h") { - # Link to the file in WineHQ cvs - s/^(Implemented in \")(.+?)(\"\.)/$1$2$3 http:\/\/source.winehq.org\/source\/$2/g; - s/^(Declared in \")(.+?)(\"\.)/$1$2$3 http:\/\/source.winehq.org\/source\/include\/$2/g; + # Link to the file in WineHQ git + s/^(Implemented in \")(.+?)(\"\.)/$1$2$3 https:\/\/source.winehq.org\/source\/$2/g; + s/^(Declared in \")(.+?)(\"\.)/$1$2$3 https:\/\/source.winehq.org\/source\/include\/$2/g; } # Highlight strings s/(\".+?\")/$fmt[2]$1$fmt[3]/g;