-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MS Office XML: Export month name (#7677)
* MS Office XML: Export month name Fixe https://discourse.jabref.org/t/export-month-as-text-not-number/2685 * Update CHANGELOG.md fix checkstyle in changelog * remove unceessary toStrng call, add test for biblatex as well
- Loading branch information
1 parent
7f31329
commit f504ff0
Showing
5 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
src/test/resources/org/jabref/logic/exporter/MsBibExportFormatTestDayBiblatex.bib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
% Encoding: UTF-8 | ||
@TechReport{, | ||
author = {Sam and jason}, | ||
date = {2002-07-03}, | ||
} | ||
|
||
@Comment{jabref-meta: databaseType:biblatex;} |
23 changes: 23 additions & 0 deletions
23
src/test/resources/org/jabref/logic/exporter/MsBibExportFormatTestDayBiblatex.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<b:Sources xmlns:b="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" xmlns="http://schemas.openxmlformats.org/officeDocument/2006/bibliography" SelectedStyle=""> | ||
<b:Source> | ||
<b:BIBTEX_Entry>techreport</b:BIBTEX_Entry> | ||
<b:SourceType>Report</b:SourceType> | ||
<b:Author> | ||
<b:Author> | ||
<b:NameList> | ||
<b:Person> | ||
<b:Last>Sam</b:Last> | ||
</b:Person> | ||
<b:Person> | ||
<b:Last>jason</b:Last> | ||
</b:Person> | ||
</b:NameList> | ||
</b:Author> | ||
</b:Author> | ||
<b:Year>2002</b:Year> | ||
<b:Month>July</b:Month> | ||
<b:Day>3</b:Day> | ||
<b:ThesisType>Tech. rep.</b:ThesisType> | ||
</b:Source> | ||
</b:Sources> |