Commit Graph

229 Commits (master)
 

Author SHA1 Message Date
Adam Tauber 34e53c339b [enh] curl compatibility: add -x, --proxy flags to modify HTTP proxy - closes #73 7 years ago
Adam Tauber 4f308726ce [doc] update keybindings in help text 7 years ago
Adam Tauber 1969400729 [enh] curl compatibility: -k flag alias for --insecure 7 years ago
Adam Tauber 5a15ac3fbd Merge pull request #58 from dsalahutdinov/master
feature: result formatter extensibility with minor refactor and sever…
7 years ago
Salahutdinov Dmitry e6e364370d feature: result formatter extensibility with minor refactor and several testsy 7 years ago
Adam Tauber e965e65506 Merge pull request #71 from nwidger/master
Use mime.ParseMediaType to parse Content-Type header
7 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
7 years ago
Adam Tauber 15bccf5632 [enh] more flexible json content-type detection - closes #67 7 years ago
Adam Tauber 56b3a1a4ea [fix] delete word off-by-one 7 years ago
Adam Tauber d8a8ca2d97 [fix] set valid cursor position on 7 years ago
Adam Tauber f1acb28e73 [fix] correct home/end positions for long lines 7 years ago
Adam Tauber 7f60f36194 [enh] add "delete word" command and bind to ctrl+w by default 7 years ago
Adam Tauber 1e666b8541 [enh] implement "delete line" functionality and bind to ctrl+d by default 7 years ago
Adam Tauber 64a6272718 [enh] support JSON request - related to #70 7 years ago
Pawel Wolowiec 600c77648a Refactor (#66)
Moved most view properties to the top, leaving Layout function much smaller + minor refactor
7 years ago
Adam Tauber f34c82a438 [enh] v0.2.0 7 years ago
Adam Tauber ee71867550 [doc] config documentation update 7 years ago
Adam Tauber 0568b27d53 [fix] disable wrapping of editable views - related to #61 7 years ago
Adam Tauber 70e76c45b5 Merge pull request #62 from nwidger/master
Support PATCH requests with JSON bodies
7 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.
7 years ago
nwidger dade4d5a47 Add "--data-binary" option to help text 7 years ago
Adam Tauber 32d706201b Merge pull request #60 from wolowiec/refactor
Reformatted layout setup, so everything can be configured in one place
7 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.
7 years ago
Pawel Wolowiec 668401e717 run gofmt 7 years ago
Pawel Wolowiec 643cce9fb8 Reformatted layout setup, so everything can be configured in one place 7 years ago
Adam Tauber 196492806d Merge pull request #59 from wolowiec/refactor
Refactored many strings into consts
7 years ago
Pawel Wolowiec e5f61d9466 Changed g.Ascii to g.ASCII 7 years ago
Pawel Wolowiec 3700b249e0 Refactored many strings into consts
+ changed minor spell errors
7 years ago
Adam Tauber 38134db8fe Merge pull request #55 from asciimoo/configurable-keybindings
Configurable keybindings and help popup
7 years ago
Adam Tauber bf3c5b6bca [enh] configurable keybindings ++ help popup 7 years ago
Adam Tauber 0c6ade0216 [doc] update screencast 7 years ago
Adam Tauber f3a169db6c [fix] save result popup width 7 years ago
Adam Tauber 80ea61fa3c [doc] update screencast 7 years ago
Adam Tauber 62e59b7233 [fix] proper url param parsing/encoding 7 years ago
Adam Tauber d810c6a7db [fix] highlight only rendered json
File save and search is buggy if Request.RawResponseBody contains
color codes
7 years ago
Adam Tauber 909107cb7e Merge pull request #47 from nwidger/master
Use jsoncolor package to colorize JSON bodies
7 years ago
Adam Tauber 41c62a88bf Merge pull request #54 from zbb93/master
#49 - Ignore Invalid SSL Cert
7 years ago
Zac Bowen 689a4c8d64 gofmt on code 7 years ago
Zac Bowen 2eeb02978a Added support for websites with invalid ssl certificates. This can be achieved by setting the insecure parameter in sample-config.toml or by using the --insecure flag on the command line. By default this parameter is set to false. 7 years ago
nwidger 7965b40e19 Merge branch 'master' of https://github.com/asciimoo/wuzz 7 years ago
Adam Tauber 969cd0c1f8 Merge pull request #53 from jroimartin/fix-gocui-ascii
Sync with gocui's API
7 years ago
Roi Martin f33d305d2b Sync with gocui's API
In gocui, *Gui.Ascii has been renamed to *Gui.ASCII to make golint
happy.
7 years ago
Adam Tauber 6326145735 [enh] use PreserveScrollPosition config value 7 years ago
Adam Tauber ecab5334c7 [doc] add -c to help text ++ formatting 7 years ago
Adam Tauber 46994a8c6c Merge pull request #51 from Benaiah/config-file
Add configuration system
7 years ago
Benaiah Mischenko 3f312fbb4c Add sample config file 7 years ago
Benaiah Mischenko 4ce9984b04 Add configuration system
The new configuration system, using TOML, loads into `app.config`
using a TOML config file. This can be specified on the command-line
with the `-c` option, or it can be at one of the following default
locations:

- Linux: $XDG_CONFIG_HOME/wuzz/config.toml (by default this is ~/.config/wuzz/config.toml)
- Other OSs: ~/.wuzz/config.toml

Currently the following keys can be set, along with their default
values:

```toml
[general]

timeout = "1m" # string parsed into time.Duration
formatJSON = true # toggles JSON formatting
preserveScrollPosition = true # currently unused
defaultURLScheme = "https" # when a URL is not provided, this is the scheme used by default
```

In addition, a [keys] section can also be set and will be successfully
parsed, but it is currently non-functional.
7 years ago
Adam Tauber 51613246b5 Merge pull request #52 from mattn/ascii
use gocui.Ascii for CJK
7 years ago
Yasuhiro Matsumoto bb21f2c221 use Ascii for CJK 7 years ago
Adam Tauber ce4d129702 [enh] add versioning (semver) 7 years ago