Skip to content

Commit fbdaa30

Browse files
authored
Generate files off-line. (#252)
Replace the built-on-push with a shell script that committers are meant to manually run pre commit. Reason are errors on GitHub actions: https://github.com/WICG/sanitizer-api/actions/runs/12810876107/job/35718920474
1 parent ebdfd9e commit fbdaa30

5 files changed

+653
-9
lines changed

.github/workflows/pr-push.yml

-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
12-
- uses: actions/setup-python@v4
13-
with:
14-
python-version: '3.10'
15-
- name: Generate safe-default-configuration.json
16-
run: python builtins/safe-default-configuration.py --input builtins/safe-default-configuration.txt --out builtins/safe-default-configuration.json
17-
- name: Generate safe-baseline-configuration-materialized.json
18-
run: python builtins/safe-baseline-configuration.py --input builtins/safe-baseline-configuration.json --event-handlers builtins/event-handler-content-attributes.txt --out builtins/safe-baseline-configuration-materialized.json
1912
- uses: w3c/spec-prod@v2
2013
with:
2114
GH_PAGES_BRANCH: gh-pages

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
/.project
22
/out
33
/*.ninja*
4-
/builtins/safe-default-configuration.json
5-
/builtins/safe-baseline-configuration-materialized.json

build.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/sh
2+
# Generate safe-default-configuration.json
3+
python3 builtins/safe-default-configuration.py --input builtins/safe-default-configuration.txt --out builtins/safe-default-configuration.json
4+
# Generate safe-baseline-configuration-materialized.json
5+
python3 builtins/safe-baseline-configuration.py --input builtins/safe-baseline-configuration.json --event-handlers builtins/event-handler-content-attributes.txt --out builtins/safe-baseline-configuration-materialized.json
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
{
2+
"removeElements": [
3+
{
4+
"namespace": "http://www.w3.org/1999/xhtml",
5+
"name": "script"
6+
},
7+
{
8+
"namespace": "http://www.w3.org/1999/xhtml",
9+
"name": "frame"
10+
},
11+
{
12+
"namespace": "http://www.w3.org/1999/xhtml",
13+
"name": "iframe"
14+
},
15+
{
16+
"namespace": "http://www.w3.org/1999/xhtml",
17+
"name": "object"
18+
},
19+
{
20+
"namespace": "http://www.w3.org/1999/xhtml",
21+
"name": "embed"
22+
},
23+
{
24+
"namespace": "http://www.w3.org/2000/svg",
25+
"name": "script"
26+
},
27+
{
28+
"namespace": "http://www.w3.org/2000/svg",
29+
"name": "use"
30+
}
31+
],
32+
"removeAttributes": [
33+
"onafterprint",
34+
"onauxclick",
35+
"onbeforeinput",
36+
"onbeforematch",
37+
"onbeforeprint",
38+
"onbeforeunload",
39+
"onbeforetoggle",
40+
"onblur",
41+
"oncancel",
42+
"oncanplay",
43+
"oncanplaythrough",
44+
"onchange",
45+
"onclick",
46+
"onclose",
47+
"oncontextlost",
48+
"oncontextmenu",
49+
"oncontextrestored",
50+
"oncopy",
51+
"oncuechange",
52+
"oncut",
53+
"ondblclick",
54+
"ondrag",
55+
"ondragend",
56+
"ondragenter",
57+
"ondragleave",
58+
"ondragover",
59+
"ondragstart",
60+
"ondrop",
61+
"ondurationchange",
62+
"onemptied",
63+
"onended",
64+
"onerror",
65+
"onfocus",
66+
"onformdata",
67+
"onhashchange",
68+
"oninput",
69+
"oninvalid",
70+
"onkeydown",
71+
"onkeypress",
72+
"onkeyup",
73+
"onlanguagechange",
74+
"onload",
75+
"onloadeddata",
76+
"onloadedmetadata",
77+
"onloadstart",
78+
"onmessage",
79+
"onmessageerror",
80+
"onmousedown",
81+
"onmouseenter",
82+
"onmouseleave",
83+
"onmousemove",
84+
"onmouseout",
85+
"onmouseover",
86+
"onmouseup",
87+
"onoffline",
88+
"ononline",
89+
"onpagehide",
90+
"onpagereveal",
91+
"onpageshow",
92+
"onpageswap",
93+
"onpaste",
94+
"onpause",
95+
"onplay",
96+
"onplaying",
97+
"onpopstate",
98+
"onprogress",
99+
"onratechange",
100+
"onreset",
101+
"onresize",
102+
"onrejectionhandled",
103+
"onscroll",
104+
"onscrollend",
105+
"onsecuritypolicyviolation",
106+
"onseeked",
107+
"onseeking",
108+
"onselect",
109+
"onslotchange",
110+
"onstalled",
111+
"onstorage",
112+
"onsubmit",
113+
"onsuspend",
114+
"ontimeupdate",
115+
"ontoggle",
116+
"onunhandledrejection",
117+
"onunload",
118+
"onvolumechange",
119+
"onwaiting",
120+
"onwheel"
121+
]
122+
}

0 commit comments

Comments
 (0)