Changeset 29 for trunk/lib/File.cc


Ignore:
Timestamp:
Jan 9, 2006, 10:35:50 AM (17 years ago)
Author:
Peter Johansson
Message:

modified output file names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/File.cc

    r23 r29  
    9090  void File::print(const std::string& path) const
    9191  {
    92     std::string output(path + name() + ".html");
     92    std::string output(path + output_name_ + ".html");
    9393    std::ofstream os(output.c_str());
    9494    print_header(os);
     
    101101  }
    102102
    103   void File::print_link(std::ostream& os) const
    104   {
    105     os << "<a href=\"" << name() << ".html\">" << name() << "</a>";
    106   }
    107 
    108103}} // end of namespace svnstat and namespace theplu
Note: See TracChangeset for help on using the changeset viewer.