Skip to content

Commit 9a330ba

Browse files
committed
HTTP -> HTTPS conversion for several links
The following domains support HTTPS, so I've converted links: code.dlang.org dlang.org forum.dlang.org issues.dlang.org wiki.dlang.org bitbucket.org creativecommons.org docs.oracle.com docs.sun.com en.wikipedia.org github.com goo.gl google.com groups.google.com i.creativecommons.org msdn.microsoft.com stackoverflow.com twitter.com w3.org www.amazon.com www.gnu.org www.w3.org
1 parent 669359f commit 9a330ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+129
-129
lines changed

32-64-portability.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Ddoc
33
$(SPEC_S $(TITLE),
44

55
This page has been moved to
6-
$(LINK2 http://wiki.dlang.org/Porting_32_Bit_Code_to_64_Bits, http://wiki.dlang.org/Porting_32_Bit_Code_to_64_Bits)
6+
$(LINK2 https://wiki.dlang.org/Porting_32_Bit_Code_to_64_Bits, https://wiki.dlang.org/Porting_32_Bit_Code_to_64_Bits)
77

88
)
99

COM.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Ddoc
33
$(SPEC_S COM Programming,
44

55
This page has been moved to
6-
$(LINK2 http://wiki.dlang.org/COM_Programming, http://wiki.dlang.org/COM_Programming)
6+
$(LINK2 https://wiki.dlang.org/COM_Programming, https://wiki.dlang.org/COM_Programming)
77

88
)
99

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
![D Logo](http://dlang.org/images/dlogo.svg) D Language Website
1+
![D Logo](https://dlang.org/images/dlogo.svg) D Language Website
22
===============================================================
33

44
This repository contains the source files for the [D Language
5-
Website](http://dlang.org), including the language specifications,
5+
Website](https://dlang.org), including the language specifications,
66
documentation, and some articles.
77

88
* [Bugzilla bug tracker](https://issues.dlang.org/)
9-
* [Forum](http://forum.dlang.org/)
10-
* [Wiki](http://wiki.dlang.org/)
9+
* [Forum](https://forum.dlang.org/)
10+
* [Wiki](https://wiki.dlang.org/)
1111

1212
If you wish to contribute to the website or language documentation, please see
1313
the [CONTRIBUTING.md file] (CONTRIBUTING.md).

articles.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Ddoc
33
$(D_S Articles,
44
$(P
55
More articles can be found on the corresponding
6-
$(LINK2 http://wiki.dlang.org/Articles, wiki page).
6+
$(LINK2 https://wiki.dlang.org/Articles, wiki page).
77
)
88

99
$(DIVC boxes,

bugstats.php.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ $(D_S Bug tracker,
55
$(P
66
We use $(B Bugzilla) to track the issues for the D programming language.
77
$(BR)
8-
The home of the D issue tracker is: $(B $(LINK http://issues.dlang.org))
8+
The home of the D issue tracker is: $(B $(LINK https://issues.dlang.org))
99
)
1010

1111
$(P

changelog/2.062.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ $(LI $(BUGZILLA 8574): [std.format] The flag ' ' works for floating numbers, not
322322
$(LI $(BUGZILLA 8619): Tuples article uses writefln instead of writeln)
323323
$(LI $(BUGZILLA 9321): Dead link to HTML5 standard in language specification)
324324
$(LI $(BUGZILLA 9394): ABI for static arrays is outdated)
325-
$(LI $(BUGZILLA 9446): ".keys" missing from properties table at http://dlang.org/hash-map.html)
325+
$(LI $(BUGZILLA 9446): ".keys" missing from properties table at https://dlang.org/hash-map.html)
326326
$(LI $(BUGZILLA 9503): [grammar] template declaration/instance must take one or more arguments?)
327327
)
328328

changelog/2.065.0.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ $(LI $(LEGACY_LNAME2 large_address_aware, large-address-aware, Added /LARGEADDRE
508508
$(P When using the default Optlink linker on win32 (for linking 32-bit object files and executables),
509509
the $(B /LARGEADDRESSAWARE) option tells the linker that the application can handle addresses
510510
larger than 2 gigabytes. This is equivalent to Visual C's
511-
$(LINK2 http://msdn.microsoft.com/en-us/library/wz223b1z.aspx, linker option) of the same name since
511+
$(LINK2 https://msdn.microsoft.com/en-us/library/wz223b1z.aspx, linker option) of the same name since
512512
this is an operating-system feature that is enabled by setting a specific flag in the executable.
513513
)
514514
)

changelog/2.066.0.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,7 @@ $(LI $(BUGZILLA 12538): ZeroBUGS links are broken)
11611161
$(LI $(BUGZILLA 12607): Document that IUnknown classes must mark toString with extern$(LPAREN)D$(RPAREN) when overriding it)
11621162
$(LI $(BUGZILLA 12623): Special lexing case not mentioned in language spec)
11631163
$(LI $(BUGZILLA 12740): DMD accepts invalid version syntax)
1164-
$(LI $(BUGZILLA 13012): Open bugs chart is missing from http://dlang.org/bugstats.php)
1164+
$(LI $(BUGZILLA 13012): Open bugs chart is missing from https://dlang.org/bugstats.php)
11651165
)
11661166
)
11671167
$(BUGSTITLE Website enhancements,

changelog/2.067.0.dd

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ $(LI $(LNAME2 sealed-references, Sealed references were added $(LPAREN)DIP25$(RP
8282
ref T hun(T)(ref T a) { return a; } // FINE, templates use deduction
8383
--------
8484

85-
$(P See $(LINK2 http://wiki.dlang.org/DIP25, DIP25) for more details.)
85+
$(P See $(LINK2 https://wiki.dlang.org/DIP25, DIP25) for more details.)
8686
)
8787

8888
$(LI $(LNAME2 with-statement-8269, The with statement now observes temporary object lifetime)
8989

90-
$(P A longstanding $(LINK2 https://issues.dlang.org/show_bug.cgi?id=8269, bug) of the with statement was fixed which prevented the idiomatic use of $(LINK2 http://wiki.dlang.org/Commonly-Used_Acronyms,RAII) values.)
90+
$(P A longstanding $(LINK2 https://issues.dlang.org/show_bug.cgi?id=8269, bug) of the with statement was fixed which prevented the idiomatic use of $(LINK2 https://wiki.dlang.org/Commonly-Used_Acronyms,RAII) values.)
9191

9292
--------
9393
with (File("output.log", "w"))
@@ -810,7 +810,7 @@ $(LI $(BUGZILLA 13538): Divide old C style syntax from D style grammar rule)
810810
$(LI $(BUGZILLA 13547): "D is a fully garbage collected language")
811811
$(LI $(BUGZILLA 13648): ddoc problem with std.random.uniform01)
812812
$(LI $(BUGZILLA 13664): Grammar does not allow @<template_instance> UDAs)
813-
$(LI $(BUGZILLA 13671): http://dlang.org/const3.html incorrectly calls type qualifiers "type constructors")
813+
$(LI $(BUGZILLA 13671): https://dlang.org/const3.html incorrectly calls type qualifiers "type constructors")
814814
$(LI $(BUGZILLA 13696): Missing entry for unicode code point literals on the lexer page)
815815
$(LI $(BUGZILLA 13895): Declaration grammar is insufficient)
816816
$(LI $(BUGZILLA 13941): NewExpression grammar is insufficient)

changelog/2.068.0.dd

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $(LI $(RELATIVE_LINK2 fix14828-warning, $(RED Warning:) Change in helper functio
99
$(LI $(RELATIVE_LINK2 profile-gc, The new `-profile=gc` switch enables profiling memory allocation.))
1010
$(LI $(RELATIVE_LINK2 lex-only-unittest, `unittest` blocks no longer parsed unless `-unittest` is specified.))
1111
$(LI Compiler generated inclusive destructor and postblit functions for
12-
$(LINK2 http://wiki.dlang.org/Commonly-Used_Acronyms, UDTs) are now
12+
$(LINK2 https://wiki.dlang.org/Commonly-Used_Acronyms, UDTs) are now
1313
accessible as `.__xdtor` and `.__xpostblit`, see $(DMDPR 4650).)
1414
)
1515

@@ -174,7 +174,7 @@ $(LI $(LNAME2 index-type-followed-ident, Indexed type tuples can now be followed
174174

175175
$(LI $(LNAME2 ifti-from-default-arg, Support template parameter deduction from function default arguments:)
176176

177-
$(P When performing $(LINK2 http://wiki.dlang.org/Commonly-Used_Acronyms,
177+
$(P When performing $(LINK2 https://wiki.dlang.org/Commonly-Used_Acronyms,
178178
IFTI) templated types can now be deduced from a parameter's default argument.
179179
This avoids a redundant and error prone declaration of the default type.
180180
)

changelog/2.069.0.dd

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $(LI $(XREF traits, getSymbolsByUDA) was
3131
added to find symbols with specific user-defined attributes.)
3232
$(LI $(XREF math, cmp) was added, defining total ordering on
3333
floating-point numbers, including NaN.)
34-
$(LI FreeBSD now also ships with a shared libphobos2.so library ($(LINK2 http://dlang.org/dll-linux.html, usage info)).)
34+
$(LI FreeBSD now also ships with a shared libphobos2.so library ($(LINK2 https://dlang.org/dll-linux.html, usage info)).)
3535
)
3636

3737
$(BR)$(BIG $(RELATIVE_LINK2 bugfix-list, List of all bug fixes and enhancements in D 2.069.0.))
@@ -150,7 +150,7 @@ $(LI $(LNAME2 curl-dynamic-loading, libcurl is now loaded dynamically)
150150

151151
$(P To make this work you have to link with $(I --export-dynamic) respectively
152152
use a $(I .DEF) file on Windows (see $(LINK2
153-
http://wiki.dlang.org/Curl_on_Windows#Using_the_static_lib, wiki) for
153+
https://wiki.dlang.org/Curl_on_Windows#Using_the_static_lib, wiki) for
154154
more info on the latter).
155155
)
156156
)

cppcontracts.dd

+2-2
Original file line numberDiff line numberDiff line change
@@ -480,13 +480,13 @@ $(H2 References)
480480

481481
$(P Chapter C.11 introduces the theory and rationale of
482482
Contract Programming in
483-
<a href="http://www.amazon.com/exec/obidos/ASIN/0136291554/classicempire">
483+
<a href="https://www.amazon.com/exec/obidos/ASIN/0136291554/classicempire">
484484
Object-Oriented Software Construction
485485
</a><br>
486486
Bertrand Meyer, Prentice Hall)
487487

488488
$(P Chapters 24.3.7.1 to 24.3.7.3 discuss Contract Programming in C++ in
489-
<a href="http://www.amazon.com/exec/obidos/ASIN/0201700735/classicempire">
489+
<a href="https://www.amazon.com/exec/obidos/ASIN/0201700735/classicempire">
490490
The C++ Programming Language Special Edition
491491
</a><br>
492492
Bjarne Stroustrup, Addison-Wesley)

cppstrings.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ int main (char[][] args)
384384
$(P
385385
Two people have written C++ implementations using the C++ standard
386386
template library,
387-
<a href="http://groups.google.com/group/comp.lang.c++.moderated/msg/58b6b8710ecc82e9">wccpp1</a>
387+
<a href="https://groups.google.com/group/comp.lang.c++.moderated/msg/58b6b8710ecc82e9">wccpp1</a>
388388
and
389389
$(RELATIVE_LINK2 wccpp2, wccpp2).
390390
The input file

cpptod.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ $(H3 <a name="typetraits">Type Traits</a>)
755755
$(H4 The C++ Way)
756756

757757
The following template comes from
758-
<a href="http://www.amazon.com/exec/obidos/ASIN/0201734842/ref=ase_classicempire/102-2957199-2585768">
758+
<a href="https://www.amazon.com/exec/obidos/ASIN/0201734842/ref=ase_classicempire/102-2957199-2585768">
759759
C++ Templates: The Complete Guide, David Vandevoorde, Nicolai M. Josuttis</a>
760760
pg. 353 which determines if the template's argument type
761761
is a function:

ctarguments.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ $(D_S Compile-time Argument Lists,
1313
commonly exist in other languages. Sequences of values of different types that can be
1414
returned from functions are provided by $(LINK2 phobos/std_typecons.html#.Tuple, std.typecons.Tuple).
1515
Using term "tuple" to mean compile-time lists is discouraged to avoid confusion, and if encountered
16-
should result in a $(LINK2 http://issues.dlang.org, documentation bug report).
16+
should result in a $(LINK2 https://issues.dlang.org, documentation bug report).
1717
)
1818

1919
$(P Consider this simple snippet:)

d-array-article.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ $(P Whether you are a seasoned programmer or a novice, the array and slice conce
238238
$(P $(I Thanks to David Gileadi, Andrej Mitrovic, Jesse Phillips, Alex Dovhal, Johann !MacDonagh, and Jonathan Davis for their reviews and suggestions for this article))
239239

240240
&copy; 2011-2012 by Steven Schveighoffer <br>
241-
<a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nd/3.0/88x31.png"></a><br>This <span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" rel="dct:type">work</span> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/">Creative Commons Attribution-NoDerivs 3.0 Unported License</a>.
241+
<a rel="license" href="https://creativecommons.org/licenses/by-nd/3.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nd/3.0/88x31.png"></a><br>This <span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" rel="dct:type">work</span> is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nd/3.0/">Creative Commons Attribution-NoDerivs 3.0 Unported License</a>.
242242

243243
)
244244

d-floating-point.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ $(H2 References and Further Reading)
308308

309309
$(OL
310310
$(LI
311-
$(LINK2 http://docs.sun.com/source/806-3568/ncg_goldberg.html,
311+
$(LINK2 https://docs.sun.com/source/806-3568/ncg_goldberg.html,
312312
"What Every Computer Scientist Should Know About Floating-Point Arithmetic")
313313
)
314314
$(LI

dcompiler.dd

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $(D_S dmd - $(WINDOWS Windows)$(LINUX Linux)$(OSX Mac OS X)$(FREEBSD FreeBSD) D
3535
$(H2 $(LNAME2 requirements, Requirements and Downloads))
3636

3737
$(OL
38-
$(LI $(LINK2 http://dlang.org/download.html, Download D Compiler))
38+
$(LI $(LINK2 https://dlang.org/download.html, Download D Compiler))
3939

4040
$(WINDOWS
4141
$(LI Windows operating system, Windows 7 or later, 32 or 64 bit)
@@ -598,7 +598,7 @@ dmd -cov -unittest myprog.d
598598
$(SWITCH $(SWNAME -m64),
599599
Compile a 64 bit executable.
600600
The generated object code is in MS-COFF and is meant to be used with the
601-
$(LINK2 http://www.amazon.com/gp/product/B0038KTO8S/ref=as_li_qf_sp_asin_il_tl?ie=UTF8$(AMP)camp=1789$(AMP)creative=9325$(AMP)creativeASIN=B0038KTO8S$(AMP)linkCode=as2$(AMP)tag=classicempire, Microsoft Visual Studio 10)
601+
$(LINK2 https://www.amazon.com/gp/product/B0038KTO8S/ref=as_li_qf_sp_asin_il_tl?ie=UTF8$(AMP)camp=1789$(AMP)creative=9325$(AMP)creativeASIN=B0038KTO8S$(AMP)linkCode=as2$(AMP)tag=classicempire, Microsoft Visual Studio 10)
602602
or later compiler.
603603
)
604604
)

debugger.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<title>D Debuggers</title>
5-
<meta http-equiv="Refresh" content="0; URL=http://wiki.dlang.org/Debuggers">
5+
<meta http-equiv="Refresh" content="0; URL=https://wiki.dlang.org/Debuggers">
66
</head>
77
<body>
88
</body>

deprecate.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ $(H3 $(DEPNAME Cast T[] to integral type))
246246
To get the length of the array.
247247
)
248248
$(H4 Corrective Action)
249-
$(P Use the $(LINK2 http://dlang.org/spec/arrays.html#array-properties, .length)
249+
$(P Use the $(LINK2 https://dlang.org/spec/arrays.html#array-properties, .length)
250250
property instead.
251251
)
252252
$(H4 Rationale)

dlang.org.ddoc

+12-12
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,8 @@ LONGTABLE_2COLS=$(TABLE2 $2,$3 $4)
186186
LONGTABLE_3COLS=$(TABLE2 $2,$3 $4)
187187
LONGTABLE_5COLS=$(TABLE2 $1,$2 $3)
188188
LT=&lt;
189-
LUCKY = $(HTTP google.com/search?btnI=I%27m+Feeling+Lucky&amp;ie=UTF-8&amp;oe=UTF-8&amp;q=$0,$0)
190-
LUCKY2 = $(HTTP google.com/search?btnI=I%27m+Feeling+Lucky&q=$+,$1)
189+
LUCKY = $(HTTPS google.com/search?btnI=I%27m+Feeling+Lucky&amp;ie=UTF-8&amp;oe=UTF-8&amp;q=$0,$0)
190+
LUCKY2 = $(HTTPS google.com/search?btnI=I%27m+Feeling+Lucky&q=$+,$1)
191191
_=
192192

193193
MDASH=$(T nobr, &#x200A;&mdash;&#x200A;)
@@ -213,7 +213,7 @@ $(DIVID cssmenu, $(UL
213213
$(MENU_W_SUBMENU_LINK $(ROOT_DIR)documentation.html, Documentation)
214214
$(NAVIGATION_DOCUMENTATION)
215215
$(MENU $(ROOT_DIR)download.html, Downloads)
216-
$(MENU http://code.dlang.org, Packages)
216+
$(MENU https://code.dlang.org, Packages)
217217
$(MENU_W_SUBMENU_LINK $(ROOT_DIR)community.html, Community)
218218
$(NAVIGATION_COMMUNITY)
219219
$(MENU_W_SUBMENU_LINK $(ROOT_DIR)resources.html, Resources)
@@ -222,12 +222,12 @@ $(DIVID cssmenu, $(UL
222222
NAVIGATION_COMMUNITY=
223223
$(SUBMENU
224224
$(ROOT_DIR)bugstats.php, Bug Tracker,
225-
http://forum.dlang.org, Forums,
225+
https://forum.dlang.org, Forums,
226226
irc://irc.freenode.net/d, IRC,
227-
http://github.com/D-Programming-Language, D on GitHub,
228-
http://wiki.dlang.org, Wiki,
229-
http://wiki.dlang.org/Review_Queue, Review Queue,
230-
http://twitter.com/search?q=%23dlang, Twitter,
227+
https://github.com/D-Programming-Language, D on GitHub,
228+
https://wiki.dlang.org, Wiki,
229+
https://wiki.dlang.org/Review_Queue, Review Queue,
230+
https://twitter.com/search?q=%23dlang, Twitter,
231231
http://digitalmars.com/d/dlinks.html, More Links
232232
)
233233
NAVIGATION_DOCUMENTATION=
@@ -243,10 +243,10 @@ $(SUBMENU
243243
$(ROOT_DIR)library/index.html, NEW Library Reference Preview,
244244
$(ROOT_DIR)tools.html, D-Specific Tools,
245245
$(VISUALD), Visual D,
246-
http://wiki.dlang.org/Editors, Editors,
247-
http://wiki.dlang.org/IDEs, IDEs,
248-
http://wiki.dlang.org/Tutorials, Tutorials,
249-
http://wiki.dlang.org/Books, Books,
246+
https://wiki.dlang.org/Editors, Editors,
247+
https://wiki.dlang.org/IDEs, IDEs,
248+
https://wiki.dlang.org/Tutorials, Tutorials,
249+
https://wiki.dlang.org/Books, Books,
250250
$(ROOT_DIR)dstyle.html, The D Style,
251251
$(ROOT_DIR)glossary.html, Glossary,
252252
$(ROOT_DIR)acknowledgements.html, Acknowledgments,

dlangspec.opf

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dc:title>D Programming Language Specification</dc:title>
2121

2222
<!-- Language [mandatory]: the language of the publication. The language codes used are the same as in XML
23-
and HTML. The full list can be found here: http://www.w3.org/International/articles/language-tags/
23+
and HTML. The full list can be found here: https://www.w3.org/International/articles/language-tags/
2424
Some common language strings are:
2525
"en" English
2626
"en-us" English - USA
@@ -56,7 +56,7 @@
5656
<dc:subject>Reference</dc:subject>
5757

5858
<!-- Date: Date of publication in YYYY-MM-DD format. (Days and month can be omitted).
59-
Standard to follow: http://www.w3.org/TR/NOTE-datetime
59+
Standard to follow: https://www.w3.org/TR/NOTE-datetime
6060
-->
6161
<dc:date>2011-07-08</dc:date>
6262

dll.dd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Ddoc
33
$(D_S Writing Win32 DLLs in D,
44

55
This page has been moved to
6-
$(LINK2 http://wiki.dlang.org/Win32_DLLs_in_D, http://wiki.dlang.org/Win32_DLLs_in_D)
6+
$(LINK2 https://wiki.dlang.org/Win32_DLLs_in_D, https://wiki.dlang.org/Win32_DLLs_in_D)
77

88
)
99

download.dd

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ $(D_S Downloads,
44

55
$(TABLEC download-compilers,
66
$(T caption,
7-
$(DIVID download-choose, ($(LINK2 http://wiki.dlang.org/Compilers, more information)))
7+
$(DIVID download-choose, ($(LINK2 https://wiki.dlang.org/Compilers, more information)))
88
$(H2 Choose a compiler)
99
)
1010
$(TR
1111
$(TD $(LINK2 #dmd , $(IMG compiler-dmd.png)))
1212
$(TD $(LINK2 http://gdcproject.org/downloads , $(IMG compiler-gdc.svg)))
13-
$(TD $(LINK2 http://github.com/ldc-developers/ldc/releases, $(IMG compiler-ldc.png)))
13+
$(TD $(LINK2 https://github.com/ldc-developers/ldc/releases, $(IMG compiler-ldc.png)))
1414
)
1515
$(TR
1616
$(TD
@@ -28,16 +28,16 @@ $(TABLEC download-compilers,
2828
$(UL
2929
$(LI $(LINK2 https://gcc.gnu.org/, GCC)-based D compiler)
3030
$(LI Strong optimization)
31-
$(LI Great $(LINK2 http://www.gnu.org/software/gdb/,GDB) support)
32-
$(LI Architectures: i386, amd64, x32, armel, armhf, $(LINK2 http://wiki.dlang.org/Compilers#Comparison,others))
31+
$(LI Great $(LINK2 https://www.gnu.org/software/gdb/,GDB) support)
32+
$(LI Architectures: i386, amd64, x32, armel, armhf, $(LINK2 https://wiki.dlang.org/Compilers#Comparison,others))
3333
)
3434
)
3535
$(TD
3636
$(H3 LDC)
3737
$(UL
3838
$(LI $(LINK2 http://llvm.org/, LLVM)-based D compiler)
3939
$(LI Strong optimization)
40-
$(LI Architectures: i386, amd64, $(LINK2 http://wiki.dlang.org/Compilers#Comparison,others))
40+
$(LI Architectures: i386, amd64, $(LINK2 https://wiki.dlang.org/Compilers#Comparison,others))
4141
)
4242
)
4343
)
@@ -49,7 +49,7 @@ $(TABLEC download-compilers,
4949
$(DIVC download-link, $(LINK2 http://gdcproject.org/, About) &middot; $(LINK2 http://gdcproject.org/downloads, Download))
5050
)
5151
$(TD
52-
$(DIVC download-link, $(LINK2 http://wiki.dlang.org/LDC, About) &middot; $(LINK2 http://github.com/ldc-developers/ldc/releases, Download))
52+
$(DIVC download-link, $(LINK2 https://wiki.dlang.org/LDC, About) &middot; $(LINK2 https://github.com/ldc-developers/ldc/releases, Download))
5353
)
5454
)
5555
)
@@ -100,16 +100,16 @@ $(H3
100100
$(LINK2 http://downloads.dlang.org, Release Archive)
101101
)
102102
$(LINK2 gpg_keys.html, GPG keys)$(BR)
103-
$(LINK2 http://github.com/D-Programming-Language, D on GitHub)
103+
$(LINK2 https://github.com/D-Programming-Language, D on GitHub)
104104

105105
$(HR)
106106

107107
$(H2 Other Downloads)
108108

109109
$(UL
110-
$(LI $(LINK2 http://github.com/D-Programming-Language/visuald/releases, VisualD - D Plugin for Visual Studio))
110+
$(LI $(LINK2 https://github.com/D-Programming-Language/visuald/releases, VisualD - D Plugin for Visual Studio))
111111

112-
$(LI D Programming Language Specification: $(BTN http://dlang.org/dlangspec.pdf, pdf) $(BTN http://dlang.org/dlangspec.mobi, mobi))
112+
$(LI D Programming Language Specification: $(BTN https://dlang.org/dlangspec.pdf, pdf) $(BTN https://dlang.org/dlangspec.mobi, mobi))
113113

114114
$(LI $(LINK2 http://www.digitalmars.com/download/freecompiler.html, Digital Mars C and C++ Compiler Downloads))
115115
)

dpl-docs/urlrewrite.d

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
BoyerMooreFinder).
1111
1212
Full example:
13-
OLD: http://dlang.org/library/std/algorithm/BoyerMooreFinder.html
14-
NEW: http://dlang.org/library/std/algorithm/boyer_moore_finder.html
13+
OLD: https://dlang.org/library/std/algorithm/BoyerMooreFinder.html
14+
NEW: https://dlang.org/library/std/algorithm/boyer_moore_finder.html
1515
1616
This script expects the URLs to be passed on STDIN line-by-line without the
1717
server/schema part:

0 commit comments

Comments
 (0)