From: rich Date: Sat, 1 Mar 2008 13:02:21 +0000 (+0000) Subject: Added proper LGPL statements to all files. X-Git-Url: http://git.annexia.org/?p=perl4caml.git;a=commitdiff_plain;h=95d760554441dac36fb77011c0c875490f873d68 Added proper LGPL statements to all files. --- diff --git a/.depend b/.depend index 92d9ad8..43ca867 100644 --- a/.depend +++ b/.depend @@ -38,12 +38,12 @@ wrappers/pl_HTTP_Headers.cmo: perl.cmi wrappers/pl_HTTP_Headers.cmx: perl.cmx wrappers/pl_HTTP_Message.cmo: wrappers/pl_HTTP_Headers.cmo perl.cmi wrappers/pl_HTTP_Message.cmx: wrappers/pl_HTTP_Headers.cmx perl.cmx +wrappers/pl_HTTP_Request_Common.cmo: wrappers/pl_HTTP_Request.cmo perl.cmi +wrappers/pl_HTTP_Request_Common.cmx: wrappers/pl_HTTP_Request.cmx perl.cmx wrappers/pl_HTTP_Request.cmo: wrappers/pl_URI.cmo \ wrappers/pl_HTTP_Message.cmo perl.cmi wrappers/pl_HTTP_Request.cmx: wrappers/pl_URI.cmx \ wrappers/pl_HTTP_Message.cmx perl.cmx -wrappers/pl_HTTP_Request_Common.cmo: wrappers/pl_HTTP_Request.cmo perl.cmi -wrappers/pl_HTTP_Request_Common.cmx: wrappers/pl_HTTP_Request.cmx perl.cmx wrappers/pl_HTTP_Response.cmo: wrappers/pl_HTTP_Request.cmo \ wrappers/pl_HTTP_Message.cmo perl.cmi wrappers/pl_HTTP_Response.cmx: wrappers/pl_HTTP_Request.cmx \ @@ -52,14 +52,14 @@ wrappers/pl_LWP_UserAgent.cmo: wrappers/pl_HTTP_Response.cmo \ wrappers/pl_HTTP_Request.cmo wrappers/pl_HTTP_Cookies.cmo perl.cmi wrappers/pl_LWP_UserAgent.cmx: wrappers/pl_HTTP_Response.cmx \ wrappers/pl_HTTP_Request.cmx wrappers/pl_HTTP_Cookies.cmx perl.cmx +wrappers/pl_Net_Google_Cache.cmo: perl.cmi +wrappers/pl_Net_Google_Cache.cmx: perl.cmx wrappers/pl_Net_Google.cmo: wrappers/pl_Net_Google_Spelling.cmo \ wrappers/pl_Net_Google_Search.cmo wrappers/pl_Net_Google_Cache.cmo \ perl.cmi wrappers/pl_Net_Google.cmx: wrappers/pl_Net_Google_Spelling.cmx \ wrappers/pl_Net_Google_Search.cmx wrappers/pl_Net_Google_Cache.cmx \ perl.cmx -wrappers/pl_Net_Google_Cache.cmo: perl.cmi -wrappers/pl_Net_Google_Cache.cmx: perl.cmx wrappers/pl_Net_Google_Response.cmo: perl.cmi wrappers/pl_Net_Google_Response.cmx: perl.cmx wrappers/pl_Net_Google_Search.cmo: wrappers/pl_Net_Google_Response.cmo \ diff --git a/Makefile b/Makefile index cfa2f9b..4827101 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,22 @@ # Interface to Perl from OCaml. # Copyright (C) 2003 Merjis Ltd. -# $Id: Makefile,v 1.32 2008-02-23 15:57:58 rich Exp $ +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this library; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. +# +# $Id: Makefile,v 1.33 2008-03-01 13:02:21 rich Exp $ include Makefile.config @@ -22,7 +38,7 @@ CC := gcc CFLAGS := -fPIC -Wall -Wno-unused \ -I$(OCAMLLIBDIR) \ -I$(PERLINCDIR) $(PERLCFLAGS) \ - $(EXTRA_CFLAGS) + $(EXTRA_CFLAGS) $(EXTRA_EXTRA_CFLAGS) LIBPERL := $(shell perl -MExtUtils::Embed -e ldopts) diff --git a/Makefile.config b/Makefile.config index 212361b..7e4e3d7 100644 --- a/Makefile.config +++ b/Makefile.config @@ -1,5 +1,22 @@ # perl4caml configuration -*- Makefile -*- -# $Id: Makefile.config,v 1.26 2008-02-23 15:57:58 rich Exp $ +# Copyright (C) 2003 Merjis Ltd. +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this library; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +# Boston, MA 02111-1307, USA. +# +# $Id: Makefile.config,v 1.27 2008-03-01 13:02:21 rich Exp $ # PERLINCDIR # Directory containing the Perl include files, eg. . @@ -43,4 +60,4 @@ DYNALOADER_HACK := $(shell perl -MExtUtils::Embed -e ldopts | egrep -o '/[^[:spa # PACKAGE and VERSION PACKAGE := perl4caml -VERSION := 0.9.4 +VERSION := 0.9.5 diff --git a/perl.ml b/perl.ml index c88ff85..770e59a 100644 --- a/perl.ml +++ b/perl.ml @@ -1,6 +1,23 @@ (* Interface to Perl from OCaml. - * Copyright (C) 2003 Merjis Ltd. - * $Id: perl.ml,v 1.15 2005-04-14 13:05:12 rich Exp $ + + Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: perl.ml,v 1.16 2008-03-01 13:02:21 rich Exp $ *) type sv diff --git a/perl.mli b/perl.mli index e16ada2..64d7904 100644 --- a/perl.mli +++ b/perl.mli @@ -1,8 +1,22 @@ -(** Interface to Perl from OCaml. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: perl.mli,v 1.15 2005-04-14 13:05:12 rich Exp $ +(** Interface to Perl from OCaml. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: perl.mli,v 1.16 2008-03-01 13:02:21 rich Exp $ *) type sv diff --git a/perl_c.c b/perl_c.c index 0d3beef..7970a81 100644 --- a/perl_c.c +++ b/perl_c.c @@ -1,6 +1,22 @@ /* Interface to Perl from OCaml. - * Copyright (C) 2003 Merjis Ltd. - * $Id: perl_c.c,v 1.24 2006-12-27 14:00:12 rich Exp $ + Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: perl_c.c,v 1.25 2008-03-01 13:02:21 rich Exp $ */ #include diff --git a/wrappers/pl_Data_Dumper.ml b/wrappers/pl_Data_Dumper.ml index 12f19c5..e9219bb 100644 --- a/wrappers/pl_Data_Dumper.ml +++ b/wrappers/pl_Data_Dumper.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Data::Dumper] class. - * - * Copyright (C) 2005 Merjis Ltd. - * - * $Id: pl_Data_Dumper.ml,v 1.2 2005-03-31 13:46:32 rich Exp $ +(** Wrapper around Perl [Data::Dumper] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Data_Dumper.ml,v 1.3 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Date_Calc.ml b/wrappers/pl_Date_Calc.ml index a229562..cea177e 100644 --- a/wrappers/pl_Date_Calc.ml +++ b/wrappers/pl_Date_Calc.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Date::Calc] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Date_Calc.ml,v 1.1 2003-11-19 16:28:23 rich Exp $ +(** Wrapper around Perl [Date::Calc] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Date_Calc.ml,v 1.2 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Date_Format.ml b/wrappers/pl_Date_Format.ml index f36d689..f309bf8 100644 --- a/wrappers/pl_Date_Format.ml +++ b/wrappers/pl_Date_Format.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Date::Format] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Date_Format.ml,v 1.1 2003-11-19 16:28:23 rich Exp $ +(** Wrapper around Perl [Date::Format] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Date_Format.ml,v 1.2 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTML_Element.ml b/wrappers/pl_HTML_Element.ml index a460416..0c59d9a 100644 --- a/wrappers/pl_HTML_Element.ml +++ b/wrappers/pl_HTML_Element.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTML::Element] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTML_Element.ml,v 1.4 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [HTML::Element] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTML_Element.ml,v 1.5 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTML_Form.ml b/wrappers/pl_HTML_Form.ml index eb09d5d..491bdbc 100644 --- a/wrappers/pl_HTML_Form.ml +++ b/wrappers/pl_HTML_Form.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTML::Form] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTML_Form.ml,v 1.3 2005-01-14 19:04:48 rich Exp $ +(** Wrapper around Perl [HTML::Form] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTML_Form.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTML_Parser.ml b/wrappers/pl_HTML_Parser.ml index 92af9a6..22683de 100644 --- a/wrappers/pl_HTML_Parser.ml +++ b/wrappers/pl_HTML_Parser.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTML::Parser] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTML_Parser.ml,v 1.4 2004-11-23 13:40:50 rich Exp $ +(** Wrapper around Perl [HTML::Parser] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTML_Parser.ml,v 1.5 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTML_TreeBuilder.ml b/wrappers/pl_HTML_TreeBuilder.ml index d9f090c..908df2d 100644 --- a/wrappers/pl_HTML_TreeBuilder.ml +++ b/wrappers/pl_HTML_TreeBuilder.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTML::TreeBuilder] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTML_TreeBuilder.ml,v 1.3 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [HTML::TreeBuilder] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTML_TreeBuilder.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTTP_Cookies.ml b/wrappers/pl_HTTP_Cookies.ml index 592ff86..24df599 100644 --- a/wrappers/pl_HTTP_Cookies.ml +++ b/wrappers/pl_HTTP_Cookies.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTTP::Cookies] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTTP_Cookies.ml,v 1.1 2004-11-22 17:08:36 rich Exp $ +(** Wrapper around Perl [HTTP::Cookies] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTTP_Cookies.ml,v 1.2 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTTP_Headers.ml b/wrappers/pl_HTTP_Headers.ml index cdab7ca..cd77366 100644 --- a/wrappers/pl_HTTP_Headers.ml +++ b/wrappers/pl_HTTP_Headers.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTTP::Message] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTTP_Headers.ml,v 1.2 2004-11-26 13:33:10 rich Exp $ +(** Wrapper around Perl [HTTP::Message] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTTP_Headers.ml,v 1.3 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTTP_Message.ml b/wrappers/pl_HTTP_Message.ml index 29140b2..93e941e 100644 --- a/wrappers/pl_HTTP_Message.ml +++ b/wrappers/pl_HTTP_Message.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTTP::Message] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTTP_Message.ml,v 1.4 2004-11-22 17:08:36 rich Exp $ +(** Wrapper around Perl [HTTP::Message] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTTP_Message.ml,v 1.5 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTTP_Request.ml b/wrappers/pl_HTTP_Request.ml index 53c24a5..c457a3b 100644 --- a/wrappers/pl_HTTP_Request.ml +++ b/wrappers/pl_HTTP_Request.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTTP::Request] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTTP_Request.ml,v 1.4 2005-01-13 16:06:04 rich Exp $ +(** Wrapper around Perl [HTTP::Request] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTTP_Request.ml,v 1.5 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTTP_Request_Common.ml b/wrappers/pl_HTTP_Request_Common.ml index f027b58..89ee638 100644 --- a/wrappers/pl_HTTP_Request_Common.ml +++ b/wrappers/pl_HTTP_Request_Common.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTTP::Request::Common] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTTP_Request_Common.ml,v 1.1 2004-11-22 17:08:36 rich Exp $ +(** Wrapper around Perl [HTTP::Request::Common] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTTP_Request_Common.ml,v 1.2 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_HTTP_Response.ml b/wrappers/pl_HTTP_Response.ml index 5bc1e6e..6793722 100644 --- a/wrappers/pl_HTTP_Response.ml +++ b/wrappers/pl_HTTP_Response.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [HTTP::Response] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_HTTP_Response.ml,v 1.4 2005-01-13 16:06:04 rich Exp $ +(** Wrapper around Perl [HTTP::Response] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_HTTP_Response.ml,v 1.5 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_LWP_UserAgent.ml b/wrappers/pl_LWP_UserAgent.ml index a293839..da9d4c0 100644 --- a/wrappers/pl_LWP_UserAgent.ml +++ b/wrappers/pl_LWP_UserAgent.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [LWP::UserAgent] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_LWP_UserAgent.ml,v 1.5 2004-11-25 21:24:51 rich Exp $ +(** Wrapper around Perl [LWP::UserAgent] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_LWP_UserAgent.ml,v 1.6 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Net_Google.ml b/wrappers/pl_Net_Google.ml index 5639d65..dc7633f 100644 --- a/wrappers/pl_Net_Google.ml +++ b/wrappers/pl_Net_Google.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Net::Google] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Net_Google.ml,v 1.3 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [Net::Google] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Net_Google.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Net_Google_Cache.ml b/wrappers/pl_Net_Google_Cache.ml index 7f5d337..784125d 100644 --- a/wrappers/pl_Net_Google_Cache.ml +++ b/wrappers/pl_Net_Google_Cache.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Net::Google::Cache] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Net_Google_Cache.ml,v 1.3 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [Net::Google::Cache] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Net_Google_Cache.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Net_Google_Response.ml b/wrappers/pl_Net_Google_Response.ml index 4b54522..0176569 100644 --- a/wrappers/pl_Net_Google_Response.ml +++ b/wrappers/pl_Net_Google_Response.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Net::Google::Reponse] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Net_Google_Response.ml,v 1.3 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [Net::Google::Reponse] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Net_Google_Response.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Net_Google_Search.ml b/wrappers/pl_Net_Google_Search.ml index d6178aa..ff13466 100644 --- a/wrappers/pl_Net_Google_Search.ml +++ b/wrappers/pl_Net_Google_Search.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Net::Google::Search] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Net_Google_Search.ml,v 1.3 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [Net::Google::Search] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Net_Google_Search.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Net_Google_Spelling.ml b/wrappers/pl_Net_Google_Spelling.ml index 079f9e5..998be5f 100644 --- a/wrappers/pl_Net_Google_Spelling.ml +++ b/wrappers/pl_Net_Google_Spelling.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [Net::Google::Spelling] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_Net_Google_Spelling.ml,v 1.3 2003-10-16 13:41:07 rich Exp $ +(** Wrapper around Perl [Net::Google::Spelling] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Net_Google_Spelling.ml,v 1.4 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_Template.ml b/wrappers/pl_Template.ml index 040bab2..f7acd09 100644 --- a/wrappers/pl_Template.ml +++ b/wrappers/pl_Template.ml @@ -1,6 +1,22 @@ -(** Wrapper around Perl [Template] class (Template Toolkit). - * - * Author: Dave Benjamin . +(** Wrapper around Perl [Template] class (Template Toolkit). *) +(* Copyright (C) 2003 Dave Benjamin . + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_Template.ml,v 1.3 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_URI.ml b/wrappers/pl_URI.ml index f0a2363..33424da 100644 --- a/wrappers/pl_URI.ml +++ b/wrappers/pl_URI.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [URI] class. - * - * Copyright (C) 2003 Merjis Ltd. - * - * $Id: pl_URI.ml,v 1.5 2005-02-13 17:09:14 rich Exp $ +(** Wrapper around Perl [URI] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_URI.ml,v 1.6 2008-03-01 13:02:21 rich Exp $ *) open Perl diff --git a/wrappers/pl_WWW_Mechanize.ml b/wrappers/pl_WWW_Mechanize.ml index 10a4098..03151b7 100644 --- a/wrappers/pl_WWW_Mechanize.ml +++ b/wrappers/pl_WWW_Mechanize.ml @@ -1,8 +1,22 @@ -(** Wrapper around Perl [WWW::Mechanize] class. - * - * Copyright (C) 2004 Merjis Ltd. - * - * $Id: pl_WWW_Mechanize.ml,v 1.7 2006-06-27 15:46:18 rich Exp $ +(** Wrapper around Perl [WWW::Mechanize] class. *) +(* Copyright (C) 2003 Merjis Ltd. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this library; see the file COPYING. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. + + $Id: pl_WWW_Mechanize.ml,v 1.8 2008-03-01 13:02:21 rich Exp $ *) open Perl