├── .gitignore
├── .pr-preview.json
├── w3c.json
├── LICENSE.md
├── CODE_OF_CONDUCT.md
├── .github
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ └── auto-publish.yml
├── logo-db.svg
├── README.md
├── CONTRIBUTING.md
├── Comments-16-May-2013-LCWD.html
└── IndexedDB Disposition of Comments.html
/.gitignore:
--------------------------------------------------------------------------------
1 | deploy_key
2 |
--------------------------------------------------------------------------------
/.pr-preview.json:
--------------------------------------------------------------------------------
1 | {
2 | "src_file": "index.bs",
3 | "type": "bikeshed"
4 | }
5 |
--------------------------------------------------------------------------------
/w3c.json:
--------------------------------------------------------------------------------
1 | {
2 | "group": 114929
3 | , "contacts": ["siusin"]
4 | , "policy": "open"
5 | , "repo-type": "rec-track"
6 | }
7 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | All documents in this Repository are licensed by contributors under the [W3C Document
2 | License](http://www.w3.org/Consortium/Legal/copyright-documents).
3 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
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/).
4 |
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | Closes #???
2 |
3 | The following tasks have been completed:
4 |
5 | * [ ] Confirmed there are no ReSpec/BikeShed errors or warnings.
6 | * [ ] Modified Web platform tests (link to pull request)
7 |
8 | Implementation commitment:
9 |
10 | * [ ] WebKit (https://bugs.webkit.org/show_bug.cgi?id=)
11 | * [ ] Chromium (https://bugs.chromium.org/p/chromium/issues/detail?id=)
12 | * [ ] Gecko (https://bugzilla.mozilla.org/show_bug.cgi?id=)
--------------------------------------------------------------------------------
/logo-db.svg:
--------------------------------------------------------------------------------
1 |
19 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Indexed DB
2 | ----------
3 |
4 | This is a repository for the development of the Indexed Database (Third Edition) specification.
5 | * [Latest Editor's Draft](https://w3c.github.io/IndexedDB/)
6 |
7 | The First Edition was published as a W3C Recommendation on January 8th, 2015. The Second Edition was published as a W3C Recommendation on January 30th, 2018.
8 | * [First Edition](https://www.w3.org/TR/2015/REC-IndexedDB-20150108/)
9 | * [Second Edition](https://www.w3.org/TR/2018/REC-IndexedDB-2-20180130/)
10 |
11 | Feature requests beyond the First Edition are documented in:
12 | * Newer: [This issue tracker](https://github.com/w3c/IndexedDB/issues)
13 | * Older: [IDB Feature Request wiki](https://www.w3.org/2008/webapps/wiki/IndexedDatabaseFeatures)
14 |
--------------------------------------------------------------------------------
/.github/workflows/auto-publish.yml:
--------------------------------------------------------------------------------
1 | name: CI
2 | on:
3 | pull_request: {}
4 | push:
5 | branches: [main]
6 | workflow_dispatch:
7 | jobs:
8 | main:
9 | name: Build, Validate, Deploy
10 | runs-on: ubuntu-latest
11 | steps:
12 | - uses: actions/checkout@v2
13 | - uses: w3c/spec-prod@v2
14 | with:
15 | GH_PAGES_BRANCH: gh-pages
16 | TOOLCHAIN: bikeshed
17 | BUILD_FAIL_ON: "link-error"
18 | W3C_NOTIFICATIONS_CC: ${{ secrets.CC }}
19 | W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN }}
20 | W3C_WG_DECISION_URL: https://lists.w3.org/Archives/Public/public-webapps/2014JulSep/0627.html
21 | W3C_BUILD_OVERRIDE: |
22 | status: WD
23 | shortname: IndexedDB
24 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Web Platform Working Group
2 |
3 | Contributions to this repository are intended to become part of Recommendation-track documents
4 | governed by the [W3C Patent Policy](http://www.w3.org/Consortium/Patent-Policy-20040205/) and
5 | [Document License](http://www.w3.org/Consortium/Legal/copyright-documents). To contribute, you must
6 | either participate in the relevant W3C Working Group or make a non-member patent licensing
7 | commitment.
8 |
9 | If you are not the sole contributor to a contribution (pull request), please identify all
10 | contributors in the pull request's body or in subsequent comments.
11 |
12 | To add a contributor (other than yourself, that's automatic), mark them one per line as follows:
13 |
14 | ```
15 | +@github_username
16 | ```
17 |
18 | If you added a contributor by mistake, you can remove them in a comment with:
19 |
20 | ```
21 | -@github_username
22 | ```
23 |
24 | If you are making a pull request on behalf of someone else but you had no part in designing the
25 | feature, you can remove yourself with the above syntax.
26 |
27 | # Tests
28 |
29 | For normative changes, a corresponding
30 | [web-platform-tests](https://github.com/web-platform-tests/wpt) PR is highly appreciated. Typically,
31 | both PRs will be merged at the same time. Note that a test change that contradicts the spec should
32 | not be merged before the corresponding spec change. If testing is not practical, please explain why
33 | and if appropriate [file an issue](https://github.com/web-platform-tests/wpt/issues/new) to follow
34 | up later. Add the `type:untestable` or `type:missing-coverage` label as appropriate.
35 |
--------------------------------------------------------------------------------
/Comments-16-May-2013-LCWD.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IndexedDB Disposition of Comments for 16 May 2013 Last Call Working Draft
6 |
7 |
94 |
95 |
96 |
97 |
98 |
116 | The Resolution column specifies the resolution to the issue,
117 | as determined by the working group and implemented by the editors.
118 |
119 |
120 |
Commenter Responses
121 |
122 | The Satisfaction column specifies the response, if any, of the person(s) reporting the issue
123 | to the working group decision, and may contain values that indicate:
124 |
During its Last Call phases, the following changes were made to the
102 | IndexedDB specification based on public review and implementor feedback.
103 |
104 |
113 |
114 |
Resolutions and Responses
115 |
WebApps WG Resolutions
116 |
117 | The Resolution column specifies the resolution to the issue,
118 | as determined by the working group and implemented by the editors.
119 |
120 |
121 |
Commenter Responses
122 |
123 | The Staisfaction column specifies the response, if any, of the person(s) reporting the issue
124 | to the working group decision, and may contain values that indicate:
125 |