From: Richard W.M. Jones Date: Sun, 18 May 2008 19:44:58 +0000 (+0000) Subject: Enable svn:keywords Id property on relevant files. X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=00f782f26fa89fa07dabb7155707b1415f50572b;hp=11de9d4bffd906799fdeb179629e9b79b0b23de8;p=ocaml-bitstring.git Enable svn:keywords Id property on relevant files. --- diff --git a/Makefile.in b/Makefile.in index 1ec0791..89fcab3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -15,7 +15,7 @@ # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # -# $Id: Makefile.in,v 1.5 2008-05-07 14:41:03 rjones Exp $ +# $Id$ PACKAGE = @PACKAGE_NAME@ VERSION = @PACKAGE_VERSION@ diff --git a/TODO b/TODO index 9547c53..4473944 100644 --- a/TODO +++ b/TODO @@ -1,4 +1,4 @@ -$Id: TODO,v 1.5 2008-05-07 14:37:00 rjones Exp $ +$Id$ Major to-do items. (1) DONE - In bitmatch operator, use patterns not expressions. diff --git a/bitmatch.ml b/bitmatch.ml index c9dba77..7065d66 100644 --- a/bitmatch.ml +++ b/bitmatch.ml @@ -15,7 +15,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * $Id: bitmatch.ml,v 1.14 2008-05-12 20:32:55 rjones Exp $ + * $Id$ *) open Printf diff --git a/bitmatch.mli b/bitmatch.mli index 672cb39..c4aacc5 100644 --- a/bitmatch.mli +++ b/bitmatch.mli @@ -15,7 +15,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * $Id: bitmatch.mli,v 1.20 2008-05-08 21:28:28 rjones Exp $ + * $Id$ *) (** diff --git a/bitmatch_config.ml.in b/bitmatch_config.ml.in index 9645f0d..e38dc31 100644 --- a/bitmatch_config.ml.in +++ b/bitmatch_config.ml.in @@ -17,7 +17,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * $Id: bitmatch.ml,v 1.14 2008-05-12 20:32:55 rjones Exp $ + * $Id$ *) (* This file contains general configuration settings, set by the diff --git a/bitmatch_types.ml b/bitmatch_types.ml index 74f4a90..c26fe64 100644 --- a/bitmatch_types.ml +++ b/bitmatch_types.ml @@ -15,7 +15,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * $Id: bitmatch.ml,v 1.14 2008-05-12 20:32:55 rjones Exp $ + * $Id$ *) type endian = BigEndian | LittleEndian | NativeEndian diff --git a/examples/elf.ml b/examples/elf.ml index 0299765..bafb490 100644 --- a/examples/elf.ml +++ b/examples/elf.ml @@ -1,5 +1,5 @@ (* Read an ELF (Linux binary) header. - * $Id: 60_ping.ml,v 1.3 2008-04-25 11:08:43 rjones Exp $ + * $Id$ *) open Printf diff --git a/examples/ext3_superblock.ml b/examples/ext3_superblock.ml index 0dfb77e..8be2606 100644 --- a/examples/ext3_superblock.ml +++ b/examples/ext3_superblock.ml @@ -1,5 +1,5 @@ (* Parse an ext3 superblock. - * $Id: 70_ext3_sb.ml,v 1.3 2008-04-25 12:55:39 rjones Exp $ + * $Id$ *) open Printf diff --git a/examples/ipv4_header.ml b/examples/ipv4_header.ml index b3cf27e..6db81ad 100644 --- a/examples/ipv4_header.ml +++ b/examples/ipv4_header.ml @@ -1,5 +1,5 @@ (* Parse and display an IPv4 header from a file. - * $Id: ipv4_header.ml,v 1.2 2008-04-01 17:31:12 rjones Exp $ + * $Id$ *) open Printf diff --git a/examples/make_ipv4_header.ml b/examples/make_ipv4_header.ml index a40f0d2..5b3463d 100644 --- a/examples/make_ipv4_header.ml +++ b/examples/make_ipv4_header.ml @@ -1,5 +1,5 @@ (* Create an IPv4 header. - * $Id: make_ipv4_header.ml,v 1.2 2008-04-01 17:31:12 rjones Exp $ + * $Id$ *) open Printf diff --git a/examples/ping.ml b/examples/ping.ml index 08b23c4..6d53077 100644 --- a/examples/ping.ml +++ b/examples/ping.ml @@ -1,5 +1,5 @@ (* Read in IPv4 and IPv6 ping packets and display them. - * $Id: 60_ping.ml,v 1.3 2008-04-25 11:08:43 rjones Exp $ + * $Id$ *) open Printf diff --git a/pa_bitmatch.ml b/pa_bitmatch.ml index f769582..1e3225c 100644 --- a/pa_bitmatch.ml +++ b/pa_bitmatch.ml @@ -15,7 +15,7 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * - * $Id: pa_bitmatch.ml,v 1.11 2008-04-25 14:57:11 rjones Exp $ + * $Id$ *) open Printf diff --git a/tests/01_load.ml b/tests/01_load.ml index 64374bf..cbc2858 100644 --- a/tests/01_load.ml +++ b/tests/01_load.ml @@ -1,5 +1,5 @@ (* Just check that the extension and library load. - * $Id: 01_load.ml,v 1.1 2008-03-31 22:52:17 rjones Exp $ + * $Id$ *) let _ = Bitmatch.extract_bit diff --git a/tests/20_varsize.ml b/tests/20_varsize.ml index b90763c..7d49292 100644 --- a/tests/20_varsize.ml +++ b/tests/20_varsize.ml @@ -1,5 +1,5 @@ (* Construct and match against random variable sized strings. - * $Id: 20_varsize.ml,v 1.2 2008-04-25 11:08:43 rjones Exp $ + * $Id$ *) open Printf