summaryrefslogtreecommitdiff
path: root/non-posts/oauth-callback.html
diff options
context:
space:
mode:
Diffstat (limited to 'non-posts/oauth-callback.html')
-rw-r--r--non-posts/oauth-callback.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/non-posts/oauth-callback.html b/non-posts/oauth-callback.html
deleted file mode 100644
index e215b29..0000000
--- a/non-posts/oauth-callback.html
+++ /dev/null
@@ -1,26 +0,0 @@
-title: SoundCLI
----
-<script type="text/javascript">
- q = window.location.search.substring(1);
- function querySt(name) {
- vars = q.split("&");
- for (i=0;i<vars.length;i++) {
- pair = vars[i].split("=");
- if (pair[0] == name) {
- return pair[1];
- }
- }
- }
-
- if (querySt("error") != undefined)
- {
- document.write("<h1>Error</h1><p>Oh, dear! This should not have happened.");
- document.write(querySt("error_description").replace(/\+/gi, ' '));
- }
- else {
- document.write("<h1>Connected!</h1>");
- document.write("<p>This is your authentication code:</p>");
- document.write("<p><span class='code'>"+querySt("code")+"</span></p>");
- document.write("<p>Copy the code and add it to your configuration file in <span class='code'>/etc/soundcli.conf</span> or <span class='code'>$XDG_CONFIG/soundcli/soundcli.conf</span></p>");
- }
-</script>