- or download this
if called without session ID
create new session id
...
add "...continuing..." at the end of the response
add <meta http-equiv="refresh" content="3"/> to the response's hea
+der
display a page with the newly retrieved data
- or download this
sub render {
my $self = shift;
...
my $self_object = $self->reflect->object; # in case we have a classn
+ame
return ( self => $self_object );
}
- or download this
sub template_vars {
my $self = shift;
return ( $self->SUPER::template_vars, foo => 'bar' );
}
- or download this
# Super/Module.pm
{
...
__END__
Can't locate object method "foo" via package "Some::Module::YeWhoEnter
+s" at Some/Module.pm line 15.
- or download this
sub foo {
my $hashref = shift;
...
frobnicate( $key, $value );
}
}
- or download this
+++ - Thu Nov 10 21:32:08 2005
@@ -536,7 +536,7 @@
...
</p></em></blockquote>
<code>
- or download this
create table foo (
id serial,
...
name varchar(500) not null,
constraint bar_pk primary key(id)
);
- or download this
insert into foo(name) values('Mumble Frotz');