﻿ticket,summary,type,release,owner,status,created,modified,_description,_reporter
12424,BibAdd with attachment fails on pages which are not top level,defect,,,new,2015-07-02T16:30:50+02:00,2020-05-23T07:33:14+02:00,"BibAdd fails e.g. in this case:

{{{[[BibAdd(attachment:section/page/bib.bib]]}}} yields {{{Attachment 'wiki:section/page: bib.bib' does not exist.}}}.

Patch:

{{{
 1.0/tracbib/source.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/1.0/tracbib/source.py b/1.0/tracbib/source.py
index e48c5b1..77005b5 100644
--- a/1.0/tracbib/source.py
+++ b/1.0/tracbib/source.py
@@ -124,7 +124,7 @@ class BibtexSourceAttachment(Component):
         page = None
         file = arg[1]

-        path_info = arg[1].split('/', 1)  # greedy! split wikipath and filename
+        path_info = arg[1].rsplit('/', 1)  # greedy! split wikipath and filename

         if len(path_info) > 2:
             raise TracError('Usage: BibAdd(attachment:[path/to/]file)')
}}}",HMuentinga
11296,Patch set for minor enhancements / bug fixes.,enhancement,1.0,,new,2013-08-30T16:57:10+02:00,2020-05-23T07:32:11+02:00,"Please, find attached a patch set for minor enhancements / bug fixes. All patches come with their commit message.

0001-New-integer-option-ieee_etal.patch
0002-Fix-double-markup-escaping.patch
0003-New-macro-for-outputting-a-list-of-formatted-referen.patch
",Pierre-Yves Strub
13780,Incompatible with Trac 1.4; included code patch to correct,defect,1.4,Roman Mohr,new,2020-04-18T22:55:48+02:00,2020-05-23T07:31:23+02:00,"After upgrading to Trac 1.4.1, this plugin broke. With some debugging, I isolated a few issues. Please note that I have NOT tested the ""auto"" .bib file functionality, I only corrected the issue I saw based on the error; however, since I don't use the functionality, it may have simply hidden a downstream error.

The main issue I corrected was related to the loaded .bib file(s). At the same time, I changed the ""References"" H1 header since it broke formatting on various of my pages and replaced it with a horizontal rule if no title/label (per original functionality) is configured. For the latter part, those changes can be ignored but are included as I wanted to do a full diff between the modified files for your review.",chad.trytten@…
12425,Use current page as default instead of WikiStart for attachments,defect,,,new,2015-07-02T16:33:29+02:00,2020-05-17T11:12:36+02:00,"{{{[[BibAdd(attachment:bib.bib)]]}}} should look for attachments on current page as default, not !WikiStart.

Patch:

{{{
 1.0/tracbib/source.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/1.0/tracbib/source.py b/1.0/tracbib/source.py
index 77005b5..df9535f 100644
--- a/1.0/tracbib/source.py
+++ b/1.0/tracbib/source.py
@@ -130,7 +130,7 @@ class BibtexSourceAttachment(Component):
             raise TracError('Usage: BibAdd(attachment:[path/to/]file)')
         elif len(path_info) == 1:
             file = path_info[0]
-            page = req.args.get('page')
+            page = req.args.get('id')
             if page is None:  # TODO: clean solution
                 page = 'WikiStart'
             bib = Attachment(self.env, realm, page, file)

}}}",HMuentinga
12122,Put option for ordering with author name,enhancement,,,new,2014-12-24T14:39:34+01:00,2019-05-03T20:52:53+02:00,Can you out an option for sorting with author name?,anonymous
10027,COinS Rendering,task,0.11,,new,2012-05-11T17:47:41+02:00,2017-10-14T06:44:33+02:00,,Roman Mohr
12041,# is misshown and note is not displayed,defect,,,new,2014-10-31T11:36:36+01:00,2017-10-14T06:44:33+02:00,"Hi,

For example this:

{{{
@Misc{ref:3:3,
author = ""Arch Linux"",
title = ""FS#18864 - Consider enabling GCC's stack-smashing protection (ProPolice, SSP) for all packages"",
url = ""https://bugs.archlinux.org/task/18864"",
note = ""Darrer accés 2014-04-09.""}
}}}

is shown wrongly. The '#' does not appear in the title. And the note is not displayed as part or bibitem",somenxavier@…
12095,"If you put new reference in comment, then the reference list in the description is not updated",defect,,,new,2014-12-06T19:28:20+01:00,2017-10-14T06:44:33+02:00,"Put
{{{
[[BibCite(ref:18)]] [[BibCite(ref:19)]]

}}}

and the list in [[BibRef]] is not updated. (I assume that ref:18 and ref:19 are new references not cited in description from ticket)",anonymous
12959,Accented characters in author entry,defect,1.0,,new,2016-11-17T17:41:45+01:00,2017-10-14T06:44:33+02:00,"At first every accented character was not handle well by `bibtexparser.py` owing to the use of the original LaTeX syntax with escaped codes i.e. for example `\'{e}`. So I have modified our original BibTeX file by putting everything inside braces.[[BR]]
It solved almost all typos but I still have some for the author entry. Instead of the good characters I find the Unicode codes `&#232;`, `&#233;` and `&#250;` respectively for `é`, `è` and `'` characters.[[BR]]
Give a try to modify `default_charset` to `iso-8859-1` (latin1) or `iso-8859-15` (latin9) but no success.",ntmlod
