aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2020-10-14 13:33:59 +0200
committerPřemysl Eric Janouch <p@janouch.name>2020-10-14 13:36:35 +0200
commitdfe814316f10fa453396bc05f6e633f3fd5e55a4 (patch)
tree82165c124268b166e195810dcd7d35fb529eba40
parentefc663a1781d78e462c498a1b345833835b033fa (diff)
downloadjson-rpc-shell-dfe814316f10fa453396bc05f6e633f3fd5e55a4.tar.gz
json-rpc-shell-dfe814316f10fa453396bc05f6e633f3fd5e55a4.tar.xz
json-rpc-shell-dfe814316f10fa453396bc05f6e633f3fd5e55a4.zip
This software is no longer simple
-rw-r--r--CMakeLists.txt3
-rw-r--r--README.adoc13
-rw-r--r--json-rpc-shell.adoc2
-rw-r--r--json-rpc-shell.c4
4 files changed, 11 insertions, 11 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index af26858..5552a96 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -113,8 +113,7 @@ foreach (page ${project_MAN_PAGES})
endforeach (page)
# CPack
-set (CPACK_PACKAGE_DESCRIPTION_SUMMARY
- "A shell for running JSON-RPC 2.0 queries")
+set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "A shell for JSON-RPC 2.0")
set (CPACK_PACKAGE_VENDOR "Premysl Eric Janouch")
set (CPACK_PACKAGE_CONTACT "Přemysl Eric Janouch <p@janouch.name>")
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
diff --git a/README.adoc b/README.adoc
index fc4db76..d0f6d7f 100644
--- a/README.adoc
+++ b/README.adoc
@@ -2,15 +2,16 @@ json-rpc-shell
==============
:compact-option:
-'json-rpc-shell' is a simple shell for running JSON-RPC 2.0 queries.
+'json-rpc-shell' is a shell for running JSON-RPC 2.0 queries.
-This software has been created as a replacement for the following shell, which
-is written in Java: http://software.dzhuvinov.com/json-rpc-2.0-shell.html
+This software was originally created as a replacement for
+http://software.dzhuvinov.com/json-rpc-2.0-shell.html[a different one] made by
+Vladimir Dzhuvinov, in order to avoid Java, but has evolved since.
Features
--------
-In addition to most of the features provided by Vladimir Dzhuvinov's shell
-you get the following niceties:
+In addition to most of the features provided by its predecessor, you will get
+the following niceties:
- configurable JSON syntax highlight, which with prettyprinting turned on
helps you make sense of the results significantly
@@ -18,7 +19,7 @@ you get the following niceties:
results in your favourite editor or redirect them to a file
- ability to edit the input line in your favourite editor as well with Alt+E
- WebSocket (RFC 6455) can also be used as a transport rather than HTTP
- - support for method name tab completion using OpenRPC discovery
+ - support for method name tab completion using OpenRPC discovery or file input
Documentation
-------------
diff --git a/json-rpc-shell.adoc b/json-rpc-shell.adoc
index 890e049..1806c3e 100644
--- a/json-rpc-shell.adoc
+++ b/json-rpc-shell.adoc
@@ -6,7 +6,7 @@ json-rpc-shell(1)
Name
----
-json-rpc-shell - a simple JSON-RPC 2.0 shell
+json-rpc-shell - a shell for JSON-RPC 2.0
Synopsis
--------
diff --git a/json-rpc-shell.c b/json-rpc-shell.c
index 10f8806..b65c666 100644
--- a/json-rpc-shell.c
+++ b/json-rpc-shell.c
@@ -1,5 +1,5 @@
/*
- * json-rpc-shell.c: simple JSON-RPC 2.0 shell
+ * json-rpc-shell.c: a shell for JSON-RPC 2.0
*
* Copyright (c) 2014 - 2020, Přemysl Eric Janouch <p@janouch.name>
*
@@ -3587,7 +3587,7 @@ parse_program_arguments (struct app_context *ctx, int argc, char **argv,
};
struct opt_handler oh = opt_handler_make (argc, argv, opts,
- "ENDPOINT", "A simple JSON-RPC 2.0 shell.");
+ "ENDPOINT", "A shell for JSON-RPC 2.0.");
int c;
while ((c = opt_handler_get (&oh)) != -1)