Changeset 737 for trunk

Show
Ignore:
Timestamp:
02/15/11 20:53:46 (15 months ago)
Author:
mgalloy
Message:

Filling links on the overview page.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/doc_system__define.pro

    r736 r737  
    22 
    33;+ 
    4 ; This class represents the entire IDLdoc run. All information/settings for the 
    5 ; run are stored (or at least accessible from) here. 
     4; This class represents the entire IDLdoc run. All information/settings for  
     5; the run are stored (or at least accessible from) here. 
    66; 
    77; :Author: 
     
    1414;       the directory to which to output the documentation 
    1515;    classes 
    16 ;       hash table (classname -> DOCtreeClass) containing all class definitions 
     16;       hash table (classname -> `DOCtreeClass`) containing all class  
     17;       definitions 
    1718;    format 
    1819;       format style 
     
    9596    'has_overview_comments': return, obj_valid(self.overviewComments) 
    9697    'overview_comments': return, self->processComments(self.overviewComments) 
     98 
    9799    'footer': return, self.footer 
    98100     
     
    498500  if (nEntries gt 0) then self->processIndex  
    499501   
     502  doctree_fill_links, self.overviewComments, self 
     503   
    500504  directories = self.directories->get(/all, count=ndirectories) 
    501505  for i = 0L, ndirectories - 1L do (directories[i])->fillLinks 
     
    519523function doc_system::lookupName, name, exclude=exclude 
    520524  compile_opt strictarr 
    521    
     525 
    522526  dirs = self.directories->get(/all, count=ndirs)  
    523527  for i = 0L, ndirs - 1L do begin 
     
    657661   
    658662  if (~obj_valid(tree)) then return, '' 
    659    
    660663  commentParser = self->getParser(self.commentStyle + 'output') 
    661664  return, commentParser->process(tree)