diff --git a/doc/THANKS b/doc/THANKS index 6833e43f6..0b929b93e 100644 --- a/doc/THANKS +++ b/doc/THANKS @@ -211,6 +211,10 @@ Ferruh Mavituna for providing me with ideas on the implementation of a couple of new features +David McNab + for his XMLObject module that allows XML files to be operated on + like Python objects + Enrico Milanese for reporting a bugs when using (-a) a single line User-Agent file for providing me with some ideas for the PHP backdoor @@ -306,6 +310,10 @@ Konrads Smelkovs for reporting a few bugs in --sql-shell and --sql-query on Microsoft SQL Server +Michael D. Stenner + for his keepalive module that allows handling of persistent + HTTP 1.1 keep-alive connections + Marek Stiefenhofer for reporting a bug diff --git a/extra/xmlobject/xmlobject.py b/extra/xmlobject/xmlobject.py index 26728a717..26584d283 100644 --- a/extra/xmlobject/xmlobject.py +++ b/extra/xmlobject/xmlobject.py @@ -1,3 +1,21 @@ +#!/usr/bin/env python +# +# Copyright 2007-2008 David McNab +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# + """ Allows XML files to be operated on like Python objects.