Changeset 19763


Ignore:
Timestamp:
2009-06-08T16:35:55+12:00 (15 years ago)
Author:
ak19
Message:

No longer convert spaces to underscores in the rename_file subroutine, since underscores mess up incremental build (file renaming forces incremental building to rebuild everything again since incr building thinks the file with the original file has been deleted and new files have been added).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/bin/script/gsConvert.pl

    r18282 r19763  
    735735    my ($pre, $text, $post) = @_;
    736736
    737     $text =~ s/%20/_/g; # reinstated this line, since we no longer replace spaces with %20. We replace them with underscores
     737    $text =~ s/%20/ /g; # Convert %20s to space and not underscore since underscores mess with incremental rebuild
     738    # $text =~ s/%20/_/g; # reinstated this line, since we no longer replace spaces with %20. We replace them with underscores
    738739    $text =~ s/\\/\//g;
    739740    $text =~ s/%/%25/g;
Note: See TracChangeset for help on using the changeset viewer.