-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.erb
103 lines (94 loc) · 3.54 KB
/
template.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Subresource Integrity</title>
<script src='https://www.w3.org/Tools/respec/respec-w3c-common' class='remove'></script>
<script>
var respecConfig = {
// specification status (e.g. WD, LCWD, NOTE, etc.). If in doubt use ED.
// Member-SUBM
specStatus: "ED",
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "subresourceintegrity",
// if the specification's copyright date is a range of years, specify
// the start date here:
copyrightStart: "2013",
// if there a publicly available Editor's Draft, this is the link
edDraftURI: "http://todo.com/todo",
// editors, add as many as you like
// only "name" is required
editors: [
{ name: "Frederik Braun", url: "mailto:[email protected]", company: "Mozilla Corporation", companyURL: "http://www.mozilla.com/" },
{ name: "Devdatta Akhawe", url: "mailto:[email protected]", company: "UC Berkeley", companyURL: "http://www.mozilla.com/" },
{ name: "Joel Weinberger", url: "mailto:[email protected]", company: "Google, Inc.", companyURL: "http://google.com/" },
{ name: "Mike West", url: "mailto:[email protected]", company: "Google, Inc.", companyURL: "http://google.com/" },
],
// name of the WG
wg: "Web Application Security Working Group",
// URI of the public WG page
wgURI: "http://www.w3.org/2011/webappsec/",
// name (with the @w3c.org) of the public mailing to which comments are due
wgPublicList: "public-webappsec",
// URI of the patent status for this WG, for Rec-track documents
// !!!! IMPORTANT !!!!
// This is important for Rec-track documents, do not copy a patent URI from a random
// document unless you know what you're doing. If in doubt ask your friendly neighbourhood
// Team Contact.
wgPatentURI: "http://www.w3.org/2004/01/pp-impl/49309/status",
localBiblio: {
"MIMETYPE": {
title: "Multipurpose Internet Mail Extensions (MIME) Part Two: Media Types",
href: "http://tools.ietf.org/html/rfc2046",
authors: [
"Ned Freed",
"Nathaniel S. Borenstein"
],
status: "Draft Standard",
publisher: "IETF"
},
"RFC4648": {
title: "The Base16, Base32, and Base64 Data Encodings",
href: "http://tools.ietf.org/html/rfc4648",
authors: [
"Simon Josefsson",
],
status: "Proposed Standard",
publisher: "IETF"
},
"RFC6920": {
title: "Naming Things with Hashes",
href: "http://tools.ietf.org/html/rfc6920",
authors: [
"Stephen Farrell",
"Dirk Kutscher",
"Christian Dannewitz",
"Borje Ohlman",
"Ari Keranen",
"Phillip Hallam-Baker",
],
status: "Proposed Standard",
publisher: "IETF"
}
}
};
</script>
<style>
.todo {
color: #E50000;
border: 1px solid #F00;
padding: 0.5em;
margin: 1em 0;
}
.note {
border-left-style: solid;
border-left-width: 0.25em;
background: none repeat scroll 0 0 #E9FBE9;
border-color: #52E052;
}
</style>
</head>
<body>
<%= @body %>
</body>
</html>