Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Put note text back the way it was. #661

Merged
merged 2 commits into from Mar 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 3 additions & 8 deletions js/w3c/templates/sotd.html
Expand Up @@ -134,6 +134,9 @@
href='http://www.w3.org/Consortium/Patent-Policy-20040205/'>5 February 2004 W3C Patent
Policy</a>.
{{/unless}}
{{#if recNotExpected}}
The group does not expect this document to become a W3C Recommendation.
{{/if}}
{{#unless isIGNote}}
{{#if multipleWGs}}
W3C maintains {{{wgPatentHTML}}}
Expand All @@ -159,14 +162,6 @@
<a href='{{charterDisclosureURI}}'>charter</a>.
{{/if}}
</p>
<p>
{{#if recNotExpected}}
The group does not expect this document to become a W3C Recommendation.
{{#if noRecTrack}}
It is expected to become a W3C Note.
{{/if}}
{{/if}}
</p>
{{#if isNewProcess}}
<p>This document is governed by the <a id="w3c_process_revision"
href="http://www.w3.org/2015/Process-20150901/">1 September 2015 W3C Process Document</a>.
Expand Down
2 changes: 2 additions & 0 deletions tests/spec/w3c/headers-spec.js
Expand Up @@ -790,6 +790,7 @@ describe("W3C — Headers", function() {
}, simpleSpecURL).then(done);
});

/*
it("should state that the spec is destined to become a note", function(done) {
var ops = makeStandardOps();
var newProps = {
Expand All @@ -804,5 +805,6 @@ describe("W3C — Headers", function() {
expect(sotdText).toMatch(expectedString);
}).then(done);
});
*/

});