mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
a86b3a1c84
Replace <> by the "" for all attributes. Use open and closeTag always. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9140 a592a061-630c-0410-9148-cb99ea01b6c8
179 lines
3.2 KiB
C
179 lines
3.2 KiB
C
/**
|
|
* \file sgml.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author José Matos
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "sgml.h"
|
|
|
|
#include "buffer.h"
|
|
#include "bufferparams.h"
|
|
#include "counters.h"
|
|
#include "lyxtext.h"
|
|
#include "paragraph.h"
|
|
|
|
#include "support/lstrings.h"
|
|
#include "support/std_ostream.h"
|
|
#include "support/tostr.h"
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
using lyx::support::subst;
|
|
|
|
using std::make_pair;
|
|
|
|
using std::ostream;
|
|
using std::ostringstream;
|
|
using std::pair;
|
|
using std::string;
|
|
|
|
namespace sgml {
|
|
|
|
pair<bool, string> escapeChar(char c)
|
|
{
|
|
string str;
|
|
|
|
switch (c) {
|
|
case ' ':
|
|
return make_pair(true, string(" "));
|
|
break;
|
|
case '\0': // Ignore :-)
|
|
str.erase();
|
|
break;
|
|
case '&':
|
|
str = "&";
|
|
break;
|
|
case '<':
|
|
str = "<";
|
|
break;
|
|
case '>':
|
|
str = ">";
|
|
break;
|
|
#if 0
|
|
case '$':
|
|
str = "$";
|
|
break;
|
|
case '#':
|
|
str = "#";
|
|
break;
|
|
case '%':
|
|
str = "%";
|
|
break;
|
|
case '[':
|
|
str = "[";
|
|
break;
|
|
case ']':
|
|
str = "]";
|
|
break;
|
|
case '{':
|
|
str = "{";
|
|
break;
|
|
case '}':
|
|
str = "}";
|
|
break;
|
|
case '~':
|
|
str = "˜";
|
|
break;
|
|
case '"':
|
|
str = """;
|
|
break;
|
|
case '\\':
|
|
str = "\";
|
|
break;
|
|
#endif
|
|
default:
|
|
str = c;
|
|
break;
|
|
}
|
|
return make_pair(false, str);
|
|
}
|
|
|
|
|
|
string escapeString(string const & raw)
|
|
{
|
|
ostringstream bin;
|
|
|
|
for(string::size_type i = 0; i < raw.size(); ++i) {
|
|
bool ws;
|
|
string str;
|
|
boost::tie(ws, str) = sgml::escapeChar(raw[i]);
|
|
bin << str;
|
|
}
|
|
return bin.str();
|
|
}
|
|
|
|
|
|
void openTag(ostream & os, string const & name, string const & attribute)
|
|
{
|
|
// This should be fixed in layout files later.
|
|
string param = subst(attribute, "<", "\"");
|
|
param = subst(param, ">", "\"");
|
|
|
|
if (!name.empty() && name != "!-- --") {
|
|
os << '<' << name;
|
|
if (!param.empty())
|
|
os << " " << param;
|
|
os << '>';
|
|
}
|
|
}
|
|
|
|
|
|
void closeTag(ostream & os, string const & name)
|
|
{
|
|
if (!name.empty() && name != "!-- --")
|
|
os << "</" << name << '>';
|
|
}
|
|
|
|
|
|
void openTag(Buffer const & buf, ostream & os, Paragraph const & par)
|
|
{
|
|
LyXLayout_ptr const & style = par.layout();
|
|
string const & name = style->latexname();
|
|
string param = style->latexparam();
|
|
Counters & counters = buf.params().getLyXTextClass().counters();
|
|
|
|
string id = par.getDocbookId();
|
|
id = id.empty()? "" : " id = \"" + id + "\"";
|
|
|
|
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 and end != string::npos)
|
|
param.erase(pos, end-pos + 1);
|
|
}
|
|
attribute = id + ' ' + param;
|
|
} else {
|
|
if (param.find('#') != string::npos) {
|
|
if(!style->counter.empty())
|
|
counters.step(style->counter);
|
|
else
|
|
counters.step(style->latexname());
|
|
int i = counters.value(name);
|
|
attribute = subst(param, "#", tostr(i));
|
|
} else {
|
|
attribute = param;
|
|
}
|
|
}
|
|
openTag(os, name, attribute);
|
|
}
|
|
|
|
|
|
void closeTag(ostream & os, Paragraph const & par)
|
|
{
|
|
LyXLayout_ptr const & style = par.layout();
|
|
closeTag(os, style->latexname());
|
|
}
|
|
|
|
} // namespace sgml
|