Brad Roberts
93ee2f9dd0
enable now-passing std.container tests on freebsd64
...
Closes bug 6009. The actual bug was fixed at some point before now.
2011-09-14 21:36:18 -07:00
jmdavis
a0b6eb034b
Revert "add std.net.browser"
...
This reverts commit ac289bbb92
.
2011-07-21 20:08:07 -07:00
Walter Bright
ac289bbb92
add std.net.browser
2011-07-19 15:37:40 -07:00
jmdavis
fabd38658f
Merged master into branch with changes for std.string.
2011-06-18 03:10:50 -07:00
Sean Kelly
27dc39c5cd
Fixed build error on Posix. std/net/isemail.d was preset twice in the build command.
2011-06-16 17:02:22 -07:00
Lars T. Kyllingstad
ce13b8f5ce
Build std.net.isemail documentation
2011-06-16 15:55:22 +02:00
jmdavis
cc37a7b40d
Removed std.encodingbase.
...
I was _sure_ that I tested std.encodingbase on Linux, but it's
segfaulting, and after I had added it, I determined that it wasn't
actually needed (simply removing the unused imports for std.encoding in
std.string and std.array fixed the circular dependency with
std.datetime), much as it theoretically would be less likely to cause
problems later to have std.encodingbase. So, for the moment, I'm
removing it. We need to revisit std.encoding's existance anyway.
2011-06-15 00:16:44 -07:00
Jonathan M Davis
9693652b2f
Merge pull request #95 from jmdavis/broken
...
Fixed circular dependency between std.datetime and std.encoding.
2011-06-14 23:42:30 -07:00
jmdavis
dd3a0c20a2
Created std.ascii to replace std.ctype.
...
All of the new, properly camelcased functions in std.ctype have been
moved to std.ascii, and std.ctype has been scheduled for deprecation.
2011-06-14 04:06:54 -07:00
jmdavis
a3953a2119
Switching the order of some stuff seems to fix the linux build.
...
It looks like the problem was that EXTRA_DOCUMENTABLES was added to
EXTRA_MODULES before everything was added to EXTRA_DOCUMENTABLES.
2011-06-12 03:44:46 -07:00
jmdavis
48355e6230
Fixed circular dependency between std.datetime and std.encoding.
2011-06-11 00:47:12 -07:00
Andrei Alexandrescu
c1ec579fa5
Merge pull request #86 from andralex/website
...
Fix 672 broken links (complements work in d-programming-language.org)
2011-06-09 09:33:13 -07:00
Andrei Alexandrescu
5a0134dd10
Fixed 672 broken links
2011-06-09 09:48:53 -05:00
Andrei Alexandrescu
83f9fa514e
Added support for consolidated documentation in one single html file
2011-06-09 00:55:36 -05:00
Andrei Alexandrescu
44fc0654f8
Added EXTRA_DOCUMENTABLES macro for sqlite3 documentation
2011-06-06 09:52:44 -05:00
Andrei Alexandrescu
6bba774e4d
Merge pull request #64 from he-the-great/sqlite
...
Sqlite
2011-06-04 06:55:29 -07:00
Andrei Alexandrescu
24b8162052
Added documentation generation for libcurl
2011-06-02 00:08:19 -05:00
Lars T. Kyllingstad
31395f9e3f
Do not specify paths to DMD and DMC under Wine
2011-06-01 10:58:03 +02:00
Jesse Phillips
d3e9f75989
Update makefiles
2011-05-29 11:36:43 -07:00
Brad Roberts
637b4bf673
temporarily disable std/container on freebsd64
2011-05-13 22:26:47 -07:00
andralex
c5cd017921
Removed std.log but kept changes to std.format that add positional range capability
2011-05-11 09:24:05 -05:00
Andrei Alexandrescu
9dd0e63250
Merged mothership
2011-05-10 19:17:06 -05:00
Andrei Alexandrescu
2bc502ae84
Added std.log
2011-05-10 19:15:00 -05:00
Andrei Alexandrescu
d061f13d34
https://github.com/D-Programming-Language/phobos/pull/23
2011-05-01 12:11:46 -05:00
dsimcha
3cf67160b8
Add std.parallelism.
2011-04-26 20:06:25 -04:00
Andrei Alexandrescu
d0e0e4f8af
Merge branch 'isemail' of https://github.com/jacob-carlborg/phobos into current-pull-request
2011-04-09 17:47:47 -05:00
Andrei Alexandrescu
055cea0595
Merge branch 'master' of github.com:D-Programming-Language/phobos
...
Conflicts:
posix.mak
2011-04-06 00:32:29 -05:00
jmdavis
b59e92d607
Merged in Pull Request# 20 for D-Programming-Language / phobos.
2011-03-29 02:19:36 -07:00
Brad Roberts
4dfe6b9e71
enable std/random test on 64 bit
2011-03-28 00:11:49 -07:00
Brad Roberts
919eec2765
Fix biguintnoasm.d on x86-64
2011-03-27 12:55:27 -07:00
Jonas Drewsen
2f69ffb9d1
c declarations for libcurl
2011-03-15 20:17:40 +01:00
Jacob Carlborg
0394e125e1
Added std.net.isemail to the posix makefile.
2011-03-02 21:04:32 +01:00
Andrei Alexandrescu
1083bd4e7b
One pass through std.range and friends
...
* Made emplace faster and replaced calls to it to also make them faster.
* Replaced phobos.d in posix.mak with index.d.
* Added version=StdDdoc to documentation build in posix.mak, and replaced uses of D_Ddoc with it.
* Improved documentation target in posix.mak (target dir automatically created).
* Added nice documentation table and cheat sheet at the top of std.algorithm.
* Replaced a few helper structs in std.range and std.algorithm with local structs, which simplify matters a fair amount.
* Added more constraints to functions in std.algorithm (still work in progress).
* Improved error message in std.algorithm.sort in case of failure to sort.
* std.random.dice(1, 10) now works (no need for array notation std.random.dice([1, 10])).
* Fixed documentation bugs and insufficiencies in std.range (still more to do).
* Improved speed of walkLength.
* Simplified retro.
* Simplified and optimized stride. Also folded stride(stride(r, a), b) into stride(r, a * b).
* Added roundRobin to std.range, which as a perk simplified radial.
* Added takeOne and takeNone to std.range.
* Added unsigned to std.traits.
2011-02-27 12:38:49 -06:00
Brad Roberts
44b60db341
Enable test std.file and std.numeric on x86-64, they pass now
2011-02-20 14:17:56 -08:00
Brad Roberts
41c3dc1075
Enable some now passing tests, and rework the disabled list to include my notes of what's left to do
2011-02-05 20:24:29 -08:00
Brad Roberts
b8fb438f00
Enable now passing test
2011-01-30 18:41:42 -08:00
Brad Roberts
108c4e199f
Enable a set of tests that pass on 64 bit now
2011-01-30 01:12:57 -08:00
andralex
e294064f90
Merge branch 'master' of github.com:D-Programming-Language/phobos
2011-01-30 02:42:49 -06:00
andralex
823f0d009d
Changed phobos.html to index.html
2011-01-30 02:39:55 -06:00
Walter Bright
b6a2680e7d
add missing files to manifest
2011-01-30 00:00:16 -08:00
andralex
0c6b3e9c32
Updated website-related build
2011-01-30 01:08:30 -06:00
Brad Roberts
2fb2876d67
add -mMODEL to the ddoc flags
2011-01-23 04:45:34 +00:00
Andrei Alexandrescu
1e4610663f
Replaced ddoc symbol with the D_Ddoc built-in throughout
2011-01-22 21:36:53 +00:00
Andrei Alexandrescu
26f90d66d5
Added rsync command for uploading the full website
2011-01-21 09:01:31 +00:00
Brad Roberts
907a34e7f2
enable std.mathspecial's unittests
2011-01-19 04:50:58 +00:00
Brad Roberts
1dd6a9fadf
enable more fixed at some point in the past tests
2011-01-18 09:52:05 +00:00
Brad Roberts
2c2fc98182
Fix 64 bit issues throughout regex and regexp and enable those tests
2011-01-18 08:41:35 +00:00
Andrei Alexandrescu
f9684b5d1b
Fixed spurious merge issue
2011-01-16 03:35:54 +00:00
Andrei Alexandrescu
b6cfde7d6a
Put binaries in different dirs depending on MODEL
2011-01-16 03:07:56 +00:00
Brad Roberts
3747cbddab
Fix and enable std.outbuffer's tests for 64 bit
2011-01-13 03:50:55 +00:00