Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,14 @@ with TUF; upstream servers, who will largely be responsible for care and
feeding of repositories; and integrators, who do the work of putting TUF
into existing projects.

A low-level integration requires importing a single module and calling
particular methods to perform updates. A high-level integration, on the
other hand, can handle TUF-related updates transparently. The client
populates a configuration file and the library interposes on urllib calls.
Generating metadata files stored on upstream servers can be handled by the
repository tool, covered in ``Creating a Repository``.


- `Creating a Repository <https://github.com/theupdateframework/tuf/tree/develop/tuf/README.md>`_

- `Low-level Integration <https://github.com/theupdateframework/tuf/tree/develop/tuf/client/README.md>`_
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@

setup(
name = 'tuf',
version = '0.9.8',
version = '0.9.9',
description = 'A secure updater framework for Python',
long_description = long_description,
author = 'http://www.theupdateframework.com',
Expand Down
2 changes: 1 addition & 1 deletion tuf/client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ for target in updated_target:
```

###A Simple Integration Example with basic_client.py
```
``` Bash
# Assume a simple TUF repository has been setup with 'tuf.repository_tool.py'.
$ basic_client.py --repo http://localhost:8001

Expand Down