forked from datalad/datalad-next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request datalad#417 from mih/doc
Make dev-docs more accessible and organization more clear
- Loading branch information
Showing
12 changed files
with
127 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
"""Configuration query and manipulation | ||
This modules imports the central ``ConfigManager`` class from DataLad core. | ||
""" | ||
|
||
from datalad.config import ConfigManager |
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 |
---|---|---|
@@ -1 +1,9 @@ | ||
"""Credential management | ||
.. currentmodule:: datalad_next.credman | ||
.. autosummary:: | ||
:toctree: generated | ||
manager | ||
""" | ||
from .manager import CredentialManager |
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
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,10 @@ | ||
"""Custom types and dataclasses | ||
.. currentmodule:: datalad_next.types | ||
.. autosummary:: | ||
:toctree: generated | ||
annexkey | ||
archivist | ||
enums | ||
""" |
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
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 |
---|---|---|
@@ -1,29 +1,31 @@ | ||
.. _pyutils: | ||
|
||
Python utilities | ||
**************** | ||
Python tooling | ||
************** | ||
|
||
``datalad-next`` comprises a number of more-or-less self-contained | ||
mini-packages providing particular functionality. These implementations | ||
are candidates for a migration into the DataLad core package, and are | ||
provided here for immediate use. If and when components are migrated, | ||
transition modules will be kept to prevent API breakage in dependent | ||
packages. | ||
|
||
|
||
.. currentmodule:: datalad_next | ||
.. autosummary:: | ||
:toctree: generated | ||
|
||
commands.ValidatedInterface | ||
config.ConfigManager | ||
archive_operations | ||
commands | ||
config | ||
constraints | ||
credman.manager | ||
credman | ||
datasets | ||
exceptions | ||
iter_collections | ||
runners | ||
tests.fixtures | ||
types | ||
uis | ||
url_operations | ||
url_operations.any | ||
url_operations.file | ||
url_operations.http | ||
url_operations.ssh | ||
utils | ||
utils.http_helpers | ||
utils.multihash | ||
utils.requests_auth | ||
tests.fixtures | ||
types.annexkey | ||
types.archivist | ||
types.enums |