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 ced055f626aa1a2a3257b8f0fcc6d69f006a6109
tree ecade9c117055a13f9b961ec118a1fb3c3c3fde6
parent ad6cc2b6efcb34fe5170906f918660abc65dd908
tree ecade9c117055a13f9b961ec118a1fb3c3c3fde6
parent ad6cc2b6efcb34fe5170906f918660abc65dd908
| 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:02:21 -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.




