143 changes: 71 additions & 72 deletions std/datetime.d

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions std/net/curl.d
Original file line number Diff line number Diff line change
Expand Up @@ -2329,7 +2329,7 @@ struct HTTP
{
mixin Protocol;

/// Authentication method equal to $(ECXREF curl, CurlAuth)
/// Authentication method equal to $(REF CurlAuth, etc,c,curl)
alias AuthMethod = CurlAuth;

static private uint defaultMaxRedirects = 10;
Expand Down Expand Up @@ -2421,7 +2421,7 @@ struct HTTP

private RefCounted!Impl p;

/** Time condition enumeration as an alias of $(ECXREF curl, CurlTimeCond)
/** Time condition enumeration as an alias of $(REF CurlTimeCond, etc,c,curl)
$(WEB www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.25, _RFC2616 Section 14.25)
*/
Expand Down Expand Up @@ -3834,7 +3834,7 @@ class CurlTimeoutException : CurlException
}
}

/// Equal to $(ECXREF curl, CURLcode)
/// Equal to $(REF CURLcode, etc,c,curl)
alias CurlCode = CURLcode;

import std.typecons : Flag;
Expand Down Expand Up @@ -4117,7 +4117,7 @@ struct Curl
/**
Set a string curl option.
Params:
option = A $(ECXREF curl, CurlOption) as found in the curl documentation
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
value = The string
*/
void set(CurlOption option, const(char)[] value)
Expand All @@ -4129,7 +4129,7 @@ struct Curl
/**
Set a long curl option.
Params:
option = A $(ECXREF curl, CurlOption) as found in the curl documentation
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
value = The long
*/
void set(CurlOption option, long value)
Expand All @@ -4141,7 +4141,7 @@ struct Curl
/**
Set a void* curl option.
Params:
option = A $(ECXREF curl, CurlOption) as found in the curl documentation
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
value = The pointer
*/
void set(CurlOption option, void* value)
Expand All @@ -4153,7 +4153,7 @@ struct Curl
/**
Clear a pointer option.
Params:
option = A $(ECXREF curl, CurlOption) as found in the curl documentation
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
*/
void clear(CurlOption option)
{
Expand All @@ -4165,7 +4165,7 @@ struct Curl
Clear a pointer option. Does not raise an exception if the underlying
libcurl does not support the option. Use sparingly.
Params:
option = A $(ECXREF curl, CurlOption) as found in the curl documentation
option = A $(REF CurlOption, etc,c,curl) as found in the curl documentation
*/
void clearIfSupported(CurlOption option)
{
Expand Down Expand Up @@ -4310,11 +4310,11 @@ struct Curl
*
* Params:
* callback = the callback that receives a seek offset and a seek position
* $(ECXREF curl, CurlSeekPos)
* $(REF CurlSeekPos, etc,c,curl)
*
* Returns:
* The callback returns the success state of the seeking
* $(ECXREF curl, CurlSeek)
* $(REF CurlSeek, etc,c,curl)
*
* Example:
* ----
Expand Down Expand Up @@ -4347,7 +4347,7 @@ struct Curl
*
* Params:
* callback = the callback that receives the socket and socket type
* $(ECXREF curl, CurlSockType)
* $(REF CurlSockType, etc,c,curl)
*
* Returns:
* Return 0 from the callback to signal success, return 1 to signal error
Expand Down
4 changes: 2 additions & 2 deletions std/process.d
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Throws:
$(LREF ProcessException) on failure to start the process.$(BR)
$(REF StdioException, std,stdio) on failure to pass one of the streams
to the child process (Windows only).$(BR)
$(CXREF exception,RangeError) if $(D args) is empty.
$(REF RangeError, core,exception) if $(D args) is empty.
*/
Pid spawnProcess(in char[][] args,
File stdin = std.stdio.stdin,
Expand Down Expand Up @@ -2350,7 +2350,7 @@ version (Windows) private immutable string shellSwitch = "/C";
* which is guaranteed to be unique within the current process.
*
* Returns:
* A $(CXREF thread, ThreadID) value for the calling thread.
* A $(REF ThreadID, core,thread) value for the calling thread.
*
* Example:
* ---
Expand Down
36 changes: 16 additions & 20 deletions std/string.d
Original file line number Diff line number Diff line change
Expand Up @@ -87,31 +87,31 @@ $(TR $(TH Module) $(TH Functions) )
$(LEADINGROW Publicly imported functions)
$(TR $(TD std.algorithm)
$(TD
$(SHORTXREF_PACK algorithm,comparison,cmp)
$(SHORTXREF_PACK algorithm,searching,count)
$(SHORTXREF_PACK algorithm,searching,endsWith)
$(SHORTXREF_PACK algorithm,searching,startsWith)
$(REF_SHORT cmp, std,algorithm,comparison)
$(REF_SHORT count, std,algorithm,searching)
$(REF_SHORT endsWith, std,algorithm,searching)
$(REF_SHORT startsWith, std,algorithm,searching)
))
$(TR $(TD std.array)
$(TD
$(SHORTXREF array, join)
$(SHORTXREF array, replace)
$(SHORTXREF array, replaceInPlace)
$(SHORTXREF array, split)
$(SHORTXREF array, empty)
$(REF_SHORT join, std,array)
$(REF_SHORT replace, std,array)
$(REF_SHORT replaceInPlace, std,array)
$(REF_SHORT split, std,array)
$(REF_SHORT empty, std,array)
))
$(TR $(TD std.format)
$(TD
$(SHORTXREF format, format)
$(SHORTXREF format, sformat)
$(REF_SHORT format, std,format)
$(REF_SHORT sformat, std,format)
))
$(TR $(TD std.uni)
$(TD
$(SHORTXREF uni, icmp)
$(SHORTXREF uni, toLower)
$(SHORTXREF uni, toLowerInPlace)
$(SHORTXREF uni, toUpper)
$(SHORTXREF uni, toUpperInPlace)
$(REF_SHORT icmp, std,uni)
$(REF_SHORT toLower, std,uni)
$(REF_SHORT toLowerInPlace, std,uni)
$(REF_SHORT toUpper, std,uni)
$(REF_SHORT toUpperInPlace, std,uni)
))
)
Expand All @@ -134,10 +134,6 @@ See_Also:
for functions that work with unicode strings
)
Macros:
SHORTXREF=$(REF_ALTTEXT $(TT $2), $2, std,$1)
SHORTXREF_PACK=$(REF_ALTTEXT $(TT $3), $3, std,$1,$2)
Copyright: Copyright Digital Mars 2007-.
License: $(WEB boost.org/LICENSE_1_0.txt, Boost License 1.0).
Expand Down