Merge branch 'develop'
This commit is contained in:
commit
7687a0de97
4 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
||||||
# <a name="introduction">jsx (v1.1)</a> #
|
# <a name="introduction">jsx (v1.1.1)</a> #
|
||||||
|
|
||||||
a sane [json][json] implementation for erlang, inspired by [yajl][yajl]
|
a sane [json][json] implementation for erlang, inspired by [yajl][yajl]
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ jsx is released under the terms of the [MIT][MIT] license
|
||||||
|
|
||||||
jsx uses [rebar][rebar] for it's build chain and [meck][meck] for it's test suite
|
jsx uses [rebar][rebar] for it's build chain and [meck][meck] for it's test suite
|
||||||
|
|
||||||
[](http://travis-ci.org/talentdeficit/jsx)
|
[](http://travis-ci.org/talentdeficit/jsx)
|
||||||
|
|
||||||
|
|
||||||
## index ##
|
## index ##
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{application, jsx,
|
{application, jsx,
|
||||||
[
|
[
|
||||||
{description, "a streaming, evented json parsing toolkit"},
|
{description, "a streaming, evented json parsing toolkit"},
|
||||||
{vsn, "1.1"},
|
{vsn, "1.1.1"},
|
||||||
{modules, [
|
{modules, [
|
||||||
jsx,
|
jsx,
|
||||||
jsx_encoder,
|
jsx_encoder,
|
||||||
|
|
|
@ -1265,7 +1265,7 @@ surrogates() -> lists:seq(16#d800, 16#dfff).
|
||||||
|
|
||||||
control_characters() -> lists:seq(1, 31).
|
control_characters() -> lists:seq(1, 31).
|
||||||
|
|
||||||
good() -> [32, 33] ++ lists:seq(16#23, 16#5b) ++ lists:seq(16#5d, 16#d7ff) ++ lists:seq(16#e000, 16#ffff).
|
good() -> [32, 33] ++ lists:seq(16#23, 16#5b) ++ lists:seq(16#5d, 16#d7ff) ++ lists:seq(16#e000, 16#fffd).
|
||||||
|
|
||||||
good_extended() -> lists:seq(16#100000, 16#10ffff).
|
good_extended() -> lists:seq(16#100000, 16#10ffff).
|
||||||
|
|
||||||
|
|
|
@ -292,7 +292,7 @@ check([H|T], Opts, Acc) ->
|
||||||
|
|
||||||
surrogates() -> lists:seq(16#d800, 16#dfff).
|
surrogates() -> lists:seq(16#d800, 16#dfff).
|
||||||
|
|
||||||
good() -> lists:seq(1, 16#d7ff) ++ lists:seq(16#e000, 16#ffff).
|
good() -> lists:seq(1, 16#d7ff) ++ lists:seq(16#e000, 16#fffd).
|
||||||
|
|
||||||
good_extended() -> lists:seq(16#100000, 16#10ffff).
|
good_extended() -> lists:seq(16#100000, 16#10ffff).
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue