Corrected file copyrights

pull/1280/head
Jan M. Hochstein 2016-02-10 16:36:21 +01:00
parent ee48c830d0
commit 61932a6470
10 changed files with 126 additions and 11 deletions

View File

@ -40,9 +40,8 @@ wsdl/ - (empty) this is only used during the proxy generation process
3. LICENSE 3. LICENSE
---------- ----------
The files in the subfolder proxy/ are generated files. Since generating them Any files in this folder and its subfolders are published under the same
is difficult they are included anyway. They are published under the same license as this file if they do not carry additional license information.
license as this file.
4. PROXY GENERATION 4. PROXY GENERATION

View File

@ -1,7 +1,7 @@
# ========================================================================== # ==========================================================================
# #
# ZoneMinder ONVIF Client module # ZoneMinder ONVIF Client module
# Copyright (C) Jan M. Hochstein # Copyright (C) 2014 Jan M. Hochstein
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,4 +1,27 @@
#!/usr/bin/perl # ==========================================================================
#
# ZoneMinder ONVIF Client module
# Copyright (C) 2014 Jan M. Hochstein
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ==========================================================================
#
# This module contains the implementation of a SOAP message parser
#
package ONVIF::Deserializer::MessageParser; package ONVIF::Deserializer::MessageParser;
use strict; use warnings; use strict; use warnings;

View File

@ -1,3 +1,27 @@
# ==========================================================================
#
# ZoneMinder ONVIF Client module
# Copyright (C) 2014 Jan M. Hochstein
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ==========================================================================
#
# This module contains the implementation of a SOAP deserializer
#
package ONVIF::Deserializer::XSD; package ONVIF::Deserializer::XSD;
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,27 @@
#!/usr/bin/perl -w # ==========================================================================
#
# ZoneMinder ONVIF Client module
# Copyright (C) 2014 Jan M. Hochstein
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ==========================================================================
#
# This module contains the base class for the SOAP serializers
#
package ONVIF::Serializer::Base; package ONVIF::Serializer::Base;
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,27 @@
#!/usr/bin/perl -w # ==========================================================================
#
# ZoneMinder ONVIF Client module
# Copyright (C) 2014 Jan M. Hochstein
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ==========================================================================
#
# This module contains the SOAP 1.1 serializer
#
package ONVIF::Serializer::SOAP11; package ONVIF::Serializer::SOAP11;
use strict; use strict;
use warnings; use warnings;

View File

@ -1,4 +1,27 @@
#!/usr/bin/perl -w # ==========================================================================
#
# ZoneMinder ONVIF Client module
# Copyright (C) 2014 Jan M. Hochstein
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# ==========================================================================
#
# This module contains the SOAP 1.2 serializer
#
package ONVIF::Serializer::SOAP12; package ONVIF::Serializer::SOAP12;
use strict; use strict;
use warnings; use warnings;

View File

@ -1,7 +1,7 @@
# ========================================================================== # ==========================================================================
# #
# Perl WS-Discovery implementation # Perl WS-Discovery implementation
# Copyright (C) Jan M. Hochstein # Copyright (C) 2014 Jan M. Hochstein
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -1,7 +1,7 @@
# ========================================================================== # ==========================================================================
# #
# Perl WS-Security header for SOAP::WSDL # Perl WS-Security header for SOAP::WSDL
# Copyright (C) Jan M. Hochstein # Copyright (C) 2014 Jan M. Hochstein
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License

View File

@ -3,7 +3,7 @@
# ========================================================================== # ==========================================================================
# #
# ZoneMinder ONVIF Control Protocol Module # ZoneMinder ONVIF Control Protocol Module
# Copyright (C) Jan M. Hochstein # Copyright (C) 2014 Jan M. Hochstein
# #
# This program is free software; you can redistribute it and/or # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License # modify it under the terms of the GNU General Public License