SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit 873de4d9 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Debug metadata

parent 395f3c0c
No related branches found
No related tags found
No related merge requests found
...@@ -593,7 +593,7 @@ def metadata_xml_deposit(request, doi_label, option='test'): ...@@ -593,7 +593,7 @@ def metadata_xml_deposit(request, doi_label, option='test'):
'<doi_batch_id>'))[2].partition('</doi_batch_id>')[0] '<doi_batch_id>'))[2].partition('</doi_batch_id>')[0]
path = (settings.MEDIA_ROOT + publication.in_issue.path + '/' path = (settings.MEDIA_ROOT + publication.in_issue.path + '/'
+ publication.get_paper_nr() + '/' + publication.doi_label.replace('.', '_') + publication.get_paper_nr() + '/' + publication.doi_label.replace('.', '_')
+ '_' + timestamp + '.xml') + '_Crossref_' + timestamp + '.xml')
if os.path.isfile(path): if os.path.isfile(path):
errormessage = 'The metadata file for this metadata timestamp already exists' errormessage = 'The metadata file for this metadata timestamp already exists'
return render(request, 'scipost/error.html', context={'errormessage': errormessage}) return render(request, 'scipost/error.html', context={'errormessage': errormessage})
...@@ -634,9 +634,9 @@ def metadata_xml_deposit(request, doi_label, option='test'): ...@@ -634,9 +634,9 @@ def metadata_xml_deposit(request, doi_label, option='test'):
# Save a copy to the filename without timestamp # Save a copy to the filename without timestamp
path1 = (settings.MEDIA_ROOT + publication.in_issue.path + '/' path1 = (settings.MEDIA_ROOT + publication.in_issue.path + '/'
+ publication.get_paper_nr() + '/' + publication.doi_label.replace('.', '_') + publication.get_paper_nr() + '/' + publication.doi_label.replace('.', '_')
+ '.xml') + '_Crossref.xml')
f = open(path1, 'w') f = open(path1, 'w')
f.write(xml) f.write(publication.metadata_xml)
f.close() f.close()
context = { context = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment