#205: Repair the TracNav bar
------------------------+---------------------------------------------------
Reporter: levill_r | Owner: Olena Team
Type: defect | Status: new
Priority: minor | Milestone:
Component: Trac | Version: 1.0
Keywords: system web |
------------------------+---------------------------------------------------
Since the update of Trac, many Wiki pages using the !TracNav plug-in won't
display the !TracNav bar (menu on the right of some pages), and show this
error instead :
{{{
Error: Failed to load processor TracNav
No macro or processor named 'TracNav' found
}}}
The curious thing is, the !TracNav bar is working ''sometimes''!!
To see this in action, try reloading a page several times (e.g.
CodingStyle): sometimes you'll see the bar, other times you'll get the
error.
I assume other Tracs ([https://trac.lrde.org/vaucanson/ Vaucanson's],
[https://trac.lrde.org/transformers/ Transfomers'], etc.) face the same
problem; we should discuss this issue with their maintainers. Therefore I
(Roland) am cc'ing this ticket to the `projects` mailing list as well.
--
Ticket URL: <https://trac.lrde.org/olena/ticket/205>
Olena <http://olena.lrde.epita.fr>
Olena, a generic and efficient C++ image processing library.
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Nolimips, a MIPS simulator with infinitely many registers".
The branch master has been updated
via 2774636c4f02ea16abd7bcd3afa1ce7eb78a9918 (commit)
via 248eb106a15f23b1cd547d75096010041077d3e7 (commit)
from fd02bdda9547f7e7b259d24354c14e5d39d02366 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
2774636 Tell Git to ignore more files installed by Automake.
248eb10 Bison 2.7 compatibility.
-----------------------------------------------------------------------
Summary of changes:
build-aux/.gitignore | 2 ++
src/parse/libparse.cc | 4 ++--
2 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
Nolimips, a MIPS simulator with infinitely many registers
* src/parse/libparse.cc (parse::parse): Do not copy the parser
instance.
---
src/parse/libparse.cc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/parse/libparse.cc b/src/parse/libparse.cc
index 66c72b7..29c0e4b 100644
--- a/src/parse/libparse.cc
+++ b/src/parse/libparse.cc
@@ -1,6 +1,6 @@
//
// This file is part of Nolimips, a MIPS simulator with unlimited registers
-// Copyright (C) 2003, 2004 Benoit Perrot <benoit(a)lrde.epita.fr>
+// Copyright (C) 2003, 2004, 2013 Benoit Perrot <benoit(a)lrde.epita.fr>
//
// Nolimips is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -45,7 +45,7 @@ namespace parse
program_builder.set_nop_after_branch(nop_after_branch_p);
std::string dummy(filename);
- yy::parser parser = yy::parser(dummy, program_builder);
+ yy::parser parser(dummy, program_builder);
parser.set_debug_level(trace_parse_p);
scan_open(filename, trace_scan_p);
--
1.7.10.4