Bigtop

 view release on metacpan or  search on metacpan

docs/keyword_cookbook/RPCSoap/Kids/html/templates/genwrapper.tt  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
     
    <title>[% view.title %]</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
     
    <!-- include a style sheet if you like:
                <link rel="stylesheet" type="text/css" media="screen"

examples/Billing-Finished/html/genwrapper.tt  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
        <title>[% view.title %]</title>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- include a style sheet if you like:
                <link rel="stylesheet" type="text/css" media="screen"
                        title="Default" href="[% self.css_rootp %]/default.css" />
    -->

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

976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
form method as shown here.
 
There are three statements in an AutoCRUD_form method block:
 
=over 4
 
=item form_name
 
the name of the html form element.  This doesn't usually matter.
It does matter when you use the date popups (see later tables that
have dates).  Note that XHTML does not allow form elements to have names,
but until we fix our date scheme, we'll have to be in violation.
 
=item fields
 
a comma separated list of fields that should be included on the form.
 
=item extra_keys
 
any extra keys that should be included in the hash form returns and their
values.  The values will not be modified in any way, simply include valid

t/sitelook/01_tiny.t  view on Meta::CPAN

50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Bigtop::Parser->gen_from_string(
    {
        bigtop_string => $bigtop_string,
        create        => 'create',
        build_list    => [ 'SiteLook', ],
    }
);
 
my $correct_wrapper = << 'EO_WRAPPER';
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
        <title>[% view.title %]</title>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                <link rel="stylesheet" type="text/css" media="screen"
                        title="Default" href="[% self.css_rootp %]/default.css" />
 
    </head>

t/sitelook/01_tiny.t  view on Meta::CPAN

177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
Bigtop::Parser->gen_from_string(
    {
        bigtop_string => $bigtop_string,
        create        => 'create',
        build_list    => [ 'SiteLook', ],
    }
);
 
$correct_wrapper = << 'EO_WRAPPER';
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
        <title>[% view.title %]</title>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                <link rel="stylesheet" type="text/css" media="screen"
                        title="Default" href="[% self.css_rootp %]/default.css" />
 
    </head>

t/sitelook/sample_wrapper.tt  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
        <title>[% view.title %]</title>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                <link rel="stylesheet" type="text/css" media="screen"
                        title="Default" href="[% self.css_rootp %]/default.css" />
 
    </head>

t/tentmaker/ajax_09/billing_initial  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
        <title>TentMaker Home</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <link rel="stylesheet" type="text/css" media="screen"
              title="Default" href="/default.css" />
<style type='text/css'>
  #tab-backends table {

tenttemplates/tenter.tt  view on Meta::CPAN

17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
                            Bigtop::TentMaker::compile_app_configs
    app_blocks            - hash describing these app level constructs:
                            sequences, tables, controllers, and literals.
    file_name             - the name of the original input file (optional)
    tab                   - the name of the tab to activate
    expanded_divs         - a hash keyed by div's ident true if expanded
    tab_scroll            - the scrollTop of the tab pane div for repositioning
    body_scroll           - the scrollTop of the body for repositioning
%]
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
    <head>
        <title>[% view.title %]</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <link rel="stylesheet" type="text/css" media="screen"
              title="Default" href="/default.css" />
<style type='text/css'>
  [% INCLUDE default.css %]



( run in 0.357 second using v1.01-cache-2.11-cpan-05444aca049 )