X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=explode.py;h=60eb198c0a0407cc6a622f73c24249b5777d7035;hb=6a43fc94680f64625921728dddc8453dba42ae64;hp=a18ecee11ac2aa470475c42507d55ef3b2c2fb46;hpb=d64781b7c2d42a735d427ead67d04b3d77b2467a;p=ardour-manual diff --git a/explode.py b/explode.py index a18ecee..60eb198 100755 --- a/explode.py +++ b/explode.py @@ -12,6 +12,7 @@ import re import shutil lineCount = 0 +cleanString = re.compile(r'[^a-zA-Z0-9 \._-]+') # @@ -19,10 +20,14 @@ lineCount = 0 # replaced with dashes. # def MakeFilename(s): - # Cleans up the file name, removing all non ASCII or .-_ chars - fn = re.sub(r'[^.\-_a-zA-Z0-9 ]', '', s) - fn = fn.lower() - fn = fn.replace(' ', '-') + global cleanString + # Clean up the file name, removing all non letter/number or " .-_" chars. + # Also, convert to lower case and replace all spaces with dashes. + fn = cleanString.sub('', s).lower().replace(' ', '-') + # Double dashes can creep in from the above replacement, so we check for + # that here. + fn = fn.replace('--', '-') + return fn @@ -111,9 +116,6 @@ for line in master: if 'menu_title' in header: explode.write('menu_title: ' + header['menu_title'] + '\n') - if 'link' in header: - explode.write('link: ' + header['link'] + '\n') - if 'style' in header: explode.write('style: ' + header['style'] + '\n') @@ -126,6 +128,12 @@ for line in master: explode.write('include: ' + inclFile + '\n') filenames.append(inclFile) + if 'link' in header: + explode.write('link: ' + header['link'] + '\n') + + if 'uri' in header: + explode.write('uri: ' + header['uri'] + '\n') + explode.write('part: ' + header['part'] + '\n' + '---\n') # Only parts have no content...