From f5772f98b6c62e16a475f1b2fc3a178e5dca6bda Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 30 Mar 2017 00:09:47 -0700 Subject: [PATCH 1/3] Update README.rst --- README.rst | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index d4015b8..44daf36 100644 --- a/README.rst +++ b/README.rst @@ -129,16 +129,13 @@ Environment RTV will respect the following environment variables when accessing external programs ``$BROWSER`` - | Submission links will be opened inside of your web browser. - | On most systems the default web browser will open in a new window. If you prefer the complete terminal experience, try using a console-based web browser (`w3m `_, `lynx `_, and `elinks `_ are all good choices). + Submission links will be opened inside of your web browser. On most systems, the default web browser will pop up in a new window. If you prefer the complete terminal experience, try using a console-based web browser (`w3m `_, `lynx `_, and `elinks `_ are all good choices). ``$PAGER`` - | Extra long comments and submissions wil be viewed through the system pager. + Extra long comments and submissions can be opened using the system's pager. ``$RTV_EDITOR`` - | Compose posts and replying to comments is done using your preferred text editor. - | If not specified, the default system ``$EDITOR`` (or `nano `_) will be used. + Composing posts and replying to comments is done using your preferred text editor. If not specified, the default system ``$EDITOR`` (or *nano*) will be used. ``$RTV_URLVIEWER`` - | A url viewer can be used to extract links from inside of comments. - | `urlview `_ and `urlscan `_ are known to be compatible. These applications don't come pre-installed, but are available through most systems' package managers. + A url viewer is a tool that can be used to extract hyperlinks from inside of blocks of text. `urlview `_ and `urlscan `_ are known to be compatible with rtv. These applications don't come pre-installed, but are available through most systems' package managers. === FAQ From 83cc550d6d3b869c8947641c8f9a405418d6ee07 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 30 Mar 2017 00:12:22 -0700 Subject: [PATCH 2/3] Update README.rst Removing security warning for older versions, enough time has passed that this no longer warrants being displayed front and center --- README.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.rst b/README.rst index 44daf36..6c61732 100644 --- a/README.rst +++ b/README.rst @@ -14,8 +14,6 @@ RTV (Reddit Terminal Viewer) |pypi| |python| |travis-ci| |coveralls| |gitter| -Note to users - a security `vulnerability `_ has been discovered in rtv versions prior to v1.12.1. A patch has been applied and it is strongly advised that you upgrade to the latest version. - --------------- * `Demo`_ From 8fb1d719e54900463ddbc1b5f511ef7e5bb948de Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Thu, 30 Mar 2017 20:38:24 -0700 Subject: [PATCH 3/3] Disable test coverage for praw --- .coveragerc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.coveragerc b/.coveragerc index c668a15..d5400c0 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,3 +1,5 @@ [run] source = rtv -omit = *__main__.py +omit = + */__main__.py + */packages/praw/*