summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorIan Ward <ian@excess.org>2012-01-05 13:36:20 -0500
committerIan Ward <ian@excess.org>2012-01-05 13:36:20 -0500
commit93f32f1ef40fde734edeaeb8366254db01d01ad4 (patch)
treeb4d4c7630f1634b3a7a9cb52504293378e6cb0a4 /docs
parent3166794f2d0b28ea93073b800ec031257813099d (diff)
downloadurwid-93f32f1ef40fde734edeaeb8366254db01d01ad4.tar.gz
tutorial: update links to example source
Diffstat (limited to 'docs')
-rw-r--r--docs/build/tmpl_tutorial.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/build/tmpl_tutorial.html b/docs/build/tmpl_tutorial.html
index 4b9092b..245f6a3 100644
--- a/docs/build/tmpl_tutorial.html
+++ b/docs/build/tmpl_tutorial.html
@@ -465,22 +465,22 @@ A custom List Walker object may be passed to the ListBox constructor instead
of a plain list of widgets. List Walker objects must implement the
<a href="reference.html#List_Walker_interface_definition">List Walker interface</a>.
<br><br>
-The
-<a href="fib.py.html">fib.py</a>
+The
+<a href="http://excess.org/urwid/browser/examples/fib.py">fib.py</a>
example program demonstrates a custom list walker that doesn't
store any widgets. It uses a tuple of two successive Fibonacci numbers
as its position objects and it generates Text widgets to display the numbers
-on the fly.
+on the fly.
The result is a ListBox that can scroll through an unending list of widgets.
<br><br>
-The
-<a href="edit.py.html">edit.py</a>
+The
+<a href="http://excess.org/urwid/browser/examples/edit.py">edit.py</a>
example program demonstrates a custom list walker that
loads lines from a text file only as the user scrolls them into view.
This allows even huge files to be opened almost instantly.
<br><br>
-The
-<a href="browse.py.html">browse.py</a>
+The
+<a href="http://excess.org/urwid/browser/examples/browse.py">browse.py</a>
example program demonstrates a custom list walker that
uses a tuple of strings as position objects, one for the parent directory
and one for the file selected. The widgets are cached in a separate class