/[Frey]/trunk/lib/Frey/Config.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 /trunk/lib/Frey/Config.pm

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

revision 377 by dpavlin, Sun Nov 9 10:54:30 2008 UTC revision 378 by dpavlin, Mon Nov 17 18:03:52 2008 UTC
# Line 32  configuration. Line 32  configuration.
32  =cut  =cut
33    
34  our %config;  our %config;
35    our $debug;
 sub debug { 1 };  
36    
37  sub load_config {  sub load_config {
38          my $self = shift;          my $self = shift;
39            $debug = $self->debug if $self->can('debug');
40          foreach my $name ( 'config', 'site_config', ref($self), @_ ) {          foreach my $name ( 'config', 'site_config', ref($self), @_ ) {
41                  my $path = "etc/$name.yml";                  my $path = "etc/$name.yml";
42                  if ( $path =~ s{::}{/}g ) {                  if ( $path =~ s{::}{/}g ) {
# Line 45  sub load_config { Line 45  sub load_config {
45                  } else {                  } else {
46                          %config = %{ merge( LoadFile($path) , \%config ) } if -e $path;                          %config = %{ merge( LoadFile($path) , \%config ) } if -e $path;
47                  }                  }
48                  warn "## load_config $path current config = ",dump( %config ) if $self->debug;                  warn "## load_config $path current config = ",dump( %config ) if $debug;
49          }          }
50  }  }
51    

Legend:
Removed from v.377  
changed lines
  Added in v.378

  ViewVC Help
Powered by ViewVC 1.1.26