Skip to content

Commit

Permalink
merge repos
Browse files Browse the repository at this point in the history
  • Loading branch information
pkra committed May 20, 2024
2 parents 09bd25b + e7e9f45 commit bd8b1d6
Show file tree
Hide file tree
Showing 34 changed files with 15,393 additions and 0 deletions.
12 changes: 12 additions & 0 deletions accname/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Ensure all text files do not accidentally become a CRLF file.
# Agreed upon during 5 August 2015 PF Editors concall.
# To override or prevent this behavior see the following sections.
* text eol=lf

# Files that will always have CRLF line endings. Example:
# my-special-spec.html eol=crlf

# Ensure non-text files don't get accidentally swept up by above.
*.png binary
*.jpg binary
*.zargo binary
13 changes: 13 additions & 0 deletions accname/.github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Closes #????

<!--- IF EDITORIAL or CHORE, delete the rest of this template -->

Describe Change Here!

# Implementation

* WPT tests: [LINK]()
* Implementations (link to issue or when done, link to commit):
* WebKit: [ISSUE]()
* Gecko: [ISSUE]()
* Blink: [ISSUE]()
22 changes: 22 additions & 0 deletions accname/.github/workflows/deploy-to-github-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Node CI

on:
workflow_dispatch:
push:
branches:
- main

jobs:
validate-and-publish:
name: Validate and publish to gh-pages
runs-on: ubuntu-latest # only linux supported at present
steps:
- uses: actions/checkout@v3
- uses: w3c/spec-prod@v2
with:
GH_PAGES_BRANCH: gh-pages
VALIDATE_WEBIDL: false
VALIDATE_MARKUP: false
BUILD_FAIL_ON: nothing
GH_PAGES_BUILD_OVERRIDE: |
lint: false
24 changes: 24 additions & 0 deletions accname/.github/workflows/deploy-to-tr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Node CI

on:
workflow_dispatch:
inputs:
branches:
required: true
default: main
push:
branches:
- main

jobs:
publish-tr:
name: Publish to TR from main branch
runs-on: ubuntu-latest # only linux supported at present
steps:
- uses: actions/checkout@v3
- uses: w3c/spec-prod@v2
with:
W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-aria-admin/2018Sep/0011.html
W3C_BUILD_OVERRIDE: |
specStatus: WD
219 changes: 219 additions & 0 deletions accname/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,219 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results

[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]in/
[Oo]bj/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.Publish.xml
*.pubxml

# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

#############
## Windows detritus
#############

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac crap
.DS_Store


#############
## Python
#############

<<<<<<< HEAD
*.py[co]
=======
*.py[cod]
>>>>>>> a51b9db2d4ebd2968f49781325ba3e4741f0127f

# Packages
*.egg
*.egg-info
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg
4 changes: 4 additions & 0 deletions accname/.pr-preview.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"src_file": "index.html",
"type": "respec"
}
3 changes: 3 additions & 0 deletions accname/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Code of Conduct

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/).
24 changes: 24 additions & 0 deletions accname/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Accessible Rich Internet Applications Working Group

Contributions to this repository are intended to become part of Recommendation-track documents governed by the
[W3C Patent Policy](https://www.w3.org/Consortium/Patent-Policy-20040205/) and
[Document License](https://www.w3.org/Consortium/Legal/copyright-documents). To make substantive contributions to specifications, you must either participate
in the relevant W3C Working Group or make a non-member patent licensing commitment.

If you are not the sole contributor to a contribution (pull request), please identify all
contributors in the pull request comment.

To add a contributor (other than yourself, that's automatic), mark them one per line as follows:

```
+@github_username
```

If you added a contributor by mistake, you can remove them in a comment with:

```
-@github_username
```

If you are making a pull request on behalf of someone else but you had no part in designing the
feature, you can remove yourself with the above syntax.
4 changes: 4 additions & 0 deletions accname/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
All documents in this Repository are licensed by contributors
under the
[W3C Document License](https://www.w3.org/Consortium/Legal/copyright-documents).

5 changes: 5 additions & 0 deletions accname/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

# Specification 'accname'

This is the repository for accname. You're welcome to contribute! Let's make the Web rock our socks
off!
35 changes: 35 additions & 0 deletions accname/common/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# ARIA Common Files

[This is the repository for aria-common](https://github.com/w3c/aria-common). It contains files shared by several other ARIA repositories, and copied into those repositories. Note *content must be updated in w3c/aria-common*; changes made in copies are overwritten next time content from this repository is synced.

Resources in the common files:

## Terms

The specifications share a common set of term definitions, located in [terms.html](terms.html). Add and update terms there, keeping in mind your edits will affect all specifications. To use the terms, at the place you want the terms to be included, provide the following line:

```html
<div data-include="../common/terms.html" data-oninclude="restrictReferences"></div>
```

This includes the terms file and filters it to only output ones that are referenced in that particular specification.

## Bibliography

The Respec processor loads a bibliography called [Specref](https://github.com/tobie/specref). This resource automatically includes most publications that have been published to the W3C Technical Reports page. While it is possible to request additions to this via pull requests, in practice to use references that are not in that database, it is easier to use a [`localBiblio`](https://github.com/w3c/respec/wiki/localBiblio). This allows the Respec configuration to load additional bibliographic entries, structured in the same way as in Specref.

Many of the supplementary bibliographic entries needed for the ARIA publications are common to several specifications. Therefore the bibliographic entries are all stored in [biblio.js](biblio.js). This is loaded with the other scripts at the top of the file with the following line:

```html
<script src="../common/biblio.js" class="remove"></script>
```

In the respecConfig, instead of providing the set of bibliographic entries directly, simply reference the object created by that script:

```html
localBiblio: biblio,
```

## Images, CSS, and Scripts

The `common` directory also contains shared images, CSS, and scripts. Some of the scripts extend the Respec formatting processor, and others are meant to be used with the final output version. When a resource is, or is likely to be, shared, put it in the common directory. Resources specific to a particular specification, including overriding CSS, can be placed in the directory for that specification. Use the same sub-directory structure of `img`, `css`, and `script` to help keep files organized.
7 changes: 7 additions & 0 deletions accname/common/acknowledgements.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<section class="appendix informative section" id="acknowledgements">
<h3>Acknowledgments</h3>
<p>The following people contributed to the development of this document.</p>
<div data-include="acknowledgements/aria-wg-active.html" data-include-replace="true"></div>
<div data-include="acknowledgements/aria-contributors.html" data-include-replace="true"></div>
<div data-include="acknowledgements/funders.html" data-include-replace="true"></div>
</section>
Loading

0 comments on commit bd8b1d6

Please sign in to comment.