Changeset 1133


Ignore:
Timestamp:
Jul 18, 2010, 8:30:27 PM (13 years ago)
Author:
Peter Johansson
Message:

new function Configuration::output_blame_information. refs #330

Location:
trunk/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Configuration.cc

    r1098 r1133  
    484484    image_format_ = "png";
    485485    image_anchor_format_ = "png";
     486    output_blame_information_ = true;
     487  }
     488
     489
     490  bool Configuration::output_blame_information(void) const
     491  {
     492    return output_blame_information_;
    486493  }
    487494
  • trunk/lib/Configuration.h

    r1053 r1133  
    103103    ///
    104104    bool  missing_copyright_warning(void) const;
     105
     106    /**
     107       \return true (default) if we wanna output blame information
     108     */
     109    bool output_blame_information(void) const;
    105110
    106111    ///
     
    166171    std::string image_anchor_format_;
    167172    std::string image_format_;
     173    bool output_blame_information_;
    168174    std::string trac_root_;
    169175  };
Note: See TracChangeset for help on using the changeset viewer.