dont make events happen unless necesary
groditi [Wed, 11 Mar 2009 20:53:18 +0000 (20:53 +0000)]
Changes
lib/Reaction/UI/Window.pm

diff --git a/Changes b/Changes
index e0c4887..8476871 100644 (file)
--- a/Changes
+++ b/Changes
@@ -10,6 +10,9 @@ Revision history for Reaction
           - Added an example to ComponentUI
         - Add support for the external MooseX::Types::Common and 
           MooseX::Types::DateTime type libraries in the VPs
+        - Eliminate memory leak related to InstancePerContext
+        - Move the short-cut code from flush_view to flush to prevent events
+          from happening if serving a static file
 
 0.001001 - 12 Aug 2008
         - Initital public release
index 2865e0e..5eda757 100644 (file)
@@ -27,6 +27,11 @@ sub _build_view {
 };
 sub flush {
   my ($self) = @_;
+  my $res = $self->ctx->res;
+  if ( $res->status =~ /^3/ || length($res->body) ) {
+      $res->content_type('text/plain') unless $res->content_type;
+      return;
+  }
   $self->flush_events;
   $self->flush_view;
 };
@@ -53,10 +58,6 @@ sub flush_events {
 sub flush_view {
   my ($self) = @_;
   my $res = $self->ctx->res;
-  if ( $res->status =~ /^3/ || length($res->body) ) {
-      $res->content_type('text/plain') unless $res->content_type;
-      return;
-  }
   $res->body($self->view->render_window($self));
   $res->content_type($self->content_type);
 };