source: code/trunk/lib/id.ml@ 2

Last change on this file since 2 was 2, checked in by fox, 4 years ago

Samhain 21

Converter

  • type selection
  • subdir conversion
  • htm extension

Gemini

  • index.gmi
  • topics and latest
  • gmi.atom feed

Add pull (http(s)) operation

  • peers.pub.conf and peers.priv.conf

HTML5 format & fixes by Novaburst
Phony target (thanks Gergely)

May

Basic unit renamed from Note to Text.
New modular text-parser, internal to Logarion, for generic notation parsing. The default input format is now a much plainer text.
Logarion created texts have part of the UUID in filename.
Logarion's index re-written in Messagepack format. Removed indices command. They are generated during convert.

File size: 309 bytes
Line 
1let random_state = Random.State.make_self_init ()
2type t = Uuidm.t
3let compare = Uuidm.compare
4let to_string = Uuidm.to_string
5let of_string = Uuidm.of_string
6let to_bytes = Uuidm.to_bytes
7let of_bytes = Uuidm.of_bytes
8let generate ?(random_state=random_state) = Uuidm.v4_gen random_state
9let nil = Uuidm.nil
Note: See TracBrowser for help on using the repository browser.