This file contains hidden or 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
NAME LAB3B | |
;***************************************************************************** | |
; B E G I N N I N G O F P R O G R A M | |
;***************************************************************************** | |
;----------------------------------------------------------------------------- | |
; E Q U A T E S | |
;----------------------------------------------------------------------------- |
This file contains hidden or 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
NAME LAB3A | |
;***************************************************************************** | |
; B E G I N N I N G O F P R O G R A M | |
;***************************************************************************** | |
;----------------------------------------------------------------------------- | |
; E Q U A T E S | |
;----------------------------------------------------------------------------- |
This file contains hidden or 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
"use strict"; | |
var util = require("util"), | |
_ = require("underscore"), | |
events = require("events"), | |
request = require("request"), | |
AppAuthClient = require("../google/AppAuthClient"); //thin wrapper around the google oauth2client - simply initializing it with app's client id and secret | |
var SimpleAuthTransporter= (function () { |
This file contains hidden or 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
#! stdtmpl | |
# proc htmlLayout(request: TRequest, content, title: string): string = | |
# result = "" | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>${title}</title> | |
<script src="https://login.persona.org/include.js"></script> | |
<script src="/js/personabuttons.js"></script> | |
<script src="/js/personawatcher.js"></script> |