/[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 838 by dpavlin, Sun Dec 14 22:15:51 2008 UTC revision 857 by dpavlin, Tue Dec 16 14:10:09 2008 UTC
# Line 116  sub popup_dropdown { Line 116  sub popup_dropdown {
116          }          }
117  }  }
118    
119  sub _inline_path {  sub _inline_path_size {
120          my ( $self, $path ) = @_;          my ( $self, $path ) = @_;
121          -s $path < $self->inline_smaller_than;          -s $path < $self->inline_smaller_than && -s $path;
122  }  }
123    
124  sub _head_html {  sub _head_html {
# Line 126  sub _head_html { Line 126  sub _head_html {
126          my $out = '';          my $out = '';
127          foreach my $path ( @head ) {          foreach my $path ( @head ) {
128                  $path =~ s!^/!!;                  $path =~ s!^/!!;
129                    my $size = $self->_inline_path_size( $path );
130                  if ( $path =~ m/\.js$/ ) {                  if ( $path =~ m/\.js$/ ) {
131                          $out .= $self->_inline_path( $path ) ?                          $out .= $size ?
132                                  qq|<script type="text/javascript">\n/* inline $path */\n\n| . read_file($path) . qq|\n</script>| :                                  qq|<script type="text/javascript">\n/* inline $path $size bytes */\n\n| . read_file($path) . qq|\n</script>| :
133                                  qq|<script type="text/javascript" src="/$path"></script>|;                                  qq|<script type="text/javascript" src="/$path"></script>|;
134                  } elsif ( $path =~ m/\.css$/ ) {                  } elsif ( $path =~ m/\.css$/ ) {
135                          $out .= $self->_inline_path( $path ) ?                          $out .= $size ?
136                                  qq|<style type="text/css">\n/* inline $path */\n\n| . read_file( $path ) . qq|\n</style>| :                                  qq|<style type="text/css">\n/* inline $path $size bytes */\n\n| . read_file( $path ) . qq|\n</style>| :
137                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;                                  qq|<link type="text/css" rel="stylesheet" href="/$path" media="screen">|;
138                  } elsif ( $path =~ m{<.+>}s ) {                  } elsif ( $path =~ m{<.+>}s ) {
139                          $out .= $path;                          $out .= $path;
# Line 174  sub add_head { Line 175  sub add_head {
175    
176  }  }
177    
178  sub _add_something {  sub _add_css_js {
179          my ( $self, $regex, $tag, $type, $content ) = @_;          my ( $self, $what, $content ) = @_;
180    
181          my ( $package, $path, $line ) = caller(1);          my $tag  = $what eq 'css' ? 'style'    : 'script';
182            my $type = $what eq 'css' ? 'text/css' : 'text/javascript';
183            my $head;
184    
185          warn "# $regex $tag $type $content caller $package $path $line";          my ( $package, $path, $line ) = caller(1);
186    
187          if ( $content =~ $regex ) {          if ( $content =~ m{\.(js|css)} ) {
188                  $content = "/$content" if -e $content;                  $content = "/$content" if -e $content;
189                  $self->add_head( strip ( qq|                  if ( $what eq 'js' ) {
190                          <$tag type="$type"  src="$content">                          $head = qq|
191                          /* via $package at $path line $line */                                  <$tag type="$type" src="$content">
192                          </$tag>                                  /* via $package at $path line $line */
193                  | ) );                                  </$tag>
194                            |;
195                    } else {
196                            $head = qq|
197                                    <link rel="stylesheet" type="$type" href="$content">
198                                    <!-- via $package at $path line $line -->
199                            |;
200                    }
201          } else {          } else {
202                  $self->add_head(qq|                  $head = qq|
203                          <$tag type="$type">                          <$tag type="$type">
204                          /* via $package at $path line $line */                          /* via $package at $path line $line */
205                          $content                          $content
206                          </$tag>                          </$tag>
207                  |);                  |;
208          };          };
209            $self->add_head( $head );
210  }  }
211    
212  sub add_css {  sub add_css {
213          my ($self,$css) = @_;          my ($self,$css) = @_;
214          $self->_add_something( qr{\.css$}, qw{style text/css}, $css );          $self->_add_css_js( 'css', $css );
215  }  }
216    
217  sub add_js {  sub add_js {
218          my ($self,$js) = @_;          my ($self,$js) = @_;
219          $self->_add_something( qr{\.js$}, qw{script text/javascript}, $js );          $self->_add_css_js( 'js', $js );
220  }  }
221    
222  our $reload_counter = 0;  our $reload_counter = 0;

Legend:
Removed from v.838  
changed lines
  Added in v.857

  ViewVC Help
Powered by ViewVC 1.1.26