Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update #2

Merged
merged 9 commits into from
Jun 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*~
Build
MYMETA.*
_build/
blib/
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ perl:
- "5.12"
- "5.10"
- "5.8"
- "5.6"
- "blead"
sudo: false
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
- source ~/travis-perl-helpers/init --auto
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ my $build = Module::Build->new
'dist_author' => [
'Jesse Erlbaum <jesse@erlbaum.net>',
'Mark Stosberg <mark@summersault.com>',
'Martin McGrath <marto@cpan.org>',
'Martin McGrath <mcgrath.martin@gmail.com>',
'with the help of many others!'
],
'dist_abstract' => 'Framework for building reusable web-applications',
Expand Down
19 changes: 18 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Revision history for CGI::Application.

4.50.51 (developer release) 2015-07-16
4.61

- Release fix in 4.60_1

4.60_1

[BUGS]
- Revert MANIFEST changes which seemed to have caused some issues
https://github.com/MartinMcGrath/CGI--Application/issues/5

[DOCUMENTATION]
- Fix minor POD typo.

4.60

- Release, includes all changes from 4.50_50, 4.50_51

4.50_51 (developer release) 2015-07-16

[BUGS]
- Create new CGI::PSGI object unconditionally in psgi_app()/Bug #88506 (allter)
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.travis.yml
lib/CGI/Application.pm
lib/CGI/Application/Mailform.pm
ARTISTIC
Expand Down Expand Up @@ -45,3 +46,4 @@ t/lib/TestApp13.pm
t/lib/TestApp14.pm
t/lib/TestCGI.pm
t/lib/templates/test.tmpl
META.json
81 changes: 81 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@

#!start included /Library/Perl/5.18/ExtUtils/MANIFEST.SKIP
# Avoid version control files.
\bRCS\b
\bCVS\b
\bSCCS\b
,v$
\B\.svn\b
\B\.git\b
\B\.gitignore\b
\b_darcs\b
\B\.cvsignore$

# Avoid VMS specific MakeMaker generated files
\bDescrip.MMS$
\bDESCRIP.MMS$
\bdescrip.mms$

# Avoid Makemaker generated and utility files.
\bMANIFEST\.bak
\bMakefile$
\bblib/
\bMakeMaker-\d
\bpm_to_blib\.ts$
\bpm_to_blib$
\bblibdirs\.ts$ # 6.18 through 6.25 generated this
\b_eumm/ # 7.05_05 and above

# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/
\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# and Module::Build::Tiny generated files
\b_build_params$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$
\.tmp$
\.#
\.rej$
\..*\.sw.?$

# Avoid OS-specific files/dirs
# Mac OSX metadata
\B\.DS_Store
# Mac OSX SMB mount metadata files
\B\._

# Avoid Devel::Cover and Devel::CoverX::Covered files.
\bcover_db\b
\bcovered\b

# Avoid prove files
\B\.prove$

# Avoid MYMETA files
^MYMETA\.
#!end included /Library/Perl/5.18/ExtUtils/MANIFEST.SKIP

# Avoid configuration metadata file
^MYMETA\.

# Avoid Module::Build generated and utility files.
\bBuild$
\bBuild.bat$
\b_build
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$
^MANIFEST\.SKIP

# Avoid archives of this distribution
\bCGI-Application-[\d\.\_]+
17 changes: 6 additions & 11 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ HOW DO I INSTALL IT?
To install this module, cd to the directory that contains this README
file and type the following:

perl Makefile.PL
make
make test
make install

perl Build.PL
./Build
./Build test
./Build install

CGI::Application builds on standard, non-proprietary technologies and
techniques, such as the Common Gateway Interface and Lincoln D. Stein's
Expand All @@ -48,9 +47,5 @@ directly. Instead, it is intended that your Application Module will be
implemented as a Sub-Class of CGI::Application.

If you have any questions, comments, bug reports or feature suggestions,
post them to the support mailing list! To join the mailing list, simply
send a blank message to "cgiapp-subscribe@lists.erlbaum.net".

We also have an IRC channel named #cgiapp on irc.perl.org.


post them to the support mailing list! To join the mailing list, visit
http://lists.openlib.org/mailman/listinfo/cgiapp
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ To install this module, `cd` to the directory that contains this README
file and type the following:

```
perl Makefile.PL
make
make test
make install
perl Build.PL
./Build
./Build test
./Build install
```

CGI::Application builds on standard, non-proprietary technologies and
Expand All @@ -49,7 +49,5 @@ directly. Instead, it is intended that your Application Module will be
implemented as a Sub-Class of CGI::Application.

If you have any questions, comments, bug reports or feature suggestions,
post them to the support mailing list! To join the mailing list, simply
send a blank message to "cgiapp-subscribe@lists.erlbaum.net".

We also have an IRC channel named #cgiapp on irc.perl.org.
post them to the support mailing list! To join the mailing list, visit
http://lists.openlib.org/mailman/listinfo/cgiapp
17 changes: 6 additions & 11 deletions lib/CGI/Application.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
use Class::ISA;
use Scalar::Util;

$CGI::Application::VERSION = '4.50_51';
$CGI::Application::VERSION = '4.61';

my %INSTALLED_CALLBACKS = (
# hook name package sub
Expand Down Expand Up @@ -2523,19 +2523,14 @@ L<http://www.cgi-app.org>
B<Support Mailing List>

If you have any questions, comments, bug reports or feature suggestions,
post them to the support mailing list! To join the mailing list, simply
send a blank message to "cgiapp-subscribe@lists.erlbaum.net".

B<IRC>

You can also drop by C<#cgiapp> on C<irc.perl.org> with a good chance of finding
some people involved with the project there.
post them to the support mailing list! To join the mailing list, visit
http://lists.openlib.org/mailman/listinfo/cgiapp

B<Source Code>

This project is managed using git and is available on Github:

L<https://github.com/MartinMcGrath/CGI--Application>
L<https://github.com/MartinMcGrath/CGI--Application>

=head1 SEE ALSO

Expand Down Expand Up @@ -2597,8 +2592,8 @@ which are documented in the C<Changes> file.

Thanks also to all the members of the CGI-App mailing list!
Your ideas, suggestions, insights (and criticism!) have helped
shape this module immeasurably. (To join the mailing list, simply
send a blank message to "cgiapp-subscribe@lists.erlbaum.net".)
shape this module immeasurably. (To join the mailing list, visit
http://lists.openlib.org/mailman/listinfo/cgiapp )

=head1 LICENSE

Expand Down