This repository was archived by the owner on Nov 16, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ sub write_html {
74
74
' +' => ' implemented' ,
75
75
" \N{U+00B1} " => ' partial' ,
76
76
' -' => ' missing' ,
77
- ' ' => ' unknown' ,
77
+ ' ? ' => ' unknown' ,
78
78
);
79
79
80
80
my @rows ;
@@ -87,8 +87,8 @@ sub write_html {
87
87
$ht_row {feature } = shift @row ;
88
88
$ht_row {compilers } = [ map {
89
89
{
90
- status => $row [$_ ] // ' ' ,
91
- class => $status_map {$row [$_ ] // ' ' },
90
+ status => $row [$_ ] // ' ? ' ,
91
+ class => $status_map {$row [$_ ] // ' ? ' },
92
92
}
93
93
} 0..($index - 1) ];
94
94
push @rows , \%ht_row ;
Original file line number Diff line number Diff line change 12
12
}
13
13
.partial {
14
14
background-color : # fb4 ;
15
- color : black ;
15
+ color : # 333 ;
16
16
}
17
17
.missing {
18
- background-color : # f22 ;
18
+ background-color : # f55 ;
19
19
color : white;
20
20
}
21
- .implemented , .partial , .missing {
21
+ .unknown {
22
+ background-color : # ccc ;
23
+ color : white;
24
+ }
25
+ .implemented , .partial , .missing , .unknown {
22
26
text-align : center;
23
27
width : 150px ;
24
28
font-weight : bold;
@@ -46,6 +50,8 @@ <h2>Legend</h2>
46
50
< dd > partially implemented</ dd >
47
51
< dt class ="missing "> -</ dt >
48
52
< dd > not yet implemented</ dd >
53
+ < dt class ="unknown "> ?</ dt >
54
+ < dd > unknown status</ dd >
49
55
</ dl >
50
56
51
57
< h2 > Features</ h2 >
You can’t perform that action at this time.
0 commit comments