Changeset 1008
- Timestamp:
- Jan 3, 2010, 7:36:08 PM (13 years ago)
- Location:
- trunk/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Configuration.cc
r1003 r1008 19 19 along with svndigest. If not, see <http://www.gnu.org/licenses/>. 20 20 */ 21 22 #include <config.h> 21 23 22 24 #include "Configuration.h" … … 448 450 449 451 dictionary_ = VectorPair(1, std::make_pair("*.in", "$1")); 450 image_format_ = " png";452 image_format_ = "none"; 451 453 image_anchor_format_ = "png"; 452 454 } -
trunk/lib/Stats.cc
r1007 r1008 364 364 const std::string& linetype) const 365 365 { 366 if (Configuration::instance().image_format()=="none") 367 return filename; 366 368 assert(total_stats().size()); 367 369 Graph gp(filename+"."+Configuration::instance().image_format(), … … 433 435 void Stats::plot_summary(const std::string& filename) const 434 436 { 437 if (Configuration::instance().image_format()=="none") 438 return; 435 439 Graph gp(filename+"."+Configuration::instance().image_format(), 436 440 Configuration::instance().image_format()); -
trunk/lib/html_utility.cc
r1007 r1008 73 73 else if (format=="png") 74 74 os << "<img src='" << name << ".png' alt='[plot]'/>"; 75 else if (format=="none") 76 os << "<!-- no images -->"; 75 77 else { 76 78 assert(false);
Note: See TracChangeset
for help on using the changeset viewer.