summaryrefslogtreecommitdiff
path: root/sphinx
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Merge pull request #8014 from jakobandersen/utzig-named-variadic-argJakob Lykke Andersen2020-07-271-3/+17
| |\ \ \ \ | | | | | | | | | | | | C, named variadic arg
| | * | | | C, changelog and test for named variadic argsJakob Lykke Andersen2020-07-271-0/+2
| | | | | |
| | * | | | domains: c: add support for named variadic argumentFabio Utzig2020-07-231-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for gcc extensions which allow variadic arguments to be named: https://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html A named variadic argument takes the form "<name>..." with spaces around allowed and must be the last argument. Currently it generates a warning "Invalid C declaration: Expected identifier, ')', or ',' in macro parameter list." Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
| * | | | | Fix typoFabio Utzig2020-07-271-1/+1
| | |/ / / | |/| | | | | | | | | | | | | Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
| * | | | Merge pull request #7992 from jobec/3.xTakeshi KOMIYA2020-07-262-3/+2
| |\ \ \ \ | | | | | | | | | | | | Allow searching for things like serials, phone numbers, etc
| | * | | | Allow searching for things like serials, phone numbers, etcJoris Beckers2020-07-222-3/+2
| | |/ / /
| * | | | Fix typoJoachim Jablon2020-07-261-1/+1
| | |_|/ | |/| |
| * | | Merge pull request #8000 from tk0miya/7985_protocol_relative_urlTakeshi KOMIYA2020-07-251-1/+1
| |\ \ \ | | | | | | | | | | linkcheck: Fix a protocol relative URL is considered as a local file
| | * | | linkcheck: Fix a protocol relative URL is considered as a local fileTakeshi KOMIYA2020-07-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since #7985, a protocol relative URL (URL starts with "//") is considered as a local file incorrectly. This makes it to a "unchecked" URL. refs: #7985
| * | | | Merge pull request #7690 from keewis/transform_numpy_parameter_typesTakeshi KOMIYA2020-07-252-2/+193
| |\ \ \ \ | | | | | | | | | | | | preprocessing numpy types
| | * | | | add a comment about default not being a official keywordKeewis2020-07-251-0/+2
| | | | | |
| | * | | | mention that the type aliases only work with napoleon_use_paramKeewis2020-07-251-1/+2
| | | | | |
| | * | | | don't provide a empty line numberKeewis2020-07-251-2/+1
| | | | | |
| | * | | | allow mapping to a long nameKeewis2020-07-211-2/+7
| | | | | |
| | * | | | support pandas-style default spec by postprocessing tokensKeewis2020-07-211-2/+9
| | | | | |
| | * | | | only transform the types if napoleon_use_param is trueKeewis2020-07-161-5/+6
| | | | | |
| | * | | | add type hints and location informationKeewis2020-07-161-12/+23
| | | | | |
| | * | | | replace .format with %-style string interpolationKeewis2020-07-161-7/+7
| | | | | |
| | * | | | make sure singletons actually use :obj:Keewis2020-07-161-1/+1
| | | | | |
| | * | | | use :class: as default role and only fall back to :obj: for singletonsKeewis2020-07-161-1/+5
| | | | | |
| | * | | | use the format method instead of f-stringsKeewis2020-07-161-2/+2
| | | | | |
| | * | | | remove a debug printKeewis2020-07-161-1/+0
| | | | | |
| | * | | | move the binary operator "or" to before the newlineKeewis2020-07-161-4/+4
| | | | | |
| | * | | | reimplement the value set combination function using collections.dequeKeewis2020-07-161-15/+36
| | | | | |
| | * | | | move the warnings to token_typeKeewis2020-07-161-30/+49
| | | | | |
| | * | | | make invalid value sets a literal to avoid further warningsKeewis2020-07-161-0/+3
| | | | | |
| | * | | | remove the default for the default translationKeewis2020-07-161-1/+1
| | | | | |
| | * | | | treat value sets as literalsKeewis2020-07-161-5/+7
| | | | | |
| | * | | | move the regexes to top-levelKeewis2020-07-161-17/+10
| | | | | |
| | * | | | set a default so translations don't to be specifiedKeewis2020-07-161-1/+1
| | | | | |
| | * | | | update the splitting regexp to handle braces in strings and escaped quotesKeewis2020-07-161-4/+17
| | | | | |
| | * | | | properly use sphinx's loggerKeewis2020-07-161-3/+8
| | | | | |
| | * | | | emit a warning instead of raising an errorKeewis2020-07-161-1/+4
| | | | | |
| | * | | | replace the custom role with markupKeewis2020-07-161-16/+3
| | | | | |
| | * | | | rename the configuration optionKeewis2020-07-162-5/+5
| | | | | |
| | * | | | replace the hard-coded mapping of translations with a config optionKeewis2020-07-162-9/+10
| | | | | |
| | * | | | get the type converter function to work, verified by new testsKeewis2020-07-161-10/+6
| | | | | |
| | * | | | move tokenize_type_spec to its own function and add tests for itKeewis2020-07-161-30/+51
| | | | | |
| | * | | | don't use the obj role if it is not necessaryKeewis2020-07-161-3/+10
| | | | | |
| | * | | | move the numpy type spec parsing function out of NumpyDocstringKeewis2020-07-161-78/+79
| | | | | |
| | * | | | more flake8Keewis2020-07-161-4/+4
| | | | | |
| | * | | | update the translationsKeewis2020-07-161-1/+2
| | | | | |
| | * | | | don't treat instance as specialKeewis2020-07-161-2/+0
| | | | | |
| | * | | | actually apply the type conversionKeewis2020-07-161-0/+1
| | | | | |
| | * | | | try to mark literals as suchKeewis2020-07-161-1/+91
| | | | | |
| * | | | | Fix a mypy violationTakeshi KOMIYA2020-07-241-1/+1
| | | | | |
| * | | | | Merge branch '3.x' into 5090_distutils_versionTakeshi KOMIYA2020-07-24465-44063/+183208
| |\ \ \ \ \ | | | |/ / / | | |/| | |
| | * | | | Merge pull request #7927 from jnothman/name-case-clashTakeshi KOMIYA2020-07-242-1/+10
| | |\ \ \ \ | | | |_|/ / | | |/| | | Add autosummary_filename_map config to avoid clashes
| | | * | | Rm unused importJoel Nothman2020-07-151-1/+1
| | | | | |
| | | * | | Fix toctree generationJoel Nothman2020-07-152-4/+3
| | | | | |