]> git.decadent.org.uk Git - maypole.git/commitdiff
General restructuring, and a delete method which doesn't quite work yet.
authorSimon Cozens <simon@simon-cozens.org>
Thu, 29 Jan 2004 16:57:39 +0000 (16:57 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Thu, 29 Jan 2004 16:57:39 +0000 (16:57 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@17 48953598-375a-da11-a14b-00016c27c3ee

lib/Apache/MVC.pm
lib/Apache/MVC/Model/Base.pm
lib/Apache/MVC/Model/CDBI.pm
lib/Apache/MVC/View/TT.pm

index 25a8adb0c6dc9d47259624b433d5c4a3fa20e43a..8ed51bf1c9108a353b0bb2f05750951ab22d5188 100644 (file)
@@ -50,7 +50,7 @@ sub init {
     $config->{display_tables} ||= [ $class->config->{loader}->tables ];
     for my $subclass (@{$config->{classes}}) {
         no strict 'refs';
-        push @{$subclass."::ISA"}, $class->config->{model};
+        unshift @{$subclass."::ISA"}, $class->config->{model};
         $config->{model}->adopt($subclass)
            if $config->{model}->can("adopt");
     }
@@ -106,16 +106,21 @@ sub is_applicable {
     my $self = shift;
     my $config = $self->config;
     my %ok = map {$_ => 1} @{$config->{display_tables}};
+    warn "We don't have that table ($self->{table})"
+        unless $ok{$self->{table}};
     return DECLINED() unless exists $ok{$self->{table}};
 
     # Does the action method exist?
+    # XXX We should set the method class to the class for the table
     my $cv = $self->model_class->can($self->{action});
+    warn "We don't have that action ($self->{action})" unless $cv;
     return DECLINED() unless $cv;
 
     # Is it exported?
     $self->{method_attribs} = join " ", attributes::get($cv);
+    do { warn "$self->{action} not exported";
     return DECLINED() 
-     unless $self->{method_attribs} =~ /\bExported\b/i;
+     unless $self->{method_attribs} =~ /\bExported\b/i;
     return OK();
 }
 
index 89feb7c07278538e5ead90319fcbc3695e355dc6..afbc60df7eebd1e24127e7badb7d680cff14ad6c 100644 (file)
@@ -7,25 +7,20 @@ sub MODIFY_CODE_ATTRIBUTES {
 sub FETCH_CODE_ATTRIBUTES { $remember{$_[1]} 
 } 
 
-sub view :Exported {
-    my ($self, $r) = @_;
-    return $self->retrieve(shift @{$r->{args}});
-}
-
-sub edit :Exported {
-    my ($self, $r) = @_;
-    return $self->retrieve(shift @{$r->{args}});
-}
+sub view :Exported { }
+sub edit :Exported { }
 
 sub do_edit { die "This is an abstract method" }
+sub get_objects { die "This is an abstract method" }
 
 sub list :Exported {
     my ($self, $r) = @_;
-    return $self->retrieve_all;
+    $r->objects([ $self->retrieve_all ]);
 }
 
 sub process {
     my ($class, $r) = @_;
     $r->template( my $method = $r->action );
-    $r->objects([ $class->$method($r) ]);
+    $r->objects([ $class->get_objects($r) ]);
+    $class->$method($r) 
 }
index f9918bc9b84cf1b5f93019d204fd5b21bd8aff54..833550d5a059a0297973069bb144d80adb89685d 100644 (file)
@@ -8,13 +8,18 @@ sub description { "A poorly defined class" }
 
 sub column_names { my $class = shift; map { $_ => ucfirst $_ } $class->columns }
 
+sub get_objects {
+    my ($self, $r) = @_;
+    return $self->retrieve(shift @{$r->{args}});
+}
+
 sub do_edit :Exported {
     my ($self, $r) = @_;
     my $h = CGI::Untaint->new(%{$r->{params}});
     my $obj;
     if (@{$r->{args}}) {
         # We have something to edit
-        $obj = $self->retrieve($r->{args}[0]);
+        ($obj) = @{$self->objects};
         $obj->update_from_cgi($h);
         warn "Updating an object ($obj) with ".Dumper($h); use Data::Dumper;
     } else {
@@ -32,6 +37,13 @@ sub do_edit :Exported {
     return $obj;
 }
 
+sub delete :Exported {
+    my ($self, $r) = @_;
+    $self->delete for @{ $r->objects };
+    $r->objects([ $self->retrieve_all ]);
+    $r->{template} = "list";
+}
+
 sub adopt {
     my ($self, $child) = @_;
     $child->autoupdate(1);
index e2a15046cef24e59743a7b9defc258b16f50132d..90624ad7960113098dcacd635dbfe6bddb9de647 100644 (file)
@@ -27,6 +27,7 @@ sub _args {
         class   => $class,
         objects => $r->objects,
         base    => $r->config->{uri_base},
+        config  => $r->config
         # ...
     );
     $args{classmetadata} = {