Not so trivial anymore
We're gonna implement WebSockets soon, so make appropriate changes to texts. Updated copyright in LICENSE.
This commit is contained in:
parent
ecad324ef3
commit
b400ea8d09
|
@ -77,7 +77,7 @@ foreach (page ${project_MAN_PAGES})
|
||||||
endforeach (page)
|
endforeach (page)
|
||||||
|
|
||||||
# CPack
|
# CPack
|
||||||
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Shell for JSON-RPC 2.0 HTTP queries")
|
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Shell for running JSON-RPC 2.0 queries")
|
||||||
set (CPACK_PACKAGE_VENDOR "Premysl Janouch")
|
set (CPACK_PACKAGE_VENDOR "Premysl Janouch")
|
||||||
set (CPACK_PACKAGE_CONTACT "Přemysl Janouch <p.janouch@gmail.com>")
|
set (CPACK_PACKAGE_CONTACT "Přemysl Janouch <p.janouch@gmail.com>")
|
||||||
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
|
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2014, Přemysl Janouch <p.janouch@gmail.com>
|
Copyright (c) 2014, 2015, Přemysl Janouch <p.janouch@gmail.com>
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
Permission to use, copy, modify, and/or distribute this software for any
|
||||||
|
|
7
README
7
README
|
@ -1,13 +1,18 @@
|
||||||
json-rpc-shell
|
json-rpc-shell
|
||||||
==============
|
==============
|
||||||
|
|
||||||
`json-rpc-shell' is a trivial shell for running JSON-RPC 2.0 HTTP queries.
|
`json-rpc-shell' is a simple shell for running JSON-RPC 2.0 queries.
|
||||||
|
|
||||||
This software has been created as a replacement for the following shell, which
|
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
|
is written in Java: http://software.dzhuvinov.com/json-rpc-2.0-shell.html
|
||||||
|
|
||||||
Fuck Java. With a sharp, pointy object. In the ass. Hard. json-c as well.
|
Fuck Java. With a sharp, pointy object. In the ass. Hard. json-c as well.
|
||||||
|
|
||||||
|
Supported transports
|
||||||
|
--------------------
|
||||||
|
- HTTP
|
||||||
|
- HTTPS
|
||||||
|
|
||||||
Building and Running
|
Building and Running
|
||||||
--------------------
|
--------------------
|
||||||
Build dependencies: CMake, pkg-config, help2man, liberty (included)
|
Build dependencies: CMake, pkg-config, help2man, liberty (included)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* json-rpc-shell.c: trivial JSON-RPC 2.0 shell
|
* json-rpc-shell.c: simple JSON-RPC 2.0 shell
|
||||||
*
|
*
|
||||||
* Copyright (c) 2014 - 2015, Přemysl Janouch <p.janouch@gmail.com>
|
* Copyright (c) 2014 - 2015, Přemysl Janouch <p.janouch@gmail.com>
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
|
Loading…
Reference in New Issue