// // aegis - project change supervisor // Copyright (C) 2005, 2006, 2008 Peter Miller // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // 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 General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see // . // #include #include #include static bool near_end(const char *s) { for (;;) { unsigned char c = *s++; if (!c) return true; if (!isspace(c)) return false; } } void output::fputs_xml(const char *s, bool paragraphs) { if (!s) return; for (;;) { unsigned char c = *s++; switch (c) { case '\0': return; case '<': fputs("<"); break; case '>': fputs(">"); break; case '&': fputs("&"); break; case '"': fputs("""); break; case '\n': if (paragraphs) { if (near_end(s)) return; if (*s == '\n') fputs("\n

"); else fputs("
"); } fputc('\n'); while (*s == '\n') ++s; break; default: // always in the C locale if (isprint(c)) fputc(c); else fprintf("&#%d;", c); break; } } } void output::fputs_xml(string_ty *s, bool para) { if (!s) return; fputs_xml(s->str_text, para); } void output::fputs_xml(const nstring &s, bool para) { fputs_xml(s.c_str(), para); }