Read References field; test & tidy documentation

This commit is contained in:
orbifx 2022-12-12 13:55:50 +00:00
parent 8fe548fd5f
commit 7ca57f9f68
5 changed files with 58 additions and 25 deletions

View File

@ -25,7 +25,7 @@ let wrap conv htm text_title body =
let feed = try Logarion.Store.KV.find "HTM-feed" conv.Conversion.kv
with Not_found -> if Sys.file_exists (Filename.concat conv.Conversion.dir "feed.atom")
then "feed.atom" else "" in
let header = match htm.templates.header with
let header = match htm.templates.header with
| Some x -> replace x
| None -> Printf.(sprintf "<header><a href='.'>%s</a>%s</header>" site_title
(if feed <> "" then sprintf "<nav><a href='%s' id='feed'>feed</a></nav>" feed else ""))
@ -46,6 +46,7 @@ let topic_link root topic =
module HtmlConverter = struct
include Converter.Html
let uid_uri u a = Printf.sprintf "%s<a href='%s%s'>%s</a>" a u ext u
let angled_uri u a =
if try String.sub u 0 10 = "urn:txtid:" with Invalid_argument _ -> false
then angled_uri (String.(sub u 10 (length u - 10)) ^ ext) a else angled_uri u a
@ -69,7 +70,7 @@ let page htm conversion text =
sep_append a (List.fold_left (fun a t -> sep_append ~sep:" > " a (topic_link (List.hd ts) t)) "" ts) in
String_set.fold to_linked x "" in
let ref_links x =
let link l = HtmlConverter.angled_uri (String.(sub l 1 (length l-2))) "" in
let link l = HtmlConverter.uid_uri (String.(sub l 1 (length l-2))) "" in
String_set.fold (fun r a -> sep_append a (link r)) x ""
in
"<article><header><dl>"

View File

@ -1,7 +1,12 @@
include Set.Make(String)
let list_of_csv x = Str.(split (regexp " *, *")) (String.trim x)
let of_string x = of_list (list_of_csv x)
let list_of_ssv x = Str.(split (regexp " +")) (String.trim x)
let of_string ?(separator=list_of_csv) x = of_list (separator x)
let of_csv_string x = of_string ~separator:list_of_csv x
let of_ssv_string x = of_string ~separator:list_of_ssv x
let to_string ?(pre="") ?(sep=", ") s =
let j a x = match a, x with "", _ -> x | _, "" -> a | _ -> a ^ sep ^ x in
fold (fun x acc -> j acc x) s pre

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,8 @@ 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:(String_set.of_ssv_string) 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

View File

@ -1,5 +1,6 @@
ID: ka4wtj
Title: Logarion
References: <3sqd84> <hvhhwf> <h1a9tg>
## Guides

View File

@ -5,9 +5,12 @@ Authors: orbifx
# New
To create new text files, use `txt new "<My title>"` where <my title> is the initial title you wish the text to have. It's important to enclose the title with quotation marks if it contains spaces. The command will return the filename of the new text. The filename starts with a part of the ID and the title of the text. Use the file name to open it with your text editor.
To create new text files, use "txt new". For example:
txt new "Hello world"
It's important to enclose the title with quotation marks if it contains spaces. The command will return the filename of the new text. The filename starts with a part of the ID and the title of the text. Use the file name to open it with your text editor.
Alternatively add the -i flag, `txt new -i "<My title>"` to have the text editor launched to edit the newly created file.
Alternatively add the -i flag to have the text editor launched to edit the newly created file:
txt new -i "Some title"
Text files will be stored in either:
1. The directory pointed at by txtdir if defined
@ -15,37 +18,59 @@ Text files will be stored in either:
3. The current working directory, if all else fails
The simplest approach is to put all texts in the local-share directory and override that on occasion with
`txtdir`. For example:
txtdir=. txt new "Hello world"
$txtdir. For example:
txtdir=. txt new "Hello world"
# Publish
Texts created with "new" are treated as personal until published. To publish a text, use `txt publish <id>` where <id> is the text of the text to publish. Publication requires a `txt.conf` file which must exist in either:
Texts created with "new" are treated as personal until published. To publish a text, use `txt publish [id]` where [id] is the text of the text to publish. Publication requires a `txt.conf` file which must exist in either:
1. The current working directory
2. $HOME/.config/txt/txt.conf
With the above in place, `txt publish <id>` will add the text file with <id> in the publication-directory and reproduce the `index.pck` in that directory. If Pubdir is not defined in `txt.conf` then the environmental variable `txtpubdir` is used. If that is also undefined, the current working directory is used as a publication directory.
With the above in place, `txt publish [id]` will add the text file with [id] in the publication-directory and reproduce the `index.pck` in that directory. If Pubdir is not defined in `txt.conf` then the environmental variable `txtpubdir` is used. If that is also undefined, the current working directory is used as a publication directory.
Logarion is protocol agnostic, so publish looks for the existence of directories to copy the files, ready for publication. At the time of writing the three directories are `public_html`, `public_gemini` and `public_gopher`. For each of these directories, `txt publish <id>` will copy the text file, revise the `index.pck` and also convert produce converted files, such .htm for public_html.
Logarion is protocol agnostic, so publish looks for the existence of directories to copy the files, ready for publication. At the time of writing the three directories are `public_html`, `public_gemini` and `public_gopher`. For each of these directories, `txt publish [id]` will copy the text file, revise the `index.pck` and also convert produce converted files, such .htm for public_html.
## txt.conf keys
Id: A random, unique, alphanumeric string for distinguishing the repository (atleast 6 characters of Crockford's Base32 recommended)
Title: a human-friendly title
Authors: comma seperated list of names and, optionally, addresses
Topics: topics the repository aims to cover
Locations: list of URIs the repositories can be accessed
Peers: list of peer URIs
Pubdir: (optional) the directory that contains publication subdirectories
Id:
A random, unique, alphanumeric string for distinguishing the repository (atleast 6 characters of Crockford's Base32 recommended)
Title:
a human-friendly title
Authors:
comma seperated list of names and, optionally, addresses
Topics:
topics the repository aims to cover
Locations:
list of URIs the repositories can be accessed
Peers:
list of peer URIs
Pubdir:
(optional) the directory that contains publication subdirectories
## HTML
There are some special settings for HTML publication:
HTM-style: path to a CSS style. It will be inserted in every .htm file. To link to a single CSS consider using `@import`
HTM-header: path to a file, inserted in every .htm file, right after the <body> tag
HTM-footer: path to a file, inserted in every .htm file, right before the </body> tag
HTM-index: if defined, determines the filename for the index files. Left undefined, defaults to `index.html`
HTM-feed: if defined, this will overrite the feed URI used in HTML files. If left undefined the default `feed.atom` is used
HTM-style:
path to a CSS style. It will be inserted in every .htm file. To link to a single CSS consider using `@import`
HTM-header:
path to a file, inserted in every .htm file, right after the body tag
HTM-footer:
path to a file, inserted in every .htm file, right before the body tag
HTM-index:
if defined, determines the filename for the index files. Left undefined, defaults to `index.html`
HTM-feed:
if defined, this will overrite the feed URI used in HTML files. If left undefined the default `feed.atom` is used