Adapt to using HTTPS on PEG.js website

PEG.js website is now served exclusively using HTTPS. Change protocol in
all links to it to avoid redirects.
redux
David Majda 7 years ago
parent a733beb933
commit 266f17d11c

@ -20,13 +20,13 @@ Features
* Based on [parsing expression * Based on [parsing expression
grammar](http://en.wikipedia.org/wiki/Parsing_expression_grammar) formalism grammar](http://en.wikipedia.org/wiki/Parsing_expression_grammar) formalism
— more powerful than traditional LL(*k*) and LR(*k*) parsers — more powerful than traditional LL(*k*) and LR(*k*) parsers
* Usable [from your browser](http://pegjs.org/online), from the command line, * Usable [from your browser](https://pegjs.org/online), from the command line,
or via JavaScript API or via JavaScript API
Getting Started Getting Started
--------------- ---------------
[Online version](http://pegjs.org/online) is the easiest way to generate a [Online version](https://pegjs.org/online) is the easiest way to generate a
parser. Just enter your grammar, try parsing few inputs, and download generated parser. Just enter your grammar, try parsing few inputs, and download generated
parser code. parser code.
@ -52,7 +52,7 @@ ways.
### Browser ### Browser
[Download](http://pegjs.org/#download) the PEG.js library (regular or minified [Download](https://pegjs.org/#download) the PEG.js library (regular or minified
version) or install it using Bower: version) or install it using Bower:
```console ```console
@ -506,7 +506,7 @@ environments:
Development Development
----------- -----------
* [Project website](http://pegjs.org/) * [Project website](https://pegjs.org/)
* [Wiki](https://github.com/pegjs/pegjs/wiki) * [Wiki](https://github.com/pegjs/pegjs/wiki)
* [Source code](https://github.com/pegjs/pegjs) * [Source code](https://github.com/pegjs/pegjs)
* [Issue tracker](https://github.com/pegjs/pegjs/issues) * [Issue tracker](https://github.com/pegjs/pegjs/issues)

@ -22,7 +22,7 @@ let uglify = require("gulp-uglify");
const HEADER = [ const HEADER = [
"// PEG.js " + package_.version, "// PEG.js " + package_.version,
"//", "//",
"// http://pegjs.org/", "// https://pegjs.org/",
"//", "//",
"// Copyright (c) 2010-2016 David Majda", "// Copyright (c) 2010-2016 David Majda",
"// Licensed under the MIT License.", "// Licensed under the MIT License.",

@ -1206,7 +1206,7 @@ function generateJS(ast, options) {
return [ return [
"// Generated by PEG.js 0.10.0.", "// Generated by PEG.js 0.10.0.",
"//", "//",
"// http://pegjs.org/" "// https://pegjs.org/"
].join("\n"); ].join("\n");
} }

@ -1,6 +1,6 @@
// Generated by PEG.js 0.10.0. // Generated by PEG.js 0.10.0.
// //
// http://pegjs.org/ // https://pegjs.org/
"use strict"; "use strict";

@ -6,7 +6,7 @@
"parser generator", "parser generator",
"PEG" "PEG"
], ],
"homepage": "http://pegjs.org/", "homepage": "https://pegjs.org/",
"bugs": "https://github.com/pegjs/pegjs/issues", "bugs": "https://github.com/pegjs/pegjs/issues",
"license": "MIT", "license": "MIT",
"author": "David Majda <david@majda.cz> (http://majda.cz/)", "author": "David Majda <david@majda.cz> (http://majda.cz/)",

Loading…
Cancel
Save