Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cgi::application::plugin::dbiprofile::graph::gdgraphinline(3pm) [debian man page]

CGI
::Application::Plugin::DBIProfile::Graph::GDGraphInliUserpContributed Perl DocumCGI::Application::Plugin::DBIProfile::Graph::GDGraphInline(3pm) NAME
CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline - Inlined GD Graph output for CAP:DBIProfile. SYNOPSIS
# in httpd.conf SetVar CAP_DBIPROFILE_GRAPHMODULE CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline PerlSetVar CAP_DBIPROFILE_GRAPHMODULE CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline DESCRIPTION
This module provides a GD::Graph::bars inlined graphing option for CAP:DBIProfile. Please note, inlined images are NOT supported by MSIE as of version 7. Mozilla, Firefox, Opera, Safari, and Konqueror are supported. The following settings control the output: $CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline::FORMAT Output format. Defaults to "png". One of "png", "gif", or "jpeg". Any GD supported output format can be easily added. $CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline::WIDTH Width of output image. If you have problems with browser support for large inline images, reduce this. $CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline::HEIGHT Height of output image. If you have problems with browser support for large inline images, reduce this. BUGS
Microsoft Internet Explorer, as of versions 6 and 7, lacks support for the "data: URI scheme", and thus lacks support for inline images. Inline images max size is limited to the browsers max URI length. For example, on Opera, this used to be 4kb. If you hit this limit, you can change the size of the output to try to compensate. REQUIREMENTS
GD::Graph MIME::Base64 SEE ALSO
CGI::Application::Plugin::DBIProfile CGI::Application::Plugin::DBIProfile::Graph::HTML AUTHOR
Joshua I Miller, L<unrtst@cpan.org> COPYRIGHT &; LICENSE Copyright 2007 Joshua Miller, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.4 2011-11-10 CGI::Application::Plugin::DBIProfile::Graph::GDGraphInline(3pm)

Check Out this Related Man Page

CGI
::Application::Plugin::Authentication::Driver::CDBI(3User Contributed Perl DocumentaCGI::Application::Plugin::Authentication::Driver::CDBI(3pm) NAME
CGI::Application::Plugin::Authentication::Driver::CDBI - Class::DBI Authentication Driver VERSION
Version 0.02 SYNOPSIS
use base qw(CGI::Application); use CGI::Application::Plugin::Authentication; __PACKAGE__->authen->config( DRIVER => [ 'CDBI', CLASS => 'My::CDBI::Users', FIELD_METHODS => [qw(user MD5:passphrase)] ], CREDENTIALS => [qw(auth_username auth_password)], ); DESCRIPTION
This Authentication driver uses the Class::DBI module to allow you to authenticate against any Class::DBI class. PARAMETERS
The Class::DBI authentication driver accepts the following required parameters. CLASS (required) Specifies the Class::DBI class to use for authentication. This class must be loaded prior to use. FIELD_METHODS (required) FIELD_METHODS is an arrayref of the methods in the Class::DBI class specified by CLASS to be used during authentication. The order of these methods needs to match the order of the CREDENTIALS. For example, if CREDENTIALS is set to: CREDENTIALS => [qw(auth_user auth_domain auth_password)] Then FIELD_METHODS must be set to: FIELD_METHODS => [qw(userid domain password)] FIELD_METHODS supports filters as specified by CGI::Application::Plugin::Authentication::Driver METHODS
verify_credentials This method will test the provided credentials against the values found in the database, according to the Driver configuration. SEE ALSO
CGI::Application::Plugin::Authentication::Driver, CGI::Application::Plugin::Authentication, perl(1) AUTHOR
Shawn Sorichetti, "<ssoriche@coloredblocks.net>" BUGS
Please report any bugs or feature requests to "bug-cgi-application-plugin-authentication-driver-cdbi@rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI-Application-Plugin-Authentication-Driver-CDBI <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=CGI-Application-Plugin-Authentication-Driver-CDBI>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. ACKNOWLEDGEMENTS
Special thanks to Cees Hek for writing CGI::Application::Plugin::Authentication and his assistance in writing this module. COPYRIGHT &; LICENSE Copyright 2005 Shawn Sorichetti, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2011-05-16 CGI::Application::Plugin::Authentication::Driver::CDBI(3pm)
Man Page