Skip to content

Commit d441e1f

Browse files
authored
Merge branch 'ros2:rolling' into patch-8
2 parents c6bfd68 + 9937975 commit d441e1f

File tree

724 files changed

+20907
-20182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

724 files changed

+20907
-20182
lines changed

rviz2/CHANGELOG.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Changelog for package rviz2
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
14.2.6 (2024-08-28)
6+
-------------------
7+
8+
14.2.5 (2024-07-29)
9+
-------------------
10+
* Detect wayland and make sure X rendering is used. (`#1253 <https://github.com/ros2/rviz/issues/1253>`_)
11+
* Contributors: Matthew Elwin
12+
13+
14.2.4 (2024-07-19)
14+
-------------------
15+
* Fixed RViz2 linters (`#1231 <https://github.com/ros2/rviz/issues/1231>`_)
16+
* Contributors: Alejandro Hernández Cordero
17+
518
14.2.3 (2024-06-25)
619
-------------------
720

rviz2/doc/conf.py

Lines changed: 76 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# Copyright 2024 Open Source Robotics Foundation, Inc.
2+
#
3+
# Redistribution and use in source and binary forms, with or without
4+
# modification, are permitted provided that the following conditions are met:
5+
#
6+
# * Redistributions of source code must retain the above copyright
7+
# notice, this list of conditions and the following disclaimer.
8+
#
9+
# * Redistributions in binary form must reproduce the above copyright
10+
# notice, this list of conditions and the following disclaimer in the
11+
# documentation and/or other materials provided with the distribution.
12+
#
13+
# * Neither the name of the copyright holder nor the names of its
14+
# contributors may be used to endorse or promote products derived from
15+
# this software without specific prior written permission.
16+
#
17+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20+
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22+
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23+
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24+
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25+
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26+
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27+
# POSSIBILITY OF SUCH DAMAGE.
28+
129
# -*- coding: utf-8 -*-
230
#
331
# RViz documentation build configuration file, created by
@@ -11,17 +39,15 @@
1139
# All configuration values have a default; values that are commented out
1240
# serve to show the default.
1341

14-
import sys, os
15-
1642
# If extensions (or modules to document with autodoc) are in another directory,
1743
# add these directories to sys.path here. If the directory is relative to the
1844
# documentation root, use os.path.abspath to make it absolute, like shown here.
19-
#sys.path.insert(0, os.path.abspath('.'))
45+
# sys.path.insert(0, os.path.abspath('.'))
2046

2147
# -- General configuration -----------------------------------------------------
2248

2349
# If your documentation needs a minimal Sphinx version, state it here.
24-
#needs_sphinx = '1.0'
50+
# needs_sphinx = '1.0'
2551

2652
# Add any Sphinx extension module names here, as strings. They can be extensions
2753
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
@@ -34,14 +60,14 @@
3460
source_suffix = '.rst'
3561

3662
# The encoding of source files.
37-
#source_encoding = 'utf-8-sig'
63+
# source_encoding = 'utf-8-sig'
3864

3965
# The master toctree document.
4066
master_doc = 'index'
4167

4268
# General information about the project.
4369
project = u'RViz'
44-
copyright = u'2012, Willow Garage, Inc'
70+
copyright = u'2012, Willow Garage, Inc' # noqa: A001
4571

4672
# The version info for the project you're documenting, acts as replacement for
4773
# |version| and |release|, also used in various other places throughout the
@@ -54,37 +80,37 @@
5480

5581
# The language for content autogenerated by Sphinx. Refer to documentation
5682
# for a list of supported languages.
57-
#language = None
83+
# language = None
5884

5985
# There are two options for replacing |today|: either, you set today to some
6086
# non-false value, then it is used:
61-
#today = ''
87+
# today = ''
6288
# Else, today_fmt is used as the format for a strftime call.
63-
#today_fmt = '%B %d, %Y'
89+
# today_fmt = '%B %d, %Y'
6490

6591
# List of patterns, relative to source directory, that match files and
6692
# directories to ignore when looking for source files.
6793
exclude_patterns = []
6894

6995
# The reST default role (used for this markup: `text`) to use for all documents.
70-
#default_role = None
96+
# default_role = None
7197

7298
# If true, '()' will be appended to :func: etc. cross-reference text.
73-
#add_function_parentheses = True
99+
# add_function_parentheses = True
74100

75101
# If true, the current module name will be prepended to all description
76102
# unit titles (such as .. function::).
77-
#add_module_names = True
103+
# add_module_names = True
78104

79105
# If true, sectionauthor and moduleauthor directives will be shown in the
80106
# output. They are ignored by default.
81-
#show_authors = False
107+
# show_authors = False
82108

83109
# The name of the Pygments (syntax highlighting) style to use.
84110
pygments_style = 'sphinx'
85111

86112
# A list of ignored prefixes for module index sorting.
87-
#modindex_common_prefix = []
113+
# modindex_common_prefix = []
88114

89115

90116
# -- Options for HTML output ---------------------------------------------------
@@ -100,69 +126,69 @@
100126
html_theme_options = {}
101127

102128
# Add any paths that contain custom themes here, relative to this directory.
103-
#html_theme_path = []
129+
# html_theme_path = []
104130

105131
# The name for this set of Sphinx documents. If None, it defaults to
106132
# "<project> v<release> documentation".
107-
#html_title = None
133+
# html_title = None
108134

109135
# A shorter title for the navigation bar. Default is the same as html_title.
110-
#html_short_title = None
136+
# html_short_title = None
111137

112138
# The name of an image file (relative to this directory) to place at the top
113139
# of the sidebar.
114-
#html_logo = None
140+
# html_logo = None
115141

116142
# The name of an image file (within the static path) to use as favicon of the
117143
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
118144
# pixels large.
119-
#html_favicon = None
145+
# html_favicon = None
120146

121147
# Add any paths that contain custom static files (such as style sheets) here,
122148
# relative to this directory. They are copied after the builtin static files,
123149
# so a file named "default.css" will overwrite the builtin "default.css".
124-
#html_static_path = ['_static']
150+
# html_static_path = ['_static']
125151

126152
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
127153
# using the given strftime format.
128-
#html_last_updated_fmt = '%b %d, %Y'
154+
# html_last_updated_fmt = '%b %d, %Y'
129155

130156
# If true, SmartyPants will be used to convert quotes and dashes to
131157
# typographically correct entities.
132-
#html_use_smartypants = True
158+
# html_use_smartypants = True
133159

134160
# Custom sidebar templates, maps document names to template names.
135-
#html_sidebars = {}
161+
# html_sidebars = {}
136162

137163
# Additional templates that should be rendered to pages, maps page names to
138164
# template names.
139-
#html_additional_pages = {}
165+
# html_additional_pages = {}
140166

141167
# If false, no module index is generated.
142-
#html_domain_indices = True
168+
# html_domain_indices = True
143169

144170
# If false, no index is generated.
145-
#html_use_index = True
171+
# html_use_index = True
146172

147173
# If true, the index is split into individual pages for each letter.
148-
#html_split_index = False
174+
# html_split_index = False
149175

150176
# If true, links to the reST sources are added to the pages.
151-
#html_show_sourcelink = True
177+
# html_show_sourcelink = True
152178

153179
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
154-
#html_show_sphinx = True
180+
# html_show_sphinx = True
155181

156182
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
157-
#html_show_copyright = True
183+
# html_show_copyright = True
158184

159185
# If true, an OpenSearch description file will be output, and all pages will
160186
# contain a <link> tag referring to it. The value of this option must be the
161187
# base URL from which the finished HTML is served.
162-
#html_use_opensearch = ''
188+
# html_use_opensearch = ''
163189

164190
# This is the file name suffix for HTML files (e.g. ".xhtml").
165-
#html_file_suffix = None
191+
# html_file_suffix = None
166192

167193
# Output file base name for HTML help builder.
168194
htmlhelp_basename = 'RVizdoc'
@@ -171,14 +197,14 @@
171197
# -- Options for LaTeX output --------------------------------------------------
172198

173199
latex_elements = {
174-
# The paper size ('letterpaper' or 'a4paper').
175-
#'papersize': 'letterpaper',
200+
# The paper size ('letterpaper' or 'a4paper').
201+
# 'papersize': 'letterpaper',
176202

177-
# The font size ('10pt', '11pt' or '12pt').
178-
#'pointsize': '10pt',
203+
# The font size ('10pt', '11pt' or '12pt').
204+
# 'pointsize': '10pt',
179205

180-
# Additional stuff for the LaTeX preamble.
181-
#'preamble': '',
206+
# Additional stuff for the LaTeX preamble.
207+
# 'preamble': '',
182208
}
183209

184210
# Grouping the document tree into LaTeX files. List of tuples
@@ -190,23 +216,23 @@
190216

191217
# The name of an image file (relative to this directory) to place at the top of
192218
# the title page.
193-
#latex_logo = None
219+
# latex_logo = None
194220

195221
# For "manual" documents, if this is true, then toplevel headings are parts,
196222
# not chapters.
197-
#latex_use_parts = False
223+
# latex_use_parts = False
198224

199225
# If true, show page references after internal links.
200-
#latex_show_pagerefs = False
226+
# latex_show_pagerefs = False
201227

202228
# If true, show URL addresses after external links.
203-
#latex_show_urls = False
229+
# latex_show_urls = False
204230

205231
# Documents to append as an appendix to all manuals.
206-
#latex_appendices = []
232+
# latex_appendices = []
207233

208234
# If false, no module index is generated.
209-
#latex_domain_indices = True
235+
# latex_domain_indices = True
210236

211237

212238
# -- Options for manual page output --------------------------------------------
@@ -219,7 +245,7 @@
219245
]
220246

221247
# If true, show URL addresses after external links.
222-
#man_show_urls = False
248+
# man_show_urls = False
223249

224250

225251
# -- Options for Texinfo output ------------------------------------------------
@@ -229,15 +255,16 @@
229255
# dir menu entry, description, category)
230256
texinfo_documents = [
231257
('index', 'RViz', u'RViz Documentation',
232-
u'Josh Faust, Dave Hershberger, David Gossow, and others', 'RViz', 'One line description of project.',
258+
u'Josh Faust, Dave Hershberger, David Gossow, and others', 'RViz',
259+
'One line description of project.',
233260
'Miscellaneous'),
234261
]
235262

236263
# Documents to append as an appendix to all manuals.
237-
#texinfo_appendices = []
264+
# texinfo_appendices = []
238265

239266
# If false, no module index is generated.
240-
#texinfo_domain_indices = True
267+
# texinfo_domain_indices = True
241268

242269
# How to display URL addresses: 'footnote', 'no', or 'inline'.
243-
#texinfo_show_urls = 'footnote'
270+
# texinfo_show_urls = 'footnote'

0 commit comments

Comments
 (0)