Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
More byline updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal committed Feb 14, 2010
1 parent ff844a9 commit 648da3e
Show file tree
Hide file tree
Showing 80 changed files with 131 additions and 83 deletions.
4 changes: 2 additions & 2 deletions bin/codesign
Expand Up @@ -4,8 +4,8 @@ FIRST_NAME=$2
LAST_NAME=$3 LAST_NAME=$3
cat | while read FILE_NAME; do cat | while read FILE_NAME; do
cat "$FILE_NAME" \ cat "$FILE_NAME" \
| sed "s/^"'\/\/'" $1.*/"'\/\/'" -- $*/" \ | sed "s/^"'\/\/'" -- $1.*/"'\/\/'" -- $*/" \
| sed "s/^"'\/\/'" $2 $3.*/"'\/\/'" -- $*/" \ | sed "s/^"'\/\/'" -- $2 $3.*/"'\/\/'" -- $*/" \
> "$FILE_NAME.$1" > "$FILE_NAME.$1"
mv "$FILE_NAME.$1" "$FILE_NAME" mv "$FILE_NAME.$1" "$FILE_NAME"
done done
2 changes: 1 addition & 1 deletion engines/browser/lib/reactor.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn // -- cadorn Christoph Dorn


var active = false; var active = false;
Expand Down
3 changes: 3 additions & 0 deletions engines/default/lib/binary.js
@@ -1,6 +1,9 @@


/* Binary */ /* Binary */
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- gozala Irakli Gozalishvili
// -- tschaub
// -- nrstott Nathan Stott


var engine = require("binary-engine"), var engine = require("binary-engine"),
B_ALLOC = engine.B_ALLOC, B_ALLOC = engine.B_ALLOC,
Expand Down
2 changes: 1 addition & 1 deletion engines/default/lib/file-engine.js
@@ -1,6 +1,6 @@


// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


// HACK: use "fs.read" and "fs.isFile" until properly implemented. // HACK: use "fs.read" and "fs.isFile" until properly implemented.
// save "fs" here since it will be replaced in "system" later. // save "fs" here since it will be replaced in "system" later.
Expand Down
2 changes: 1 addition & 1 deletion engines/default/lib/global-commonjs.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


// https://wiki.mozilla.org/ServerJS/Binary/B // https://wiki.mozilla.org/ServerJS/Binary/B
if (!String.prototype.toByteString) if (!String.prototype.toByteString)
Expand Down
2 changes: 1 addition & 1 deletion engines/default/lib/global-es5.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// dantman Daniel Friesen // dantman Daniel Friesen


Expand Down
2 changes: 1 addition & 1 deletion engines/default/lib/reactor.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var tasks = []; var tasks = [];


Expand Down
2 changes: 1 addition & 1 deletion engines/default/lib/system.js
@@ -1,6 +1,6 @@


// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var IO = require("./io").IO; var IO = require("./io").IO;


Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/bootstrap.js
@@ -1,6 +1,6 @@
(function(global, evalGlobal) { (function(global, evalGlobal) {
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


/* /*
this is a minimal engine-specific thunk for narwhal.js this is a minimal engine-specific thunk for narwhal.js
Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/file-engine.js
@@ -1,6 +1,6 @@


// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


// use the "file" module as the exports object. // use the "file" module as the exports object.
var exports = require('./file'); var exports = require('./file');
Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/fs-base.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


// vim: ft=javascript ts=2 sw=2 et: // vim: ft=javascript ts=2 sw=2 et:


Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/http-client-engine.js
@@ -1,5 +1,5 @@


// isaacs Isaac Schleuter // -- isaacs Isaac Schlueter


var IO = require("io").IO, var IO = require("io").IO,
HashP = require("hashp").HashP; HashP = require("hashp").HashP;
Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/http-engine.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var IO = require('./io').IO; var IO = require('./io').IO;


Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/interpreter.js
@@ -1,6 +1,6 @@


// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


// Prototyping and expermenting with Context Creation and Module // Prototyping and expermenting with Context Creation and Module
// evaluation, per ECMAScript strawman proposal: // evaluation, per ECMAScript strawman proposal:
Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/io-engine.js
@@ -1,6 +1,6 @@


// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


// IO: Rhino // IO: Rhino


Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/os-engine.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var IO = require('io'); var IO = require('io');


Expand Down
3 changes: 2 additions & 1 deletion engines/rhino/lib/packages-engine.js
@@ -1,5 +1,6 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tschaub


var fs = require('./file'); var fs = require('./file');
var system = require('./system'); var system = require('./system');
Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/sandbox-engine.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// STATUS: never really worked. // STATUS: never really worked.


/* shared, sealed global context */ /* shared, sealed global context */
Expand Down
2 changes: 1 addition & 1 deletion engines/rhino/lib/zip.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var io = require('io'); var io = require('io');


Expand Down
2 changes: 1 addition & 1 deletion engines/secure/lib/file.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


for (var name in system.fs) { for (var name in system.fs) {
if (Object.prototype.hasOwnProperty.call(system.fs, name)) if (Object.prototype.hasOwnProperty.call(system.fs, name))
Expand Down
2 changes: 1 addition & 1 deletion engines/secure/lib/system.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


for (var name in system) { for (var name in system) {
if (Object.prototype.hasOwnProperty.call(system, name)) { if (Object.prototype.hasOwnProperty.call(system, name)) {
Expand Down
2 changes: 1 addition & 1 deletion engines/template/bootstrap.js
@@ -1,5 +1,5 @@
(function (evalGlobal) { (function (evalGlobal) {
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var read = /*TODO*/; // function(path:string):string var read = /*TODO*/; // function(path:string):string


Expand Down
2 changes: 1 addition & 1 deletion engines/template/lib/file-engine.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn // -- cadorn Christoph Dorn


var exports = require('./file'); var exports = require('./file');
Expand Down
4 changes: 3 additions & 1 deletion lib/args.js
@@ -1,4 +1,6 @@
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson


var os = require('os'); var os = require('os');
var util = require('util'); var util = require('util');
Expand Down
8 changes: 4 additions & 4 deletions lib/assert.js
Expand Up @@ -2,13 +2,13 @@
// http://wiki.commonjs.org/wiki/Unit_Testing/1.0 // http://wiki.commonjs.org/wiki/Unit_Testing/1.0


// -- zaach Zachary Carter // -- zaach Zachary Carter
// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// original skeleton // original skeleton
// felixge Felix Geisendörfer // -- felixge Felix Geisendörfer
// editions backported from NodeJS // editions backported from NodeJS
// Karl Guertin // -- Karl Guertin
// editions backported from NodeJS // editions backported from NodeJS
// ashb Ash Berlin // -- ashb Ash Berlin
// contributions annotated // contributions annotated


var util = require("util"); var util = require("util");
Expand Down
3 changes: 2 additions & 1 deletion lib/base16.js
@@ -1,5 +1,6 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn


var util = require('util'); var util = require('util');
var binary = require('binary'); var binary = require('binary');
Expand Down
6 changes: 5 additions & 1 deletion lib/base64.js
@@ -1,10 +1,14 @@

/* Copyright (C) 1999 Masanao Izumo <iz@onicos.co.jp> /* Copyright (C) 1999 Masanao Izumo <iz@onicos.co.jp>
* Version: 1.0 * Version: 1.0
* LastModified: Dec 25 1999 * LastModified: Dec 25 1999
* This library is free. You can redistribute it and/or modify it. * This library is free. You can redistribute it and/or modify it.
*/ */


/* modified by Kris Kowal to add support for Binary for Narwhal */ // -- Mansano Izumo Copyright 1999 "free"
// modified to add support for Binary for Narwhal:
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn


var encodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; var encodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
var decodeChars = [ var decodeChars = [
Expand Down
6 changes: 5 additions & 1 deletion lib/crc32.js
@@ -1,5 +1,9 @@

// from http://www.webtoolkit.info/ Javascript crc32 // from http://www.webtoolkit.info/ Javascript crc32
// ported by Kris Kowal // ported by:
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// with contributions:
// -- cadorn Christoph Dorn


var util = require('./util'); var util = require('./util');


Expand Down
3 changes: 3 additions & 0 deletions lib/events.js
@@ -1,5 +1,8 @@
"use strict"; "use strict";


// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- kriszyp Kris Zyp

/* /*
Basic events, signals, emitters, observers, observables, Basic events, signals, emitters, observers, observables,
Expand Down
3 changes: 2 additions & 1 deletion lib/file-bootstrap.js
@@ -1,6 +1,7 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- cadorn Christoph Dorn


// NOTE: this file is used is the bootstrapping process, // NOTE: this file is used is the bootstrapping process,
// so any "requires" must be accounted for in narwhal.js // so any "requires" must be accounted for in narwhal.js
Expand Down
4 changes: 3 additions & 1 deletion lib/file.js
@@ -1,6 +1,8 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- tolmasky Francisco Tolmasky
// -- dangoor Kevin Dangoor


// NOTE: portions of the "file" module are implemented in "file-bootstrap" and "file-engine", // NOTE: portions of the "file" module are implemented in "file-bootstrap" and "file-engine",
// which are loaded at the bottom of this file to allow for overriding default implementations // which are loaded at the bottom of this file to allow for overriding default implementations
Expand Down
2 changes: 1 addition & 1 deletion lib/fs-bootstrap.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson


// NOTE: this file is used is the bootstrapping process, // NOTE: this file is used is the bootstrapping process,
Expand Down
3 changes: 2 additions & 1 deletion lib/hash.js
@@ -1,7 +1,8 @@


// -- tlrobinson Tom Robinson
// Hash object // Hash object


// -- tlrobinson Tom Robinson

var Hash = exports.Hash = {}; var Hash = exports.Hash = {};


Hash.merge = function(hash, other) { Hash.merge = function(hash, other) {
Expand Down
2 changes: 1 addition & 1 deletion lib/html.js
@@ -1,5 +1,5 @@


// gmosx, George Moschovitis // -- gmosx George Moschovitis


/** /**
* Escape HTML characters. * Escape HTML characters.
Expand Down
3 changes: 2 additions & 1 deletion lib/http-client.js
@@ -1,5 +1,6 @@


// isaacs, Isaac Schleuter // -- isaacs Isaac Schleuter
// -- airportyh


var IO = require("io").IO, var IO = require("io").IO,
HashP = require("hashp").HashP, HashP = require("hashp").HashP,
Expand Down
3 changes: 2 additions & 1 deletion lib/http.js
@@ -1,5 +1,6 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn


var implementation = require('http-engine'); var implementation = require('http-engine');


Expand Down
2 changes: 1 addition & 1 deletion lib/http/fs-store.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


var FS = require("file"); var FS = require("file");
var HTTP = require("http"); var HTTP = require("http");
Expand Down
3 changes: 2 additions & 1 deletion lib/loader.js
@@ -1,5 +1,6 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn


// NOTE: this file is used is the bootstrapping process, // NOTE: this file is used is the bootstrapping process,
// so any "requires" must be accounted for in narwhal.js // so any "requires" must be accounted for in narwhal.js
Expand Down
2 changes: 1 addition & 1 deletion lib/loader/attenuated.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


exports.AttenuatedLoader = function (loader) { exports.AttenuatedLoader = function (loader) {
var self = {}; var self = {};
Expand Down
3 changes: 2 additions & 1 deletion lib/loader/multi.js
@@ -1,6 +1,7 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson
// -- cadorn Christoph Dorn


// NOTE: this file is used is the bootstrapping process, // NOTE: this file is used is the bootstrapping process,
// so any "requires" must be accounted for in narwhal.js // so any "requires" must be accounted for in narwhal.js
Expand Down
2 changes: 1 addition & 1 deletion lib/loader/prefix.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License


exports.PrefixLoader = function (prefix, loader) { exports.PrefixLoader = function (prefix, loader) {
var self = this || {}; var self = this || {};
Expand Down
13 changes: 11 additions & 2 deletions lib/md4.js
@@ -1,4 +1,15 @@


// -- Jarrad Pierce Copyright 1999-2002 BSD License
// -- Paul Johnson Copyright 1999-2002 BSD License
// other contributors:
// -- Greg Hold
// -- Andrew Kepert
// -- Ydnar
// -- Lostinet
// ported to Chiron then Narwhal by:
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- cadorn Christoph Dorn

/*! /*!
Version 2.1 Copyright (C) Jerrad Pierce, Paul Johnston 1999 - 2002. Version 2.1 Copyright (C) Jerrad Pierce, Paul Johnston 1999 - 2002.
Expand All @@ -7,8 +18,6 @@
Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
See http://pajhome.org.uk/crypt/md5 for more info. See http://pajhome.org.uk/crypt/md5 for more info.
Ported to Chiron and Narwhal by Kris Kowal, kriskowal
*/ */


/** /**
Expand Down
3 changes: 3 additions & 0 deletions lib/md5.js
Expand Up @@ -9,6 +9,9 @@
Ported to Chiron and Narwhal by Kris Kowal, kriskowal Ported to Chiron and Narwhal by Kris Kowal, kriskowal
*/ */


// ported by:
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License

var util = require('./util'); var util = require('./util');
var struct = require('./struct'); var struct = require('./struct');


Expand Down
5 changes: 3 additions & 2 deletions lib/mime.js
Expand Up @@ -15,10 +15,11 @@
Ported from version 0.1.2. Ported from version 0.1.2.
Comments are mostly excerpted from the original. Comments are mostly excerpted from the original.
Ported to Chiron and Narwhal by Kris Kowal, kriskowal.
*/ */


// ported to Chiron and Narwhal by:
// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License

var util = require("util"); var util = require("util");


/*** parseMimeType /*** parseMimeType
Expand Down
2 changes: 1 addition & 1 deletion lib/narwhal.js
@@ -1,5 +1,5 @@


// -- kriskowal Kris Kowal Copyright 2009-2010 MIT License // -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License
// -- tlrobinson Tom Robinson // -- tlrobinson Tom Robinson


var args = require("args"); var args = require("args");
Expand Down

0 comments on commit 648da3e

Please sign in to comment.