Skip to content

Commit

Permalink
Update Copyright, license, and remove author statements in code comme…
Browse files Browse the repository at this point in the history
…nts (pull #518)

* Move Author Attributions to acknowledgements section of main document.
* Add w3c copyright and license statement to JS files
  • Loading branch information
jnurthen authored and mcking65 committed Nov 5, 2017
1 parent 78739db commit 10faf3d
Show file tree
Hide file tree
Showing 58 changed files with 137 additions and 109 deletions.
4 changes: 4 additions & 0 deletions common/acknowledgements.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ <h4>Other ARIA contributors, commenters, and previously active participants</h4>
<li>Jan Heck</li>
<li>Shawn Henry</li>
<li>Tina Homboe</li>
<li>Nicholas Hoyt</li>
<li>John Hrvatin (Microsoft Corporation)</li>
<li>Takahiro Inada</li>
<li>Masayasu Ishikawa (W3C)</li>
Expand All @@ -111,6 +112,7 @@ <h4>Other ARIA contributors, commenters, and previously active participants</h4>
<li>Jason Kiss (New Zealand Government)</li>
<li>Todd Kloots</li>
<li>Johannes Koch</li>
<li>Gerard K. Cohen</li>
<li>Sam Kuper</li>
<li>Earl Johnson (Sun)</li>
<li>Jael Kurz</li>
Expand All @@ -121,6 +123,7 @@ <h4>Other ARIA contributors, commenters, and previously active participants</h4>
<li>Alex Li (SAP)</li>
<li>Chris Lilley</li>
<li>Thomas Logan (HiSoftware Inc.)</li>
<li>Brian Loh</li>
<li>William Loughborough (Invited Expert)</li>
<li>Linda Mao (Microsoft)</li>
<li>David MacDonald (Invited Expert, CanAdapt Solutions Inc.)</li>
Expand All @@ -129,6 +132,7 @@ <h4>Other ARIA contributors, commenters, and previously active participants</h4>
<li>Krzysztof Maczyński </li>
<li>Matthew May (Adobe Systems Inc.)</li>
<li>Dominic Mazzoni (Google, Inc.)</li>
<li>Mark McCarthy</li>
<li>Alexandre Morgaut (4D)</li>
<li>Ann Navarro (Invited Expert)</li>
<li>Joshue O Connor (Invited Expert, CFIT)</li>
Expand Down
6 changes: 4 additions & 2 deletions examples/accordion/js/accordion.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/*
Simple accordion pattern example
Gerard K. Cohen, 05/20/2017
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*
* Simple accordion pattern example
*/

'use strict';
Expand Down
5 changes: 5 additions & 0 deletions examples/alert/js/alert.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*
*/
window.addEventListener('load', function () {

var button = document.getElementById('alert-trigger');
Expand Down
2 changes: 0 additions & 2 deletions examples/button/js/button.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: button.js
*
* Desc: JS code for Button Design Pattersn
*
* Author: Jon Gunderson
*/

var ICON_MUTE_URL = 'images/mute.svg#icon-mute';
Expand Down
1 change: 0 additions & 1 deletion examples/checkbox/checkbox-1/js/checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* Desc: Checkbox widget that implements ARIA Authoring Practices
* for a menu of links
*
* Author: Jon Gunderson and Nicholas Hoyt
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/checkbox/checkbox-2/js/checkboxMixed.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
*
* Desc: CheckboxMixed widget that implements ARIA Authoring Practices
* for a menu of links
*
* Author: Jon Gunderson and Nicholas Hoyt
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/checkbox/checkbox-2/js/controlledCheckbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
*
* Desc: ControlledCheckbox widget that implements ARIA Authoring Practices
* for a mixed checkbox
*
* Author: Jon Gunderson and Nicholas Hoyt
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/combobox/aria1.0pattern/js/combobox-1.0-listbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
*
* Desc: Combobox widget that implements ARIA Authoring Practices for
* ARIA 1.0 definition of combobox using a Listbox
*
* Author: Jon Gunderson and Nicholas Hoyt
*/

/*
Expand Down
9 changes: 6 additions & 3 deletions examples/combobox/aria1.1pattern/js/grid-combo-example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/**
* ARIA Combobox Examples
*/
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*
* ARIA Combobox Examples
*/

var FRUITS_AND_VEGGIES = [
['Apple', 'Fruit'],
Expand Down
5 changes: 5 additions & 0 deletions examples/combobox/aria1.1pattern/js/grid-combobox.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/

/**
* @constructor
*
Expand Down
9 changes: 6 additions & 3 deletions examples/combobox/aria1.1pattern/js/listbox-combo-example.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/**
* ARIA Combobox Examples
*/
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*
* ARIA Combobox Examples
*/

var FRUITS_AND_VEGGIES = [
'Apple',
Expand Down
4 changes: 4 additions & 0 deletions examples/combobox/aria1.1pattern/js/listbox-combobox.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
/**
* @constructor
*
Expand Down
5 changes: 5 additions & 0 deletions examples/dialog-modal/js/dialog.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/

var aria = aria || {};

aria.Utils = aria.Utils || {};
Expand Down
2 changes: 0 additions & 2 deletions examples/disclosure/js/disclosureButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
*
* Desc: Checkbox widget that implements ARIA Authoring Practices
* for a menu of links
*
* Author: Jon Gunderson and Nicholas Hoyt
*/

/*
Expand Down
5 changes: 5 additions & 0 deletions examples/feed/js/feed.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/

/**
* @namespace aria
*/
Expand Down
5 changes: 5 additions & 0 deletions examples/feed/js/feedDisplay.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/

/**
* @namespace aria
*/
Expand Down
5 changes: 5 additions & 0 deletions examples/feed/js/main.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/

/**
* ARIA Feed Example
* @function onload
Expand Down
7 changes: 4 additions & 3 deletions examples/grid/js/dataGrid.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/**
* TODO: Copyright and License stuff goes here
*/
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/

/**
* @namespace aria
Expand Down
4 changes: 4 additions & 0 deletions examples/grid/js/dataGrids.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
/**
* ARIA Grid Examples
* @function onload
Expand Down
4 changes: 4 additions & 0 deletions examples/grid/js/layoutGrids.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
var aria = aria || {};

/**
Expand Down
18 changes: 4 additions & 14 deletions examples/grid/js/menuButton.js
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
/*
* Copyright 2016 University of Illinois
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*
*/

/**
* ARIA Menu Button example
Expand Down
4 changes: 4 additions & 0 deletions examples/link/js/link.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
function goToLink (event, url) {
var type = event.type;

Expand Down
4 changes: 4 additions & 0 deletions examples/listbox/js/listbox-rearrangeable.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
/**
* ARIA Listbox Examples
* @function onload
Expand Down
4 changes: 4 additions & 0 deletions examples/listbox/js/listbox-scrollable.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
/**
* ARIA Scrollable Listbox Example
* @function onload
Expand Down
4 changes: 4 additions & 0 deletions examples/listbox/js/listbox.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
/**
* @namespace aria
*/
Expand Down
4 changes: 4 additions & 0 deletions examples/listbox/js/toolbar.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
* This content is licensed according to the W3C Software License at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document
*/
/**
* @namespace aria
*/
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/MenuItemAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: MenuItem.js
*
* Desc: Popup Menu Menuitem widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/MenuItemActionActivedescendant.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: MenuItem.js
*
* Desc: Popup Menu Menuitem widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/MenuItemLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: MenuItemLinks.js
*
* Desc: Popup Menu Menuitem widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/Menubutton.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: Menubutton.js
*
* Desc: Menubutton widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/Menubutton2.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: Menubutton.js
*
* Desc: Menubutton Menuitem widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/PopupMenuAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: PopupMenuAction.js
*
* Desc: Popup menu widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/PopupMenuActionActivedescendant.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: PopupMenuActionActivedescendant.js
*
* Desc: Popup menu widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menu-button/js/PopupMenuLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: PopupMenuLinks.js
*
* Desc: Popup menu Links widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun, Nicholas Hoyt and Brian Loh
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menubar/menubar-2/js/MenubarAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: MenubarAction.js
*
* Desc: Menubar widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun and Nicholas Hoyt
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menubar/menubar-2/js/MenubarItemAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: MenubarItemAction.js
*
* Desc: Menubar Menuitem widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun and Nicholas Hoyt
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menubar/menubar-2/js/PopupMenuAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: PopupMenuAction.js
*
* Desc: Popup menu widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson and Ku Ja Eun
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menubar/menubar-2/js/PopupMenuItemAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: MenuItem.js
*
* Desc: Popup Menu Menuitem widget that implements ARIA Authoring Practices
*
* Author: Jon Gunderson, Ku Ja Eun and Nicholas Hoyt
*/

/*
Expand Down
2 changes: 0 additions & 2 deletions examples/menubar/menubar-2/js/menubar-2-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: menubar-2-init.js
*
* Desc: Creates a menubar to control the styling of text in a textarea element
*
* Author: Jon Gunderson, Ku Ja Eun and Nicholas Hoyt
*/

window.addEventListener('load', function () {
Expand Down
2 changes: 0 additions & 2 deletions examples/menubar/menubar-2/js/styleManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
* File: TextStyling.js
*
* Desc: Styling functions for changing the style of an item
*
* Author: Jon Gunderson and Ku Ja Eun
*/

var StyleManager = function (id) {
Expand Down
Loading

0 comments on commit 10faf3d

Please sign in to comment.