2023-06-01 Fred Gleason <fredg@paravelsystems.com>

* Refactored the WebAPI HTML test harnesses to allow testing via both
	 'multipart/form-data' and 'application/x-www-form-urlencoded'
	  encodings.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2023-06-01 13:41:54 -04:00
parent c71389017f
commit ef6165184e
50 changed files with 4215 additions and 1962 deletions

View File

@@ -2,7 +2,7 @@
//
// Common java script utility functions.
//
// (C) Copyright 2015 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2015-2023 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -20,7 +20,7 @@
function RD_PostForm(form,url)
{
var http=GetXMLHttpRequest();
var http=RD_GetXMLHttpRequest();
if(http==null) {
return;
}