Skip to content

Commit be3ac25

Browse files
committed
Added config for JabRef 5.15.
1 parent c0c6840 commit be3ac25

File tree

3 files changed

+104
-1
lines changed

3 files changed

+104
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ For every issue, please provide a link to the relevant html page or section. For
1212

1313
We suggest that feature requests and ideas for improvement are directed to [discussions](https://github.com/APIdia-net/apidia.net/discussions) rather than to issues.
1414

15-
As of this writing, this repository is empty. Eventually, it will host some publicly relevant documentation and config data for APIdia, such that users can contribute adjustments via pull requests.
15+
The config folder of this repository can host custom configurations for projects on APIdia. For every doc profile on APIdia, a similar subfolder as on the website can be rooted under the config folder and contain several config files. These files are taken into account for future builds and can be edited by users via pull requests.
1616

config/java/JabRef/5.15/hotfixes.yml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
# This file contains documentation "hotfixes", i.e. fixes that are applied to the
2+
# documentation as it is generated, but not to the original source files.
3+
# These fixes are usually offered to the original project as a pull request, so
4+
# they may get applied to the original source files of a later release eventually.
5+
# To adjust content of this file, please create a pull request to this repository.
6+
7+
# Each fix is listed under a scope header, which is a regex to identify
8+
# fully qualified names of target items (any entity that has an associated doc
9+
# comment: classes, packages, members, etc.). For each target, each fix listed under
10+
# the scope header is applied to its associated doc comment in a search/replace manner.
11+
# The first item of each fix is a regex used for search and the second item is a
12+
# replacement string with the notation \g<i> referring to the ith group for i > 0 or
13+
# to the whole match for i = 0. Fixes are applied in the order of appearance in this file,
14+
# but it is strongly recommended that they are written such that the result is independent
15+
# of the order of application. It is further recommended to restrict socpe regexes to
16+
# characters such that they can be written without quotation signs in yaml syntax.
17+
18+
# This file is licensed under the same license as the project it applies to.
19+
# Copyright is shared among all contributors.
20+
21+
org.jabref.logic.importer.fetcher.DoiResolution.citationMetaTag:
22+
'<meta name="citation_pdf_url">': '{@code <meta name="citation_pdf_url">}'
23+
'https://scholar.google.com/intl/de/scholar/inclusion.html#indexing': '{@link https://scholar.google.com/intl/de/scholar/inclusion.html#indexing}'
24+
25+
org.jabref.logic.util.io.XMLUtil.getAttributeContent:
26+
'<item attributeName="content" />': '{@code <item attributeName="content" />}'
27+
28+
org.jabref.logic.xmp.XmpUtilWriter.generateXmpStringWithoutXmpDeclaration:
29+
'<\?xpacket begin=...>': '{@code <?xpacket begin=...>}'
30+
'<br/>': ''
31+
32+
org.jabref.gui.fieldeditors.URLUtil.cleanGoogleSearchURL:
33+
'@code\{url\}': '{@code url}'
34+
'<example>': '<h4>Example</h4>'
35+
'</example>': ''
36+
'https:[^\s].*': '{@code \g<0>}'
37+
38+
org.jabref.(logic|model).*:
39+
'<example>': '<h4>Example</h4>
40+
41+
<pre>{@code '
42+
'</example>': '}</pre>'
43+
'<emph>': '<em>'
44+
'</emph>': '</em>'
45+
46+
org.jabref.logic.util.io.FileUtil.detectBadFileName:
47+
'See also \{@link (.*?)\}': '@see \g<1>'
48+
49+
org.jabref.model.entry.identifier.DOI.parse:
50+
'<c>IllegalArgumentException</c>': '{@link java.lang.IllegalArgumentException IllegalArgumentException}'
51+
'Optional.isPresent\(\)': '{@link java.util.Optional.isPresent() Optional.isPresent()}'
52+
'Optional\&lt;DOI>': '{@code Optional<DOI>}'
53+
54+
org.jabref.logic.util.io.XMLUtil.*:
55+
'<item>': '<pre>{@code <item>'
56+
'</item>': '</item>}</pre>'
57+
58+
org.jabref.gui.desktop.os.*:
59+
'open handling methods <br>': 'open handling methods.
60+
61+
<p>'
62+
'\* <p>': '<p>'
63+
'{@link Launcher#addLogToDisk}': '{@link Launcher#initLogging}.'
64+
'https://tinylog.org/v2/configuration/': '@see https://tinylog.org/v2/configuration'
65+
66+
org.jabref.model.groups.GroupTreeNode.setGroup:
67+
'}}': '}'
68+
69+
org.jabref.gui.fieldeditors.contextmenu.EditorMenus:
70+
'org.jabref.gui.fieldeditors.EditorTextArea#initContextMenu\(java.util.function.Supplier\)': 'org.jabref.gui.fieldeditors.EditorTextArea#initContextMenu(java.util.function.Supplier,
71+
org.jabref.gui.keyboard.KeyBindingRepository) EditorTextArea#initContextMenu'
72+
73+
org.jabref.logic.quality.consistency.BibliographyConsistencyCheck.check:
74+
'#writeFindingsAsCsv\(Result, Path, BibEntryTypesManager, BibDatabaseMode\)}': '#writeFindings()}.'
75+
76+
org.jabref.*:
77+
'{@see ': 'See {@link '
78+
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Properties in this file can augment or override information
2+
# retrieved from a project's Maven pom file.
3+
4+
# This file is licensed under the same license as the project it applies to.
5+
# Copyright is shared among all contributors.
6+
7+
fullname: 'JabRef'
8+
subtitle: 'JabRef Bibliography Management'
9+
description: 'Stay on top of your literature: JabRef helps you to collect and organize
10+
sources, find the paper you need and discover the latest research: JabRef is an
11+
open-source, cross-platform citation and reference management tool.'
12+
homepage: 'https://jabref.org'
13+
devpage: 'https://github.com/JabRef/jabref'
14+
docpage: 'https://docs.jabref.org/'
15+
# projectpage:
16+
gettingstarted: 'https://docs.jabref.org/getting-started'
17+
licenseurl: 'https://raw.githubusercontent.com/JabRef/jabref/refs/heads/main/LICENSE'
18+
wiki: 'https://github.com/JabRef/jabref/wiki'
19+
devguide: 'https://devdocs.jabref.org'
20+
issues: 'https://github.com/JabRef/jabref/issues'
21+
forum: 'https://discourse.jabref.org'
22+
mailinglistspage: 'https://sourceforge.net/p/jabref/mailman/'
23+
vc_uri: 'https://github.com/JabRef/jabref.git'
24+
vc_dev_uri: '[email protected]:JabRef/jabref.git'
25+
release_date: '2024-07-10'

0 commit comments

Comments
 (0)