Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/edit.ml
r66 r68 15 15 `S Manpage.s_description; 16 16 `P "Launches EDITOR (nano if environment variable is unset) with text path as parameter."; 17 `P "If -R is used, the ID search space includes texts found in subdirectories, too." ] 17 `P "If -R is used, the ID search space includes texts found in subdirectories, too."; 18 `S Manpage.s_environment; 19 `P "EDITOR - Default editor name" ] 18 20 in 19 21 let info = Cmd.info "edit" ~version:"%%VERSION%%" ~doc ~man in -
trunk/cli/new.ml
r66 r68 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, with title 'Draft' when none provided"; 27 `S Manpage.s_environment; 28 `P "USER - The login name of the user, used if the Authors field is blank"; 29 `P "EDITOR - Default editor name" ] 27 30 in 28 31 let info = Cmd.info "new" ~version:"%%VERSION%%" ~doc ~man in -
trunk/cli/txt.ml
r67 r68 2 2 3 3 let subs = [ 4 Authors.cmd; (* Done *)5 Convert.cmd; (* Done *)6 Edit.cmd; (* Done *)7 File.cmd; (* Done *)8 Index.cmd; (* Done *)9 Last.cmd; (* Done *)10 Listing.cmd; (* Done *)11 New.cmd; (* Done *)12 Peers.cmd; (* Done *)13 Pull.cmd; (* Done *)14 Recent.cmd; (* Done *)15 Topics.cmd; (* Done *)16 Unfile.cmd; (* Done *)4 Authors.cmd; 5 Convert.cmd; 6 Edit.cmd; 7 File.cmd; 8 Index.cmd; 9 Last.cmd; 10 Listing.cmd; 11 New.cmd; 12 Peers.cmd; 13 Pull.cmd; 14 Recent.cmd; 15 Topics.cmd; 16 Unfile.cmd; 17 17 ] 18 18 … … 22 22 let doc = "Discover, collect and exchange texts" in 23 23 let man = [ 24 `S "CONTACT"; 25 `P "<mailto:logarion-dev@chaotic.ninja>"; ] 24 `S Manpage.s_authors; 25 `P "orbifx <mailto:fox@orbitalfox.eu>"; 26 `P "Izuru Yakumo <mailto:yakumo.izuru@chaotic.ninja>"; 27 `S Manpage.s_bugs; 28 `P "Please report them at <mailto:logarion-dev@chaotic.ninja>"; ] 26 29 in 27 30 Cmd.group (Cmd.info "txt" ~version:"%%VERSION%%" ~doc ~man) ~default:default_cmd subs
Note:
See TracChangeset
for help on using the changeset viewer.