Skip to content

Commit 8aeed1f

Browse files
committed
monorepo: add html-aam history
2 parents daade4f + 1f02c81 commit 8aeed1f

36 files changed

+42497
-0
lines changed

html-aam/.editorconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Closes #????
2+
3+
<!--- IF EDITORIAL or CHORE, delete this template -->
4+
5+
Describe Change Here!
6+
7+
## Implementation
8+
9+
* WPT tests:
10+
* Implementations (link to issue or when done, link to commit):
11+
* WebKit:
12+
* Gecko:
13+
* Blink:
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Node CI
2+
3+
on:
4+
push:
5+
branches:
6+
- gh-pages
7+
pull_request: {}
8+
9+
jobs:
10+
validate-and-publish:
11+
name: Validate and Publish
12+
runs-on: ubuntu-latest # only linux supported at present
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: w3c/spec-prod@v2
16+
with:
17+
TOOLCHAIN: respec
18+
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
19+
W3C_WG_DECISION_URL: "https://lists.w3.org/Archives/Public/public-aria-admin/2021Aug/0001.html"
20+
W3C_NOTIFICATIONS_CC: "${{ secrets.CC }}"
21+
W3C_BUILD_OVERRIDE: |
22+
specStatus: WD

html-aam/.gitignore

Lines changed: 219 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,219 @@
1+
#################
2+
## Eclipse
3+
#################
4+
5+
*.pydevproject
6+
.project
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.classpath
16+
.settings/
17+
.loadpath
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# CDT-specific
26+
.cproject
27+
28+
# PDT-specific
29+
.buildpath
30+
31+
32+
#################
33+
## Visual Studio
34+
#################
35+
36+
## Ignore Visual Studio temporary files, build results, and
37+
## files generated by popular Visual Studio add-ons.
38+
39+
# User-specific files
40+
*.suo
41+
*.user
42+
*.sln.docstates
43+
44+
# Build results
45+
46+
[Dd]ebug/
47+
[Rr]elease/
48+
x64/
49+
build/
50+
[Bb]in/
51+
[Oo]bj/
52+
53+
# MSTest test Results
54+
[Tt]est[Rr]esult*/
55+
[Bb]uild[Ll]og.*
56+
57+
*_i.c
58+
*_p.c
59+
*.ilk
60+
*.meta
61+
*.obj
62+
*.pch
63+
*.pdb
64+
*.pgc
65+
*.pgd
66+
*.rsp
67+
*.sbr
68+
*.tlb
69+
*.tli
70+
*.tlh
71+
*.tmp
72+
*.tmp_proj
73+
*.log
74+
*.vspscc
75+
*.vssscc
76+
.builds
77+
*.pidb
78+
*.log
79+
*.scc
80+
81+
# Visual C++ cache files
82+
ipch/
83+
*.aps
84+
*.ncb
85+
*.opensdf
86+
*.sdf
87+
*.cachefile
88+
89+
# Visual Studio profiler
90+
*.psess
91+
*.vsp
92+
*.vspx
93+
94+
# Guidance Automation Toolkit
95+
*.gpState
96+
97+
# ReSharper is a .NET coding add-in
98+
_ReSharper*/
99+
*.[Rr]e[Ss]harper
100+
101+
# TeamCity is a build add-in
102+
_TeamCity*
103+
104+
# DotCover is a Code Coverage Tool
105+
*.dotCover
106+
107+
# NCrunch
108+
*.ncrunch*
109+
.*crunch*.local.xml
110+
111+
# Installshield output folder
112+
[Ee]xpress/
113+
114+
# DocProject is a documentation generator add-in
115+
DocProject/buildhelp/
116+
DocProject/Help/*.HxT
117+
DocProject/Help/*.HxC
118+
DocProject/Help/*.hhc
119+
DocProject/Help/*.hhk
120+
DocProject/Help/*.hhp
121+
DocProject/Help/Html2
122+
DocProject/Help/html
123+
124+
# Click-Once directory
125+
publish/
126+
127+
# Publish Web Output
128+
*.Publish.xml
129+
*.pubxml
130+
131+
# NuGet Packages Directory
132+
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
133+
#packages/
134+
135+
# Windows Azure Build Output
136+
csx
137+
*.build.csdef
138+
139+
# Windows Store app package directory
140+
AppPackages/
141+
142+
# Others
143+
sql/
144+
*.Cache
145+
ClientBin/
146+
[Ss]tyle[Cc]op.*
147+
~$*
148+
*~
149+
*.dbmdl
150+
*.[Pp]ublish.xml
151+
*.pfx
152+
*.publishsettings
153+
154+
# RIA/Silverlight projects
155+
Generated_Code/
156+
157+
# Backup & report files from converting an old project file to a newer
158+
# Visual Studio version. Backup files are not needed, because we have git ;-)
159+
_UpgradeReport_Files/
160+
Backup*/
161+
UpgradeLog*.XML
162+
UpgradeLog*.htm
163+
164+
# SQL Server files
165+
App_Data/*.mdf
166+
App_Data/*.ldf
167+
168+
#############
169+
## Windows detritus
170+
#############
171+
172+
# Windows image file caches
173+
Thumbs.db
174+
ehthumbs.db
175+
176+
# Folder config file
177+
Desktop.ini
178+
179+
# Recycle Bin used on file shares
180+
$RECYCLE.BIN/
181+
182+
# Mac crap
183+
.DS_Store
184+
185+
186+
#############
187+
## Python
188+
#############
189+
190+
<<<<<<< HEAD
191+
*.py[co]
192+
=======
193+
*.py[cod]
194+
>>>>>>> a51b9db2d4ebd2968f49781325ba3e4741f0127f
195+
196+
# Packages
197+
*.egg
198+
*.egg-info
199+
dist/
200+
build/
201+
eggs/
202+
parts/
203+
var/
204+
sdist/
205+
develop-eggs/
206+
.installed.cfg
207+
208+
# Installer logs
209+
pip-log.txt
210+
211+
# Unit test / coverage reports
212+
.coverage
213+
.tox
214+
215+
#Translations
216+
*.mo
217+
218+
#Mr Developer
219+
.mr.developer.cfg

html-aam/.pr-preview.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
{
3+
"src_file": "index.html",
4+
"type": "respec"
5+
}

html-aam/CODE_OF_CONDUCT.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Code of Conduct
2+
3+
All documentation, code and communication under this repository are covered by the [W3C Code of Ethics and Professional Conduct](https://www.w3.org/Consortium/cepc/).

html-aam/CONTRIBUTING.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Contributions to this repository are intended to become part of Recommendation-track documents
2+
governed by the [W3C Patent Policy](https://www.w3.org/Consortium/Patent-Policy/) and
3+
[Document License](https://www.w3.org/Consortium/Legal/copyright-documents). To contribute, you must
4+
either participate in the relevant W3C Working Group or make a non-member patent licensing
5+
commitment.
6+
7+
If you are not the sole contributor to a contribution (pull request), please identify all
8+
contributors in the pull request's body or in subsequent comments.
9+
10+
To add a contributor (other than yourself, that's automatic), mark them one per line as follows:
11+
12+
```
13+
+@github_username
14+
```
15+
16+
If you added a contributor by mistake, you can remove them in a comment with:
17+
18+
```
19+
-@github_username
20+
```
21+
22+
If you are making a pull request on behalf of someone else but you had no part in designing the
23+
feature, you can remove yourself with the above syntax.
24+
25+
## Tests
26+
For normative changes, a corresponding
27+
[web-platform-tests](https://github.com/web-platform-tests/wpt) PR should be included. Typically,
28+
both PRs will be merged at the same time. Note that a test change that contradicts the spec should
29+
not be merged before the corresponding spec change. If testing is not practical, please explain why
30+
and if appropriate [file an issue](https://github.com/web-platform-tests/wpt/issues/new) to follow
31+
up later. Add the `type:untestable` or `type:missing-coverage` label as appropriate.

html-aam/LICENSE.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
All documents in this Repository are licensed by contributors
2+
under the
3+
[W3C Software and Document License](http://www.w3.org/Consortium/Legal/copyright-software).

html-aam/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# HTML-AAM
2+
HTML Accessibility API Mappings (html-aam) developed by the [Accessible Rich Internet Applications Working Group](https://www.w3.org/WAI/ARIA/) (previously the [Web Applications Working Group](https://www.w3.org/2019/webapps/)). It is the basis of the [Editor's Draft version of the specification](https://w3c.github.io/html-aam/). You can also compare against [the most recent published version](https://www.w3.org/TR/html-aam-1.0/).
3+
4+
This specification was part of the [ARIA suite](https://www.w3.org/WAI/ARIA/deliverables). General information about editing the specification is in the [main ARIA repository readme](https://github.com/w3c/aria/).
5+

html-aam/biblio.js

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
var localBiblio = {
2+
// Correct reference for ATK
3+
"ATK": {
4+
"href": "https://gitlab.gnome.org/GNOME/at-spi2-core/",
5+
"title": "ATK - Accessibility Toolkit",
6+
"publisher": "The GNOME Project"
7+
},
8+
"AT-SPI": {
9+
"href": "https://gitlab.gnome.org/GNOME/at-spi2-core/",
10+
"title": "Assistive Technology Service Provider Interface",
11+
"publisher": "The GNOME Project"
12+
},
13+
// Custom reference for the Mac OSX Accessibility API
14+
"AXAPI": {
15+
"href": "https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Protocols/NSAccessibility_Protocol/index.html",
16+
"title": "The Mac OS X Accessibility Protocol Mac OS 10.10",
17+
"publisher": "Apple Corporation"
18+
},
19+
"EPUB-SSV": {
20+
"href": "http://www.idpf.org/epub/vocab/structure/",
21+
"title": "EPUB Structural Semantics Vocabulary",
22+
"publisher": "IDPF"
23+
},
24+
// Custom reference for GTK+ (GNOME GUI Toolkit) (not available from SpecRef biblio)
25+
"GTK": {
26+
"href": "https://developer.gnome.org/gtk3/stable/",
27+
"title": "GTK+ 3 Reference Manual",
28+
"publisher": "The GNOME Project"
29+
},
30+
"MSAA": {
31+
"href": "https://msdn.microsoft.com/en-us/library/ms697707.aspx",
32+
"title": "Microsoft Active Accessibility (MSAA) 2.0",
33+
"publisher": "Microsoft Corporation"
34+
},
35+
"UI-AUTOMATION": {
36+
"href": "https://msdn.microsoft.com/en-us/library/ee684009%28v=vs.85%29.aspx",
37+
"title": "UI Automation",
38+
"publisher": "Microsoft Corporation"
39+
},
40+
// Custom reference for UIA Express (not available from SpecRef biblio).
41+
"UIA-EXPRESS": {
42+
"href": "https://msdn.microsoft.com/en-us/library/windows/desktop/dd561898%28v=vs.85%29.aspx",
43+
"title": "The IAccessibleEx Interface",
44+
"publisher": "Microsoft Corporation"
45+
},
46+
};

0 commit comments

Comments
 (0)