ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/JSON-XS/XS.pm
(Generate patch)

Comparing JSON-XS/XS.pm (file contents):
Revision 1.77 by root, Tue Dec 4 10:37:42 2007 UTC vs.
Revision 1.86 by root, Wed Mar 19 03:17:38 2008 UTC

1=encoding utf-8
2
1=head1 NAME 3=head1 NAME
2 4
3JSON::XS - JSON serialising/deserialising, done correctly and fast 5JSON::XS - JSON serialising/deserialising, done correctly and fast
4 6
5JSON::XS - 正しくて高速な JSON シリアライザ/デシリアライザ 7JSON::XS - 正しくて高速な JSON シリアライザ/デシリアライザ
10 use JSON::XS; 12 use JSON::XS;
11 13
12 # exported functions, they croak on error 14 # exported functions, they croak on error
13 # and expect/generate UTF-8 15 # and expect/generate UTF-8
14 16
15 $utf8_encoded_json_text = to_json $perl_hash_or_arrayref; 17 $utf8_encoded_json_text = encode_json $perl_hash_or_arrayref;
16 $perl_hash_or_arrayref = from_json $utf8_encoded_json_text; 18 $perl_hash_or_arrayref = decode_json $utf8_encoded_json_text;
17 19
18 # OO-interface 20 # OO-interface
19 21
20 $coder = JSON::XS->new->ascii->pretty->allow_nonref; 22 $coder = JSON::XS->new->ascii->pretty->allow_nonref;
21 $pretty_printed_unencoded = $coder->encode ($perl_scalar); 23 $pretty_printed_unencoded = $coder->encode ($perl_scalar);
58 60
59=over 4 61=over 4
60 62
61=item * correct Unicode handling 63=item * correct Unicode handling
62 64
63This module knows how to handle Unicode, and even documents how and when 65This module knows how to handle Unicode, documents how and when it does
64it does so. 66so, and even documents what "correct" means.
65 67
66=item * round-trip integrity 68=item * round-trip integrity
67 69
68When you serialise a perl data structure using only datatypes supported 70When you serialise a perl data structure using only datatypes supported
69by JSON, the deserialised data structure is identical on the Perl level. 71by JSON, the deserialised data structure is identical on the Perl level.
70(e.g. the string "2.0" doesn't suddenly become "2" just because it looks 72(e.g. the string "2.0" doesn't suddenly become "2" just because it looks
71like a number). 73like a number). There minor I<are> exceptions to this, read the MAPPING
74section below to learn about those.
72 75
73=item * strict checking of JSON correctness 76=item * strict checking of JSON correctness
74 77
75There is no guessing, no generating of illegal JSON texts by default, 78There is no guessing, no generating of illegal JSON texts by default,
76and only JSON is accepted as input by default (the latter is a security 79and only JSON is accepted as input by default (the latter is a security
77feature). 80feature).
78 81
79=item * fast 82=item * fast
80 83
81Compared to other JSON modules, this module compares favourably in terms 84Compared to other JSON modules and other serialisers such as Storable,
82of speed, too. 85this module usually compares favourably in terms of speed, too.
83 86
84=item * simple to use 87=item * simple to use
85 88
86This module has both a simple functional interface as well as an OO 89This module has both a simple functional interface as well as an objetc
87interface. 90oriented interface interface.
88 91
89=item * reasonably versatile output formats 92=item * reasonably versatile output formats
90 93
91You can choose between the most compact guaranteed single-line format 94You can choose between the most compact guaranteed-single-line format
92possible (nice for simple line-based protocols), a pure-ascii format 95possible (nice for simple line-based protocols), a pure-ascii format
93(for when your transport is not 8-bit clean, still supports the whole 96(for when your transport is not 8-bit clean, still supports the whole
94Unicode range), or a pretty-printed format (for when you want to read that 97Unicode range), or a pretty-printed format (for when you want to read that
95stuff). Or you can combine those features in whatever way you like. 98stuff). Or you can combine those features in whatever way you like.
96 99
100 103
101package JSON::XS; 104package JSON::XS;
102 105
103use strict; 106use strict;
104 107
105our $VERSION = '2.0'; 108our $VERSION = '2.01';
106our @ISA = qw(Exporter); 109our @ISA = qw(Exporter);
107 110
108our @EXPORT = qw(to_json from_json); 111our @EXPORT = qw(encode_json decode_json to_json from_json);
112
113sub to_json($) {
114 require Carp;
115 Carp::croak ("JSON::XS::to_json has been renamed to encode_json, either downgrade to pre-2.0 versions of JSON::XS or rename the call");
116}
117
118sub from_json($) {
119 require Carp;
120 Carp::croak ("JSON::XS::from_json has been renamed to decode_json, either downgrade to pre-2.0 versions of JSON::XS or rename the call");
121}
109 122
110use Exporter; 123use Exporter;
111use XSLoader; 124use XSLoader;
112 125
113=head1 FUNCTIONAL INTERFACE 126=head1 FUNCTIONAL INTERFACE
115The following convenience methods are provided by this module. They are 128The following convenience methods are provided by this module. They are
116exported by default: 129exported by default:
117 130
118=over 4 131=over 4
119 132
120=item $json_text = to_json $perl_scalar 133=item $json_text = encode_json $perl_scalar
121 134
122Converts the given Perl data structure to a UTF-8 encoded, binary string 135Converts the given Perl data structure to a UTF-8 encoded, binary string
123(that is, the string contains octets only). Croaks on error. 136(that is, the string contains octets only). Croaks on error.
124 137
125This function call is functionally identical to: 138This function call is functionally identical to:
126 139
127 $json_text = JSON::XS->new->utf8->encode ($perl_scalar) 140 $json_text = JSON::XS->new->utf8->encode ($perl_scalar)
128 141
129except being faster. 142except being faster.
130 143
131=item $perl_scalar = from_json $json_text 144=item $perl_scalar = decode_json $json_text
132 145
133The opposite of C<to_json>: expects an UTF-8 (binary) string and tries 146The opposite of C<encode_json>: expects an UTF-8 (binary) string and tries
134to parse that as an UTF-8 encoded JSON text, returning the resulting 147to parse that as an UTF-8 encoded JSON text, returning the resulting
135reference. Croaks on error. 148reference. Croaks on error.
136 149
137This function call is functionally identical to: 150This function call is functionally identical to:
138 151
164This enables you to store Unicode characters as single characters in a 177This enables you to store Unicode characters as single characters in a
165Perl string - very natural. 178Perl string - very natural.
166 179
167=item 2. Perl does I<not> associate an encoding with your strings. 180=item 2. Perl does I<not> associate an encoding with your strings.
168 181
169Unless you force it to, e.g. when matching it against a regex, or printing 182... until you force it to, e.g. when matching it against a regex, or
170the scalar to a file, in which case Perl either interprets your string as 183printing the scalar to a file, in which case Perl either interprets your
171locale-encoded text, octets/binary, or as Unicode, depending on various 184string as locale-encoded text, octets/binary, or as Unicode, depending
172settings. In no case is an encoding stored together with your data, it is 185on various settings. In no case is an encoding stored together with your
173I<use> that decides encoding, not any magical metadata. 186data, it is I<use> that decides encoding, not any magical meta data.
174 187
175=item 3. The internal utf-8 flag has no meaning with regards to the 188=item 3. The internal utf-8 flag has no meaning with regards to the
176encoding of your string. 189encoding of your string.
177 190
178Just ignore that flag unless you debug a Perl bug, a module written in 191Just ignore that flag unless you debug a Perl bug, a module written in
471The C<TO_JSON> method may safely call die if it wants. If C<TO_JSON> 484The C<TO_JSON> method may safely call die if it wants. If C<TO_JSON>
472returns other blessed objects, those will be handled in the same 485returns other blessed objects, those will be handled in the same
473way. C<TO_JSON> must take care of not causing an endless recursion cycle 486way. C<TO_JSON> must take care of not causing an endless recursion cycle
474(== crash) in this case. The name of C<TO_JSON> was chosen because other 487(== crash) in this case. The name of C<TO_JSON> was chosen because other
475methods called by the Perl core (== not by the user of the object) are 488methods called by the Perl core (== not by the user of the object) are
476usually in upper case letters and to avoid collisions with the C<to_json> 489usually in upper case letters and to avoid collisions with any C<to_json>
477function. 490function or method.
478 491
479This setting does not yet influence C<decode> in any way, but in the 492This setting does not yet influence C<decode> in any way, but in the
480future, global hooks might get installed that influence C<decode> and are 493future, global hooks might get installed that influence C<decode> and are
481enabled by this setting. 494enabled by this setting.
482 495
696 709
697A JSON number becomes either an integer, numeric (floating point) or 710A JSON number becomes either an integer, numeric (floating point) or
698string scalar in perl, depending on its range and any fractional parts. On 711string scalar in perl, depending on its range and any fractional parts. On
699the Perl level, there is no difference between those as Perl handles all 712the Perl level, there is no difference between those as Perl handles all
700the conversion details, but an integer may take slightly less memory and 713the conversion details, but an integer may take slightly less memory and
701might represent more values exactly than (floating point) numbers. 714might represent more values exactly than floating point numbers.
702 715
703If the number consists of digits only, JSON::XS will try to represent 716If the number consists of digits only, JSON::XS will try to represent
704it as an integer value. If that fails, it will try to represent it as 717it as an integer value. If that fails, it will try to represent it as
705a numeric (floating point) value if that is possible without loss of 718a numeric (floating point) value if that is possible without loss of
706precision. Otherwise it will preserve the number as a string value. 719precision. Otherwise it will preserve the number as a string value (in
720which case you lose roundtripping ability, as the JSON number will be
721re-encoded toa JSON string).
707 722
708Numbers containing a fractional or exponential part will always be 723Numbers containing a fractional or exponential part will always be
709represented as numeric (floating point) values, possibly at a loss of 724represented as numeric (floating point) values, possibly at a loss of
710precision. 725precision (in which case you might lose perfect roundtripping ability, but
711 726the JSON number will still be re-encoded as a JSON number).
712This might create round-tripping problems as numbers might become strings,
713but as Perl is typeless there is no other way to do it.
714 727
715=item true, false 728=item true, false
716 729
717These JSON atoms become C<JSON::XS::true> and C<JSON::XS::false>, 730These JSON atoms become C<JSON::XS::true> and C<JSON::XS::false>,
718respectively. They are overloaded to act almost exactly like the numbers 731respectively. They are overloaded to act almost exactly like the numbers
755Other unblessed references are generally not allowed and will cause an 768Other unblessed references are generally not allowed and will cause an
756exception to be thrown, except for references to the integers C<0> and 769exception to be thrown, except for references to the integers C<0> and
757C<1>, which get turned into C<false> and C<true> atoms in JSON. You can 770C<1>, which get turned into C<false> and C<true> atoms in JSON. You can
758also use C<JSON::XS::false> and C<JSON::XS::true> to improve readability. 771also use C<JSON::XS::false> and C<JSON::XS::true> to improve readability.
759 772
760 to_json [\0,JSON::XS::true] # yields [false,true] 773 encode_json [\0,JSON::XS::true] # yields [false,true]
761 774
762=item JSON::XS::true, JSON::XS::false 775=item JSON::XS::true, JSON::XS::false
763 776
764These special values become JSON true and JSON false values, 777These special values become JSON true and JSON false values,
765respectively. You can also use C<\1> and C<\0> directly if you want. 778respectively. You can also use C<\1> and C<\0> directly if you want.
766 779
767=item blessed objects 780=item blessed objects
768 781
769Blessed objects are not allowed. JSON::XS currently tries to encode their 782Blessed objects are not directly representable in JSON. See the
770underlying representation (hash- or arrayref), but this behaviour might 783C<allow_blessed> and C<convert_blessed> methods on various options on
771change in future versions. 784how to deal with this: basically, you can choose between throwing an
785exception, encoding the reference as if it weren't blessed, or provide
786your own serialiser method.
772 787
773=item simple scalars 788=item simple scalars
774 789
775Simple Perl scalars (any scalar that is not a reference) are the most 790Simple Perl scalars (any scalar that is not a reference) are the most
776difficult objects to encode: JSON::XS will encode undefined scalars as 791difficult objects to encode: JSON::XS will encode undefined scalars as
777JSON null value, scalars that have last been used in a string context 792JSON C<null> values, scalars that have last been used in a string context
778before encoding as JSON strings and anything else as number value: 793before encoding as JSON strings, and anything else as number value:
779 794
780 # dump as number 795 # dump as number
781 to_json [2] # yields [2] 796 encode_json [2] # yields [2]
782 to_json [-3.0e17] # yields [-3e+17] 797 encode_json [-3.0e17] # yields [-3e+17]
783 my $value = 5; to_json [$value] # yields [5] 798 my $value = 5; encode_json [$value] # yields [5]
784 799
785 # used as string, so dump as string 800 # used as string, so dump as string
786 print $value; 801 print $value;
787 to_json [$value] # yields ["5"] 802 encode_json [$value] # yields ["5"]
788 803
789 # undef becomes null 804 # undef becomes null
790 to_json [undef] # yields [null] 805 encode_json [undef] # yields [null]
791 806
792You can force the type to be a JSON string by stringifying it: 807You can force the type to be a JSON string by stringifying it:
793 808
794 my $x = 3.1; # some variable containing a number 809 my $x = 3.1; # some variable containing a number
795 "$x"; # stringified 810 "$x"; # stringified
801 my $x = "3"; # some variable containing a string 816 my $x = "3"; # some variable containing a string
802 $x += 0; # numify it, ensuring it will be dumped as a number 817 $x += 0; # numify it, ensuring it will be dumped as a number
803 $x *= 1; # same thing, the choice is yours. 818 $x *= 1; # same thing, the choice is yours.
804 819
805You can not currently force the type in other, less obscure, ways. Tell me 820You can not currently force the type in other, less obscure, ways. Tell me
806if you need this capability. 821if you need this capability (but don't forget to explain why its needed
822:).
823
824=back
825
826
827=head1 ENCODING/CODESET FLAG NOTES
828
829The interested reader might have seen a number of flags that signify
830encodings or codesets - C<utf8>, C<latin1> and C<ascii>. There seems to be
831some confusion on what these do, so here is a short comparison:
832
833C<utf8> controls wether the JSON text created by C<encode> (and expected
834by C<decode>) is UTF-8 encoded or not, while C<latin1> and C<ascii> only
835control wether C<encode> escapes character values outside their respective
836codeset range. Neither of these flags conflict with each other, although
837some combinations make less sense than others.
838
839Care has been taken to make all flags symmetrical with respect to
840C<encode> and C<decode>, that is, texts encoded with any combination of
841these flag values will be correctly decoded when the same flags are used
842- in general, if you use different flag settings while encoding vs. when
843decoding you likely have a bug somewhere.
844
845Below comes a verbose discussion of these flags. Note that a "codeset" is
846simply an abstract set of character-codepoint pairs, while an encoding
847takes those codepoint numbers and I<encodes> them, in our case into
848octets. Unicode is (among other things) a codeset, UTF-8 is an encoding,
849and ISO-8859-1 (= latin 1) and ASCII are both codesets I<and> encodings at
850the same time, which can be confusing.
851
852=over 4
853
854=item C<utf8> flag disabled
855
856When C<utf8> is disabled (the default), then C<encode>/C<decode> generate
857and expect Unicode strings, that is, characters with high ordinal Unicode
858values (> 255) will be encoded as such characters, and likewise such
859characters are decoded as-is, no canges to them will be done, except
860"(re-)interpreting" them as Unicode codepoints or Unicode characters,
861respectively (to Perl, these are the same thing in strings unless you do
862funny/weird/dumb stuff).
863
864This is useful when you want to do the encoding yourself (e.g. when you
865want to have UTF-16 encoded JSON texts) or when some other layer does
866the encoding for you (for example, when printing to a terminal using a
867filehandle that transparently encodes to UTF-8 you certainly do NOT want
868to UTF-8 encode your data first and have Perl encode it another time).
869
870=item C<utf8> flag enabled
871
872If the C<utf8>-flag is enabled, C<encode>/C<decode> will encode all
873characters using the corresponding UTF-8 multi-byte sequence, and will
874expect your input strings to be encoded as UTF-8, that is, no "character"
875of the input string must have any value > 255, as UTF-8 does not allow
876that.
877
878The C<utf8> flag therefore switches between two modes: disabled means you
879will get a Unicode string in Perl, enabled means you get an UTF-8 encoded
880octet/binary string in Perl.
881
882=item C<latin1> or C<ascii> flags enabled
883
884With C<latin1> (or C<ascii>) enabled, C<encode> will escape characters
885with ordinal values > 255 (> 127 with C<ascii>) and encode the remaining
886characters as specified by the C<utf8> flag.
887
888If C<utf8> is disabled, then the result is also correctly encoded in those
889character sets (as both are proper subsets of Unicode, meaning that a
890Unicode string with all character values < 256 is the same thing as a
891ISO-8859-1 string, and a Unicode string with all character values < 128 is
892the same thing as an ASCII string in Perl).
893
894If C<utf8> is enabled, you still get a correct UTF-8-encoded string,
895regardless of these flags, just some more characters will be escaped using
896C<\uXXXX> then before.
897
898Note that ISO-8859-1-I<encoded> strings are not compatible with UTF-8
899encoding, while ASCII-encoded strings are. That is because the ISO-8859-1
900encoding is NOT a subset of UTF-8 (despite the ISO-8859-1 I<codeset> being
901a subset of Unicode), while ASCII is.
902
903Surprisingly, C<decode> will ignore these flags and so treat all input
904values as governed by the C<utf8> flag. If it is disabled, this allows you
905to decode ISO-8859-1- and ASCII-encoded strings, as both strict subsets of
906Unicode. If it is enabled, you can correctly decode UTF-8 encoded strings.
907
908So neither C<latin1> nor C<ascii> are incompatible with the C<utf8> flag -
909they only govern when the JSON output engine escapes a character or not.
910
911The main use for C<latin1> is to relatively efficiently store binary data
912as JSON, at the expense of breaking compatibility with most JSON decoders.
913
914The main use for C<ascii> is to force the output to not contain characters
915with values > 127, which means you can interpret the resulting string
916as UTF-8, ISO-8859-1, ASCII, KOI8-R or most about any character set and
9178-bit-encoding, and still get the same data structure back. This is useful
918when your channel for JSON transfer is not 8-bit clean or the encoding
919might be mangled in between (e.g. in mail), and works because ASCII is a
920proper subset of most 8-bit and multibyte encodings in use in the world.
807 921
808=back 922=back
809 923
810 924
811=head1 COMPARISON 925=head1 COMPARISON
815problems (or pleasures) I encountered with various existing JSON modules, 929problems (or pleasures) I encountered with various existing JSON modules,
816followed by some benchmark values. JSON::XS was designed not to suffer 930followed by some benchmark values. JSON::XS was designed not to suffer
817from any of these problems or limitations. 931from any of these problems or limitations.
818 932
819=over 4 933=over 4
934
935=item JSON 2.xx
936
937A marvellous piece of engineering, this module either uses JSON::XS
938directly when available (so will be 100% compatible with it, including
939speed), or it uses JSON::PP, which is basically JSON::XS translated to
940Pure Perl, which should be 100% compatible with JSON::XS, just a bit
941slower.
942
943You cannot really lose by using this module, especially as it tries very
944hard to work even with ancient Perl versions, while JSON::XS does not.
820 945
821=item JSON 1.07 946=item JSON 1.07
822 947
823Slow (but very portable, as it is written in pure Perl). 948Slow (but very portable, as it is written in pure Perl).
824 949
895=back 1020=back
896 1021
897 1022
898=head2 JSON and YAML 1023=head2 JSON and YAML
899 1024
900You often hear that JSON is a subset (or a close subset) of YAML. This is, 1025You often hear that JSON is a subset of YAML. This is, however, a mass
901however, a mass hysteria and very far from the truth. In general, there is 1026hysteria(*) and very far from the truth. In general, there is no way to
902no way to configure JSON::XS to output a data structure as valid YAML. 1027configure JSON::XS to output a data structure as valid YAML that works for
1028all cases.
903 1029
904If you really must use JSON::XS to generate YAML, you should use this 1030If you really must use JSON::XS to generate YAML, you should use this
905algorithm (subject to change in future versions): 1031algorithm (subject to change in future versions):
906 1032
907 my $to_yaml = JSON::XS->new->utf8->space_after (1); 1033 my $to_yaml = JSON::XS->new->utf8->space_after (1);
908 my $yaml = $to_yaml->encode ($ref) . "\n"; 1034 my $yaml = $to_yaml->encode ($ref) . "\n";
909 1035
910This will usually generate JSON texts that also parse as valid 1036This will I<usually> generate JSON texts that also parse as valid
911YAML. Please note that YAML has hardcoded limits on (simple) object key 1037YAML. Please note that YAML has hardcoded limits on (simple) object key
912lengths that JSON doesn't have, so you should make sure that your hash 1038lengths that JSON doesn't have and also has different and incompatible
1039unicode handling, so you should make sure that your hash keys are
913keys are noticeably shorter than the 1024 characters YAML allows. 1040noticeably shorter than the 1024 "stream characters" YAML allows and that
1041you do not have codepoints with values outside the Unicode BMP (basic
1042multilingual page). YAML also does not allow C<\/> sequences in strings
1043(which JSON::XS does not I<currently> generate).
914 1044
915There might be other incompatibilities that I am not aware of. In general 1045There might be other incompatibilities that I am not aware of (or the YAML
1046specification has been changed yet again - it does so quite often). In
916you should not try to generate YAML with a JSON generator or vice versa, 1047general you should not try to generate YAML with a JSON generator or vice
917or try to parse JSON with a YAML parser or vice versa: chances are high 1048versa, or try to parse JSON with a YAML parser or vice versa: chances are
918that you will run into severe interoperability problems. 1049high that you will run into severe interoperability problems when you
1050least expect it.
1051
1052=over 4
1053
1054=item (*)
1055
1056This is spread actively by the YAML team, however. For many years now they
1057claim YAML were a superset of JSON, even when proven otherwise.
1058
1059Even the author of this manpage was at some point accused of providing
1060"incorrect" information, despite the evidence presented (claims ranged
1061from "your documentation contains inaccurate and negative statements about
1062YAML" (the only negative comment is this footnote, and it didn't exist
1063back then; the question on which claims were inaccurate was never answered
1064etc.) to "the YAML spec is not up-to-date" (the *real* and supposedly
1065JSON-compatible spec is apparently not currently publicly available)
1066to actual requests to replace this section by *incorrect* information,
1067suppressing information about the real problem).
1068
1069So whenever you are told that YAML was a superset of JSON, first check
1070wether it is really true (it might be when you check it, but it certainly
1071was not true when this was written). I would much prefer if the YAML team
1072would spent their time on actually making JSON compatibility a truth
1073(JSON, after all, has a very small and simple specification) instead of
1074trying to lobby/force people into reporting untruths.
1075
1076=back
919 1077
920 1078
921=head2 SPEED 1079=head2 SPEED
922 1080
923It seems that JSON::XS is surprisingly fast, as shown in the following 1081It seems that JSON::XS is surprisingly fast, as shown in the following
1000 1158
1001Third, JSON::XS recurses using the C stack when decoding objects and 1159Third, JSON::XS recurses using the C stack when decoding objects and
1002arrays. The C stack is a limited resource: for instance, on my amd64 1160arrays. The C stack is a limited resource: for instance, on my amd64
1003machine with 8MB of stack size I can decode around 180k nested arrays but 1161machine with 8MB of stack size I can decode around 180k nested arrays but
1004only 14k nested JSON objects (due to perl itself recursing deeply on croak 1162only 14k nested JSON objects (due to perl itself recursing deeply on croak
1005to free the temporary). If that is exceeded, the program crashes. to be 1163to free the temporary). If that is exceeded, the program crashes. To be
1006conservative, the default nesting limit is set to 512. If your process 1164conservative, the default nesting limit is set to 512. If your process
1007has a smaller stack, you should adjust this setting accordingly with the 1165has a smaller stack, you should adjust this setting accordingly with the
1008C<max_depth> method. 1166C<max_depth> method.
1009 1167
1010And last but least, something else could bomb you that I forgot to think 1168Something else could bomb you, too, that I forgot to think of. In that
1011of. In that case, you get to keep the pieces. I am always open for hints, 1169case, you get to keep the pieces. I am always open for hints, though...
1012though... 1170
1171Also keep in mind that JSON::XS might leak contents of your Perl data
1172structures in its error messages, so when you serialise sensitive
1173information you might want to make sure that exceptions thrown by JSON::XS
1174will not end up in front of untrusted eyes.
1013 1175
1014If you are using JSON::XS to return packets to consumption 1176If you are using JSON::XS to return packets to consumption
1015by JavaScript scripts in a browser you should have a look at 1177by JavaScript scripts in a browser you should have a look at
1016L<http://jpsykes.com/47/practical-csrf-and-json-security> to see whether 1178L<http://jpsykes.com/47/practical-csrf-and-json-security> to see whether
1017you are vulnerable to some common attack vectors (which really are browser 1179you are vulnerable to some common attack vectors (which really are browser
1018design bugs, but it is still you who will have to deal with it, as major 1180design bugs, but it is still you who will have to deal with it, as major
1019browser developers care only for features, not about doing security 1181browser developers care only for features, not about getting security
1020right). 1182right).
1021 1183
1022 1184
1023=head1 THREADS 1185=head1 THREADS
1024 1186

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines