- Timestamp:
- Dec 16, 2009, 1:08:17 AM (13 years ago)
- Location:
- trunk/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/HtmlBuf.cc
r990 r991 30 30 : std::streambuf(), buf_(buf) 31 31 { 32 map_['"']=std::string(" \"");32 map_['"']=std::string("""); 33 33 map_['\'']=std::string("\'"); 34 34 map_['\n']=std::string("<br />"); … … 39 39 // This should be configurable, but for now indentation is two spaces. 40 40 map_['\t']=std::string(" "); 41 /*42 map_['å']=std::string("å");43 map_['ä']=std::string("ä");44 map_['ö']=std::string("ö");45 map_['Å']=std::string("Å");46 map_['Ä']=std::string("Ä");47 map_['Ö']=std::string("Ö");48 map_['é']=std::string("é");49 map_['É']=std::string("É");50 map_['á']=std::string("á");51 map_['Á']=std::string("Á");52 */53 41 } 54 42 -
trunk/lib/html_utility.cc
r978 r991 178 178 << "<head>\n" 179 179 << "<title> " << title << " - svndigest</title>\n" 180 << "<meta http-equiv=\"Content-type\" content=\"text/html; " 181 << "charset=UTF-8\" />\n" 180 182 << "<link rel=\"stylesheet\" " 181 183 << "href=\"";
Note: See TracChangeset
for help on using the changeset viewer.