Displaying 4 results from an estimated 4 matches for "xhttp".
Did you mean:
http
2013 Jun 05
0
[PATCH] Change javascript feed fetch from GET to POST
This change should disable caching of the news feed
---
index.html | 2 +-
news.html | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/index.html b/index.html
index 41d81d8..b4efb6b 100644
--- a/index.html
+++ b/index.html
@@ -23,7 +23,7 @@
} else {
xhttp=new XMLHttpRequest();
}
- xhttp.open("GET",dname,false);
+ xhttp.open("POST",dname,false);
xhttp.send("");
return xhttp.responseXML;
}
diff --git a/news.html b/news.html
index 88e8ab6..02048df 100644
--- a/news.html
+++ b/news.html
@@ -25,7 +25,7 @@...
2013 Jun 05
1
[PATCH website] Even more brands for links and sourceforge pages
On 05-06-13 10:41, Erik de Castro Lopo wrote:
> Have you tried replacing the "GET" here:
>
> xhttp.open("GET",dname,false);
> xhttp.send("");
> return xhttp.responseXML;
>
> with a "POST" operation instead? See the "GET or POST?" section of this
> page:
Right, I didn't know about that. Here's a patch, it seems to work, but
I&...
2013 Jun 05
2
[PATCH website] Even more brands for links and sourceforge pages
On 05-06-13 00:45, Erik de Castro Lopo wrote:
> I notice that in the feeds/feed.xml file there is a item titled "Sony
> launches its first FLAC-playing receiver" but that does not show up on
> https://xiph.org/flac/news.html. Any idea what's going on here?
Yeah, sure, I have that all the time. The weird thing is that even when
using Ctrl+F5, my browser (Firefox)
2014 Oct 12
2
Playback of URL Authenticated Stream in Browser
Hello!
I'm having trouble embedding my url-authenticated stream on my website on
certain browsers. I'm hoping someone can offer some advice.
My site offers a subscription to the stream where the username and password
are system-generated and unique to the subscriber. The system-generated
password is stored in the database and passed to the page based on which
subscriber is logged in.