Merge branch 'master' into biblatex2

This commit is contained in:
Juergen Spitzmueller 2017-01-09 09:53:20 +01:00
commit 322808281f
7 changed files with 7737 additions and 7808 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4094,13 +4094,6 @@ dots
decide el tipo a usar en función del carácter siguiente.
\end_layout
\begin_layout Standard
\begin_inset Separator parbreak
\end_inset
\end_layout
\begin_layout Standard
\align center
\begin_inset Tabular

View File

@ -93,10 +93,6 @@ m
.
El text es pot acotar per delimitadors o no.
Així, si seleccioneu qualsevol de les fórmules següents:
\begin_inset Separator latexpar
\end_inset
\end_layout
\begin_layout Standard

View File

@ -188,10 +188,7 @@ Linguistik
aus der Liste der verfügbaren Module und drücken auf den Knopf
\family sans
\bar under
H
\bar default
inzufügen
Hinzufügen
\family default
(so wie es für dieses Dokument bereits getan wurde).
\end_layout
@ -284,10 +281,6 @@ Bedeutung
.
Das Paket erlaubt es, kontextsensible Anführungszeichen zu generieren (bspw.
je nach aktuell verwendeter Sprache).
\begin_inset Separator latexpar
\end_inset
\end_layout
\begin_deeper
@ -469,11 +462,6 @@ Das Linguistikmodul stellt zwei Arten von Glossen zur Verfügung.
\family sans
Einfügen\SpecialChar menuseparator
Benutzerdefinierte Einfügungen
\begin_inset space ~
\end_inset
\SpecialChar ldots
\family default
zugänglich.
Die einfache

View File

@ -2031,7 +2031,7 @@ void Buffer::writeDocBookSource(odocstream & os, string const & fname,
if (! tclass.class_header().empty())
os << from_ascii(tclass.class_header());
else if (runparams.flavor == OutputParams::XML)
os << "PUBLIC \"-//OASIS//DTD DocBook XML//EN\" "
os << "PUBLIC \"-//OASIS//DTD DocBook XML V4.2//EN\" "
<< "\"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd\"";
else
os << " PUBLIC \"-//OASIS//DTD DocBook V4.2//EN\"";

View File

@ -99,7 +99,8 @@ TempName::~TempName()
TempName & TempName::operator=(TempName const & other)
{
if (this != &other) {
tempname_.removeFile();
if (!tempname_.empty())
tempname_.removeFile();
support::TempFile f("lyxextXXXXXX.tmp");
f.setAutoRemove(false);
tempname_ = f.name();

View File

@ -22,6 +22,7 @@
#include "LaTeXFeatures.h"
#include "OutputParams.h"
#include "output_xhtml.h"
#include "sgml.h"
#include "texstream.h"
#include "support/docstream.h"
@ -233,7 +234,7 @@ int InsetHyperlink::docbook(odocstream & os, OutputParams const &) const
os << "<ulink url=\""
<< subst(getParam("target"), from_ascii("&"), from_ascii("&amp;"))
<< "\">"
<< getParam("name")
<< sgml::escapeString(getParam("name"))
<< "</ulink>";
return 0;
}