Subject: | ::[MVC]:: component naming and catalyst.pl |
http://cpansearch.perl.org/src/MRAMBERG/Catalyst-Runtime-5.80012/script/catalyst.pl
still has -short use short names, M/V/C instead of
Model/View/Controller.
But Catalyst.pm says it is deprecated. If this style is deprecated,
which I hope not, I like it /alot/ more, then Catalyst.pl shouldn't be
generating modern sites with it.
my $deprecated_component_names = grep { /::[CMV]::/ } @comps;
$class->log->warn(qq{Your application is using the deprecated
::[MVC]:: type naming scheme.\n}.
qq{Please switch your class names to ::Model::, ::View:: and
::Controller: as appropriate.\n}
) if $deprecated_component_names;
PS If it was on git, i'd fix it and send patch.