|
| 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\<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 | + |
0 commit comments