diff options
author | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:29:24 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem.moulin@fripost.org> | 2012-09-04 22:29:24 +0200 |
commit | 88ede2ea026377c7a9ca59ad74cd822545f3cbc9 (patch) | |
tree | 8541e22d0e92030c8362d58fe89815bcd6c12919 /lib | |
parent | ff6e499692065df321dc670df37118ba7d701516 (diff) |
License (GNU GPL)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/FPanel/Interface.pm | 25 | ||||
-rw-r--r-- | lib/FPanel/Login.pm | 24 |
2 files changed, 49 insertions, 0 deletions
diff --git a/lib/FPanel/Interface.pm b/lib/FPanel/Interface.pm index 8c9ca10..5945ea9 100644 --- a/lib/FPanel/Interface.pm +++ b/lib/FPanel/Interface.pm @@ -1,9 +1,16 @@ package FPanel::Interface; +use 5.010_000; use strict; use warnings; use utf8; +=head1 NAME + +Interface.pm - + +=cut + use lib 'lib'; use base 'FPanel::Login'; @@ -522,4 +529,22 @@ sub dn2email { return "$1\@$2"; } + +=head1 AUTHOR + +Guilhem Moulin C<< <guilhem at fripost.org> >> + +=head1 COPYRIGHT + +Copyright 2012 Guilhem Moulin. + +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it +under the same terms as perl itself. + +=cut + 1; + +__END__ diff --git a/lib/FPanel/Login.pm b/lib/FPanel/Login.pm index 76dc5bb..e21ef77 100644 --- a/lib/FPanel/Login.pm +++ b/lib/FPanel/Login.pm @@ -1,9 +1,16 @@ package FPanel::Login; +use 5.010_000; use strict; use warnings; use utf8; +=head1 NAME + +Login.pm - + +=cut + use base 'CGI::Application'; use CGI::Application::Plugin::AutoRunmode; @@ -217,5 +224,22 @@ sub error_rm : ErrorRunmode { } } + +=head1 AUTHOR + +Guilhem Moulin C<< <guilhem at fripost.org> >> + +=head1 COPYRIGHT + +Copyright 2012 Guilhem Moulin. + +=head1 LICENSE + +This program is free software; you can redistribute it and/or modify it +under the same terms as perl itself. + +=cut + 1; +__END__ |