Show
Ignore:
Timestamp:
02/26/10 13:14:41 (2 years ago)
Author:
mgalloy
Message:

Added author, copyright, history, and version tags for overview file in rst and IDLdoc formats.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/idldoc/src/parser/docparidldocformatparser__define.pro

    r620 r632  
    633633     
    634634    case strlowcase(tag) of 
     635      'author': system->setProperty, author=markupParser->parse(tagLines) 
     636      'copyright': system->setProperty, copyright=markupParser->parse(tagLines) 
     637      'history': system->setProperty, history=markupParser->parse(tagLines) 
     638      'version': system->setProperty, version=markupParser->parse(tagLines) 
     639 
    635640      'dir': begin 
    636           re = '^[[:space:]]*([[:alpha:]._$\-\/]+)[[:space:]]+' 
     641          re = '^[[:space:]]*([[:alnum:]._$\-\/]+)[[:space:]]*' 
    637642          argStart = stregex(tagLines[0], re, /subexpr, length=argLength) 
    638643          if (argStart[0] eq -1L) then begin 
     
    648653           
    649654          tagLines[0] = strmid(tagLines[0], argStart[1] + argLength[1]) 
     655          self->_removeSpace, tagLines 
    650656                     
    651657          for d = 0L, directories->count() - 1L do begin