Merged in [19718] from rjsparks@nostrum.com:

Update the utility that generates batches of bibxml3 files to match the way the view uses the templates.
 - Legacy-Id: 19734
Note: SVN reference [19718] has been migrated to Git commit 5603079b9b
This commit is contained in:
Robert Sparks 2021-12-01 22:53:35 +00:00
commit 5662336778

View file

@ -82,7 +82,7 @@ class Command(BaseCommand):
if e.rev == h.rev:
doc = h
break
ref_text = '%s' % render_to_string('doc/bibxml.xml', {'doc': doc, 'doc_bibtype':'I-D'})
ref_text = '%s' % render_to_string('doc/bibxml.xml', {'name':doc.name, 'doc': doc, 'doc_bibtype':'I-D'})
if e.rev == e.doc.rev:
ref_file_name = os.path.join(bibxmldir, 'reference.I-D.%s.xml' % (doc.name[6:], ))
self.write(ref_file_name, ref_text)