/usr/include/mongo/util/mongoutils/html.h is in mongodb-dev 1:2.4.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | // @file html.h
/**
* Copyright (C) 2012 10gen Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/* Things in the mongoutils namespace
(1) are not database specific, rather, true utilities
(2) are cross platform
(3) may require boost headers, but not libs
(4) are clean and easy to use in any c++ project without pulling in lots of other stuff
*/
#include <sstream>
namespace mongoutils {
namespace html {
using namespace std;
inline string _end() { return "</body></html>"; }
inline string _table() { return "</table>\n\n"; }
inline string _tr() { return "</tr>\n"; }
inline string tr() { return "<tr>"; }
inline string tr(const std::string& a, const std::string& b) {
stringstream ss;
ss << "<tr><td>" << a << "</td><td>" << b << "</td></tr>\n";
return ss.str();
}
template <class T>
inline string td(T x) {
stringstream ss;
ss << "<td>" << x << "</td>";
return ss.str();
}
inline string td(const std::string& x) {
return "<td>" + x + "</td>";
}
inline string th(const std::string& x) {
return "<th>" + x + "</th>";
}
inline void tablecell( stringstream& ss , bool b ) {
ss << "<td>" << (b ? "<b>X</b>" : "") << "</td>";
}
template< typename T>
inline void tablecell( stringstream& ss , const T& t ) {
ss << "<td>" << t << "</td>";
}
inline string table(const char *headers[] = 0, bool border = true) {
stringstream ss;
ss << "\n<table "
<< (border?"border=1 ":"")
<< "cellpadding=2 cellspacing=0>\n";
if( headers ) {
ss << "<tr>";
while( *headers ) {
ss << "<th>" << *headers << "</th>";
headers++;
}
ss << "</tr>\n";
}
return ss.str();
}
inline string start(const std::string& title) {
stringstream ss;
ss << "<html><head>\n<title>";
ss << title;
ss << "</title>\n";
ss << "<style type=\"text/css\" media=\"screen\">"
"body { font-family: helvetica, arial, san-serif }\n"
"table { border-collapse:collapse; border-color:#999; margin-top:.5em }\n"
"th { background-color:#bbb; color:#000 }\n"
"td,th { padding:.25em }\n"
"</style>\n";
ss << "</head>\n<body>\n";
return ss.str();
}
inline string red(const std::string& contentHtml, bool color=true) {
if( !color ) return contentHtml;
stringstream ss;
ss << "<span style=\"color:#A00;\">" << contentHtml << "</span>";
return ss.str();
}
inline string grey(const std::string& contentHtml, bool color=true) {
if( !color ) return contentHtml;
stringstream ss;
ss << "<span style=\"color:#888;\">" << contentHtml << "</span>";
return ss.str();
}
inline string blue(const std::string& contentHtml, bool color=true) {
if( !color ) return contentHtml;
stringstream ss;
ss << "<span style=\"color:#00A;\">" << contentHtml << "</span>";
return ss.str();
}
inline string yellow(const std::string& contentHtml, bool color=true) {
if( !color ) return contentHtml;
stringstream ss;
ss << "<span style=\"color:#A80;\">" << contentHtml << "</span>";
return ss.str();
}
inline string green(const std::string& contentHtml, bool color=true) {
if( !color ) return contentHtml;
stringstream ss;
ss << "<span style=\"color:#0A0;\">" << contentHtml << "</span>";
return ss.str();
}
inline string p(const std::string& contentHtml) {
stringstream ss;
ss << "<p>" << contentHtml << "</p>\n";
return ss.str();
}
inline string h2(const std::string& contentHtml) {
stringstream ss;
ss << "<h2>" << contentHtml << "</h2>\n";
return ss.str();
}
/* does NOT escape the strings. */
inline string a(const std::string& href,
const std::string& title="",
const std::string& contentHtml = "") {
stringstream ss;
ss << "<a";
if( !href.empty() ) ss << " href=\"" << href << '"';
if( !title.empty() ) ss << " title=\"" << title << '"';
ss << '>';
if( !contentHtml.empty() ) {
ss << contentHtml << "</a>";
}
return ss.str();
}
/* escape for HTML display */
inline string escape(const string& data) {
string buffer;
buffer.reserve( data.size() );
for( size_t pos = 0; pos != data.size(); ++pos ) {
switch( data[pos] ) {
case '&':
buffer.append( "&" );
break;
case '\"':
buffer.append( """ );
break;
case '\'':
buffer.append( "'" );
break;
case '<':
buffer.append( "<" );
break;
case '>':
buffer.append( ">" );
break;
default:
buffer.append( 1, data[pos] );
break;
}
}
return buffer;
}
}
}
|