]> git.lyx.org Git - lyx.git/log
lyx.git
18 months agoLyXHTML: avoid using v/align HTML attributes in tables, they are deprecated (like...
Thibaut Cuvelier [Mon, 9 Jan 2023 00:50:05 +0000 (01:50 +0100)]
LyXHTML: avoid using v/align HTML attributes in tables, they are deprecated (like most attributes for td).

Also implement alignment at character in CSS.

18 months agoLyXHTML: avoid using v/align HTML attributes in tables, they are deprecated (like...
Thibaut Cuvelier [Mon, 9 Jan 2023 00:50:05 +0000 (01:50 +0100)]
LyXHTML: avoid using v/align HTML attributes in tables, they are deprecated (like most attributes for td).

Also implement alignment at character in CSS.

18 months agoInsetMathBox: remove debugging code.
Thibaut Cuvelier [Mon, 9 Jan 2023 00:11:52 +0000 (01:11 +0100)]
InsetMathBox: remove debugging code.

18 months agoAmend 2d56c01dcfaf04744ab6d854af3965919cc07b82
Thibaut Cuvelier [Sun, 8 Jan 2023 21:51:01 +0000 (22:51 +0100)]
Amend 2d56c01dcfaf04744ab6d854af3965919cc07b82

18 months agoInsetIndex: make a condition more bullet-proof, a nullptr could be dereferenced.
Thibaut Cuvelier [Sun, 8 Jan 2023 21:19:39 +0000 (22:19 +0100)]
InsetIndex: make a condition more bullet-proof, a nullptr could be dereferenced.

Error noticed by Coverity:

*** CID 382777:  Memory - illegal accesses  (RETURN_LOCAL)
/home/lasgoutt/src/lyx/coverity/lyx/src/insets/InsetIndex.cpp: 1866 in _ZNK3lyx15InsetPrintIndex5xhtmlB5cxx11ERNS_9XMLStreamERKNS_12OutputParamsE()
1860
1861            // Collect the index entries in a form we can use them.
1862            vector<IndexEntry> entries;
1863            const docstring & indexType = params().getParamOr("type", from_ascii("idx"));
1864            for (const TocItem& item : *toc) {
1865                    const auto* inset = static_cast<const InsetIndex*>(&(item.dit().inset()));
>>>     CID 382777:  Memory - illegal accesses  (RETURN_LOCAL)
>>>     Using "indexType", which points to an out-of-scope temporary variable of type "lyx::docstring const".
1866                    if (item.isOutput() && inset->params().index == indexType)
1867                            entries.emplace_back(IndexEntry{inset, &op});
1868            }
1869
1870            // If all the index entries are in notes or not displayed, get out sooner.
1871            if (entries.empty())

18 months agoInsetIndex: remove unused code that created Coverity errors.
Thibaut Cuvelier [Sun, 8 Jan 2023 21:17:02 +0000 (22:17 +0100)]
InsetIndex: remove unused code that created Coverity errors.

18 months agoInsetIndex: add a missing destructor for IndexNode and call it from xhtml() to avoid...
Thibaut Cuvelier [Sun, 8 Jan 2023 21:03:26 +0000 (22:03 +0100)]
InsetIndex: add a missing destructor for IndexNode and call it from xhtml() to avoid leaking resources.

Corresponding Coverity finding:

** CID 382778:  Resource leaks  (RESOURCE_LEAK)
/home/lasgoutt/src/lyx/coverity/lyx/src/insets/InsetIndex.cpp: 1909 in _ZNK3lyx15InsetPrintIndex5xhtmlB5cxx11ERNS_9XMLStreamERKNS_12OutputParamsE()

________________________________________________________________________________________________________
*** CID 382778:  Resource leaks  (RESOURCE_LEAK)
/home/lasgoutt/src/lyx/coverity/lyx/src/insets/InsetIndex.cpp: 1909 in _ZNK3lyx15InsetPrintIndex5xhtmlB5cxx11ERNS_9XMLStreamERKNS_12OutputParamsE()
1903            }
1904
1905            xs << xml::EndTag("ul");
1906            xs << xml::CR();
1907            xs << xml::EndTag("div");
1908
>>>     CID 382778:  Resource leaks  (RESOURCE_LEAK)
>>>     Variable "index_root" going out of scope leaks the storage it points to.
1909            return ods.str();
1910     }
1911

18 months agoCmake export tests. Add validation of lyxhtml exported files
Kornel Benko [Sun, 8 Jan 2023 16:12:16 +0000 (17:12 +0100)]
Cmake export tests. Add validation of lyxhtml exported files

ATM, the validation is commented out.
To use it, one has first to install html5validator with
  $ pip3 install html5validator>=0.4.2
and uncomment the line 335 in export.cmake

18 months agoAdditional.lyx: further fixes #2
Juergen Spitzmueller [Sun, 8 Jan 2023 14:31:37 +0000 (15:31 +0100)]
Additional.lyx: further fixes #2

More to come!

18 months agoAdditional.lyx: further fixes
Juergen Spitzmueller [Sun, 8 Jan 2023 11:14:03 +0000 (12:14 +0100)]
Additional.lyx: further fixes

More to come!

18 months agoInsetMathBox: split the boxed text into <mtext> and other tags, while boxing the...
Thibaut Cuvelier [Sun, 8 Jan 2023 01:27:36 +0000 (02:27 +0100)]
InsetMathBox: split the boxed text into <mtext> and other tags, while boxing the whole inset within an <mrow>.

Rationales:
- previously, <mstyle> was used, but it's being deprecated for MathML 4 Core in favour of CSS and <mrow> (not a big deal in itself)
- the whole box cannot be hosted within the same tag, because neither <mstyle> nor <mrow> can have text, they need an intermediate container, <mtext> (which cannot hold anything else that pure text)
- new behaviour: always output a container for the whole box that has the right attributes, i.e. an <mrow>; split the content of the cell to have text and other tags set apart (text in <mtext>, other tags left as they were)

Old behaviour, invalid MathML (2 to 4):
<mstyle XXX>text<mn>.</mn></mstyle>

New behaviour, valid MathML:
<mrow XXX><mtext>text</mtext><mn>.</mn></mrow>

18 months agoInsetMathBox: fix strange indentation (mix of spaces and tabs).
Thibaut Cuvelier [Sat, 7 Jan 2023 23:51:43 +0000 (00:51 +0100)]
InsetMathBox: fix strange indentation (mix of spaces and tabs).

18 months agoMathML test case: fix a typo.
Thibaut Cuvelier [Sat, 7 Jan 2023 23:50:18 +0000 (00:50 +0100)]
MathML test case: fix a typo.

It was bugging me when looking at XHTML output: I was wondering if LyX was doing anything weird about ligatures! Hopefully not.

18 months agoMathML: convert InsetMathBox as <m:mtext>.
Thibaut Cuvelier [Sat, 7 Jan 2023 23:50:06 +0000 (00:50 +0100)]
MathML: convert InsetMathBox as <m:mtext>.

The inset represents text (as opposed to maths in formulae). <m:mstyle> is used to give style to its children, it is not supposed to have any contents on its own.

18 months agoLyXHTML validation tests: explicitly exit the Python script if it fails
Thibaut Cuvelier [Sat, 7 Jan 2023 20:27:50 +0000 (21:27 +0100)]
LyXHTML validation tests: explicitly exit the Python script if it fails

18 months ago Update fr.po
jpc [Sat, 7 Jan 2023 16:59:59 +0000 (17:59 +0100)]
       Update fr.po

18 months agoLyXHTML: use a lower-case meta for generator, this is the most common convention.
Thibaut Cuvelier [Sat, 7 Jan 2023 15:24:57 +0000 (16:24 +0100)]
LyXHTML: use a lower-case meta for generator, this is the most common convention.

18 months agoLyXHTML: add a missing space in the content-type annotation.
Thibaut Cuvelier [Sat, 7 Jan 2023 15:23:56 +0000 (16:23 +0100)]
LyXHTML: add a missing space in the content-type annotation.

18 months agoupdatelayouts.py: skip .txt files
Scott Kostyshak [Sat, 7 Jan 2023 14:43:47 +0000 (09:43 -0500)]
updatelayouts.py: skip .txt files

18 months agoUpdate sk.po
Kornel Benko [Sat, 7 Jan 2023 12:38:01 +0000 (13:38 +0100)]
Update sk.po

18 months agoSome minor corrections to the Additional revisions
Juergen Spitzmueller [Sat, 7 Jan 2023 12:17:05 +0000 (13:17 +0100)]
Some minor corrections to the Additional revisions

More might follow.

18 months agoLyXHTML: add explicit HTMLTag for titles.
Thibaut Cuvelier [Sat, 7 Jan 2023 02:59:22 +0000 (03:59 +0100)]
LyXHTML: add explicit HTMLTag for titles.

This way, LyX can generate semantic <hX> tags instead of a generic <div>.

18 months agoLyXHTML: don't explicitly mention that the style is CSS, HTML5 doesn't like it.
Thibaut Cuvelier [Sat, 7 Jan 2023 02:42:11 +0000 (03:42 +0100)]
LyXHTML: don't explicitly mention that the style is CSS, HTML5 doesn't like it.

18 months agoLyXHTML: use a value of font-weight that makes sense instead of a nonexistent medium.
Thibaut Cuvelier [Sat, 7 Jan 2023 02:40:27 +0000 (03:40 +0100)]
LyXHTML: use a value of font-weight that makes sense instead of a nonexistent medium.

18 months agoLyXHTML: remove the double specification of charset.
Thibaut Cuvelier [Sat, 7 Jan 2023 02:34:58 +0000 (03:34 +0100)]
LyXHTML: remove the double specification of charset.

The choice of content-type is arbitrary.

18 months agoLyXHTML: fix the content-type attribute, it must be lower case (enforced for HTML5).
Thibaut Cuvelier [Sat, 7 Jan 2023 02:33:48 +0000 (03:33 +0100)]
LyXHTML: fix the content-type attribute, it must be lower case (enforced for HTML5).

18 months agoLyXHTML and DocBook: encode language codes as BCP47.
Thibaut Cuvelier [Sat, 7 Jan 2023 02:31:40 +0000 (03:31 +0100)]
LyXHTML and DocBook: encode language codes as BCP47.

18 months agoAmend 16a1aa99
Thibaut Cuvelier [Sat, 7 Jan 2023 02:05:55 +0000 (03:05 +0100)]
Amend 16a1aa99

With the current settings, a theorem with several paragraphs will have several wrapper tags (i.e. two `<db:figure>`, with one paragraph each, one next to the other when it's the same theorem), while there should be only one (one `<db:figure>` with two paragraphs).

It makes me wonder whether DocBookWrapperMergeWithPrevious should be the default value. I don't see a case where it would be set to `false` with a wrapper tag, but the test suite isn't developed enough to make the change with peace of mind (i.e. remove the parameter `DocBookWrapperMergeWithPrevious` and consider it is always `true` in the code).

For the record, the current code also works with two subsequent theorems with two paragraphs each (see new test case).

18 months agoMake formatting of DocBook changes more similar to surrounding code.
Thibaut Cuvelier [Sat, 7 Jan 2023 01:56:40 +0000 (02:56 +0100)]
Make formatting of DocBook changes more similar to surrounding code.

Spaces between if and condition.

18 months agoctests: uninvert a lyx2lyx test thanks to fix
Scott Kostyshak [Fri, 6 Jan 2023 18:51:34 +0000 (13:51 -0500)]
ctests: uninvert a lyx2lyx test thanks to fix

Thanks to the fix at d89a4848, the roundtrip now converges.

This reverts commit 83c72a3eceb1ce98242a848579952b7526739d15.

18 months agoRow breaking: keep unused tail for later (instead of assertion)
Jean-Marc Lasgouttes [Fri, 6 Jan 2023 15:02:29 +0000 (16:02 +0100)]
Row breaking: keep unused tail for later (instead of assertion)

Instead of asserting when there are unprocessed row elements (which,
as I understand it, should almost never happen), play safe and keep
them for later processing.

Related to bug #12617.

18 months agoFixup dcef1a9c: better handling of front-of-string splitting
Jean-Marc Lasgouttes [Fri, 6 Jan 2023 14:53:53 +0000 (15:53 +0100)]
Fixup dcef1a9c: better handling of front-of-string splitting

When splitting a string leads to a break before the first character, the
best is to declare that splitting failed.

Fixes bug #12617.

18 months agoAdd missing revert routine to lyx_2_0.py
Juergen Spitzmueller [Fri, 6 Jan 2023 13:40:25 +0000 (14:40 +0100)]
Add missing revert routine to lyx_2_0.py

18 months agoTypo in a comment
Scott Kostyshak [Fri, 6 Jan 2023 04:33:16 +0000 (23:33 -0500)]
Typo in a comment

18 months ago#12523 check for existence of usable Python interpreter
Stephan Witt [Thu, 5 Jan 2023 23:32:09 +0000 (00:32 +0100)]
#12523 check for existence of usable Python interpreter

- present appropriate alert message in case of missing Python
- add the option to quit LyX immediately
- recheck for Python interpreter on reconfigure if it was missing

18 months agoctests: invert a bug from old routine
Scott Kostyshak [Thu, 5 Jan 2023 17:55:32 +0000 (12:55 -0500)]
ctests: invert a bug from old routine

A test from a recent file, KOMA-Script_Book.lyx, uncovered this
issue. It is an old routine so not critical to fix.

The following is the diff that prevents convergence:

   \begin_inset Newpage cleardoublepage
   \end_inset

   \end_layout

   \begin_layout Standard

If convert_bibtex_clearpage(document) in lyx_2_0.py is commented out, then
the test passes.

18 months agoFix "origin" in KOMA-Script_Book.lyx
Kornel Benko [Thu, 5 Jan 2023 15:24:00 +0000 (16:24 +0100)]
Fix "origin" in KOMA-Script_Book.lyx

18 months agoAdd information to Row::operator<<
Jean-Marc Lasgouttes [Thu, 5 Jan 2023 10:55:32 +0000 (11:55 +0100)]
Add information to Row::operator<<

18 months agoFix minor bug mentioned in #10827
Richard Kimberly Heck [Thu, 5 Jan 2023 04:23:30 +0000 (23:23 -0500)]
Fix minor bug mentioned in #10827

18 months agoFix compilation problem
Richard Kimberly Heck [Thu, 5 Jan 2023 04:04:02 +0000 (23:04 -0500)]
Fix compilation problem

18 months agoAdditional.lyx: address scrbook error re old font
Scott Kostyshak [Thu, 5 Jan 2023 03:30:37 +0000 (22:30 -0500)]
Additional.lyx: address scrbook error re old font

Replace \bf with \bfseries.

The error was as follows:

  ! Class scrbook Error: undefined old font command `\bf'.

This change is consistent with 3cecd4d3.

After this change (and the previous commits), the ctests for
Additional.lyx pass again.

18 months agoAdditional.lyx: fix "origin" arg of rotate box
Scott Kostyshak [Thu, 5 Jan 2023 03:19:01 +0000 (22:19 -0500)]
Additional.lyx: fix "origin" arg of rotate box

The argument must specify "origin=...". Although that is confusing
(because the argument's name is "origin" so it might be expected
that this is done automatically), this is consistent with the use of
rotate box in our Embedded Objects manual.

18 months agoAdditional.lyx: resave with LyX binary
Scott Kostyshak [Thu, 5 Jan 2023 02:51:56 +0000 (21:51 -0500)]
Additional.lyx: resave with LyX binary

After editing with the external sed command in the previous commit,
now resave with the LyX binary. This eliminates unnecessary language
switches (e.g., no need to switch from "English" to "English" now
that the intermediate switch to "British" is gone).

18 months agoAdditional.lyx: rm English variant switches
Scott Kostyshak [Thu, 5 Jan 2023 02:50:39 +0000 (21:50 -0500)]
Additional.lyx: rm English variant switches

Use the following command to automate the process:

  sed -i "/^\\\lang \(american\|british\)$/d" Additional.lyx

The next commit will just resave the file with LyX, so as to clean
up the file contents after the external command from this commit.

18 months agoAdd note about deprecated layouts.
Pavel Sanda [Wed, 4 Jan 2023 21:13:38 +0000 (22:13 +0100)]
Add note about deprecated layouts.

18 months ago* Additional.lyx : Final remarks from John Hudson
Pavel Sanda [Wed, 4 Jan 2023 20:59:39 +0000 (21:59 +0100)]
* Additional.lyx : Final remarks from John Hudson

18 months agoUpdate entries for Foils, Slides and Reports in Chapter 3 Document classes and do...
John R Hudson [Tue, 3 Jan 2023 11:04:16 +0000 (11:04 +0000)]
Update entries for Foils, Slides and Reports in Chapter 3 Document classes and do final tidying up of Additional.lyx

18 months agoIgnore python cache
Richard Kimberly Heck [Tue, 3 Jan 2023 17:49:28 +0000 (12:49 -0500)]
Ignore python cache

18 months agoInsert entries for Tufte, frletter, G-Brief and lettre into Chapter 3 Document classe...
John R Hudson [Mon, 2 Jan 2023 09:42:38 +0000 (09:42 +0000)]
Insert entries for Tufte, frletter, G-Brief and lettre into Chapter 3 Document classes of Additional.lyx

18 months agoForgotten files
Pavel Sanda [Sun, 1 Jan 2023 21:36:04 +0000 (22:36 +0100)]
Forgotten files

18 months agoAdd KOMA-Script_Book.lyx and associated BibTeX file and CC logo to examples/Books...
John R Hudson [Sun, 1 Jan 2023 16:31:50 +0000 (16:31 +0000)]
Add KOMA-Script_Book.lyx and associated BibTeX file and CC logo to examples/Books and update Makefile.am

18 months agoRevert "New Theorems Module. Contributed by Udicoudco <udifoglle@gmail.com> on the...
Thibaut Cuvelier [Sat, 31 Dec 2022 10:28:56 +0000 (11:28 +0100)]
Revert "New Theorems Module. Contributed by  Udicoudco <udifoglle@gmail.com> on the mailing list. Rebased on top of master."

This reverts commit 42c2a25fb873727d87ce753b3a3ac4e913e36fe0.

18 months agoNew Theorems Module. Contributed by Udicoudco <udifoglle@gmail.com> on the mailing...
Thibaut Cuvelier [Sat, 31 Dec 2022 00:47:37 +0000 (01:47 +0100)]
New Theorems Module. Contributed by  Udicoudco <udifoglle@gmail.com> on the mailing list. Rebased on top of master.

I've modified all the non-AMS theorem modules so they would be independent of packages. currently
the code support \theoremstyle, but only with definition, plain and remark.

I'v added a new theorem module that support the thmtools \listoftheorems.

I've modified the syntax of all theorem modules, such that it would be easier to
create a new one, or maintaining the ones that exists. Instead of using \newtheorem
in the preamble of a lyaout, I wrote \lyx@newtheorem, and in each module I've defiened
\lyx@newtheorem as fitted. This way, there is only need in the files thorems-base, and theorems-extended,
instead of an .inc file for each module.

I've added theorems-labels.inc, a file that suppose to be included in a "Numbered by type" module,
to change the Label and the LabelCounter of the layouts in theorems-base.inc.

Note that in this configuration, all non-AMS modules will clash with the AMS ones, and so as the
proof versions. theorems-proof-std.inc suppose to be in the non-AMS while theorems-proof.inc
should be included only in AMS variants.

18 months agoCare for Qt5 LTS support for macos
Stephan Witt [Fri, 30 Dec 2022 22:37:43 +0000 (23:37 +0100)]
Care for Qt5 LTS support for macos

18 months agoInsert more detail about page layout, Custom Class options KOMA-Script options and...
John R Hudson [Fri, 30 Dec 2022 20:01:21 +0000 (20:01 +0000)]
Insert more detail about page layout, Custom Class options KOMA-Script options and using the book document class in the KOMA-Script section of Chapter 3 Document classes of Additional.lyx and delete the section on KOMA-letter V.1.

18 months agoCare for weird Qt6 package install location of developer tools (moc, uic etc).
Stephan Witt [Fri, 30 Dec 2022 11:08:43 +0000 (12:08 +0100)]
Care for weird Qt6 package install location of developer tools (moc, uic etc).

18 months agoMake code sign operation the final step of package build.
Stephan Witt [Fri, 30 Dec 2022 11:07:20 +0000 (12:07 +0100)]
Make code sign operation the final step of package build.

18 months agoInsert brief introduction to Chapter 3 Document classes, update the introduction...
John R Hudson [Thu, 29 Dec 2022 20:29:36 +0000 (20:29 +0000)]
Insert brief introduction to Chapter 3 Document classes, update the introduction to the AMS document classes section, adding in references to the example files, update the module names used and the Fact, Assumption and Question paragraph styles and mention the (Numbered by Type) modules in the AMS document classes section.

18 months agoFix compiler warning -Wstring-plus-int
Scott Kostyshak [Thu, 29 Dec 2022 21:25:42 +0000 (16:25 -0500)]
Fix compiler warning -Wstring-plus-int

Similar to d44eaa97.

18 months agoInsert entries for Hanging Paragraphs, Initials, Hyphenatable Text Markup and Logical...
John R Hudson [Thu, 29 Dec 2022 11:11:47 +0000 (11:11 +0000)]
Insert entries for Hanging Paragraphs, Initials, Hyphenatable Text Markup and Logical Markup in Chapter 4 Modules of Additional.lyx

18 months agoFix output of tex2lyx messages in runtests.py
Juergen Spitzmueller [Thu, 29 Dec 2022 14:10:05 +0000 (15:10 +0100)]
Fix output of tex2lyx messages in runtests.py

18 months agotex2lyx: Also factor out error and debug messages
Juergen Spitzmueller [Thu, 29 Dec 2022 08:37:00 +0000 (09:37 +0100)]
tex2lyx: Also factor out error and debug messages

18 months agoFix compiler warning -Wstring-plus-int
Scott Kostyshak [Thu, 29 Dec 2022 02:56:18 +0000 (21:56 -0500)]
Fix compiler warning -Wstring-plus-int

Warning was as follows:

  src/tex2lyx/Parser.cpp:898:39: error: adding 'uint32_t' (aka 'unsigned int') to a string does not append to the string [-Werror,-Wstring-plus-int]
                  warning_message("ignoring a char: " + static_cast<uint32_t>(c));
                                  ~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
  src/tex2lyx/Parser.cpp:898:39: note: use array indexing to silence this warning
                  warning_message("ignoring a char: " + static_cast<uint32_t>(c));
                                                      ^
                                  &                   [                         ]
  1 error generated.

18 months ago Solve shortcut conflicts in fr.po
jpc [Wed, 28 Dec 2022 17:05:37 +0000 (18:05 +0100)]
       Solve shortcut conflicts in fr.po

18 months agoInsert entries for Custom Footer/Header Text and Landscape Document Mode and update...
John R Hudson [Wed, 28 Dec 2022 14:11:07 +0000 (14:11 +0000)]
Insert entries for Custom Footer/Header Text and Landscape Document Mode and update the existing entry for Multiple Columns to match the new layout in Chapter 4 Modules of Additional.lyx

18 months agoFactor out tex2lyx warnings and add -q option (#11328)
Juergen Spitzmueller [Wed, 28 Dec 2022 15:29:38 +0000 (16:29 +0100)]
Factor out tex2lyx warnings and add -q option (#11328)

18 months agotex2lyx: exit earlier if input file could not be found
Juergen Spitzmueller [Wed, 28 Dec 2022 13:05:23 +0000 (14:05 +0100)]
tex2lyx: exit earlier if input file could not be found

In particular, do not write an empty .lyx file (#12339)

18 months agoSupport suffix-less tex file input in tex2lyx (#12340)
Juergen Spitzmueller [Wed, 28 Dec 2022 12:34:23 +0000 (13:34 +0100)]
Support suffix-less tex file input in tex2lyx (#12340)

18 months agoAmend febd1855eb: fix compilability
Thibaut Cuvelier [Wed, 28 Dec 2022 11:57:25 +0000 (12:57 +0100)]
Amend febd1855eb: fix compilability

18 months agoUpdate tex2lyx tests again
Juergen Spitzmueller [Wed, 28 Dec 2022 11:31:33 +0000 (12:31 +0100)]
Update tex2lyx tests again

18 months agoUpdate tex2lyx tests after 7868929aacde
Juergen Spitzmueller [Wed, 28 Dec 2022 11:30:48 +0000 (12:30 +0100)]
Update tex2lyx tests after 7868929aacde

18 months agotex2lyx: consider utf8 default encoding in newer LaTeX
Juergen Spitzmueller [Wed, 28 Dec 2022 10:42:59 +0000 (11:42 +0100)]
tex2lyx: consider utf8 default encoding in newer LaTeX

18 months agoInsert entries for the sixteen Maths modules into Chapter 4 Modules of Additional.lyx
John R Hudson [Wed, 28 Dec 2022 10:56:30 +0000 (10:56 +0000)]
Insert entries for the sixteen Maths modules into Chapter 4 Modules of Additional.lyx

18 months agoFix indentation
Juergen Spitzmueller [Wed, 28 Dec 2022 09:58:36 +0000 (10:58 +0100)]
Fix indentation

18 months agotex2lyx: put adjacent comment lines in one ERT inset (#4797)
Juergen Spitzmueller [Wed, 28 Dec 2022 08:40:22 +0000 (09:40 +0100)]
tex2lyx: put adjacent comment lines in one ERT inset (#4797)

18 months agoAmend febd1855eb: fix compilability of tex2lyx
Thibaut Cuvelier [Wed, 28 Dec 2022 01:33:11 +0000 (02:33 +0100)]
Amend febd1855eb: fix compilability of tex2lyx

18 months agoFix a typo in a comment
Thibaut Cuvelier [Wed, 28 Dec 2022 01:32:05 +0000 (02:32 +0100)]
Fix a typo in a comment

18 months agoInsert entries for Noweb, Rnw and Sweave in Chapter 4 Modules of Additional.lyx and...
John R Hudson [Tue, 27 Dec 2022 17:26:44 +0000 (17:26 +0000)]
Insert entries for Noweb, Rnw and Sweave in Chapter 4 Modules of Additional.lyx and make consequential updates to the Literate Programming section in the same document

18 months agoXML: overhaul the tag-comparison operators.
Thibaut Cuvelier [Tue, 27 Dec 2022 15:52:51 +0000 (16:52 +0100)]
XML: overhaul the tag-comparison operators.

First and foremost, this patch implements the latest best practices in C++ (i.e. comparison operators are not member functions).

The main objective of this rewrite is to have these operators callable in slightly more general contexts (*this->asFontTag() == *rhs.asFontTag() yielded an error because no member function could be called). This feature is no more required.

The rewrite took place in the context of https://www.lyx.org/trac/ticket/12585. The first iteration was using more complex code to circumvent XMLStream in DocBook (see details in the bug above and in the mailing list), while this one uses XMLStream fully. The bug was due to font tags being considered equal when they were not, due to the comparison done only on the XML tag and not on the actual font change (XML attributes can complement the tag for various font changes).

18 months agolayout2layout: remove unused regex.
Thibaut Cuvelier [Tue, 27 Dec 2022 02:21:29 +0000 (03:21 +0100)]
layout2layout: remove unused regex.

18 months agoDocBookGenerateTitle: update all layouts.
Thibaut Cuvelier [Fri, 23 Dec 2022 01:26:52 +0000 (02:26 +0100)]
DocBookGenerateTitle: update all layouts.

18 months agoDocBook: add support for DocBookGenerateTitle.
Thibaut Cuvelier [Thu, 22 Dec 2022 03:38:36 +0000 (04:38 +0100)]
DocBook: add support for DocBookGenerateTitle.

The new parameter allows more flexibility when encoding some elements that have a poor mapping in DocBook, like theorems. The major use is to wrap the environment in a generic container, figure, which requires a title (but none is available).

18 months agoMaster/Child: do not clean includeonly list while editing (part of #12470)
Juergen Spitzmueller [Tue, 27 Dec 2022 14:36:36 +0000 (15:36 +0100)]
Master/Child: do not clean includeonly list while editing (part of #12470)

18 months agoMasterChild.ui: Group radio buttons (part of #12470)
Juergen Spitzmueller [Tue, 27 Dec 2022 14:09:37 +0000 (15:09 +0100)]
MasterChild.ui: Group radio buttons (part of #12470)

18 months agoInsert entries for Customizable lists and Paragraph lists into Chapter 4 Modules...
John R Hudson [Tue, 27 Dec 2022 10:51:40 +0000 (10:51 +0000)]
Insert entries for Customizable lists and Paragraph lists into Chapter 4 Modules of Additional.lyx

18 months agoDocBook: for computing font changes, simplify code by removing state evolution from...
Thibaut Cuvelier [Mon, 26 Dec 2022 01:45:03 +0000 (02:45 +0100)]
DocBook: for computing font changes, simplify code by removing state evolution from iteration to iteration. This surely makes the code slightly slower (although the compiler should be smart enough), but (much) easier to reason about.

18 months agoDocBook: add some TODOs for the future.
Thibaut Cuvelier [Mon, 26 Dec 2022 23:02:30 +0000 (00:02 +0100)]
DocBook: add some TODOs for the future.

18 months agolayout2layout: improve coding style.
Thibaut Cuvelier [Mon, 26 Dec 2022 20:21:52 +0000 (21:21 +0100)]
layout2layout: improve coding style.

Useless parentheses (not helping with readability either) and semicolon. Redo indentation to be consistent throughout the file. Also, fix typos along the way.

18 months agoAdd comments about variable usage.
Thibaut Cuvelier [Mon, 26 Dec 2022 01:44:57 +0000 (02:44 +0100)]
Add comments about variable usage.

18 months agoFix a typo in a comment.
Thibaut Cuvelier [Mon, 26 Dec 2022 01:44:29 +0000 (02:44 +0100)]
Fix a typo in a comment.

18 months agoInsetIPAMacro: implement the XHTML conversion, refactor plaintext and DocBook to...
Thibaut Cuvelier [Mon, 26 Dec 2022 19:50:48 +0000 (20:50 +0100)]
InsetIPAMacro: implement the XHTML conversion, refactor plaintext and DocBook to share more code.

18 months agoInsert four entries for Floats & Captions modules, four entries for Foot- and Endnote...
John R Hudson [Mon, 26 Dec 2022 19:06:04 +0000 (19:06 +0000)]
Insert four entries for Floats & Captions modules, four entries for Foot- and Endnotes modules and two entries for Leisure, Sports and Music modules into Chapter 4 Modules of Additional.lyx.

18 months agoInsetMathExFunc: use XML entities instead of HTML in MathML.
Thibaut Cuvelier [Mon, 26 Dec 2022 19:38:06 +0000 (20:38 +0100)]
InsetMathExFunc: use XML entities instead of HTML in MathML.

This part should have been committed with bc73a857 in the first place.

18 months agoInsetMathSpace: use XML entities instead of HTML in MathML.
Thibaut Cuvelier [Mon, 26 Dec 2022 19:35:26 +0000 (20:35 +0100)]
InsetMathSpace: use XML entities instead of HTML in MathML.

This part should have been committed with bc73a857 in the first place.

18 months agoInsetIPAMacro: refactor code between DocBook and XHTML.
Thibaut Cuvelier [Mon, 26 Dec 2022 19:23:05 +0000 (20:23 +0100)]
InsetIPAMacro: refactor code between DocBook and XHTML.

18 months agoDocBook/HTML: use XML entities for spaces.
Thibaut Cuvelier [Mon, 26 Dec 2022 18:11:41 +0000 (19:11 +0100)]
DocBook/HTML: use XML entities for spaces.

This part should have been committed with bc73a857 in the first place.

18 months agoRevert doc update for Additional.lyx so maitenance work can continue.
Pavel Sanda [Mon, 26 Dec 2022 16:46:55 +0000 (17:46 +0100)]
Revert doc update for Additional.lyx so maitenance work can continue.

18 months ago Update fr.po
jpc [Mon, 26 Dec 2022 16:11:34 +0000 (17:11 +0100)]
     Update fr.po

18 months agode.po
Juergen Spitzmueller [Mon, 26 Dec 2022 12:51:19 +0000 (13:51 +0100)]
de.po

18 months agoMinor doc updates
Juergen Spitzmueller [Mon, 26 Dec 2022 12:43:11 +0000 (13:43 +0100)]
Minor doc updates