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

Allow https URLs for in PP URL checks. #222

Merged
merged 2 commits into from
Aug 3, 2015
Merged

Conversation

sideshowbarker
Copy link
Contributor

No description provided.

sideshowbarker added a commit to w3c/webdriver that referenced this pull request Aug 3, 2015
The "specberus" tool that runs automated checks as part of the WG
automatic-publishing-to-TR-space system is currently hardcoded to look for
an "http" scheme in the wgPatentURI URL.

w3c/specberus#222 is a PR that I've opened to fix
that, but in the mean time we'll need to use the insecure URL instead, then
switch this back once that specberus PR is merged.
text === "Essential Claim(s)") {
foundEssentials = true;
return;
}
if (href === "http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure" &&
if ((href === "http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure" ||
href === "http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure") &&
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing s in https

deniak added a commit that referenced this pull request Aug 3, 2015
Allow https URLs for in PP URL checks.
@deniak deniak merged commit 306733d into master Aug 3, 2015
@sideshowbarker sideshowbarker deleted the sideshowbarker/https branch August 3, 2015 07:16
text === "5 February 2004 W3C Patent Policy") {
foundFeb5 = true;
return;
}
if (/^http:\/\/www\.w3\.org\/2004\/01\/pp-impl\/\d+\/status(#.*)?$/.test(href) &&
if (/^http[s]*:\/\/www\.w3\.org\/2004\/01\/pp-impl\/\d+\/status(#.*)?$/.test(href) &&
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/^https?:\/\/... is more accurate, and simpler.
(Nevermind, sorry I didn't see this earlier… :¬)

sideshowbarker added a commit that referenced this pull request Aug 16, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants