Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-CGI-Simple | Distribution: openSUSE Leap 16.0 |
Version: 1.281.0 | Vendor: openSUSE |
Release: lp160.1.1 | Build date: Fri Mar 8 23:00:44 2024 |
Group: Unspecified | Build host: reproducible |
Size: 227689 | Source RPM: perl-CGI-Simple-1.281.0-lp160.1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://metacpan.org/release/CGI-Simple | |
Summary: Object-oriented CGI interface compliant to CGI.pm |
CGI::Simple provides a relatively lightweight drop in replacement for CGI.pm. It shares an identical OO interface to CGI.pm for parameter parsing, file upload, cookie handling and header generation. This module is entirely object oriented, however a complete functional interface is available by using the CGI::Simple::Standard module. Essentially everything in CGI.pm that relates to the CGI (not HTML) side of things is available. There are even a few new methods and additions to old ones! If you are interested in what has gone on under the hood see the Compatibility with CGI.pm section at the end. In practical testing this module loads and runs about twice as fast as CGI.pm depending on the precise task.
Artistic-1.0 OR GPL-1.0-or-later
* Fri Mar 08 2024 Tina Müller <tina.mueller@suse.com> - Fix disabling of __perllib_provides * Thu Feb 01 2024 Tina Müller <timueller+perl@suse.de> - updated to 1.281 see /usr/share/doc/packages/perl-CGI-Simple/Changes 1.281 2024-01-31 MANWAR - RT-151161 Add CGI::Cookie partitioned support, PR #14, thanks @ldevantier-doseme. * Wed Jan 12 2022 Tina Müller <timueller+perl@suse.de> - updated to 1.280 see /usr/share/doc/packages/perl-CGI-Simple/Changes 1.280 2022-01-11 MANWAR - Changed the version format from N.nn to N.nnn as requested. 1.27 2022-01-06 MANWAR - Removed unneeded Build.PL #11, thanks @haarg. - Moved prereqs to correct phase #12, thanks @haarg. 1.26 2022-01-02 MANWAR - Dropped IO::Scalar prereq as suggested in PR #10, thanks @haarg. * Tue Feb 11 2020 <timueller+perl@suse.de> - updated to 1.25 see /usr/share/doc/packages/perl-CGI-Simple/Changes 1.25 2020-02-10 MANWAR - Merged PR #9, thanks @ktat. 1.24 2020-02-07 MANWAR - Addressed issue RT #125383 raised by SREZIC. 1.23 2020-02-06 MANWAR - Fixed issue RT #131590, samesite parameter can be "None" as well. * Sun Sep 08 2019 <timueller+perl@suse.de> - updated to 1.22 see /usr/share/doc/packages/perl-CGI-Simple/Changes 1.22 2019-09-07 MANWAR - Fixed issue RT# 130454, samesite parameter missing from sub cookie(). * Sun Oct 21 2018 Dirk Stoecker <opensuse@dstoecker.de> - updated to 1.21 see /usr/share/doc/packages/perl-CGI-Simple/Changes * Wed Oct 17 2018 Jan Engelhardt <jengelh@inai.de> - Avoid overly "super duper" summary. * Sun Oct 07 2018 Dirk Stoecker <opensuse@dstoecker.de> - Update URL, provide zero padded version number to satisfy version checks * Thu Jul 26 2018 coolo@suse.com - updated to 1.16 see /usr/share/doc/packages/perl-CGI-Simple/Changes 1.16 2018-07-25 MANWAR - Made t/manifest.t AUTHOR only (RT #125383). - Removed +x bits from test scripts. * Mon Mar 05 2018 coolo@suse.com - updated to 1.15 see /usr/share/doc/packages/perl-CGI-Simple/Changes * Mon Apr 13 2015 coolo@suse.com - updated to 1.115 see /usr/share/doc/packages/perl-CGI-Simple/Changes 1.114 - Drop support for Perls older than 5.6.1. 1.115 2014.10.19 - Replace indirect calling of constructor both in code an documentation with direct calling. Write CGI::Simle->new instead of new CGI::Simple - add tests to make sure the order of value is kept as they were passed in the QUERY_STRING - new co-maintainer (SZABGAB( * Fri Nov 18 2011 coolo@suse.com - use original .tar.gz * Sat Jun 04 2011 lars@linux-schulserver.de - require apache2-mod_perl instead of perl(HTTP::Request::Common) as perl-HTTP-Message provides the same on SLE_11 * Fri Feb 04 2011 chris@computersalat.de - recreated by cpanspec 1.78.03 o fix deps - remove Author * Thu Jan 27 2011 lars@linux-schulserver.de - disable perl_requires macro for older Distributions * Mon Jan 17 2011 lars@linux-schulserver.de - update to 1.113: + fixes the following security bugs reported via CVE: CVE-2010-2761 - mime boundary issue CVE-2010-4410 - crlf injection CVE-2010-4411 - incomplete fix for crlf injection - and also via bnc #657343 and bnc #663396 + Port max-age support from CGI.pm, to improve compatibility and RFC-compliance + some fixes in the testsuite + Sync cookie references with CGI.pm: add reference to the newer RFC 2695 + documentation fixes + Optimize Vars(): Don't build %hash if we aren't going to use it, and don't call "tie" unless we need to + Added "+" and "\." to the mime character class. + Fixed wrong match for mimetypes. - remove perl-CGI-Simple-CVE-2010-2761.patch (included upstream) * Wed Dec 08 2010 lrupp@suse.de - fix CVE-2010-2761 (bnc#657731) - multipart mime boundary (perl-CGI-Simple-CVE-2010-2761.patch) * Wed Dec 01 2010 coolo@novell.com - switch to perl_requires macro * Sun Jan 10 2010 jengelh@medozas.de - enable parallel build * Wed Sep 02 2009 chris@computersalat.de - update to 1.112 * 1.112 2009-05-31 - (thanks bingos) added missing IO::Scalar dependency. * 1.111 2009-05-28 - Implemented Michael Nachbaur fixes for multipart form data handling. * 1.110 2009-05-24 - Added missing test to manifest / distro. - Added a test to ensure the manifest is consistent. - Migrated to git. * 1.109 2009-04-16 - Added support for HttpOnly to CGI::Simple::Cookie. Thanks to Scott Thomson for the patch. * 1.108 2009-03-13 - Remove bogus references to Selfloader in documenation. No functional changes. * 1.107 2009-03-07 - CGI::Simple::Cookie, fixed bug when cookie had both leading and trailing white space (RT#34314, Ron Savage and Mark Stosberg) - Accept a comma as well as semi-colon as a cookie separator. This is consistent with CGI.pm as well as RFC 2965, which states: "A server SHOULD also accept comma (,) as the separator between cookie- values for future compatibility." (Mark Stosberg) - Support cookies which have an equals sign in the value. Ported from CGI.pm (Mark Stosberg) - Support cookies in which one of multiple values is empty. Ported from CGI.pm (Mark Stosberg) - Fixed bug when calling unescapeHTML on HTML that wasn't properly escaped in the first place. Thanks to M-Uchino and Mark Stosberg. - Removed bogus dependency on version.pm. - Add heuristic to upload to handle the case where no boundary is specified in CONTENT_TYPE. See #14838. - added perl-macros - specmods o added header o fixed deps o added Url o removed Provides perl-CGI-Carp * Sun Nov 30 2008 lars@linux-schulserver.de - initial version 1.106
/usr/lib/perl5/vendor_perl/5.38.2/CGI /usr/lib/perl5/vendor_perl/5.38.2/CGI/Simple /usr/lib/perl5/vendor_perl/5.38.2/CGI/Simple.pm /usr/lib/perl5/vendor_perl/5.38.2/CGI/Simple/Cookie.pm /usr/lib/perl5/vendor_perl/5.38.2/CGI/Simple/Standard.pm /usr/lib/perl5/vendor_perl/5.38.2/CGI/Simple/Util.pm /usr/share/doc/packages/perl-CGI-Simple /usr/share/doc/packages/perl-CGI-Simple/Changes /usr/share/doc/packages/perl-CGI-Simple/README /usr/share/man/man3/CGI::Simple.3pm.gz /usr/share/man/man3/CGI::Simple::Cookie.3pm.gz /usr/share/man/man3/CGI::Simple::Standard.3pm.gz /usr/share/man/man3/CGI::Simple::Util.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Sat Feb 22 00:10:27 2025