Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade Rust #6

Merged
merged 32 commits into from Jun 4, 2014

Merge pull request #30 from mbrubeck/ext-deps

a7eacbd
Select commit
332e2d0
initial decoder refactoring.
lifthrasiir May 10, 2014
78d9207
fixed a stupid bug on Shift_JIS EUDC decoder.
lifthrasiir May 10, 2014
67c072a
additional refactoring work for Chinese encodings.
lifthrasiir May 10, 2014
375a880
bumped the copyright year for substantially changed files.
lifthrasiir May 10, 2014
626b88c
reencoding trap now depends on the *current* encoder state.
lifthrasiir May 11, 2014
634a0fd
language changes: std::cast is merged to std::mem.
lifthrasiir May 12, 2014
7cd56dd
generalized the stateful decoder DSL to support non-ASCII-compatible …
lifthrasiir May 10, 2014
f980815
more DSL support for generalized stateful decoders.
lifthrasiir May 11, 2014
5bb98ae
further DSL tweak.
lifthrasiir May 12, 2014
fff2b39
generic context methods are no longer necessary; eliminated them.
lifthrasiir May 12, 2014
f6b2ab9
added ISO-2022-JP support.
lifthrasiir May 12, 2014
b5bdc62
added HZ encoding. this completes support for all WHATWG encodings.
lifthrasiir May 13, 2014
67e462a
fixed Shift_JIS encoder not to return unexpected EUDC codes.
lifthrasiir May 13, 2014
002bf65
added more benchmarks to CJK encodings and UTF-8.
lifthrasiir May 14, 2014
9edc42d
applied some optimizations to UTF-8 decoder.
lifthrasiir May 14, 2014
59a6fa2
from_utf8 reimplementation now returns as soon as error is found.
lifthrasiir May 14, 2014
a4f65e3
applied optimizations to ASCII; refactored unsafe portions of UTF-8 i…
lifthrasiir May 15, 2014
b58377d
moved generated tests for indices to testutils.
lifthrasiir May 15, 2014
2458f74
added benches to indices.
lifthrasiir May 15, 2014
c75b37b
single-byte indices switched to the tries.
lifthrasiir May 15, 2014
27a7ff5
Rebuild when external dependencies change
mbrubeck May 22, 2014
a7eacbd
Merge pull request #30 from mbrubeck/ext-deps
lifthrasiir May 22, 2014
c39e5b6
temporarily switch to the official nightly.
lifthrasiir May 23, 2014
ce76a8f
language changes: special treatments on &str and ~str are finally gone.
lifthrasiir May 23, 2014
fde6c18
language changes: StrBuf -> String.
lifthrasiir May 26, 2014
093bb5a
Merge remote-tracking branch 'refs/remotes/upstream/master' into servo
metajack May 29, 2014
d0b348e
language changes: to_owned() on &str is being deprecated.
lifthrasiir May 29, 2014
8c6a8b1
expanded the documentation; the initial stability assignments.
lifthrasiir May 31, 2014
9d54272
added a mention about EncodingRef.
lifthrasiir May 31, 2014
aff8048
some more documentation rewriting.
lifthrasiir May 31, 2014
3e0e121
Merge commit 'aff8048' into HEAD
SimonSapin Jun 3, 2014
3a8b209
Fix up makefile after merge.
metajack Jun 4, 2014
Merged

Upgrade Rust #6

Merge pull request #30 from mbrubeck/ext-deps
a7eacbd
Select commit
332e2d0
initial decoder refactoring.
lifthrasiir May 10, 2014
78d9207
fixed a stupid bug on Shift_JIS EUDC decoder.
lifthrasiir May 10, 2014
67c072a
additional refactoring work for Chinese encodings.
lifthrasiir May 10, 2014
375a880
bumped the copyright year for substantially changed files.
lifthrasiir May 10, 2014
626b88c
reencoding trap now depends on the *current* encoder state.
lifthrasiir May 11, 2014
634a0fd
language changes: std::cast is merged to std::mem.
lifthrasiir May 12, 2014
7cd56dd
generalized the stateful decoder DSL to support non-ASCII-compatible …
lifthrasiir May 10, 2014
f980815
more DSL support for generalized stateful decoders.
lifthrasiir May 11, 2014
5bb98ae
further DSL tweak.
lifthrasiir May 12, 2014
fff2b39
generic context methods are no longer necessary; eliminated them.
lifthrasiir May 12, 2014
f6b2ab9
added ISO-2022-JP support.
lifthrasiir May 12, 2014
b5bdc62
added HZ encoding. this completes support for all WHATWG encodings.
lifthrasiir May 13, 2014
67e462a
fixed Shift_JIS encoder not to return unexpected EUDC codes.
lifthrasiir May 13, 2014
002bf65
added more benchmarks to CJK encodings and UTF-8.
lifthrasiir May 14, 2014
9edc42d
applied some optimizations to UTF-8 decoder.
lifthrasiir May 14, 2014
59a6fa2
from_utf8 reimplementation now returns as soon as error is found.
lifthrasiir May 14, 2014
a4f65e3
applied optimizations to ASCII; refactored unsafe portions of UTF-8 i…
lifthrasiir May 15, 2014
b58377d
moved generated tests for indices to testutils.
lifthrasiir May 15, 2014
2458f74
added benches to indices.
lifthrasiir May 15, 2014
c75b37b
single-byte indices switched to the tries.
lifthrasiir May 15, 2014
27a7ff5
Rebuild when external dependencies change
mbrubeck May 22, 2014
a7eacbd
Merge pull request #30 from mbrubeck/ext-deps
lifthrasiir May 22, 2014
c39e5b6
temporarily switch to the official nightly.
lifthrasiir May 23, 2014
ce76a8f
language changes: special treatments on &str and ~str are finally gone.
lifthrasiir May 23, 2014
fde6c18
language changes: StrBuf -> String.
lifthrasiir May 26, 2014
093bb5a
Merge remote-tracking branch 'refs/remotes/upstream/master' into servo
metajack May 29, 2014
d0b348e
language changes: to_owned() on &str is being deprecated.
lifthrasiir May 29, 2014
8c6a8b1
expanded the documentation; the initial stability assignments.
lifthrasiir May 31, 2014
9d54272
added a mention about EncodingRef.
lifthrasiir May 31, 2014
aff8048
some more documentation rewriting.
lifthrasiir May 31, 2014
3e0e121
Merge commit 'aff8048' into HEAD
SimonSapin Jun 3, 2014
3a8b209
Fix up makefile after merge.
metajack Jun 4, 2014

Workflow runs completed with no jobs

You can’t perform that action at this time.