[MLton-commit] r5245

Wesley Terpstra wesley at mlton.org
Sat Feb 17 17:06:42 PST 2007


Use the same copyright as SQLite itself
----------------------------------------------------------------------

U   mltonlib/trunk/ca/terpstra/sqlite3/buffer.sig
U   mltonlib/trunk/ca/terpstra/sqlite3/buffer.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/debug.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/demo.mlb
U   mltonlib/trunk/ca/terpstra/sqlite3/demo.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/fold.sig
U   mltonlib/trunk/ca/terpstra/sqlite3/fold.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/function.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/pair.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/pointers.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/prim.sig
U   mltonlib/trunk/ca/terpstra/sqlite3/prim.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/query.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/ring.sig
U   mltonlib/trunk/ca/terpstra/sqlite3/ring.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/sql.sig
U   mltonlib/trunk/ca/terpstra/sqlite3/sql.sml
U   mltonlib/trunk/ca/terpstra/sqlite3/sqlite.mlb

----------------------------------------------------------------------

Modified: mltonlib/trunk/ca/terpstra/sqlite3/buffer.sig
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/buffer.sig	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/buffer.sig	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 signature BUFFER =
    sig
       type 'a t

Modified: mltonlib/trunk/ca/terpstra/sqlite3/buffer.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/buffer.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/buffer.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 structure Buffer :> BUFFER =
    struct
       (* Use a smaller int type to allow representation optimization *)

Modified: mltonlib/trunk/ca/terpstra/sqlite3/debug.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/debug.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/debug.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 functor PrimDebug(P : PRIM) :> PRIM =
    struct
       open P

Modified: mltonlib/trunk/ca/terpstra/sqlite3/demo.mlb
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/demo.mlb	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/demo.mlb	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 $(SML_LIB)/basis/basis.mlb
 $(SML_LIB)/basis/mlton.mlb
 sqlite.mlb

Modified: mltonlib/trunk/ca/terpstra/sqlite3/demo.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/demo.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/demo.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 val () = print ("SQLite version: " ^ SQL.version ^ "\n")
 
 fun die x = (

Modified: mltonlib/trunk/ca/terpstra/sqlite3/fold.sig
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/fold.sig	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/fold.sig	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 (* Stolen from Vesa, and treated like assembler.
  * See: http://mlton.org/Fold if you like pain.
  *)

Modified: mltonlib/trunk/ca/terpstra/sqlite3/fold.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/fold.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/fold.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 (* Shamelessly stolen from Vesa *)
 
 fun $ (a, f) = f a

Modified: mltonlib/trunk/ca/terpstra/sqlite3/function.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/function.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/function.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 structure Function =
    struct
       type scalar = (Prim.context * Prim.value vector -> unit) * int

Modified: mltonlib/trunk/ca/terpstra/sqlite3/pair.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/pair.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/pair.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,2 +1,15 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 datatype ('a, 'b) pair = & of 'a * 'b
 infix &

Modified: mltonlib/trunk/ca/terpstra/sqlite3/pointers.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/pointers.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/pointers.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 signature PTR =
    sig
       type t

Modified: mltonlib/trunk/ca/terpstra/sqlite3/prim.sig
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/prim.sig	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/prim.sig	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 signature PRIM =
    sig
       type db

Modified: mltonlib/trunk/ca/terpstra/sqlite3/prim.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/prim.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/prim.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 structure Prim :> PRIM =
    struct
       structure DB :> PTR = Ptr

Modified: mltonlib/trunk/ca/terpstra/sqlite3/query.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/query.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/query.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 structure Query =
    struct
       (* Cry ... *)

Modified: mltonlib/trunk/ca/terpstra/sqlite3/ring.sig
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/ring.sig	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/ring.sig	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 signature RING =
    sig
       (* handle to a link in the ring *)

Modified: mltonlib/trunk/ca/terpstra/sqlite3/ring.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/ring.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/ring.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 structure Ring :> RING =
    struct
       datatype 'a t = LINK of { prev: 'a t option ref,

Modified: mltonlib/trunk/ca/terpstra/sqlite3/sql.sig
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/sql.sig	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/sql.sig	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 signature SQL =
    sig
       type db

Modified: mltonlib/trunk/ca/terpstra/sqlite3/sql.sml
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/sql.sml	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/sql.sml	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 structure SQL :> SQL =
    struct
       type column = Prim.column

Modified: mltonlib/trunk/ca/terpstra/sqlite3/sqlite.mlb
===================================================================
--- mltonlib/trunk/ca/terpstra/sqlite3/sqlite.mlb	2007-02-18 00:18:01 UTC (rev 5244)
+++ mltonlib/trunk/ca/terpstra/sqlite3/sqlite.mlb	2007-02-18 01:06:41 UTC (rev 5245)
@@ -1,3 +1,16 @@
+(*
+** 2007 February 18
+**
+** The author disclaims copyright to this source code.  In place of
+** a legal notice, here is a blessing:
+**
+**    May you do good and not evil.
+**    May you find forgiveness for yourself and forgive others.
+**    May you share freely, never taking more than you give.
+**
+*************************************************************************
+** $Id$
+*)
 local
    $(SML_LIB)/basis/basis.mlb
    $(SML_LIB)/basis/mlton.mlb




More information about the MLton-commit mailing list