Skip to content

Commit 91ad602

Browse files
committed
docs: Update /en/latest reference to new path /
1 parent 304f910 commit 91ad602

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

README.rst

+15-15
Original file line numberDiff line numberDiff line change
@@ -118,26 +118,26 @@ Want to learn more about tmux itself? `Read The Tao of Tmux online`_.
118118
.. _Documentation: http://tmuxp.git-pull.com
119119
.. _Source: https://github.com/tmux-python/tmuxp
120120
.. _中文: http://tmuxp-zh.rtfd.org/
121-
.. _before_script: http://tmuxp.git-pull.com/en/latest/examples.html#bootstrap-project-before-launch
122-
.. _virtualenv: https://virtualenv.git-pull.com/en/latest/
123-
.. _Read The Tao of tmux online: http://tmuxp.git-pull.com/en/latest/about_tmux.html
121+
.. _before_script: http://tmuxp.git-pull.com/examples.html#bootstrap-project-before-launch
122+
.. _virtualenv: https://virtualenv.git-pull.com/
123+
.. _Read The Tao of tmux online: http://tmuxp.git-pull.com/about_tmux.html
124124
.. _author's tmuxp configs: https://github.com/tony/tmuxp-config
125-
.. _python library: https://tmuxp.git-pull.com/en/latest/api.html
126-
.. _python API quickstart: https://tmuxp.git-pull.com/en/latest/quickstart_python.html
125+
.. _python library: https://tmuxp.git-pull.com/api.html
126+
.. _python API quickstart: https://tmuxp.git-pull.com/quickstart_python.html
127127
.. _tmux(1): http://tmux.sourceforge.net/
128128
.. _tmuxinator: https://github.com/aziz/tmuxinator
129129
.. _teamocil: https://github.com/remiprev/teamocil
130-
.. _Examples: http://tmuxp.git-pull.com/en/latest/examples.html
131-
.. _freezing tmux: http://tmuxp.git-pull.com/en/latest/cli.html#freeze-sessions
130+
.. _Examples: http://tmuxp.git-pull.com/examples.html
131+
.. _freezing tmux: http://tmuxp.git-pull.com/cli.html#freeze-sessions
132132
.. _bootstrap_env.py: https://github.com/tmux-python/tmuxp/blob/master/bootstrap_env.py
133-
.. _travis.yml: http://tmuxp.git-pull.com/en/latest/developing.html#travis-ci
134-
.. _testing: http://tmuxp.git-pull.com/en/latest/developing.html#test-runner
135-
.. _python objects: http://tmuxp.git-pull.com/en/latest/api.html#api
133+
.. _travis.yml: http://tmuxp.git-pull.com/developing.html#travis-ci
134+
.. _testing: http://tmuxp.git-pull.com/developing.html#test-runner
135+
.. _python objects: http://tmuxp.git-pull.com/api.html#api
136136
.. _tmuxp.yaml: https://github.com/tmux-python/tmuxp/blob/master/.tmuxp.yaml
137-
.. _simple: http://tmuxp.git-pull.com/en/latest/examples.html#short-hand-inline
138-
.. _very elaborate: http://tmuxp.git-pull.com/en/latest/examples.html#super-advanced-dev-environment
139-
.. _Quickstart: http://tmuxp.git-pull.com/en/latest/quickstart.html
140-
.. _Commands: http://tmuxp.git-pull.com/en/latest/cli.html
137+
.. _simple: http://tmuxp.git-pull.com/examples.html#short-hand-inline
138+
.. _very elaborate: http://tmuxp.git-pull.com/examples.html#super-advanced-dev-environment
139+
.. _Quickstart: http://tmuxp.git-pull.com/quickstart.html
140+
.. _Commands: http://tmuxp.git-pull.com/cli.html
141141
.. _libtmux: https://github.com/tmux-python/libtmux
142142
.. _on the web: https://leanpub.com/the-tao-of-tmux/read
143143

@@ -166,7 +166,7 @@ Project details
166166
- License: `MIT`_.
167167

168168
.. _MIT: http://opensource.org/licenses/MIT
169-
.. _developing and testing: http://tmuxp.git-pull.com/en/latest/developing.html
169+
.. _developing and testing: http://tmuxp.git-pull.com/developing.html
170170
.. _Amazon Kindle: http://amzn.to/2gPfRhC
171171

172172
.. |pypi| image:: https://img.shields.io/pypi/v/tmuxp.svg

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def setup(app):
138138

139139
intersphinx_mapping = {
140140
'python': ('https://docs.python.org/', None),
141-
'libtmux': ('https://libtmux.readthedocs.io/en/latest', None),
141+
'libtmux': ('https://libtmux.readthedocs.io', None),
142142
'click': ('http://click.pocoo.org/5', None),
143143
}
144144

docs/quickstart.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ python abstraction layer
9898
:meth:`libtmux.Pane.send_keys` ``$ tmux send-keys``
9999
======================================== =================================
100100

101-
.. _Import: http://tmuxp.readthedocs.io/en/latest/cli.html#import
101+
.. _Import: http://tmuxp.readthedocs.io/cli.html#import
102102
.. _tmuxinator: https://github.com/aziz/tmuxinator
103103
.. _teamocil: https://github.com/remiprev/teamocil
104104
.. _Abstraction Layer: http://en.wikipedia.org/wiki/Abstraction_layer

tmuxp/cli.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ def cli(log_level):
606606
607607
Pass the "--help" argument to any command to see detailed help.
608608
See detailed documentation and examples at:
609-
http://tmuxp.readthedocs.io/en/latest/"""
609+
http://tmuxp.readthedocs.io/"""
610610
try:
611611
has_minimum_version()
612612
except TmuxCommandNotFound:
@@ -735,7 +735,7 @@ def command_freeze(session_name, socket_name, socket_path):
735735
else:
736736
print(
737737
'tmuxp has examples in JSON and YAML format at '
738-
'<http://tmuxp.readthedocs.io/en/latest/examples.html>\n'
738+
'<http://tmuxp.readthedocs.io/examples.html>\n'
739739
'View tmuxp docs at <http://tmuxp.readthedocs.io/>.'
740740
)
741741
sys.exit()
@@ -866,7 +866,7 @@ def import_config(configfile, importfunc):
866866
else:
867867
click.echo(
868868
'tmuxp has examples in JSON and YAML format at '
869-
'<http://tmuxp.readthedocs.io/en/latest/examples.html>\n'
869+
'<http://tmuxp.readthedocs.io/examples.html>\n'
870870
'View tmuxp docs at <http://tmuxp.readthedocs.io/>'
871871
)
872872
sys.exit()

0 commit comments

Comments
 (0)