Changeset 68 in code for trunk


Ignore:
Timestamp:
Aug 21, 2024, 2:15:27 AM (8 months ago)
Author:
yakumo.izuru
Message:

Update inline documentation

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r65 r68  
    1111        @dune build
    1212deps:
    13         @opam install dune ocurl cmdliner=1.0.4 msgpck
     13        @opam install dune ocurl cmdliner msgpck
    1414cli:
    1515        @dune build cli/txt.exe
     
    2020        @cp _build/default/cli/txt.exe txt.exe
    2121        @strip txt.exe
    22         @tar czvf "kosuzu-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt
     22        @tar czvf "logarion-${OS}-${MACHINE}-${DATE}-${COMMIT}" txt.exe readme.txt
    2323        @rm txt.exe
    2424install:
  • trunk/cli/edit.ml

    r66 r68  
    1515      `S Manpage.s_description;
    1616      `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" ]
    1820  in
    1921  let info = Cmd.info "edit" ~version:"%%VERSION%%" ~doc ~man in
  • trunk/cli/new.ml

    r66 r68  
    2424  let man = [
    2525      `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" ]
    2730  in
    2831  let info = Cmd.info "new" ~version:"%%VERSION%%" ~doc ~man in
  • trunk/cli/txt.ml

    r67 r68  
    22
    33let 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;
    1717  ]
    1818
     
    2222  let doc = "Discover, collect and exchange texts" in
    2323  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>"; ]
    2629  in
    2730  Cmd.group (Cmd.info "txt" ~version:"%%VERSION%%" ~doc ~man) ~default:default_cmd subs
  • trunk/logarion.opam

    r66 r68  
    11# This file is generated by dune, edit dune-project instead
    22opam-version: "2.0"
    3 version: "1.4.0"
     3version: "1.4.1"
    44synopsis: "Texts archival and exchange"
    55maintainer: ["Izuru Yakumo <yakumo.izuru@chaotic.ninja>"]
Note: See TracChangeset for help on using the changeset viewer.