Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mason::component::classmeta(3pm) [debian man page]

Mason::Component::ClassMeta(3pm)			User Contributed Perl Documentation			  Mason::Component::ClassMeta(3pm)

NAME
Mason::Component::ClassMeta - Meta-information about Mason component class SYNOPSIS
# In a component: My path is <% $.cmeta->path %> My source file is <% $.cmeta->source_file %> DESCRIPTION
Every Mason::Component class has an associated Mason::Component::ClassMeta object, containing meta-information such as the component's path and source file. It can be accessed with the cmeta method. class The component class that this meta object is associated with. dir_path The directory of the component path, relative to the component root - e.g. for a component '/foo/bar', the dir_path is '/foo'. is_top_level Whether the component is considered "top level", accessible directly from "$interp->run" or a web request. See "top_level_extensions" in Mason::Interp. name The component base name, e.g. 'bar' for component '/foo/bar'. object_file The object file produced from compiling the component. path The component path, relative to the component root - e.g. '/foo/bar'. source_file The component source file. SEE ALSO
Mason AUTHOR
Jonathan Swartz <swartz@pobox.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Jonathan Swartz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-05-02 Mason::Component::ClassMeta(3pm)

Check Out this Related Man Page

HTML::Mason::ComponentSource(3pm)			User Contributed Perl Documentation			 HTML::Mason::ComponentSource(3pm)

NAME
HTML::Mason::ComponentSource - represents information about an component SYNOPSIS
my $info = $resolver->get_info($comp_path); DESCRIPTION
Mason uses the ComponentSource class to store information about a source component, one that has yet to be compiled. METHODS
new This method takes the following arguments: o comp_path The component's component path. o last_modified This is the last modificatoin time for the component, in Unix time (seconds since the epoch). o comp_id This is a unique id for the component used to distinguish two components with the same name in different component roots. If your resolver does not support multiple component roots, this can simply be the same as the "comp_path" key or it can be any other id you wish. This value will be used when constructing filesystem paths so it needs to be something that works on different filesystems. If it contains forward slashes, these will be converted to the appropriate filesystem-specific path separator. In fact, we encourage you to make sure that your component ids have some forward slashes in them or also all of your generated object files will end up in a single directory, which could affect performance. o comp_class The component class into which this particular component should be blessed when it is created. This must be a subclass of "HTML::Mason::Component", which is the default. o friendly_name This is used when displaying error messages related to the component, like parsing errors. This should be something that will help whoever sees the message identify the component. For example, for component stored on the filesystem, this should be the absolute path to the component. o source_callback This is a subroutine reference which, when called, returns the component source. The reasoning behind using this parameter is that it helps avoid a profusion of tiny little "HTML::Mason::ComponentSource" subclasses that don't do very much. o extra This optional parameter should be a hash reference. It is used to pass information from the resolver to the component class. This is needed since a "HTML::Mason::Resolver" subclass and a "HTML::Mason::Component" subclass can be rather tightly coupled, but they must communicate with each through the interpreter (this may change in the future). comp_path last_modified comp_id comp_class friendly_name extra These are all simple accessors that return the value given to the constructor. comp_source Returns the source of the component. object_code ( compiler => $compiler ) Given a compiler, this method returns the object code for the component. HTML::Mason, HTML::Mason::Admin, HTML::Mason::Component perl v5.14.2 2012-02-04 HTML::Mason::ComponentSource(3pm)
Man Page