Commit Graph

153 Commits (be3e5197eb25f0499e29e744f634c95294b31b43)
 

Author SHA1 Message Date
Adam Tauber be3e5197eb [fix] remove inseure flag from tls example in help text 8 years ago
Adam Tauber a589db3efc [fix] remove tabs from help text 8 years ago
Adam Tauber ecde828bd6 [enh] add new statusline functions 8 years ago
Adam Tauber 845626567d [fix] initialize statusline with default config - closes #86 8 years ago
Adam Tauber 68e9328590 Merge pull request #85 from pradeepchhetri/cleanups
Minor cleanups
8 years ago
Pradeep Chhetri 371b4cce37 Minor cleanups 8 years ago
Adam Tauber 760d7739f1 [enh] add request duration to statusline 8 years ago
Adam Tauber 54d532497d [enh] add statusline 8 years ago
Adam Tauber aab7f36262 [fix] gofmt 8 years ago
Adam Tauber 0a5749815d Merge branch 'autocomplete'
closes #80
8 years ago
Adam Tauber a8baa739d2 [fix] autocomplete positioning 8 years ago
Benaiah Mischenko ec9e472797 Autocomplete request headers 8 years ago
Adam Tauber efc1a4b97e Merge pull request #83 from Benaiah/sample-config-defaults
Make sample config have default config settings
8 years ago
Benaiah Mischenko 9ed7a7d404 Make sample config have default config settings 8 years ago
Adam Tauber 2e10685f7d Merge pull request #79 from udhos/master
Restrict allowed TLS versions.
8 years ago
Everton Marques 5a78cc8930 Fix go vet complaint. 8 years ago
Everton Marques 4d5bc7f55f Cleanup: remove redundant text. 8 years ago
Everton Marques 4e2c20a29d cURL flags, global var in uppercase, break arg parsing by returning error. 8 years ago
Everton Marques c30e7a09ae Restrict allowed TLS versions. 8 years ago
Adam Tauber 3e3f1142e3 [enh] ability to disable following redirections 8 years ago
Adam Tauber ed86f0e1ac [fix] import order 8 years ago
Adam Tauber 85147bed2d [enh] add socks proxy support - closes #77 8 years ago
Adam Tauber 711176ab44 [fix] allow empty URL scheme 8 years ago
Adam Tauber 7ddc409929 [fix] disable infinite down scroll - fixes #31 8 years ago
Adam Tauber 34e53c339b [enh] curl compatibility: add -x, --proxy flags to modify HTTP proxy - closes #73 8 years ago
Adam Tauber 4f308726ce [doc] update keybindings in help text 8 years ago
Adam Tauber 1969400729 [enh] curl compatibility: -k flag alias for --insecure 8 years ago
Adam Tauber 5a15ac3fbd Merge pull request #58 from dsalahutdinov/master
feature: result formatter extensibility with minor refactor and sever…
8 years ago
Salahutdinov Dmitry e6e364370d feature: result formatter extensibility with minor refactor and several testsy 8 years ago
Adam Tauber e965e65506 Merge pull request #71 from nwidger/master
Use mime.ParseMediaType to parse Content-Type header
8 years ago
nwidger c80a740d57 Use mime.ParseMediaType to parse Content-Type header
In addition, detection of JSON bodies has been expanded to include
both "application/json" as well as any Content-Type ending in "+json".
This should catch all JSON media types as registered in the IANA Media
Type registry located here:

http://www.iana.org/assignments/media-types/media-types.xhtml
8 years ago
Adam Tauber 15bccf5632 [enh] more flexible json content-type detection - closes #67 8 years ago
Adam Tauber 56b3a1a4ea [fix] delete word off-by-one 8 years ago
Adam Tauber d8a8ca2d97 [fix] set valid cursor position on 8 years ago
Adam Tauber f1acb28e73 [fix] correct home/end positions for long lines 8 years ago
Adam Tauber 7f60f36194 [enh] add "delete word" command and bind to ctrl+w by default 8 years ago
Adam Tauber 1e666b8541 [enh] implement "delete line" functionality and bind to ctrl+d by default 8 years ago
Adam Tauber 64a6272718 [enh] support JSON request - related to #70 8 years ago
Pawel Wolowiec 600c77648a Refactor (#66)
Moved most view properties to the top, leaving Layout function much smaller + minor refactor
8 years ago
Adam Tauber f34c82a438 [enh] v0.2.0 8 years ago
Adam Tauber ee71867550 [doc] config documentation update 8 years ago
Adam Tauber 0568b27d53 [fix] disable wrapping of editable views - related to #61 8 years ago
Adam Tauber 70e76c45b5 Merge pull request #62 from nwidger/master
Support PATCH requests with JSON bodies
8 years ago
nwidger 3dcd3b24d4 Set x-www-form-urlencoded content-type for non-binary data
Set the add_content_type when adding non-binary data with the "-d" and
"--data" options so that a "Content-Type:
application/x-www-form-urlencoded" header will get added to the
request.
8 years ago
nwidger dade4d5a47 Add "--data-binary" option to help text 8 years ago
Adam Tauber 32d706201b Merge pull request #60 from wolowiec/refactor
Reformatted layout setup, so everything can be configured in one place
8 years ago
nwidger 67e7f4d0d1 Support PATCH requests with JSON bodies
Chrome's 'Copy as cURL' option generates "-X PATCH -H 'Content-Type:
application/json' --data-binary '<json...>'" options to construct a
PATCH request that contains a JSON body.  This commit allows wuzz to
send such a request by making the following changes:

Modify App.ParseArgs to support the "--data-binary" option.  When this
option is specified, do not pass the body through url.QueryUnescape
and do not add automatically a "Content-Type:
application/x-www-form-urlencoded" header to the request.

Modify App.ParseArgs to remember if the request method has been
explicitly set via the "-X" or "--request" options and in such
situations to not automatically set the request method to POST when
request data is present.

Modify App.SubmitRequest to include the request body if the method is
PATCH.

Modify App.SubmitRequest to not replace newlines (\n) with
ampersands (&) in the request body unless a "Content-Type:
application/x-www-form-urlencoded" header exists.  This required
moving the creation of the headers to be before the creation of the
body and the actual request.
8 years ago
Pawel Wolowiec 668401e717 run gofmt 8 years ago
Pawel Wolowiec 643cce9fb8 Reformatted layout setup, so everything can be configured in one place 8 years ago
Adam Tauber 196492806d Merge pull request #59 from wolowiec/refactor
Refactored many strings into consts
8 years ago