From 8697d8eaf2628ce33dedac2bbeb616162175a144 Mon Sep 17 00:00:00 2001 From: Batuhan Taskaya Date: Fri, 29 Apr 2022 13:15:39 +0300 Subject: [PATCH] Deprecate --history-print --- docs/README.md | 8 -------- extras/man/http.1 | 10 ---------- extras/man/https.1 | 10 ---------- httpie/cli/definition.py | 9 +-------- 4 files changed, 1 insertion(+), 36 deletions(-) diff --git a/docs/README.md b/docs/README.md index dbab8714ec..dc550a83e4 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1665,14 +1665,6 @@ $ http --all --follow pie.dev/redirect/3 The intermediary requests/responses are by default formatted according to `--print, -p` (and its shortcuts described above). -If you’d like to change that, use the `--history-print, -P` option. -It takes the same arguments as `--print, -p` but applies to the intermediary requests only. - -```bash -# Print the intermediary requests/responses differently than the final one: -$ http -A digest -a foo:bar --all -p Hh -P H pie.dev/digest-auth/auth/foo/bar -``` - ### Conditional body download As an optimization, the response body is downloaded from the server only if it’s part of the output. diff --git a/extras/man/http.1 b/extras/man/http.1 index 1dd7996d7e..2a0b450dc8 100644 --- a/extras/man/http.1 +++ b/extras/man/http.1 @@ -298,16 +298,6 @@ Digest auth is used \fB\,--auth\/\fR=digest), etc. -.IP "\fB\,--history-print\/\fR, \fB\,-P\/\fR \fI\,WHAT\/\fR" - - -The same as\fB\,--print\/\fR,\fB\,-p\/\fR but applies only to intermediary requests/responses -(such as redirects) when their inclusion is enabled with\fB\,--all\/\fR. If this -options is not specified, then they are formatted the same way as the final -response. - - - .IP "\fB\,--stream\/\fR, \fB\,-S\/\fR" diff --git a/extras/man/https.1 b/extras/man/https.1 index d0eef2352f..c94c1a1d72 100644 --- a/extras/man/https.1 +++ b/extras/man/https.1 @@ -298,16 +298,6 @@ Digest auth is used \fB\,--auth\/\fR=digest), etc. -.IP "\fB\,--history-print\/\fR, \fB\,-P\/\fR \fI\,WHAT\/\fR" - - -The same as\fB\,--print\/\fR,\fB\,-p\/\fR but applies only to intermediary requests/responses -(such as redirects) when their inclusion is enabled with\fB\,--all\/\fR. If this -options is not specified, then they are formatted the same way as the final -response. - - - .IP "\fB\,--stream\/\fR, \fB\,-S\/\fR" diff --git a/httpie/cli/definition.py b/httpie/cli/definition.py index 79e66f7f40..e9b6cba77d 100644 --- a/httpie/cli/definition.py +++ b/httpie/cli/definition.py @@ -494,14 +494,7 @@ def format_style_help(available_styles, *, isolation_mode: bool = False): '-P', dest='output_options_history', metavar='WHAT', - short_help='--print for intermediary requests/responses.', - help=""" - The same as --print, -p but applies only to intermediary requests/responses - (such as redirects) when their inclusion is enabled with --all. If this - options is not specified, then they are formatted the same way as the final - response. - - """, + help=Qualifiers.SUPPRESS, ) output_options.add_argument( '--stream',