You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to frozend
Instead of verbose, json alike syntax new one was made. It is very
simple and speeds up writing of configuration files.
See examples/*.fz files for more details.
For now there is two main statements:
- local somename = "some data"
- somename.action(parameters)
Data definition splits into simple data and complex one.
Simple data:
- "string"
- raw_t : "string"
- sometype : { a = "12", b = "34" }
Complex data represent layered data:
- format ~ record_t : { separator = "Z" } > "abZcdZefZ"
Where "format ~" is triplet which use simple data (record_t in this
case) to represent data. Format triplet change format of underlying item
using given template data. Another example of triplet is key~ which
change key of request from given key to value returned by slave data.
More examples and full documentation is on the way.