[Commit] nickle/examples/smlng COPYING, NONE, 1.1 Makefile.am, 1.1, 1.2 context.5c, 1.6, 1.7 generate.5c, 1.1, 1.2 parse.5c, 1.8, 1.9 test.5c, 1.2, 1.3

Keith Packard commit at keithp.com
Mon Nov 15 12:16:41 PST 2004


Committed by: keithp

Update of /local/src/CVS/nickle/examples/smlng
In directory home.keithp.com:/tmp/cvs-serv27707/examples/smlng

Modified Files:
	Makefile.am context.5c generate.5c parse.5c test.5c 
Added Files:
	COPYING 
Log Message:
2004-11-15  Keith Packard  <keithp at keithp.com>

	* examples/COPYING:
	* examples/Makefile.am:
	* examples/miller-rabin.5c:
	* examples/mutextest.5c:
	* examples/numbers.5c:
	* examples/polynomial.5c:
	* examples/prime.5c:
	* examples/randtest.5c:
	* examples/restart.5c:
	* examples/roman.5c:
	* examples/rsa-demo.5c:
	* examples/rsa.5c:
	* examples/shortpaths.5c:
	* examples/skiplisttest.5c:
	* examples/smlng/COPYING:
	* examples/smlng/Makefile.am:
	* examples/smlng/context.5c:
	* examples/smlng/generate.5c:
	* examples/smlng/parse.5c:
	* examples/smlng/test.5c:
	* examples/turtle/COPYING:
	* examples/turtle/Makefile.am:
	* examples/turtle/snowflake.5c:
	* examples/turtle/snowflake.tex:
	* examples/turtle/turtle.5c:
	Add a bunch of copyright and license information


--- NEW FILE: COPYING ---
(This appears to be a binary file; contents omitted.)

Index: Makefile.am
===================================================================
RCS file: /local/src/CVS/nickle/examples/smlng/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.am	26 May 2004 08:01:42 -0000	1.1
+++ Makefile.am	15 Nov 2004 20:16:37 -0000	1.2
@@ -1,3 +1,10 @@
+#
+# SGML-like parser
+#
+# Copyright © 2001 Keith Packard and Carl Worth
+# All Rights Reserved.  See the file COPYING in this directory
+# for licensing information.
+#
 NICKLEFILES=\
 	context.5c \
 	generate.5c \
@@ -6,10 +13,10 @@
 
 exampledir=$(pkgdatadir)/examples/smlng
 
-example_DATA=$(NICKLEFILES)
+example_DATA=$(NICKLEFILES) COPYING
 
 TESTS_ENVIRONMENT=NICKLESTART=$(top_srcdir)/builtin.5c NICKLEPATH=$(top_srcdir):$(top_srcdir)/$(subdir) $(top_builddir)/nickle < $(top_srcdir)/$(subdir)/data.sgml > /dev/null
 
 TESTS=test.5c
 
-EXTRA_DIST=$(NICKLEFILES) data.sgml
+EXTRA_DIST=$(NICKLEFILES) data.sgml COPYING

Index: context.5c
===================================================================
RCS file: /local/src/CVS/nickle/examples/smlng/context.5c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- context.5c	27 Jul 2002 04:53:15 -0000	1.6
+++ context.5c	15 Nov 2004 20:16:37 -0000	1.7
@@ -1,3 +1,9 @@
+/*
+ * Copyright © 2001 Keith Packard and Carl Worth
+ * All Rights Reserved.  See the file COPYING in this directory
+ * for licensing information.
+ */
+
 int style_b = 1;
 int style_em = 2;
 int style_i = 4;

Index: generate.5c
===================================================================
RCS file: /local/src/CVS/nickle/examples/smlng/generate.5c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- generate.5c	27 Jul 2001 08:01:59 -0000	1.1
+++ generate.5c	15 Nov 2004 20:16:37 -0000	1.2
@@ -1,3 +1,9 @@
+/*
+ * Copyright © 2001 Keith Packard and Carl Worth
+ * All Rights Reserved.  See the file COPYING in this directory
+ * for licensing information.
+ */
+
 int function iswhite (int c)
 {
     switch (c) {

Index: parse.5c
===================================================================
RCS file: /local/src/CVS/nickle/examples/smlng/parse.5c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- parse.5c	26 May 2004 08:01:42 -0000	1.8
+++ parse.5c	15 Nov 2004 20:16:37 -0000	1.9
@@ -1,5 +1,9 @@
 /*
  * Parse simple sgml-style grammar
+ *
+ * Copyright © 2001 Keith Packard and Carl Worth
+ * All Rights Reserved.  See the file COPYING in this directory
+ * for licensing information.
  */
 
 library "context.5c"

Index: test.5c
===================================================================
RCS file: /local/src/CVS/nickle/examples/smlng/test.5c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- test.5c	26 May 2004 08:01:42 -0000	1.2
+++ test.5c	15 Nov 2004 20:16:37 -0000	1.3
@@ -1,3 +1,9 @@
+/*
+ * Copyright © 2001 Keith Packard and Carl Worth
+ * All Rights Reserved.  See the file COPYING in this directory
+ * for licensing information.
+ */
+
 library "parse.5c"
 
 *Parse::element e = Parse::get(stdin);




More information about the Commit mailing list