Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oslego/w3c-bugzilla-tracker
Source for the Bugzilla Tracker script used on W3C proposals
https://github.com/oslego/w3c-bugzilla-tracker
Last synced: about 1 month ago
JSON representation
Source for the Bugzilla Tracker script used on W3C proposals
- Host: GitHub
- URL: https://github.com/oslego/w3c-bugzilla-tracker
- Owner: oslego
- Created: 2012-04-21T08:53:33.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-10T11:49:22.000Z (over 12 years ago)
- Last Synced: 2024-10-14T12:48:54.543Z (3 months ago)
- Language: JavaScript
- Size: 149 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
W3C BugzillaTracker
=====W3C BugzillaTracker makes it easier for editors to keep track of bugs opened for their proposals. The script handles synchronizing bugs between the W3C Bugzilla instance and the bug data embedded into the W3C documents.
A bug dashboard is layered on top of the W3C spec with notable bug changes: new, updated or resolved.
Usage
-----1 Include the required files
<link rel="stylesheet" type="text/css" href="style/issues.css">
<script type="text/javascript" src="scripts/BugzillaTrackerUtil.js"></script>
<script type="text/javascript" src="scripts/BugzillaTracker.js"></script>
2 Add the bug template to the document
<script type="text/template" id="issue-template">
<div class="issue-marker" data-bug_id="{{bug_id}}" data-bug_status="{{bug_status}}">
<a href="https://www.w3.org/Bugs/Public/show_bug.cgi?id={{bug_id}}">Bug-{{bug_id}}</a>
<div class="issue-details">
<p class="short-desc">{{short_desc}}</p>
</div>
</div>
</script>
**Important**
The bugs hardcoded in the document need to follow the same template.
3 Call the script with the desired product and component
<script type="text/javascript">
// product = "CSS"
// component = "Regions"
checkSpecificationIssues('CSS', 'Regions');
</script>Browser requirements
-----
The script is expected to work in Google Chrome, Safari, Firefox, Opera and Internet Explorer 9+