Skip to content
This repository was archived by the owner on May 11, 2020. It is now read-only.

Commit e5f44f6

Browse files
authored
Merge pull request jsonwebtoken#187 from mike-casas/fixed-pr#151
Fixed conflict pr#151. New library objective c
2 parents 4afb050 + 519ee53 commit e5f44f6

File tree

6 files changed

+108
-1
lines changed

6 files changed

+108
-1
lines changed

css/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

html/index.jade

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ html(lang='en')
273273
include libraries/scala.jade
274274
include libraries/d.jade
275275
include libraries/clojure.jade
276+
include libraries/objective-c.jade
276277
include libraries/swift.jade
277278
include libraries/c.jade
278279
include libraries/q.jade

img/20.svg

Lines changed: 16 additions & 0 deletions
Loading

stylus/app.styl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
@import 'codemirror'
33
@import 'flip-clock'
44
@import 'highlight'
5+
@import 'nib'
6+
@import 'nib/gradients'
57

68
/*
79
* Webfont
@@ -689,6 +691,10 @@ body
689691
&.jwt-c
690692
.panel-heading h3
691693
background-color #5180D2
694+
&.jwt-objective-c
695+
.panel-heading h3
696+
background linear-gradient(top, #AAAAAA, #767676)
697+
692698
&.jwt-delphi
693699
.panel-heading h3
694700
background-color #E31C23

views/index.jade

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ block content
181181
include libraries/scala3.jade
182182
include libraries/d.jade
183183
include libraries/clojure.jade
184+
include libraries/objective-c.jade
184185
include libraries/swift.jade
185186
include libraries/c.jade
186187
include libraries/q.jade

views/libraries/objective-c.jade

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
// Objective-C yourkarma/jwt
2+
article.jwt-objective-c.accordion(data-accordion)
3+
.panel-heading(data-control)
4+
img(src='/img/20.svg')
5+
h3 Objective-C
6+
.panel-wrap(data-content)
7+
.panel-body
8+
.column
9+
p
10+
i.icon-budicon-500
11+
| Sign
12+
p
13+
i.icon-budicon-500
14+
| Verify
15+
p
16+
i.icon-budicon-500
17+
code iss
18+
| check
19+
p
20+
i.icon-budicon-500
21+
code sub
22+
| check
23+
p
24+
i.icon-budicon-500
25+
code aud
26+
| check
27+
p
28+
i.icon-budicon-500
29+
code exp
30+
| check
31+
p
32+
i.icon-budicon-500
33+
code nbf
34+
| check
35+
p
36+
i.icon-budicon-500
37+
code iat
38+
| check
39+
p
40+
i.icon-budicon-500
41+
code jti
42+
| check
43+
.column
44+
p
45+
i.icon-budicon-500
46+
| HS256
47+
p
48+
i.icon-budicon-500
49+
| HS384
50+
p
51+
i.icon-budicon-500
52+
| HS512
53+
p
54+
i.icon-budicon-501
55+
| RS256
56+
p
57+
i.icon-budicon-501
58+
| RS384
59+
p
60+
i.icon-budicon-501
61+
| RS512
62+
p
63+
i.icon-budicon-501
64+
| ES256
65+
p
66+
i.icon-budicon-501
67+
| ES384
68+
p
69+
i.icon-budicon-501
70+
| ES512
71+
72+
.author-info
73+
.maintainer
74+
i.icon-budicon-333(data-toggle='tooltip', title='', data-original-title='Maintainer')
75+
| yourkarma & lolgear
76+
span.stars(data-repo='yourkarma/JWT', style='display: inline;')
77+
i.icon-budicon-466
78+
.repository
79+
i.icon-1392070209-icon-social-github
80+
a(href='https://github.com/yourkarma/JWT') View Repo
81+
82+
.panel-footer
83+
code pod 'JWT'

0 commit comments

Comments
 (0)