From 52d6930daf38946fc84be5e6ec53aaab75d45947 Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Wed, 7 Oct 2015 10:55:51 +0000 Subject: [PATCH] Use canonical links to forum.dlang.org http://forum.dlang.org/help#canonical --- CONTRIBUTING.md | 2 +- etc/c/odbc/sqlext.d | 2 +- etc/c/odbc/sqltypes.d | 2 +- etc/c/odbc/sqlucode.d | 2 +- std/algorithm/iteration.d | 2 +- std/container/array.d | 2 +- std/conv.d | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 99f734a0a..e675b06b5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,6 @@ Tips for Development rdmd -unittest -main std/regex.d 2. Do not forget to test your changes. - Aim for a [high code coverage of your tests](http://forum.dlang.org/thread/ki5ovr$17m1$1@digitalmars.com). + Aim for a [high code coverage of your tests](http://forum.dlang.org/post/ki5ovr$17m1$1@digitalmars.com). 3. Do not forget the [API Documentation](http://dlang.org/phobos/). diff --git a/etc/c/odbc/sqlext.d b/etc/c/odbc/sqlext.d index a8abd0506..5a26d3837 100755 --- a/etc/c/odbc/sqlext.d +++ b/etc/c/odbc/sqlext.d @@ -3,7 +3,7 @@ Declarations for interfacing with the ODBC library. Adapted with minimal changes from the work of David L. Davis (refer to the $(WEB -forum.dlang.org/thread/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com#post-cfk7ql:241p4n:241:40digitaldaemon.com, +forum.dlang.org/post/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com, original announcement)). `etc.c.odbc.sqlext` corresponds to the `sqlext.h` C header file. diff --git a/etc/c/odbc/sqltypes.d b/etc/c/odbc/sqltypes.d index 1351ea1ca..17efeb239 100755 --- a/etc/c/odbc/sqltypes.d +++ b/etc/c/odbc/sqltypes.d @@ -3,7 +3,7 @@ Declarations for interfacing with the ODBC library. Adapted with minimal changes from the work of David L. Davis (refer to the $(WEB -forum.dlang.org/thread/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com#post-cfk7ql:241p4n:241:40digitaldaemon.com, +forum.dlang.org/post/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com, original announcement)). `etc.c.odbc.sqlext.d` corresponds to the `sqlext.h` C header file. diff --git a/etc/c/odbc/sqlucode.d b/etc/c/odbc/sqlucode.d index bd684a8d0..85d657825 100755 --- a/etc/c/odbc/sqlucode.d +++ b/etc/c/odbc/sqlucode.d @@ -3,7 +3,7 @@ Declarations for interfacing with the ODBC library. Adapted with minimal changes from the work of David L. Davis (refer to the $(WEB -forum.dlang.org/thread/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com#post-cfk7ql:241p4n:241:40digitaldaemon.com, +forum.dlang.org/post/cfk7ql$(DOLLAR)1p4n$(DOLLAR)1@digitaldaemon.com, original announcement)). `etc.c.odbc.sqlucode` corresponds to the `sqlucode.h` C include file. diff --git a/std/algorithm/iteration.d b/std/algorithm/iteration.d index 8323688ff..35711f743 100644 --- a/std/algorithm/iteration.d +++ b/std/algorithm/iteration.d @@ -2801,7 +2801,7 @@ unittest import std.algorithm.comparison : max, min; import std.typecons : tuple, Tuple; - //http://forum.dlang.org/thread/oghtttkopzjshsuflelk@forum.dlang.org + //http://forum.dlang.org/post/oghtttkopzjshsuflelk@forum.dlang.org //Seed is tuple of const. static auto minmaxElement(alias F = min, alias G = max, R)(in R range) @safe pure nothrow if (isInputRange!R) diff --git a/std/container/array.d b/std/container/array.d index ffc760d8d..9f7b5dcae 100644 --- a/std/container/array.d +++ b/std/container/array.d @@ -30,7 +30,7 @@ public import std.container.util; private struct RangeT(A) { /* Workaround for Issue 13629 at https://issues.dlang.org/show_bug.cgi?id=13629 - See also: http://forum.dlang.org/thread/vbmwhzvawhnkoxrhbnyb@forum.dlang.org?page=1 + See also: http://forum.dlang.org/post/vbmwhzvawhnkoxrhbnyb@forum.dlang.org */ private A[1] _outer_; private @property ref inout(A) _outer() inout { return _outer_[0]; } diff --git a/std/conv.d b/std/conv.d index 15c44ab77..f86df5558 100644 --- a/std/conv.d +++ b/std/conv.d @@ -4806,7 +4806,7 @@ unittest //@@@9559@@@ auto asArray = std.array.array(ints); } -unittest //http://forum.dlang.org/thread/nxbdgtdlmwscocbiypjs@forum.dlang.org +unittest //http://forum.dlang.org/post/nxbdgtdlmwscocbiypjs@forum.dlang.org { import std.array : array; import std.datetime : SysTime, UTC;