Last change
on this file since 21 was 21, checked in by fox, 2 years ago |
Moved conversion file, conf -> pack, fixes
Conversion:
- Configuration sought in: txt.conf, ~/.config/txt/txt.conf
- logarion.conf to produce index and target formats
Publication:
publish <ids> : copies txt with ID into Pubdir/public_{html,gemini,gopher} (Pubdir fromtxt.conf), if dirs exist, and runs convert <pubdir>
Fixes:
|
File size:
1.2 KB
|
Line | |
---|
1 | let targets () =
|
---|
2 | let kv = Logarion.File_store.of_kv_file () in
|
---|
3 | let pub_dir =
|
---|
4 | try Logarion.Store.KV.find "Pubdir" kv with Not_found ->
|
---|
5 | try Sys.getenv "txtpubdir" with Not_found -> ""
|
---|
6 | in
|
---|
7 | let exists_dir dir = Sys.is_directory (Filename.concat pub_dir dir) in
|
---|
8 | List.filter (fun x -> try exists_dir (snd x) with Sys_error _ -> false) [
|
---|
9 | "htm,atom", "public_html/";
|
---|
10 | "gmi,gmi-atom", "public_gemini/";
|
---|
11 | "", "public_gopher/";
|
---|
12 | ]
|
---|
13 |
|
---|
14 | open Logarion
|
---|
15 | let publish ids =
|
---|
16 | let predicate t = List.mem t.Text.id ids in
|
---|
17 | let targets = targets () in
|
---|
18 | let pub_dirs = List.map (fun x -> snd x) targets in
|
---|
19 | File_store.iter ~predicate (fun (_t, p) ->
|
---|
20 | try File.file ((List.hd p)::pub_dirs)
|
---|
21 | with Unix.Unix_error (Unix.EEXIST, _, _) -> ());
|
---|
22 | List.iter (fun t -> Printf.eprintf "%s %s\n" (fst t) (snd t);
|
---|
23 | Index.((load (snd t)) false None None None None);
|
---|
24 | Convert.at_path (fst t) false (snd t);
|
---|
25 | prerr_endline (snd t))
|
---|
26 | targets
|
---|
27 |
|
---|
28 | open Cmdliner
|
---|
29 | let term =
|
---|
30 | let ids = Arg.(value & pos_all string [] & info [] ~docv:"text ids") in
|
---|
31 | let doc = "convert texts into standard public dirs public_{html,gemini,gopher} if they exist" in
|
---|
32 | Term.(const publish $ ids), Term.info "publish" ~doc ~man:[ `S "DESCRIPTION"; `P doc ]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.