COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • scripts/bib2dox.py

    r801 r792  
    7171author_rex = re.compile('\s+and\s+')
    7272rembraces_rex = re.compile('[{}]')
    73 capitalize_rex = re.compile('({[^}]*})')
     73capitalize_rex = re.compile('({\w*})')
    7474
    7575# used by bibtexkeywords(data)
     
    364364            if entrycont.has_key('note') and (entrycont['note'] != ''):
    365365                entry.append(entrycont['note'] + '.')
    366             if entrycont.has_key('url') and (entrycont['url'] != ''):
    367                 entry.append(entrycont['url'] + '.')
    368366
    369367            # generate keys for sorting and for the output
     
    413411                field = string.lower(field)
    414412                data =  data_rex.sub('\g<2>', line)
    415 
    416             if field == 'url':
    417                 data = '\\url{' + data.strip() + '}'
    418413           
    419414            if field in ('author', 'editor'):
Note: See TracChangeset for help on using the changeset viewer.