From 30f2f46474bf4eda5f10d4c64a07cde01d469f66 Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 15 Nov 2021 11:54:17 +0800 Subject: *rename DefaultContent -> BuiltIn --- .../Libraries/json4lua/doc/cgilua_patch.html | 187 --------------------- 1 file changed, 187 deletions(-) delete mode 100644 Data/DefaultContent/Libraries/json4lua/doc/cgilua_patch.html (limited to 'Data/DefaultContent/Libraries/json4lua/doc/cgilua_patch.html') diff --git a/Data/DefaultContent/Libraries/json4lua/doc/cgilua_patch.html b/Data/DefaultContent/Libraries/json4lua/doc/cgilua_patch.html deleted file mode 100644 index 1b4d6b3..0000000 --- a/Data/DefaultContent/Libraries/json4lua/doc/cgilua_patch.html +++ /dev/null @@ -1,187 +0,0 @@ - - -JSON4Lua and JSONRPC4Lua - - - - - - - - - - - -
-

- - -

- - - - - - - -
-
Patching CGILua to handle text/plain
- - -JSON RPC (both the JSONRPC4Lua implementation and the jsolait Javascript implementation) send the http request with a Content-Type of text/plain.

- -CGILua 5.0 does not accept text/plain content, and will generate an error of 'Unsupported Media Type: text/plain'.

- -This is easily patched in CGILua 5.0 by making the following change to cgilua/post.lua, line 286:

-Change:

-	elseif strfind (contenttype, "text/xml") then
-
-to -
-	elseif strfind (contenttype, "text/xml") or strfind (contenttype, "text/plain") then
-
-This makes CGILua handle text/plain as it does text/xml, without parsing the incoming POST data.

- -Please note: I have requested the maintainers of CGILua to make this change to CGILua, whereafter this patch will no longer be required. - - -

- - \ No newline at end of file -- cgit v1.1-26-g67d0