Skip to content

Commit

Permalink
chore: Replace HEAD refs
Browse files Browse the repository at this point in the history
  • Loading branch information
gibson042 committed Mar 29, 2023
1 parent 2f25d58 commit e140dc0
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ and provide sound static analysis info for that code.

The only difference between TinySES and Jessie is that correct TinySES
programs may rely on the presence of the [entire SES
runtime](https://github.com/endojs/endo/blob/HEAD/packages/ses/src/whitelist.js).
runtime](https://github.com/endojs/endo/blob/master/packages/ses/src/whitelist.js).
Correct Jessie programs may only rely on a [minimal subset of the SES
runtime](https://github.com/endojs/Jessie/blob/HEAD/src/bundle/whitelist.js)
runtime](https://github.com/endojs/Jessie/blob/main/src/bundle/whitelist.js)
that standalone Jessie implementations can implement for reasonable
effort. However, correct Jessie programs also cannot rely on the
*absence* of the rest of the SES runtime. Jessie and TinySES programs
Expand Down
2 changes: 1 addition & 1 deletion packages/parse/src/boot-peg.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable no-underscore-dangle,func-names,no-use-before-define */
// @ts-check
// A lot of this code is lifted from:
// https://github.com/erights/quasiParserGenerator/tree/HEAD/src/bootbnf.js
// https://github.com/erights/quasiParserGenerator/tree/master/src/bootbnf.js

/// <reference types="ses"/>
/// <reference path="./peg.d.ts"/>
Expand Down
2 changes: 1 addition & 1 deletion packages/parse/src/quasi-insulate.js.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Subsets of JavaScript, starting from the grammar as defined at
// http://www.ecma-international.org/ecma-262/9.0/#sec-grammar-summary

// See https://github.com/endojs/Jessie/blob/HEAD/README.md
// See https://github.com/endojs/Jessie/blob/main/README.md
// for documentation of the Jessie grammar defined here.

/// <reference path="peg.d.ts"/>
Expand Down
2 changes: 1 addition & 1 deletion packages/parse/src/quasi-jessie.js.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Subsets of JavaScript, starting from the grammar as defined at
// http://www.ecma-international.org/ecma-262/9.0/#sec-grammar-summary

// See https://github.com/endojs/Jessie/blob/HEAD/README.md
// See https://github.com/endojs/Jessie/blob/main/README.md
// for documentation of the Jessie grammar defined here.

/// <reference path="peg.d.ts"/>
Expand Down
2 changes: 1 addition & 1 deletion packages/parse/src/quasi-json.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// http://www.ecma-international.org/ecma-262/9.0/#sec-grammar-summary

// Defined to be extended into the Jessie grammar.
// See https://github.com/endojs/Jessie/blob/HEAD/README.md
// See https://github.com/endojs/Jessie/blob/main/README.md
// for documentation of the Jessie grammar.

// See also json.org
Expand Down
2 changes: 1 addition & 1 deletion packages/parse/src/quasi-justin.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

// Justin is defined to be extended into the Jessie grammar, which is
// defined to be extended into the JavaScript grammar.
// See https://github.com/endojs/Jessie/blob/HEAD/README.md
// See https://github.com/endojs/Jessie/blob/main/README.md
// for documentation of the Jessie grammar.

// Justin is defined to be extended into the Chainmail grammar, to
Expand Down
2 changes: 1 addition & 1 deletion packages/stdlib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"keywords": [],
"author": "Agoric",
"license": "Apache-2.0",
"homepage": "https://github.com/endojs/Jessie/tree/HEAD/packages/stdlib#readme",
"homepage": "https://github.com/endojs/Jessie/tree/main/packages/stdlib#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/endojs/Jessie.git"
Expand Down
2 changes: 1 addition & 1 deletion packages/types/jessie-proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// to provide a smoother programming experience.
//
// When they have become a part of:
// https://github.com/endojs/Jessie/blob/HEAD/src/bundle/whitelist.js
// https://github.com/endojs/Jessie/blob/main/src/bundle/whitelist.js
// then they will be moved to lib.jessie.d.ts.
//
// Michael FIG <michael+jessica@fig.org>, 2019-02-23
Expand Down
2 changes: 1 addition & 1 deletion scripts/repackage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ NEWPKGJSONHASH=$(
} + . + {
name: (.name // "@jessie.js/\($name)"),
version: (.version // "0.1.0"),
homepage: (.homepage // "https://github.com/endojs/Jessie/tree/HEAD/packages/\($name)#readme"),
homepage: (.homepage // "https://github.com/endojs/Jessie/tree/main/packages/\($name)#readme"),
repository: {
type: "git",
url: "git+https://github.com/endojs/Jessie.git",
Expand Down
2 changes: 1 addition & 1 deletion src/bundle/whitelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// limitations under the License.

/**
* Based on https://github.com/endojs/endo/blob/HEAD/packages/ses/src/whitelist.js
* Based on https://github.com/endojs/endo/blob/master/packages/ses/src/whitelist.js
*
* @author Mark S. Miller,
*/
Expand Down

0 comments on commit e140dc0

Please sign in to comment.