From 9b61d7c4642ed6906dd53659f5bb920568dc87fd Mon Sep 17 00:00:00 2001 From: tigerbot Date: Thu, 27 Jul 2017 11:55:03 -0600 Subject: [PATCH 1/4] made some indentation in index.html more consistent --- index.html | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/index.html b/index.html index 51da29c..7f62e60 100644 --- a/index.html +++ b/index.html @@ -1,26 +1,26 @@ - - - - Login Facilitator: OAuth3.org - - - - - - + + + + Login Facilitator: OAuth3.org + + + + + + - + - - - - + + + + - + - +

daplie.me

@@ -152,5 +152,5 @@ - + From 3e81aebc4a588e1c840050bd74d6194fa34a9393 Mon Sep 17 00:00:00 2001 From: tigerbot Date: Thu, 27 Jul 2017 13:06:05 -0600 Subject: [PATCH 2/4] removed funky character from the html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 7f62e60..305fb02 100644 --- a/index.html +++ b/index.html @@ -93,7 +93,7 @@
--> -

Almost done. Now it’s time to set your preferences.

+

Almost done. Now it's time to set your preferences.


From 1b0c5417bfcf0159395f7f6b110a35b89531ff92 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 1 Aug 2017 18:24:38 +0000 Subject: [PATCH 3/4] cleanup --- .DS_Store | Bin 6148 -> 0 bytes .gitignore | 1 + img/.DS_Store | Bin 6148 -> 0 bytes 3 files changed, 1 insertion(+) delete mode 100644 .DS_Store delete mode 100644 img/.DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index f5341fbe34b2db25a98cb9ceac14007e0dcb9ecd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK&2G~`5S~ra;uKZ&0Vy1P0Et5sCE=$Bgye?w&;t@82o8W+yAFww>y2Wk211Z8 zyaT)d5^usA@E|+@eES2klco|Egy>E*`|Yl0c6Yw9ce6yqdb6NIWD}7E6zlP2n!|#t$iS={vBU z!EQ`3aXN+u@N1!+(g{U{uU~k7IoErl=UwB?8cW_)%!hTB=U^X}tTyN+Ru!+t!oDwA zRw=}qN9FNk#GeZhYb!rXCVF4{>QACDN!#sjtWvFQY+kbJb*sK@y%>ynHb}j6mh`;o zGuaA*p|9(YIgftVJ^x8K%nt1<_j#OpVLY4`%%49EUVs2tC4j3(Ukav#-z1ZILJClYn=RBK%s&)ws;9%xKZ4La)xuXVJ#SSe!<3MH${R z4>N=qd)-?jvRw49(<9oaJ?hf~U<(-!%BvC?XV(fD#{d^X^m}1lz7WxxAPobCfj?nD z><-;@}rPjz(8wt`JWkOt}J;E7MmDrrgo*XggP9u28uX z)0YpXXJ-0_!sP52-;w6TT!p4I3>XH=3{+Lq7U%!|`ul&`$+QduhJpWz0aoh|`aOiC z&(@XT#98Y=kDx+?U9M2NpwP#$tcaudDpU%dIidn|HRcM@12KODBn_r84E$9Fege~` BGnPN&qz&>8yhv73!Q;zIDt`~W{d z&%FtCnodDCB69DLoJ^8?a&yv58X_{CX>v#u5K$e8v9^Y+!nmE&f~~k3_A|n9O?_%o zOkGMAdTWI$pbGpo1$gi7VYhZErHv2KP!OeL!^NGjY@R(D~BBn9oY`ZuuRqFZyB2K{5qbrnpbX&bvqHdWXfM<>vhQJIlSe6)bsa~Bo z%;32+gDw0Hhd+*jSE3vRUe#s_;LK*LuUphy6;K6KftdpQeF%{lBZq}W`E($YD*&*D zYB7}gPXPOb4kL$!MYO<-bp={ioSQ@UIjwwbP5!4yNSJ)`iLOSsNl1;Jqe From c2b6d2b7ed9297ba5e247e26598c18d0af246643 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 1 Aug 2017 18:26:08 +0000 Subject: [PATCH 4/4] use proper scope names --- js/issuer.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/js/issuer.js b/js/issuer.js index 08c630b..438b163 100644 --- a/js/issuer.js +++ b/js/issuer.js @@ -106,6 +106,7 @@ $(function () { var callbackUrl; // TODO put in directives.json or similar var grantDescriptions = { + // deprecated 'oauth3_authn': "Basic secure authentication" , 'wallet': "Access to payments and subscriptions" , 'bucket': "Access to file storage" @@ -114,6 +115,17 @@ $(function () { , 'domains:glue': "Glue Record management (for vanity nameservers)" , 'domains:ns': "Name Server management" , 'dns': "DNS records (A/AAAA, TXT, SRV, MX, etc)" + + // new + , 'hello@example.com': "Hello World Example Access" + , 'authn@oauth3.org': "Basic secure authentication" + , 'wallet@oauth3.org': "Access to payments and subscriptions" + , 'bucket@oauth3.org': "Access to file storage" + , 'db@oauth3.org': "Access to app data" + , 'domains@oauth3.org': "Domain registration (and Glue and NS records)" // TODO make an alias + , 'domains:glue@oauth3.org': "Glue Record management (for vanity nameservers)" + , 'domains:ns@oauth3.org': "Name Server management" + , 'dns@oauth3.org': "DNS records (A/AAAA, TXT, SRV, MX, etc)" , '*': "FULL ACCOUNT ACCESS" };