Help for this page

Select Code to Download


  1. or download this
        ...
        <th width="15%"><a href="javascript:sort('location')">Location</a>
    +</th>
        <th width="10%"><a href="javascript:sort('astrotype.name')">Type</
    +a></th>
        <th width="10%"><a href="javascript:sort('terrain.name')">Terrain<
    +/a></th>
        ...
    
  2. or download this
        <script language="JavaScript" type="text/javascript">
        <!--
    ...
            }
        //-->
        </script>
    
  3. or download this
        sub _sort_column {
            my $key = shift;
    ...
            }
            return $array_ref;
        }
    
  4. or download this
        my $sort_key = $query->param('sortCol')   || 
                       $session->param('sortCol') || 
    ...
                order_by      => _sort_column($sort_key),
            } ,
        );
    
  5. or download this
        [% FOREACH base IN bases %]
            [% IF base.astro %]
    ...
                </tr>
            [% END %]
        [% END %]
    
  6. or download this
    package My::Namespace::DB::Bases;
    
    ...
    );
    
    1;
    
  7. or download this
    package My::Namespace::DB::Astros;
    
    ...
    );
    
    1;
    
  8. or download this
    package My::Namespace::DB::AstroTypes;
    
    ...
    );
    
    1;
    
  9. or download this
    package My::Namespace::DB::AstroTerrains;
    
    ...
    
    1;