mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 20:32:49 +00:00
e30f3d76d2
This commit does a bulk fix of incorrect annotations (comments) at the end of namespaces. The commit was generated by initially running clang-format, and then from the diff of the result extracting the hunks corresponding to fixes of namespace comments. The changes being applied and all the results have been manually reviewed. The source code successfully builds on macOS. Further details on the steps below, in case they're of interest to someone else in the future. 1. Checkout a fresh and up to date version of src/ git pull && git checkout -- src && git status src 2. Ensure there's a suitable .clang-format in place, i.e. with options to fix the comment at the end of namespaces, including: FixNamespaceComments: true SpacesBeforeTrailingComments: 1 and that clang-format is >= 5.0.0, by doing e.g.: clang-format -dump-config | grep Comments: clang-format --version 3. Apply clang-format to the source: clang-format -i $(find src -name "*.cpp" -or -name "*.h") 4. Create and filter out hunks related to fixing the namespace git diff -U0 src > tmp.patch grepdiff '^} // namespace' --output-matching=hunk tmp.patch > fix_namespace.patch 5. Filter out hunks corresponding to simple fixes into to a separate patch: pcregrep -M -e '^diff[^\n]+\nindex[^\n]+\n--- [^\n]+\n\+\+\+ [^\n]+\n' \ -e '^@@ -[0-9]+ \+[0-9]+ @@[^\n]*\n-\}[^\n]*\n\+\}[^\n]*\n' \ fix_namespace.patch > fix_namespace_simple.patch 6. Manually review the simple patch and then apply it, after first restoring the source. git checkout -- src patch -p1 < fix_namespace_simple.path 7. Manually review the (simple) changes and then stage the changes git diff src git add src 8. Again apply clang-format and filter out hunks related to any remaining fixes to the namespace, this time filter with more context. There will be fewer hunks as all the simple cases have already been handled: clang-format -i $(find src -name "*.cpp" -or -name "*.h") git diff src > tmp.patch grepdiff '^} // namespace' --output-matching=hunk tmp.patch > fix_namespace2.patch 9. Manually review/edit the resulting patch file to remove hunks for files which need to be dealt with manually, noting the file names and line numbers. Then restore files to as before applying clang-format and apply the patch: git checkout src patch -p1 < fix_namespace2.patch 10. Manually fix the files noted in the previous step. Stage files, review changes and commit.
286 lines
7.2 KiB
C++
286 lines
7.2 KiB
C++
/**
|
|
* \file InsetTOC.cpp
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "InsetTOC.h"
|
|
|
|
#include "Buffer.h"
|
|
#include "BufferParams.h"
|
|
#include "BufferView.h"
|
|
#include "Cursor.h"
|
|
#include "DispatchResult.h"
|
|
#include "Font.h"
|
|
#include "FuncRequest.h"
|
|
#include "Language.h"
|
|
#include "LaTeXFeatures.h"
|
|
#include "OutputParams.h"
|
|
#include "output_xhtml.h"
|
|
#include "Paragraph.h"
|
|
#include "ParagraphParameters.h"
|
|
#include "TextClass.h"
|
|
#include "TocBackend.h"
|
|
|
|
#include "support/debug.h"
|
|
#include "support/gettext.h"
|
|
#include "support/lassert.h"
|
|
|
|
#include <ostream>
|
|
|
|
using namespace std;
|
|
|
|
namespace lyx {
|
|
|
|
namespace {
|
|
string cmd2type(string const & cmd)
|
|
{
|
|
if (cmd == "lstlistoflistings")
|
|
return "listing";
|
|
return cmd;
|
|
}
|
|
} // namespace
|
|
|
|
|
|
InsetTOC::InsetTOC(Buffer * buf, InsetCommandParams const & p)
|
|
: InsetCommand(buf, p)
|
|
{}
|
|
|
|
|
|
ParamInfo const & InsetTOC::findInfo(string const & /* cmdName */)
|
|
{
|
|
static ParamInfo param_info_;
|
|
if (param_info_.empty()) {
|
|
param_info_.add("type", ParamInfo::LATEX_REQUIRED);
|
|
}
|
|
return param_info_;
|
|
}
|
|
|
|
|
|
bool InsetTOC::isCompatibleCommand(string const & cmd)
|
|
{
|
|
return cmd == defaultCommand() || cmd == "lstlistoflistings";
|
|
}
|
|
|
|
|
|
docstring InsetTOC::screenLabel() const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
return buffer().B_("Table of Contents");
|
|
if (getCmdName() == "lstlistoflistings")
|
|
return buffer().B_("List of Listings");
|
|
return _("Unknown TOC type");
|
|
}
|
|
|
|
|
|
void InsetTOC::doDispatch(Cursor & cur, FuncRequest & cmd) {
|
|
switch (cmd.action()) {
|
|
case LFUN_MOUSE_RELEASE:
|
|
if (!cur.selection() && cmd.button() == mouse_button::button1) {
|
|
cur.bv().showDialog("toc", params2string(params()));
|
|
cur.dispatched();
|
|
}
|
|
break;
|
|
|
|
default:
|
|
InsetCommand::doDispatch(cur, cmd);
|
|
}
|
|
}
|
|
|
|
|
|
docstring InsetTOC::layoutName() const
|
|
{
|
|
if (getCmdName() == "lstlistoflistings") {
|
|
if (buffer().params().use_minted)
|
|
return from_ascii("TOC:MintedListings");
|
|
else
|
|
return from_ascii("TOC:Listings");
|
|
}
|
|
return from_ascii("TOC");
|
|
}
|
|
|
|
|
|
void InsetTOC::validate(LaTeXFeatures & features) const
|
|
{
|
|
InsetCommand::validate(features);
|
|
features.useInsetLayout(getLayout());
|
|
if (getCmdName() == "lstlistoflistings") {
|
|
if (buffer().params().use_minted)
|
|
features.require("minted");
|
|
else
|
|
features.require("listings");
|
|
}
|
|
}
|
|
|
|
|
|
int InsetTOC::plaintext(odocstringstream & os,
|
|
OutputParams const &, size_t max_length) const
|
|
{
|
|
os << screenLabel() << "\n\n";
|
|
buffer().tocBackend().writePlaintextTocList(cmd2type(getCmdName()), os, max_length);
|
|
return PLAINTEXT_NEWLINE;
|
|
}
|
|
|
|
|
|
int InsetTOC::docbook(odocstream & os, OutputParams const &) const
|
|
{
|
|
if (getCmdName() == "tableofcontents")
|
|
os << "<toc></toc>";
|
|
return 0;
|
|
}
|
|
|
|
|
|
void InsetTOC::makeTOCEntry(XHTMLStream & xs,
|
|
Paragraph const & par, OutputParams const & op) const
|
|
{
|
|
string const attr = "href='#" + par.magicLabel() + "' class='tocentry'";
|
|
xs << html::StartTag("a", attr);
|
|
|
|
// First the label, if there is one
|
|
docstring const & label = par.params().labelString();
|
|
if (!label.empty())
|
|
xs << label << " ";
|
|
// Now the content of the TOC entry, taken from the paragraph itself
|
|
OutputParams ours = op;
|
|
ours.for_toc = true;
|
|
Font const dummy;
|
|
par.simpleLyXHTMLOnePar(buffer(), xs, ours, dummy);
|
|
|
|
xs << html::EndTag("a") << html::CR();
|
|
}
|
|
|
|
|
|
void InsetTOC::makeTOCWithDepth(XHTMLStream & xs,
|
|
Toc const & toc, OutputParams const & op) const
|
|
{
|
|
Toc::const_iterator it = toc.begin();
|
|
Toc::const_iterator const en = toc.end();
|
|
int lastdepth = 0;
|
|
for (; it != en; ++it) {
|
|
// do not output entries that are not actually included in the output,
|
|
// e.g., stuff in non-active branches or notes or whatever.
|
|
if (!it->isOutput())
|
|
continue;
|
|
|
|
// First, we need to manage increases and decreases of depth
|
|
// If there's no depth to deal with, we artifically set it to 1.
|
|
int const depth = it->depth();
|
|
|
|
// Ignore stuff above the tocdepth
|
|
if (depth > buffer().params().tocdepth)
|
|
continue;
|
|
|
|
if (depth > lastdepth) {
|
|
xs << html::CR();
|
|
// open as many tags as we need to open to get to this level
|
|
// this includes the tag for the current level
|
|
for (int i = lastdepth + 1; i <= depth; ++i) {
|
|
stringstream attr;
|
|
attr << "class='lyxtoc-" << i << "'";
|
|
xs << html::StartTag("div", attr.str()) << html::CR();
|
|
}
|
|
lastdepth = depth;
|
|
}
|
|
else if (depth < lastdepth) {
|
|
// close as many as we have to close to get back to this level
|
|
// this includes closing the last tag at this level
|
|
for (int i = lastdepth; i >= depth; --i)
|
|
xs << html::EndTag("div") << html::CR();
|
|
// now open our tag
|
|
stringstream attr;
|
|
attr << "class='lyxtoc-" << depth << "'";
|
|
xs << html::StartTag("div", attr.str()) << html::CR();
|
|
lastdepth = depth;
|
|
} else {
|
|
// no change of level, so close and open
|
|
xs << html::EndTag("div") << html::CR();
|
|
stringstream attr;
|
|
attr << "class='lyxtoc-" << depth << "'";
|
|
xs << html::StartTag("div", attr.str()) << html::CR();
|
|
}
|
|
|
|
// Now output TOC info for this entry
|
|
Paragraph const & par = it->dit().innerParagraph();
|
|
makeTOCEntry(xs, par, op);
|
|
}
|
|
for (int i = lastdepth; i > 0; --i)
|
|
xs << html::EndTag("div") << html::CR();
|
|
}
|
|
|
|
|
|
void InsetTOC::makeTOCNoDepth(XHTMLStream & xs,
|
|
Toc const & toc, const OutputParams & op) const
|
|
{
|
|
Toc::const_iterator it = toc.begin();
|
|
Toc::const_iterator const en = toc.end();
|
|
for (; it != en; ++it) {
|
|
// do not output entries that are not actually included in the output,
|
|
// e.g., stuff in non-active branches or notes or whatever.
|
|
if (!it->isOutput())
|
|
continue;
|
|
|
|
xs << html::StartTag("div", "class='lyxtoc-flat'") << html::CR();
|
|
|
|
Paragraph const & par = it->dit().innerParagraph();
|
|
makeTOCEntry(xs, par, op);
|
|
|
|
xs << html::EndTag("div");
|
|
}
|
|
}
|
|
|
|
|
|
docstring InsetTOC::xhtml(XHTMLStream &, OutputParams const & op) const
|
|
{
|
|
string const & command = getCmdName();
|
|
if (command != "tableofcontents" && command != "lstlistoflistings") {
|
|
LYXERR0("TOC type " << command << " not yet implemented.");
|
|
LASSERT(false, return docstring());
|
|
}
|
|
|
|
shared_ptr<Toc const> toc =
|
|
buffer().masterBuffer()->tocBackend().toc(cmd2type(command));
|
|
if (toc->empty())
|
|
return docstring();
|
|
|
|
// we'll use our own stream, because we are going to defer everything.
|
|
// that's how we deal with the fact that we're probably inside a standard
|
|
// paragraph, and we don't want to be.
|
|
odocstringstream ods;
|
|
XHTMLStream xs(ods);
|
|
|
|
xs << html::StartTag("div", "class='toc'");
|
|
|
|
// Title of TOC
|
|
InsetLayout const & il = getLayout();
|
|
string const & tag = il.htmltag();
|
|
docstring title = screenLabel();
|
|
Layout const & lay = buffer().params().documentClass().htmlTOCLayout();
|
|
string const & tocclass = lay.defaultCSSClass();
|
|
string const tocattr = "class='tochead " + tocclass + "'";
|
|
xs << html::StartTag(tag, tocattr)
|
|
<< title
|
|
<< html::EndTag(tag);
|
|
|
|
// with lists of listings, at least, there is no depth
|
|
// to worry about. so the code can be simpler.
|
|
bool const use_depth = (command == "tableofcontents");
|
|
|
|
// Output of TOC
|
|
if (use_depth)
|
|
makeTOCWithDepth(xs, *toc, op);
|
|
else
|
|
makeTOCNoDepth(xs, *toc, op);
|
|
|
|
xs << html::EndTag("div") << html::CR();
|
|
return ods.str();
|
|
}
|
|
|
|
|
|
} // namespace lyx
|