Read References field; referred by listing; test & tidy documentation

git-svn-id: file:///srv/svn/repo/kosuzu/trunk@39 eb64cd80-c68d-6f47-b6a3-0ada418499da
This commit is contained in:
fox
2022-12-12 22:52:55 +00:00
parent e6452a861d
commit 1547dc4d27
9 changed files with 108 additions and 38 deletions

View File

@@ -25,8 +25,8 @@ let oldest a b = Date.(compare b.date a.date)
let str key m = try String_map.find (String.lowercase_ascii key) m.string_map with Not_found -> ""
let set key m = try String_map.find (String.lowercase_ascii key) m.stringset_map with Not_found -> String_set.empty
let str_set key m = String_set.to_string @@ set key m
let with_str_set m key str = { m with
stringset_map = String_map.add (String.lowercase_ascii key) (String_set.of_string str) m.stringset_map
let with_str_set ?(separator=String_set.of_csv_string) m key str = { m with
stringset_map = String_map.add (String.lowercase_ascii key) (separator str) m.stringset_map
}
let with_kv x (k,v) =
@@ -39,7 +39,11 @@ let with_kv x (k,v) =
| "authors" -> { x with authors = Person.Set.of_string (trim v)}
| "date" -> { x with date = Date.{ x.date with created = Date.of_string v }}
| "date-edited"-> { x with date = Date.{ x.date with edited = Date.of_string v }}
| "licences" | "topics" | "keywords" | "references" | "series" as k -> with_str_set x k v
| "licences" | "topics" | "keywords" | "series" as k -> with_str_set x k v
| "references" -> with_str_set
~separator:(fun x -> String_set.map (fun x -> String.(sub x 1 (length x-2)))
(String_set.of_ssv_string x))
x k v
| k -> { x with string_map = String_map.add k (trim v) x.string_map }
let kv_of_string line = match Str.(bounded_split (regexp ": *")) line 2 with