Update website URL

PEG.js website was moved from http://pegjs.majda.cz/ to http://pegjs.org/.
redux
David Majda 10 years ago
parent 2dedce52d6
commit fb7de36051

@ -72,7 +72,7 @@ browser:
echo '/*' >> $(BROWSER_FILE_DEV) echo '/*' >> $(BROWSER_FILE_DEV)
echo " * PEG.js $(PEGJS_VERSION)" >> $(BROWSER_FILE_DEV) echo " * PEG.js $(PEGJS_VERSION)" >> $(BROWSER_FILE_DEV)
echo ' *' >> $(BROWSER_FILE_DEV) echo ' *' >> $(BROWSER_FILE_DEV)
echo ' * http://pegjs.majda.cz/' >> $(BROWSER_FILE_DEV) echo ' * http://pegjs.org/' >> $(BROWSER_FILE_DEV)
echo ' *' >> $(BROWSER_FILE_DEV) echo ' *' >> $(BROWSER_FILE_DEV)
echo ' * Copyright (c) 2010-2013 David Majda' >> $(BROWSER_FILE_DEV) echo ' * Copyright (c) 2010-2013 David Majda' >> $(BROWSER_FILE_DEV)
echo ' * Licensed under the MIT license.' >> $(BROWSER_FILE_DEV) echo ' * Licensed under the MIT license.' >> $(BROWSER_FILE_DEV)

@ -15,13 +15,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.majda.cz/online), from the command * Usable [from your browser](http://pegjs.org/online), from the command line,
line, or via JavaScript API or via JavaScript API
Getting Started Getting Started
--------------- ---------------
[Online version](http://pegjs.majda.cz/online) is the easiest way to generate a [Online version](http://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.
@ -43,8 +43,8 @@ ways.
### Browser ### Browser
[Download](http://pegjs.majda.cz/#download) the PEG.js library (regular or [Download](http://pegjs.org/#download) the PEG.js library (regular or minified
minified version) or install it using Bower: version) or install it using Bower:
$ bower install pegjs $ bower install pegjs
@ -428,7 +428,7 @@ environments:
Development Development
----------- -----------
* [Project website](http://pegjs.majda.cz/) * [Project website](http://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)
* [Trello board](https://trello.com/board/peg-js/50a8eba48cf95d4957006b01) * [Trello board](https://trello.com/board/peg-js/50a8eba48cf95d4957006b01)

@ -682,7 +682,7 @@ function generateJavascript(ast, options) {
' /*', ' /*',
' * Generated by PEG.js 0.8.0.', ' * Generated by PEG.js 0.8.0.',
' *', ' *',
' * http://pegjs.majda.cz/', ' * http://pegjs.org/',
' */', ' */',
'', '',
' function peg$subclass(child, parent) {', ' function peg$subclass(child, parent) {',

@ -2,7 +2,7 @@ module.exports = (function() {
/* /*
* Generated by PEG.js 0.8.0. * Generated by PEG.js 0.8.0.
* *
* http://pegjs.majda.cz/ * http://pegjs.org/
*/ */
function peg$subclass(child, parent) { function peg$subclass(child, parent) {

@ -2,7 +2,7 @@
"name": "pegjs", "name": "pegjs",
"version": "0.8.0", "version": "0.8.0",
"description": "Parser generator for JavaScript", "description": "Parser generator for JavaScript",
"homepage": "http://pegjs.majda.cz/", "homepage": "http://pegjs.org/",
"author": { "author": {
"name": "David Majda", "name": "David Majda",
"email": "david@majda.cz", "email": "david@majda.cz",

Loading…
Cancel
Save