From 3bf35cd8df2ded7cf440849952e9a194693faa49 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 5 Nov 2021 08:43:25 +0200 Subject: use txt rather than pod --- README.pod | 86 -------------------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 README.pod (limited to 'README.pod') diff --git a/README.pod b/README.pod deleted file mode 100644 index 8a080af..0000000 --- a/README.pod +++ /dev/null @@ -1,86 +0,0 @@ -=head1 NAME - -japi - A Humble Jira API Tool - -This is a small and simple command line tool to be used manually or via cron to fetch the newest unresolved and unclosed tickets from a Jira project. - -It might be usefull to write the results every hour to a local file and do a C every time you open a new shell. - -CAUTION: You may also need to install the C module from CPAN manually. It's not included in standard Debian GNU/Linux Wheezy yet. - -=head1 SYNOPSIS - -Synopsis: japi - [--debug] - [--help] - [--version] - [--nocolor] - [--passfile] - [--unassigned] - [--jira_apiversion STRING] - [--jira_query STRING] - [--jira_uribase STRING] - [--jira_user STRING] - -=head2 Options: - -=over - -=item --debug - -Prints out extra debugging infos during execution. - -=item --help - -Prints out the help. - -=item --version - -Prints out the version. - -=item --nocolor - -By default the output uses colored text output. This switch disables it. - -=item --passfile STRING - -Specifies the path to an optional file which includes the Jira API password but Base64 encoded. The default value is C<~/.japipass>. - -If the file is not present, Japi will prompt for the password. - -=item --unassigned - -By default the output lists assigned and unassigned issues. Use this switch to only list unassigned issues. - -=item --jira_apiversion STRING - -Specifies the Jira API version to use. The default value is C. - -=item --jira_query STRING - -Specifies the Jira search string (e.q. a JQL string). The default value is C. - -=item --jira_uribase STRING - -Specifies the Jira URI base. The default value is C. This has to be changed. - -=item --jira_user STRING - -Specifies the Jira user. The default value is your current Linux/UNIX user. - -=back - -=head1 CONFIG - -Almost all options have to be passed the Japi tool via command line. One exception is the password file containing your Jira password Base64 encoded. - -It can be created like this: - - bash -c 'read -s PASSWORD; tr -d "\n" <<< "$PASSWORD" | base64' | tee ~/.japipass - chmod 0600 ~/.japipass - -=head1 AUTHOR - -Paul C. Buetow - - -=cut -- cgit v1.2.3