- Timestamp:
- Aug 21, 2024, 11:14:12 AM (8 months ago)
- Location:
- trunk/cli
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/authors.ml
r66 r69 19 19 `P "List author names" ] 20 20 in 21 let info = Cmd.info "authors" ~ version:"%%VERSION%%" ~doc ~man in21 let info = Cmd.info "authors" ~doc ~man in 22 22 Cmd.v info authors_t -
trunk/cli/convert.ml
r66 r69 93 93 `P "Run `txt index` first." ] 94 94 in 95 let info = Cmd.info "convert" ~ version: "%%VERSION%%" ~doc ~man in95 let info = Cmd.info "convert" ~doc ~man in 96 96 Cmd.v info convert_t -
trunk/cli/edit.ml
r68 r69 19 19 `P "EDITOR - Default editor name" ] 20 20 in 21 let info = Cmd.info "edit" ~ version:"%%VERSION%%" ~doc ~man in21 let info = Cmd.info "edit" ~doc ~man in 22 22 Cmd.v info edit_t -
trunk/cli/file.ml
r66 r69 20 20 `P "Use it to create sub-repositories for sharing or converting" ] 21 21 in 22 let info = Cmd.info "file" ~ version:"%%VERSION%%" ~doc ~man in22 let info = Cmd.info "file" ~doc ~man in 23 23 Cmd.v info file_t -
trunk/cli/index.ml
r66 r69 88 88 `S Manpage.s_see_also; 89 89 `P "MessagePack format. https://msgpack.org" ] in 90 let info = Cmd.info "index" ~ version:"%%VERSION%%" ~doc ~man in90 let info = Cmd.info "index" ~doc ~man in 91 91 Cmd.v info index_t -
trunk/cli/last.ml
r66 r69 32 32 `P "Print the filename of most recent text" ] 33 33 in 34 let info = Cmd.info "last" ~ version:"%%VERSION%%" ~doc ~man in34 let info = Cmd.info "last" ~doc ~man in 35 35 Cmd.v info last_t -
trunk/cli/listing.ml
r66 r69 41 41 `P "If -R is used, list header information for texts found in subdirectories, too." ] 42 42 in 43 let info = Cmd.info "list" ~ version:"%%VERSION%%" ~doc ~man in43 let info = Cmd.info "list" ~doc ~man in 44 44 Cmd.v info listing_t -
trunk/cli/new.ml
r68 r69 24 24 let man = [ 25 25 `S Manpage.s_description; 26 `P "Create a new article , with title 'Draft' when none provided";26 `P "Create a new article"; 27 27 `S Manpage.s_environment; 28 28 `P "USER - The login name of the user, used if the Authors field is blank"; 29 29 `P "EDITOR - Default editor name" ] 30 30 in 31 let info = Cmd.info "new" ~ version:"%%VERSION%%" ~doc ~man in31 let info = Cmd.info "new" ~doc ~man in 32 32 Cmd.v info new_t -
trunk/cli/peers.ml
r66 r69 39 39 `P "List current peers and associated information" ] 40 40 in 41 let info = Cmd.info "peers" ~ version:"%%VERSION%%" ~doc ~man in41 let info = Cmd.info "peers" ~doc ~man in 42 42 Cmd.v info peers_t -
trunk/cli/pull.ml
r66 r69 152 152 `P "Pull texts from known repositories." ] 153 153 in 154 let info = Cmd.info "pull" ~ version:"%%VERSION%%" ~doc ~man in154 let info = Cmd.info "pull" ~doc ~man in 155 155 Cmd.v info pull_t -
trunk/cli/recent.ml
r66 r69 20 20 `P "If -R is used, list header information for texts found in subdirectories, too, along with their filepaths" ] 21 21 in 22 let info = Cmd.info "recent" ~ version:"%%VERSION%%" ~doc ~man in22 let info = Cmd.info "recent" ~doc ~man in 23 23 Cmd.v info recent_t -
trunk/cli/topics.ml
r66 r69 18 18 `P "List of topics" ] 19 19 in 20 let info = Cmd.info "topics" ~ version:"%%VERSION%%" ~doc ~man in20 let info = Cmd.info "topics" ~doc ~man in 21 21 Cmd.v info topics_t -
trunk/cli/unfile.ml
r66 r69 18 18 `P "Unfile texts in parameter from directories in parameter, by removing hardlinks" ] 19 19 in 20 let info = Cmd.info "unfile" ~ version:"%%VERSION%%" ~doc ~man in20 let info = Cmd.info "unfile" ~doc ~man in 21 21 Cmd.v info unfile_t
Note:
See TracChangeset
for help on using the changeset viewer.