Changeset 154

Show
Ignore:
Timestamp:
02/19/07 13:50:46 (2 years ago)
Author:
ingy
Message:
 r3417@skinny:  ingy | 2007-02-19 13:50:21 -0800
 Wrote a script to pull all the inline files out of a kwiki dist and put them
 in ./src.
 
 This is the start of a refactoring ad should have no effect on current
 processing.
 
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/core/Kwiki/lib/Kwiki/Theme.pm

    r87 r154  
    44 
    55const class_id => 'theme'; 
     6const theme_id => '__theme__'; 
    67 
    78sub register { 
  • trunk/src/core/Spoon/lib/Spoon/Installer.pm

    r147 r154  
    8484 
    8585sub get_packed_files { 
     86    return $self->get_packed_files_from_classes( 
     87        @{Spiffy::all_my_bases(ref $self)} 
     88    ); 
     89} 
     90 
     91sub get_packed_files_from_classes { 
     92    my @classes = @_; 
    8693    my %seen; 
    8794    my @return; 
    88     for my $class (@{Spiffy::all_my_bases(ref $self)}) { 
     95    for my $class (@classes) { 
    8996        next if $class =~ /-/; 
    9097        last if $class =~ /^Spoon/;