Using CGI.pm is quite fine. It is still a CPAN module, and still supported by Debian. Moving to PSGI/Plack might be an option, but it is not at all compulsory. In Debian Wheezy, CGI.pm V3.52 is part of system Perl (5.14), and there's also a package libcgi-pm-perl for Wheezy with version 3.61. In Debian Jessie, there's no CGI in Perl 5.24, but there's still the Debian package libcgi-pm-perl, now version 4.35. You might need to install that package after upgrading.

If you use CGI qw(:standard), then there's not much to fear, it is just the :any tag which is no longer available. A notable change is that if you call the param() method in list context, you get a warning: So many programmers have been bitten by failing to do this correctly, so now you get the warning even if you know what you're doing. If you deliberately chose to call param() in list context, you can suppress this warning by setting $CGI::LIST_CONTEXT_WARN=0.

You need to do something if you used the internal module structure of the CGI package, e.g. the Fh package, which no longer exists, and you might eventually need to do something if you are using the CGI::Pretty module.

So, if the task at hand is upgrading from Wheezy to Stretch then I suggest to just go ahead and leave your CGI applications as they are.


In reply to Re: Replacing CGI.pm by haj
in thread Replacing CGI.pm by horace

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.