-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add an outline for the module reference
- Loading branch information
Showing
10 changed files
with
91 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
:mod:`archive.archive` --- Provide the Archive class | ||
==================================================== | ||
|
||
.. automodule:: archive.archive | ||
:members: |
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 @@ | ||
:mod:`archive.bt` --- Implement backup-tool | ||
=========================================== | ||
|
||
.. note:: | ||
This package and its submodules implement the :ref:`backup-tool` | ||
command line script. They are not intended to be used in other | ||
Python programs and not considered to be part of the archive-tool | ||
API. |
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 @@ | ||
:mod:`archive.cli` --- Implement archive-tool | ||
============================================= | ||
|
||
.. note:: | ||
This package and its submodules implement the :ref:`archive-tool` | ||
command line script. They are not intended to be used in other | ||
Python programs and not considered to be part of the archive-tool | ||
API. |
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,5 @@ | ||
:mod:`archive.config` --- Manage configuration | ||
============================================== | ||
|
||
.. automodule:: archive.config | ||
:members: |
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,5 @@ | ||
:mod:`archive.exception` --- Exception handling | ||
=============================================== | ||
|
||
.. automodule:: archive.exception | ||
:members: |
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,5 @@ | ||
:mod:`archive.index` --- Represent an index of archives | ||
======================================================= | ||
|
||
.. automodule:: archive.index | ||
:members: |
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,5 @@ | ||
:mod:`archive.mailarchive` --- Provide the MailArchive class | ||
============================================================ | ||
|
||
.. automodule:: archive.mailarchive | ||
:members: |
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,5 @@ | ||
:mod:`archive.manifest` --- Define the archive metadata | ||
======================================================= | ||
|
||
.. automodule:: archive.manifest | ||
:members: |
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,5 @@ | ||
:mod:`archive.tools` --- A collection of internal helper routines | ||
================================================================= | ||
|
||
.. automodule:: archive.tools | ||
:members: |
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,5 +1,43 @@ | ||
Module reference | ||
================ | ||
|
||
.. | ||
provide a reference for the archive-tool modules | ||
This section provides a reference for the modules that implement the | ||
archive-tools. | ||
|
||
Modules defining the archive-tools API | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
These modules define the core of archive-tools, e.g. the classes or | ||
functions that implement archives. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
mod-archive | ||
mod-exception | ||
mod-manifest | ||
|
||
Special purpose modules | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
These modules will generally be used in particular cases only. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
mod-index | ||
mod-mailarchive | ||
|
||
Internal modules | ||
~~~~~~~~~~~~~~~~ | ||
|
||
These modules are used internally by archive-tools, but most users | ||
will not need to care about them. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
|
||
mod-config | ||
mod-tools | ||
mod-cli | ||
mod-bt |