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
grammar](http://en.wikipedia.org/wiki/Parsing_expression_grammar) formalism
— 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
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 code.
@ -52,7 +52,7 @@ ways.
### 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:
```console
@ -506,7 +506,7 @@ environments:
Development
-----------
* [Project website](http://pegjs.org/)
* [Project website](https://pegjs.org/)
* [Wiki](https://github.com/pegjs/pegjs/wiki)
* [Source code](https://github.com/pegjs/pegjs)
* [Issue tracker](https://github.com/pegjs/pegjs/issues)

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

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

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

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

Loading…
Cancel
Save