This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
wp_load_translations_early(); | |
$protocol = wp_get_server_protocol(); | |
header( "$protocol 503 Service Unavailable", true, 503 ); | |
header( 'Content-Type: text/html; charset=utf-8' ); | |
header( 'Retry-After: 30' ); | |
?> | |
<!DOCTYPE html> | |
<html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"github.com/gorilla/sessions" | |
"io/ioutil" | |
"log" | |
"net/http" | |
"net/url" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set encoding=utf-8 | |
set fileencoding=utf-8 | |
set softtabstop=4 | |
set expandtab | |
set autoindent | |
set mouse=a | |
set ignorecase | |
set smartcase | |
set pastetoggle=<F9> | |
set showcmd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import urllib, json | |
class FalseStorage(web.storage): | |
def __nonzero__(self): return False | |
def browserid(): | |
c = web.cookies() | |
if c.get('browserid_assertion'): | |
out = urllib.urlencode(dict(audience=web.ctx.host, assertion=c.browserid_assertion)) | |
o = json.loads(urllib.urlopen('https://browserid.org/verify', out).read()) | |
if o['status'] == 'failure': |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function setCookie(c_name, value, exdays) { | |
var exdate = new Date(); | |
exdate.setDate(exdate.getDate() + exdays); | |
var c_value = escape(value) + ((exdays==null) ? "" : "; expires="+exdate.toUTCString()); | |
document.cookie = c_name + "=" + c_value; | |
} | |
function browserid_login_callback(assertion){ | |
setCookie('browserid_assertion', assertion, 90); | |
window.location.reload(); |