X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fsgml.C;h=a5aa601c8f208c59207ea96d09368692598672b9;hb=e7f4618bcce770369cf46335c2c7f0164b4b8857;hp=7ebaf187a694782a4d7f21052c1fc83b7372b79a;hpb=af37f0d23e8aab1bfbd7ab7f26a10e7685dfca68;p=lyx.git diff --git a/src/sgml.C b/src/sgml.C index 7ebaf187a6..a5aa601c8f 100644 --- a/src/sgml.C +++ b/src/sgml.C @@ -11,129 +11,237 @@ #include -#include "support/std_ostream.h" +#include "sgml.h" +#include "buffer.h" +#include "bufferparams.h" +#include "counters.h" +#include "lyxtext.h" +#include "outputparams.h" #include "paragraph.h" -#include "sgml.h" -using std::endl; -using std::make_pair; +#include "support/docstring.h" +#include "support/lstrings.h" +#include "support/std_ostream.h" +#include "support/convert.h" + +#include +#include -using std::ostream; -using std::pair; -using std::string; +namespace lyx { -namespace sgml { +using support::subst; -pair escapeChar(char c) -{ - string str; +using std::map; +using std::ostream; +using std::ostringstream; +using std::string; +docstring sgml::escapeChar(char_type c) +{ + docstring str; switch (c) { case ' ': - return make_pair(true, string(" ")); - break; - case '\0': // Ignore :-) - str.erase(); + str += " "; break; case '&': - str = "&"; + str += "&"; break; case '<': - str = "<"; + str += "<"; break; case '>': - str = ">"; + str += ">"; break; +#if 0 case '$': - str = "$"; + str += "$"; break; case '#': - str = "#"; + str += "#"; break; case '%': - str = "%"; + str += "%"; break; case '[': - str = "["; + str += "["; break; case ']': - str = "]"; + str += "]"; break; case '{': - str = "{"; + str += "{"; break; case '}': - str = "}"; + str += "}"; break; case '~': - str = "˜"; + str += "˜"; break; case '"': - str = """; + str += """; break; case '\\': - str = "\"; + str += "\"; break; +#endif default: - str = c; + str += c; break; } - return make_pair(false, str); + return str; } -int openTag(ostream & os, Paragraph::depth_type depth, - bool mixcont, string const & latexname, - string const & latexparam) +docstring sgml::escapeString(docstring const & raw) { - if (!latexname.empty() && latexname != "!-- --") { - if (!mixcont) - os << string(depth, ' '); - os << '<' << latexname; - if (!latexparam.empty()) - os << " " << latexparam; - os << '>'; + odocstringstream bin; + + for(docstring::size_type i = 0; i < raw.size(); ++i) { + bin << sgml::escapeChar(raw[i]); + } + return bin.str(); +} + + +docstring const sgml::uniqueID(docstring const label) +{ + static unsigned int seed = 1000; + return label + convert(++seed); +} + + +docstring sgml::cleanID(Buffer const & buf, OutputParams const & runparams, + docstring const & orig) +{ + // The standard DocBook SGML declaration only allows letters, + // digits, '-' and '.' in a name. + // Since users might change that declaration one has to cater + // for additional allowed characters. + // This routine replaces illegal characters by '-' or '.' + // and adds a number for uniqueness. + // If you know what you are doing, you can set allowed=="" + // to disable this mangling. + LyXTextClass const & tclass = buf.params().getLyXTextClass(); + string const allowed = + runparams.flavor == OutputParams::XML? ".-_:":tclass.options(); + + if (allowed.empty()) + return orig; + + docstring::const_iterator it = orig.begin(); + docstring::const_iterator end = orig.end(); + + docstring content; + + typedef map MangledMap; + static MangledMap mangledNames; + static int mangleID = 1; + + MangledMap::const_iterator const known = mangledNames.find(orig); + if (known != mangledNames.end()) + return (*known).second; + + // make sure it starts with a letter + if (!isalpha(*it) && allowed.find(*it) >= allowed.size()) + content += "x"; + + bool mangle = false; + for (; it != end; ++it) { + char c = *it; + if (isalpha(c) || isdigit(c) || c == '-' || c == '.' + || allowed.find(c) < allowed.size()) + content += c; + else if (c == '_' || c == ' ') { + mangle = true; + content += "-"; + } + else if (c == ':' || c == ',' || c == ';' || c == '!') { + mangle = true; + content += "."; + } + else { + mangle = true; + } + } + if (mangle) { + content += "-" + convert(mangleID++); + } + else if (isdigit(content[content.size() - 1])) { + content += "."; } - if (!mixcont) - os << endl; + mangledNames[orig] = content; - return !mixcont; + return content; } -int closeTag(ostream & os, Paragraph::depth_type depth, - bool mixcont, string const & latexname) +void sgml::openTag(odocstream & os, string const & name, string const & attribute) { - if (!latexname.empty() && latexname != "!-- --") { - if (!mixcont) - os << endl << string(depth, ' '); - os << "'; + // FIXME UNICODE + // This should be fixed in layout files later. + string param = subst(attribute, "<", "\""); + param = subst(param, ">", "\""); + + if (!name.empty() && name != "!-- --") { + os << '<' << from_ascii(name); + if (!param.empty()) + os << ' ' << from_ascii(param); + os << '>'; } +} - if (!mixcont) - os << endl; - return !mixcont; +void sgml::closeTag(odocstream & os, string const & name) +{ + if (!name.empty() && name != "!-- --") + os << "'; } -unsigned int closeEnvTags(ostream & os, bool mixcont, - string const & environment_inner_depth, - string const & itemtag, - lyx::depth_type total_depth) +void sgml::openTag(Buffer const & buf, odocstream & os, + OutputParams const & runparams, Paragraph const & par) { - unsigned int lines = 0; - if (environment_inner_depth != "!-- --") { - lines += closeTag(os, total_depth, mixcont, itemtag); - if (!environment_inner_depth.empty()) - lines += closeTag(os, total_depth, mixcont, - environment_inner_depth); + LyXLayout_ptr const & style = par.layout(); + string const & name = style->latexname(); + string param = style->latexparam(); + Counters & counters = buf.params().getLyXTextClass().counters(); + + string id = par.getID(buf, runparams); + + string attribute; + if(!id.empty()) { + if (param.find('#') != string::npos) { + string::size_type pos = param.find("id=<"); + string::size_type end = param.find(">"); + if( pos != string::npos && end != string::npos) + param.erase(pos, end-pos + 1); + } + attribute = id + ' ' + param; + } else { + if (param.find('#') != string::npos) { + // FIXME UNICODE + if(!style->counter.empty()) + counters.step(style->counter); + else + counters.step(from_ascii(name)); + int i = counters.value(from_ascii(name)); + attribute = subst(param, "#", convert(i)); + } else { + attribute = param; + } } - return lines; + openTag(os, name, attribute); +} + + +void sgml::closeTag(odocstream & os, Paragraph const & par) +{ + LyXLayout_ptr const & style = par.layout(); + closeTag(os, style->latexname()); } -} // namespace sgml +} // namespace lyx