-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add incomplete urwid console interface (#35)
* Refactor to decouple printing and http requests * add urwid for socli-interactive * add doc, and remove DEBUG setting * add footer showing what keys to use * remove use of global query var I started out using the global query var but realized that I should conform to code style by keeping it in a parameter. on line 353, I'm not sure why the line was (1) ... requests.get(url + query) ... when I believe it should be (2) ... requests.get(url) ... Here is the difference: (1) http://stackoverflow.com/questions/1789945/how-to-check-whether-a-string-contains-a-substring-in-javascript/1789952#1789952foo (2) http://stackoverflow.com/questions/1789945/how-to-check-whether-a-string-contains-a-substring-in-javascript/1789952#1789952 I believe (2) is correct. * add urwid to setup.py * navigate between question page & answer page * make answer text scrollable when answer is too long
- Loading branch information
1 parent
829c3cc
commit b360139
Showing
2 changed files
with
247 additions
and
68 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