diff options
author | W. Trevor King <wking@tremily.us> | 2012-11-29 20:07:07 -0500 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-11-29 20:07:07 -0500 |
commit | a8d623a8b7697809def3671f9e46fc5cb41ad85d (patch) | |
tree | f8878ccc99150bb5a03ae2fccd692859c8ba4786 | |
parent | b0bf9d18cce9e0f70db29fa7083cfcfba64545f0 (diff) | |
download | bugseverywhere-a8d623a8b7697809def3671f9e46fc5cb41ad85d.tar.gz |
ui:util:pager: document Nathan Weizenbaum as author of Ruby inspiration
Nathan's post is released under CC BY-SA 3.0 Unported. According the
the FSF, the CC BY-SA 2.0 Generic was not compatible with BE's GPLv2+
[1]. I expect my Python implementation is sufficiently different from
Nathan's original notes to be classified as "fair use" and not an
"adaptation".
[1]: http://www.gnu.org/licenses/license-list.html#ccbysa
-rw-r--r-- | libbe/ui/util/pager.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbe/ui/util/pager.py b/libbe/ui/util/pager.py index 025d62e..20a583e 100644 --- a/libbe/ui/util/pager.py +++ b/libbe/ui/util/pager.py @@ -22,7 +22,8 @@ Automatic pager for terminal output (a la Git). import sys, os, select -# see http://nex-3.com/posts/73-git-style-automatic-paging-in-ruby +# Inspired by Nathan Weizenbaum's +# http://nex-3.com/posts/73-git-style-automatic-paging-in-ruby def run_pager(paginate='auto'): """ paginate should be one of 'never', 'auto', or 'always'. |