Changeset 16899
- Timestamp:
- 2008-08-19 14:29:36 (5 months ago)
- Files:
-
- gsdl/trunk/bin/script/gsConvert.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gsdl/trunk/bin/script/gsConvert.pl
r16552 r16899 729 729 # Utility routine to make sure HTML plugin gets img src/href link pathnames that contain 730 730 # url slashes (/) instead of windows-style backwards slashes, and to convert all %20 731 # introduced in link pathnames by wvWare into space again 731 # introduced in link pathnames by wvWare into space again. Converts all percent signs 732 # introduced by URL encoding filenames generated into %25 in these url links referencing them 732 733 sub post_process_assocfile_urls 733 734 { 734 735 my ($pre, $text, $post) = @_; 735 736 736 $text =~ s/%20/ /g;737 #$text =~ s/%20/ /g; 737 738 $text =~ s/\\/\//g; 739 $text =~ s/%/%25/g; 738 740 739 741 return "$pre$text$post";
