Bigtop

 view release on metacpan or  search on metacpan

lib/Bigtop/Docs/QuickKeywords.pod  view on Meta::CPAN

=head1 NAME

Bigtop::Docs::QuickKeywords - Short descriptions of all Bigtop keywords

=head1 Intro

This document is generated from C<Bigtop::Docs::Keywords>.  It is designed
to be compact.  See C<Bigtop::Docs::FullKeywords> for more details.
See C<Bigtop::Docs::TOC> for an annotated list of all doc files.

 config {}
    engine - mod_perl 1.3, mod_perl 2.0, CGI, etc.
    template_engine - Template Toolkit, Mason, etc.
    plugins - List of Plugins i.e. AuthCookie Static
    Example Backend Block:
        SQL SQLite {}
    See Bigtop::Docs::Backends for the backends whose blocks can go here.

 app name {}
    no_gen - Skip this app completely
    location - Base Location of the app [defaults to /]
               Do not use if you have a Base Controller.
    authors - Who to blame for the app
    contact_us - How to send complaints or join the project
    copyright_holder - Who owns the app [defaults to 1st author]
    license_text - Restrictions [defaults to Perl license]
    uses - List of modules used by base module
           Do not use if you have a Base Controller.
    label - Documentation label for app

    config {}
        any_keyword its_value;    - creates:
            (1) config variable value pair in Gantry::Conf (or moral equiv.)
            (2) a statement to retrieve the set var in the base init method,
            (3) an accessor in the base module
        OR
        key value => no_accessor; - just does #1 from above

    literal Conf `...`; - top level of Gantry::Conf file
    literal PerlTop `...`; - immediately after shebang line in httpd.conf
                             <Perl> block and in the CGI scripts
    literal PerlBlock `...`; - in the httpd.conf <Perl> block (in order
                               with controllers)
    literal HttpdConf `...`; - between location directives in httpd.conf
    literal Location `...`; - in the base Location directive for the app
    literal SQL `...`; - dumped directly into all schemas

  table name {}
    no_gen - Skip this table completely
    not_for - Tell Model and/or SQL to skip this table
    foreign_display - Pattern string for other tables: %last, %first
    refered_to_by - Table has many rows from this other table
    model_base_class - Models inherit from this [has good default]
    sequence - Which sequence to take default keys from
    label - Documentation label for table
    data - What to INSERT INTO table upon initial creation
    field name {}
      no_gen - Skip this field completely
      not_for - Tell Model and/or SQL to skip this field
      is - SQL type clause phrases, e.g.:int4, varchar, primary_key, auto
      accessor - DBIx::Class alternate accessor name for this column
      add_columns - DBIx::Class alternate column addition
      refers_to - Where this foreign key points
      quasi_refers_to - Where this column usually points
      on_delete - What to do when foreign key column's row dies
      on_update - What to do when foreign key column's row changes
      label - Default on-screen label for field
      searchable - Include this field in searches?
      html_form_type - form type: text, textarea, select
      html_form_optional - May user skip this field?
      html_form_constraint - Data::FormValidator constraint, e.g.: qr{^\d$}
      html_form_default_value - Form element value when no other is available
      html_form_cols - cols attribute of text area
      html_form_rows - rows attribute of text area



( run in 1.818 second using v1.01-cache-2.11-cpan-437f7b0c052 )