This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit ad6cc2b6efcb34fe5170906f918660abc65dd908
tree 22edc288583ac0268029bb1cc9a7b021769ae610
parent 900ffaf217c7c53b71fe17a9a868cb843c7d0922
tree 22edc288583ac0268029bb1cc9a7b021769ae610
parent 900ffaf217c7c53b71fe17a9a868cb843c7d0922
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Apr 01 13:46:00 -0700 2008 | [tim] |
| |
EMakefile | Tue May 13 02:13:38 -0700 2008 | [tim] |
| |
License.txt | Tue May 13 02:15:12 -0700 2008 | [tim] |
| |
Makefile | Tue May 13 03:09:40 -0700 2008 | [tim] |
| |
README.txt | Tue May 13 02:28:18 -0700 2008 | [tim] |
| |
src/ | Sun Jun 15 07:01:34 -0700 2008 | [tim] |
README.txt
=============== Rison In Erlang =============== What is this? ------------- A Rison encoder/decoder written in Erlang. What is Rison? -------------- A data serialization format optimized for compactness in URIs. See http://mjtemplate.org/examples/rison.html for more information. How do I use it? ---------------- To convert Rison-formatted strings into Erlang terms, use rison:load/1. To do the opposite, use rison:dump/1. For example: 1> rison:load("!t"). {ok, true} 2> rison:load("!(1,2,3)"). {ok,{array,[1,2,3]}} 3> rison:load("123.456e789"). {ok,{number,123,'456',789}} 4> rison:load("abc def"). {error,invalid_input} 5> rison:dump({array,[1,2,3]}). {ok,"!(1,2,3)"} 6> rison:dump({object,[{a,0}]}). {ok,"(a:0)"} 7> rison:dump({}). {error,invalid_input} Type "make i" to compile the code and get an Erlang shell where you can try out these examples.




