mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
set infrastructure to allow not to call babel
This is a part of the fix for bug 3043. I got the OK from Georg, that this patch doesn't introduce conflicts as it only sets the infrastructure. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18206 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
71d75896e0
commit
c5527942f3
@ -964,7 +964,8 @@ void Buffer::writeLaTeXSource(odocstream & os,
|
|||||||
} // output_preamble
|
} // output_preamble
|
||||||
LYXERR(Debug::INFO) << "preamble finished, now the body." << endl;
|
LYXERR(Debug::INFO) << "preamble finished, now the body." << endl;
|
||||||
|
|
||||||
if (!lyxrc.language_auto_begin) {
|
if (!lyxrc.language_auto_begin &&
|
||||||
|
!params().language->babel().empty()) {
|
||||||
// FIXME UNICODE
|
// FIXME UNICODE
|
||||||
os << from_utf8(subst(lyxrc.language_command_begin,
|
os << from_utf8(subst(lyxrc.language_command_begin,
|
||||||
"$$lang",
|
"$$lang",
|
||||||
@ -993,7 +994,8 @@ void Buffer::writeLaTeXSource(odocstream & os,
|
|||||||
os << endl;
|
os << endl;
|
||||||
texrow().newline();
|
texrow().newline();
|
||||||
|
|
||||||
if (!lyxrc.language_auto_end) {
|
if (!lyxrc.language_auto_end &&
|
||||||
|
!params().language->babel().empty()) {
|
||||||
os << from_utf8(subst(lyxrc.language_command_end,
|
os << from_utf8(subst(lyxrc.language_command_end,
|
||||||
"$$lang",
|
"$$lang",
|
||||||
params().language->babel()))
|
params().language->babel()))
|
||||||
|
@ -846,7 +846,11 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
|
|||||||
bool const use_babel = features.useBabel();
|
bool const use_babel = features.useBabel();
|
||||||
if (use_babel) {
|
if (use_babel) {
|
||||||
language_options << features.getLanguages();
|
language_options << features.getLanguages();
|
||||||
language_options << language->babel();
|
if (!language->babel().empty()) {
|
||||||
|
if (!language_options.str().empty())
|
||||||
|
language_options << ',';
|
||||||
|
language_options << language->babel();
|
||||||
|
}
|
||||||
if (lyxrc.language_global_options)
|
if (lyxrc.language_global_options)
|
||||||
clsoptions << language_options.str() << ',';
|
clsoptions << language_options.str() << ',';
|
||||||
}
|
}
|
||||||
|
@ -1176,14 +1176,21 @@ docstring Cursor::selectionAsString(bool label) const
|
|||||||
if (startpit == endpit)
|
if (startpit == endpit)
|
||||||
return pars[startpit].asString(buffer, startpos, endpos, label);
|
return pars[startpit].asString(buffer, startpos, endpos, label);
|
||||||
|
|
||||||
|
odocstringstream ods;
|
||||||
|
ods << "\n";
|
||||||
|
// only add blank line if we're not in an ERT inset
|
||||||
|
if (pars[startpit].ownerCode() != Inset::ERT_CODE)
|
||||||
|
ods << "\n";
|
||||||
|
docstring const parbreak = ods.str();
|
||||||
|
|
||||||
// First paragraph in selection
|
// First paragraph in selection
|
||||||
docstring result = pars[startpit].
|
docstring result = pars[startpit].
|
||||||
asString(buffer, startpos, pars[startpit].size(), label) + "\n\n";
|
asString(buffer, startpos, pars[startpit].size(), label) + parbreak;
|
||||||
|
|
||||||
// The paragraphs in between (if any)
|
// The paragraphs in between (if any)
|
||||||
for (pit_type pit = startpit + 1; pit != endpit; ++pit) {
|
for (pit_type pit = startpit + 1; pit != endpit; ++pit) {
|
||||||
Paragraph const & par = pars[pit];
|
Paragraph const & par = pars[pit];
|
||||||
result += par.asString(buffer, 0, par.size(), label) + "\n\n";
|
result += par.asString(buffer, 0, par.size(), label) + parbreak;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Last paragraph in selection
|
// Last paragraph in selection
|
||||||
|
@ -752,7 +752,7 @@ int Font::latexWriteStartChanges(odocstream & os, Font const & base,
|
|||||||
os << "\\L{";
|
os << "\\L{";
|
||||||
count += 3;
|
count += 3;
|
||||||
}
|
}
|
||||||
} else {
|
} else if (!language()->babel().empty()) {
|
||||||
string const tmp =
|
string const tmp =
|
||||||
subst(lyxrc.language_command_local,
|
subst(lyxrc.language_command_local,
|
||||||
"$$lang", language()->babel());
|
"$$lang", language()->babel());
|
||||||
|
@ -191,7 +191,8 @@ LaTeXFeatures::LaTeXFeatures(Buffer const & b, BufferParams const & p,
|
|||||||
bool LaTeXFeatures::useBabel() const
|
bool LaTeXFeatures::useBabel() const
|
||||||
{
|
{
|
||||||
return lyxrc.language_use_babel ||
|
return lyxrc.language_use_babel ||
|
||||||
bufferParams().language->lang() != lyxrc.default_language ||
|
(bufferParams().language->lang() != lyxrc.default_language &&
|
||||||
|
!bufferParams().language->babel().empty()) ||
|
||||||
this->hasLanguages();
|
this->hasLanguages();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -322,7 +323,8 @@ void LaTeXFeatures::useFloat(string const & name)
|
|||||||
|
|
||||||
void LaTeXFeatures::useLanguage(Language const * lang)
|
void LaTeXFeatures::useLanguage(Language const * lang)
|
||||||
{
|
{
|
||||||
UsedLanguages_.insert(lang);
|
if (!lang->babel().empty())
|
||||||
|
UsedLanguages_.insert(lang);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -105,7 +105,8 @@ TeXEnvironment(Buffer const & buf,
|
|||||||
if (par_language->babel() != prev_par_language->babel()) {
|
if (par_language->babel() != prev_par_language->babel()) {
|
||||||
|
|
||||||
if (!lyxrc.language_command_end.empty() &&
|
if (!lyxrc.language_command_end.empty() &&
|
||||||
prev_par_language->babel() != doc_language->babel()) {
|
prev_par_language->babel() != doc_language->babel() &&
|
||||||
|
!prev_par_language->babel().empty()) {
|
||||||
os << from_ascii(subst(
|
os << from_ascii(subst(
|
||||||
lyxrc.language_command_end,
|
lyxrc.language_command_end,
|
||||||
"$$lang",
|
"$$lang",
|
||||||
@ -115,7 +116,8 @@ TeXEnvironment(Buffer const & buf,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (lyxrc.language_command_end.empty() ||
|
if (lyxrc.language_command_end.empty() ||
|
||||||
par_language->babel() != doc_language->babel()) {
|
par_language->babel() != doc_language->babel() &&
|
||||||
|
!par_language->babel().empty()) {
|
||||||
os << from_ascii(subst(
|
os << from_ascii(subst(
|
||||||
lyxrc.language_command_begin,
|
lyxrc.language_command_begin,
|
||||||
"$$lang",
|
"$$lang",
|
||||||
@ -271,7 +273,8 @@ TeXOnePar(Buffer const & buf,
|
|||||||
|| boost::prior(pit)->getDepth() < pit->getDepth())))
|
|| boost::prior(pit)->getDepth() < pit->getDepth())))
|
||||||
{
|
{
|
||||||
if (!lyxrc.language_command_end.empty() &&
|
if (!lyxrc.language_command_end.empty() &&
|
||||||
prev_par_language->babel() != doc_language->babel())
|
prev_par_language->babel() != doc_language->babel() &&
|
||||||
|
!prev_par_language->babel().empty())
|
||||||
{
|
{
|
||||||
os << from_ascii(subst(lyxrc.language_command_end,
|
os << from_ascii(subst(lyxrc.language_command_end,
|
||||||
"$$lang",
|
"$$lang",
|
||||||
@ -281,7 +284,8 @@ TeXOnePar(Buffer const & buf,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (lyxrc.language_command_end.empty() ||
|
if (lyxrc.language_command_end.empty() ||
|
||||||
par_language->babel() != doc_language->babel())
|
par_language->babel() != doc_language->babel() &&
|
||||||
|
!par_language->babel().empty())
|
||||||
{
|
{
|
||||||
os << from_ascii(subst(
|
os << from_ascii(subst(
|
||||||
lyxrc.language_command_begin,
|
lyxrc.language_command_begin,
|
||||||
@ -456,12 +460,15 @@ TeXOnePar(Buffer const & buf,
|
|||||||
os << '\n';
|
os << '\n';
|
||||||
texrow.newline();
|
texrow.newline();
|
||||||
}
|
}
|
||||||
if (lyxrc.language_command_end.empty())
|
if (lyxrc.language_command_end.empty()) {
|
||||||
os << from_ascii(subst(
|
if (!doc_language->babel().empty()) {
|
||||||
lyxrc.language_command_begin,
|
os << from_ascii(subst(
|
||||||
"$$lang",
|
lyxrc.language_command_begin,
|
||||||
doc_language->babel()));
|
"$$lang",
|
||||||
else
|
doc_language->babel()));
|
||||||
|
pending_newline = true;
|
||||||
|
}
|
||||||
|
} else if (!par_language->babel().empty())
|
||||||
os << from_ascii(subst(
|
os << from_ascii(subst(
|
||||||
lyxrc.language_command_end,
|
lyxrc.language_command_end,
|
||||||
"$$lang",
|
"$$lang",
|
||||||
|
Loading…
Reference in New Issue
Block a user