Changeset 932


Ignore:
Timestamp:
Dec 2, 2009, 11:07:45 PM (13 years ago)
Author:
Jari Häkkinen
Message:

Adding missing > for html object tags

Location:
trunk/lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/Directory.cc

    r876 r932  
    190190      ss << imagedir << "/index.svg";
    191191    os << "<p class=\"plot\">\n";
    192     os << "<object data='" << ss.str() << "' type='image/svg+xml' width='600'\n"
     192    os << "<object data='" << ss.str() << "' type='image/svg+xml' width='600'>\n"
    193193       << "<embed src='" << ss.str() << "' type='image/svg+xml' width='600' />\n"
    194194       << "</object>\n";
  • trunk/lib/File.cc

    r864 r932  
    380380      ss << imagefile;
    381381    os << "<p class=\"plot\">\n";
    382     os << "<object data='" << ss.str() << "' type='image/svg+xml' width='600'\n"
     382    os << "<object data='" << ss.str() << "' type='image/svg+xml' width='600'>\n"
    383383       << "<embed src='" << ss.str() << "' type='image/svg+xml' width='600' />\n"
    384384       << "</object>\n";
  • trunk/lib/first_page.cc

    r893 r932  
    33/*
    44  Copyright (C) 2006 Peter Johansson
    5   Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
    6   Copyright (C) 2009 Peter Johansson
     5  Copyright (C) 2007, 2008, 2009 Jari Häkkinen, Peter Johansson
    76
    87  This file is part of svndigest, http://dev.thep.lu.se/svndigest
     
    233232    stats.plot_summary(name);
    234233    os << "<div class=\"main\">\n";
    235     os << "<object data='" << name << "' type='image/svg+xml' width='600'\n"
     234    os << "<object data='" << name << "' type='image/svg+xml' width='600'>\n"
    236235       << "<embed src='" << name << "' type='image/svg+xml' width='600' />\n"
    237236       << "</object>\n";
Note: See TracChangeset for help on using the changeset viewer.