More adjustments for new maintainership

This commit is contained in:
John Helmert
2019-06-09 11:05:37 -05:00
parent 7423a43e50
commit 1c0afc8a55
10 changed files with 17 additions and 15 deletions

View File

@@ -5,7 +5,7 @@ Contributor Guidelines
Before you start
================
- Post an issue on the `tracker <https://github.com/michael-lazar/rtv/issues>`_ describing the bug or feature you would like to add
- Post an issue on the `tracker <https://gitlab.com/ajak/rtv/issues>`_ describing the bug or feature you would like to add
- If an issue already exists, leave a comment to let others know that you intend to work on it
Considerations

5
rtv.1
View File

@@ -1,4 +1,4 @@
.TH "RTV" "1" "June 03, 2019" "Version 1.27.0" "Usage and Commands"
.TH "RTV" "1" "June 08, 2019" "Version 1.27.0" "Usage and Commands"
.SH NAME
RTV - Reddit Terminal Viewer
.SH SYNOPSIS
@@ -113,7 +113,8 @@ program to be installed.
Web browser to use when opening links. Will fallback to \fI$BROWSER\fR.
.SH AUTHOR
Michael Lazar <lazar.michael22@gmail.com> (2017).
John Helmert <jchelmertt3@gmail.com> (2019).
.SH BUGS
Report bugs to \fIhttps://github.com/michael-lazar/rtv/issues\fR
Report bugs to \fIhttps://gitlab.com/ajak/rtv/issues\fR
.SH LICENSE
The MIT License (MIT)

View File

@@ -264,7 +264,7 @@ def main():
debug_text,
traceback.format_exc(),
'rtv has crashed. Please report this traceback at:',
'https://github.com/michael-lazar/rtv/issues\n'])
'https://gitlab.com/ajak/rtv/issues\n'])
sys.stderr.write(exit_message)
return 1 # General error exception code
except KeyboardInterrupt:

View File

@@ -2,7 +2,7 @@
from __future__ import unicode_literals
AGENT = """\
desktop:https://github.com/michael-lazar/rtv:{version}\
desktop:https://github.com/ajak/rtv:{version}\
(by /u/civilization_phaze_3)\
"""
@@ -26,7 +26,7 @@ HELP = """\
====================================
Reddit Terminal Viewer
https://github.com/michael-lazar/rtv
https://github.com/ajak/rtv
====================================
[Basic Commands]

View File

@@ -26,6 +26,6 @@
</head>
<body>
${message}
<div id="footer">View the <a href="http://www.github.com/michael-lazar/rtv">Documentation</a></div>
<div id="footer">View the <a href="http://www.gitlab.com/ajak/rtv">Documentation</a></div>
</body>
</html>

View File

@@ -1,5 +1,5 @@
# Example mailcap file for Reddit Terminal Viewer
# https://github.com/michael-lazar/rtv/
# https://gitlab.com/ajak/rtv/
#
# Copy the contents of this file to {HOME}/.mailcap, or point to it using $MAILCAPS
# Then launch RTV using the --enable-media flag. All shell commands defined in

View File

@@ -1,5 +1,5 @@
; Reddit Terminal Viewer Configuration File
; https://github.com/michael-lazar/rtv
; https://gitlab.com/ajak/rtv
;
; This file should be placed in $XDG_CONFIG/rtv/rtv.cfg
; If $XDG_CONFIG is not set, use ~/.config/rtv/rtv.cfg

View File

@@ -41,7 +41,8 @@ program to be installed.
Web browser to use when opening links. Will fallback to \fI$BROWSER\fR.
.SH AUTHOR
Michael Lazar <lazar.michael22@gmail.com> (2017).
John Helmert <jchelmertt3@gmail.com> (2019).
.SH BUGS
Report bugs to \fIhttps://github.com/michael-lazar/rtv/issues\fR
Report bugs to \fIhttps://gitlab.com/ajak/rtv/issues\fR
.SH LICENSE
{license}

View File

@@ -49,9 +49,9 @@ setuptools.setup(
description='A simple terminal viewer for Reddit (Reddit Terminal Viewer)',
long_description=long_description(),
long_description_content_type='text/markdown',
url='https://github.com/michael-lazar/rtv',
author='Michael Lazar',
author_email='lazar.michael22@gmail.com',
url='https://gitlab.com/ajak/rtv',
author='John Helmert III',
author_email='jchelmertt3@gmail.com',
license='MIT',
keywords='reddit terminal praw curses',
packages=[

View File

@@ -738,7 +738,7 @@ def test_terminal_get_link_page_text(terminal):
{'href': 'https://www.reddit.com', 'text': 'Reddit Homepage'},
{'href': 'https://www.duckduckgo.com', 'text': 'Search Engine'},
{
'href': 'https://github.com/michael-lazar/rtv',
'href': 'https://gitlab.com/ajak/rtv',
'text': 'This project\'s homepage'
}
]
@@ -747,7 +747,7 @@ def test_terminal_get_link_page_text(terminal):
assert text == dedent("""\
[0] [Reddit Homepage](https://www.reddit.com)
[1] [Search Engine](https://www.duckduckgo.com)
[2] [This project's home…](https://github.com/michael-lazar/rtv)
[2] [This project's home…](https://gitlab.com/ajak/rtv)
""")