Skip to content

Commit 1cb4eda

Browse files
committed
Added Haxe lib. Fixes #157.
1 parent 6ad19fa commit 1cb4eda

File tree

4 files changed

+197
-0
lines changed

4 files changed

+197
-0
lines changed

img/23.svg

Lines changed: 108 additions & 0 deletions
Loading

stylus/app.styl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -722,6 +722,9 @@ body
722722
&.jwt-haskell
723723
.panel-heading h3
724724
background-color #666
725+
&.jwt-haxe
726+
.panel-heading h3
727+
background-color #EA8220
725728
&.jwt-rust
726729
.panel-heading h3
727730
background-color #814626

views/index.jade

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ block content
166166
option(value='.elixir') Elixir
167167
option(value='.go') Go
168168
option(value='.haskell') Haskell
169+
option(value='.haxe') Haxe
169170
option(value='.java') Java
170171
option(value='.js') JavaScript
171172
option(value='.lua') Lua
@@ -224,6 +225,7 @@ block content
224225
include libraries/go8.jade
225226
include libraries/haskell.jade
226227
include libraries/haskell2.jade
228+
include libraries/haxe.jade
227229
include libraries/rust.jade
228230
include libraries/rust2.jade
229231
include libraries/rust3.jade

views/libraries/haxe.jade

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
// Haskell frasertweedale/hs-jose
2+
article.jwt-haxe.haxe.accordion(data-accordion)
3+
.panel-heading(data-control)
4+
img(src='/img/23.svg')
5+
h3 Haxe
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-501
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-501
33+
code nbf
34+
| check
35+
p
36+
i.icon-budicon-501
37+
code iat
38+
| check
39+
p
40+
i.icon-budicon-501
41+
code jti
42+
| check
43+
.column
44+
p
45+
i.icon-budicon-500
46+
| HS256
47+
p
48+
i.icon-budicon-501
49+
| HS384
50+
p
51+
i.icon-budicon-501
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+
a(href='https://github.com/kevinresol')
75+
i.icon-budicon-333(data-toggle='tooltip', title='', data-original-title='Maintainer')
76+
| Kevin Leung
77+
span.stars(data-repo='kevinresol/jsonwebtoken', style='display: inline;')
78+
i.icon-budicon-466
79+
.repository
80+
i.icon-1392070209-icon-social-github
81+
a(href='https://github.com/kevinresol/jsonwebtoken') View Repo
82+
83+
.panel-footer
84+
code haxelib install jsonwebtoken

0 commit comments

Comments
 (0)