[cairo-commit] cairo-ocaml/test text.ml, 1.1, 1.2 svg2png.ml, 1.1, 1.2 spline.ml, 1.3, 1.4 knockout.ml, 1.2, 1.3 kapow.ml, 1.1, 1.2 font.ml, 1.2, 1.3 demo.ml, 1.1, 1.2 cube.ml, 1.5, 1.6 basket.ml, 1.3, 1.4

Olivier Andrieu commit at pdx.freedesktop.org
Wed Mar 2 10:52:32 PST 2005


Committed by: oandrieu

Update of /cvs/cairo/cairo-ocaml/test
In directory gabe:/tmp/cvs-serv19695/test

Modified Files:
	text.ml svg2png.ml spline.ml knockout.ml kapow.ml font.ml 
	demo.ml cube.ml basket.ml 
Log Message:
add a README, the license (LGPL) and add a copyright header to all
source files


Index: text.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/text.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- text.ml	17 Dec 2003 01:15:31 -0000	1.1
+++ text.ml	2 Mar 2005 18:52:29 -0000	1.2
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
 
 let num_glyphs = 10
 let text = "hello, world"

Index: svg2png.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/svg2png.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- svg2png.ml	1 Mar 2005 22:19:51 -0000	1.1
+++ svg2png.ml	2 Mar 2005 18:52:29 -0000	1.2
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
 
 type args = {
     svg_file : string ;

Index: spline.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/spline.ml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- spline.ml	28 Oct 2004 13:46:37 -0000	1.3
+++ spline.ml	2 Mar 2005 18:52:29 -0000	1.4
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
 
 type point = Cairo.point = 
     { mutable x : float ; 

Index: knockout.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/knockout.ml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- knockout.ml	15 Apr 2004 23:59:37 -0000	1.2
+++ knockout.ml	2 Mar 2005 18:52:29 -0000	1.3
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
 
 let rect_path cr x y width height =
   Cairo.new_path cr ;

Index: kapow.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/kapow.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- kapow.ml	28 Feb 2005 11:17:22 -0000	1.1
+++ kapow.ml	2 Mar 2005 18:52:29 -0000	1.2
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
+
 let filename = "kapow.png"
 let fontname = "Sans"
 let default_text = "KAPOW"

Index: font.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/font.ml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- font.ml	1 Mar 2005 22:19:51 -0000	1.2
+++ font.ml	2 Mar 2005 18:52:29 -0000	1.3
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
 
 let pi = 4. *. atan 1.
 

Index: demo.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/demo.ml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- demo.ml	22 Feb 2004 19:21:08 -0000	1.1
+++ demo.ml	2 Mar 2005 18:52:29 -0000	1.2
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
+
 let size = 20.
 
 let cairo_path cr = function

Index: cube.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/cube.ml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- cube.ml	6 Jul 2004 17:22:02 -0000	1.5
+++ cube.ml	2 Mar 2005 18:52:29 -0000	1.6
@@ -1,3 +1,11 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
+
 let animate_rotate_step = 0.05
 let animate_frame_delay = 40
 let rotate_max = 8. *. atan 1.

Index: basket.ml
===================================================================
RCS file: /cvs/cairo/cairo-ocaml/test/basket.ml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- basket.ml	30 Jan 2005 16:34:01 -0000	1.3
+++ basket.ml	2 Mar 2005 18:52:29 -0000	1.4
@@ -1,3 +1,10 @@
+(**************************************************************************)
+(*  cairo-ocaml -- Objective Caml bindings for Cairo                      *)
+(*  Copyright © 2004-2005 Olivier Andrieu                                 *)
+(*                                                                        *)
+(*  This code is free software and is licensed under the terms of the     *)
+(*  GNU Lesser General Public License version 2.1 (the "LGPL").           *)
+(**************************************************************************)
 
 let _ =
   Cairo.init




More information about the cairo-commit mailing list