voxforge.org
VoxForge Dev

Changeset 2400

Show
Ignore:
Timestamp:
01/12/08 12:18:00 (11 months ago)
Author:
kmaclean
Message:

CURL submission options are separated by a semi-colon, therefore no semi-colons allowed in content submitted to WebGUI

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Trunk/Scripts/Mirroring_scripts/WebGUIForumUpdate.pm

    r2396 r2400  
    106106        $content .= join(" ",  @license); 
    107107        $content =~ s/\n/<br>\n/g;       
    108         $content =~ s/WARRANTY;/WARRANTY,/; # WebGUI does not like CAPITAL LETTERS followed by a semi-colon ...? 
     108        # !!!!!! no longer required 
     109        #$content =~ s/WARRANTY;/WARRANTY,/; # WebGUI does not like CAPITAL LETTERS followed by a semi-colon ...? 
     110        # !!!!!! 
    109111        $content =~ s|<http://www.gnu.org/licenses/>|http://www.gnu.org/licenses/|;  # more WebGUI arcana 
    110112        $content .= "<br><img src=\"http://www.repository.voxforge1.org/spicons/compressed.gif\">"; 
    111113        $content .= "<a href=\"$RepositoryURL/$title.tgz\">$title.tgz</a><br>"; 
     114        # !!!!!! 
     115        $content =~ s/;/,/g; # CURL submission options are separated by a semi-colon, therefore no semi-colons allowed in content submitted to WebGUI  
     116        # !!!!!!         
    112117        #return (\$content,\$title,\$language,$AudioRecordingSoftware); 
    113118        return (\$content,\$title);