/[Frey]/branches/zimbardo/lib/Frey/Web.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /branches/zimbardo/lib/Frey/Web.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 611 by dpavlin, Fri Nov 28 23:34:26 2008 UTC revision 644 by dpavlin, Sun Nov 30 16:21:07 2008 UTC
# Line 24  sub head { @head } Line 24  sub head { @head }
24  has 'request_url' => (  has 'request_url' => (
25          is => 'rw',          is => 'rw',
26          isa => 'Uri', coerce => 1,          isa => 'Uri', coerce => 1,
27          default => '/',          required => 1,
28            default => sub {
29                    cluck "undefined request_url";
30                    '/';
31            },
32  );  );
33    
34  has 'title' => (  has 'title' => (
# Line 63  has 'html_dump_width' => ( Line 67  has 'html_dump_width' => (
67          is => 'rw',          is => 'rw',
68          isa => 'Int',          isa => 'Int',
69  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them  #       required => 1, # FIXME we can't have required fields with defaults because Frey::Action isn't smart enough and asks for them
70          default => 120,          default => 250,
71  );  );
72    
73  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');  my %escape = ('<'=>'&lt;', '>'=>'&gt;', '&'=>'&amp;', '"'=>'&quot;');
# Line 241  sub page { Line 245  sub page {
245                  qq|                  qq|
246                          <span class="right">                          <span class="right">
247                          <a title="reload $url"  href="/reload$url">reload</a>                          <a title="reload $url"  href="/reload$url">reload</a>
248                          <a title="$description" href="/exit$url">$exit</a>                          <a title="$description" href="/exit$url" target="exit">$exit</a>
249                          </span>                          </span>
250                  |;                  |;
251    
# Line 369  Called at beginning of each request Line 373  Called at beginning of each request
373  sub clean_status {  sub clean_status {
374          my ($self) = shift;          my ($self) = shift;
375          @head = ( 'static/frey.css' );          @head = ( 'static/frey.css' );
376            my $params = { request_url => $self->request_url };
377          @status = (          @status = (
378                  { 'ClassBrowser' => Frey::ClassBrowser->new( usage_on_top => 0 )->as_markup },                  { 'ClassBrowser' => Frey::ClassBrowser->new( %$params, usage_on_top => 0 )->as_markup },
379                  { 'Bookmarklets' => Frey::Bookmarklet->new->as_markup },                  { 'Bookmarklets' => Frey::Bookmarklet->new( %$params )->as_markup },
380                  { 'INC' => Frey::INC->new->as_markup },                  { 'INC' => Frey::INC->new( %$params )->as_markup },
381          );          );
382          $icon_html = '';          $icon_html = '';
383  }  }
# Line 461  my $multiline_re = '[\\' . join('\\', ke Line 466  my $multiline_re = '[\\' . join('\\', ke
466  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";  warn "## multiline markers ", dump( $multiline_markers ), " -> $multiline_re";
467    
468  sub log_path {  sub log_path {
469          $Frey::Bootstrap::log_path || warn "no log_path?";          $Frey::Bootstrap::log_path || die "no log_path?";
470  }  }
471    
472  sub warnings_html {  sub warnings_html {
# Line 491  sub warnings_html { Line 496  sub warnings_html {
496                  chomp;                  chomp;
497                  $line++;                  $line++;
498    
499                    next if m{^\s+(Mojo|Class::MOP|Moose)::};
500    
501                  my $style = '';                  my $style = '';
502    
503  =for filter  =for filter
# Line 532  sub warnings_html { Line 539  sub warnings_html {
539                                  $msg = qq|<span class="$class">$msg</span>|;                                  $msg = qq|<span class="$class">$msg</span>|;
540                          }                          }
541    
542                          $msg .= $spacer .                          #$msg .= $spacer . qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>\n|;
543                                  qq|<a target="editor" href="/editor+$path+$line" style="float: right;">+$line</a>\n|;                          $msg = qq|<a target="editor" href="/editor+$path+$line" style="float: right;">$line</a>$msg|
544                                    . ( $spacer ? $spacer : '' )
545                                    . "\n"; # XXX <pre> needs this
546    
547                          $warnings[ $pos++ % $max ] = $msg;                          $warnings[ $pos++ % $max ] = $msg;
548                  }                  }
# Line 544  sub warnings_html { Line 553  sub warnings_html {
553          my $size = -s $path;          my $size = -s $path;
554    
555          my $warnings = join("",          my $warnings = join("",
556                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 1 .. $max                  map { $warnings[ ( $pos + $_ ) % $max ] || '' } 0 .. ( $max - 1 )
557          );          );
558    
559          my $s = length($warnings);          my $s = length($warnings);

Legend:
Removed from v.611  
changed lines
  Added in v.644

  ViewVC Help
Powered by ViewVC 1.1.26