Update tracker/reference URLs to prefer HTTPs

This commit is contained in:
Mads Kiilerich 2022-10-24 04:58:42 +02:00 committed by Robin Gareus
parent b3743227be
commit 004b32b91e
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
8 changed files with 12 additions and 12 deletions

View File

@ -9,4 +9,4 @@ on `git describe` (a full git clone is needed for this) or alternatively a
version-file in the release-dist. Github cannot provide the latter and also
does not allow to inject a version-file during export archiving.
For further information see http://tracker.ardour.org/view.php?id=7328
For further information see https://tracker.ardour.org/view.php?id=7328

View File

@ -89,7 +89,7 @@ master branch. That should generate a file called something like
3. Run 'bzip2 0001-Update-German-translation.patch' to compress the file.
4. File a new bug report at http://tracker.ardour.org and attach the resulted
4. File a new bug report at https://tracker.ardour.org and attach the resulted
compressed file and tell either rgareus (Robin Gareus) or las (Paul Davis) on
the project's IRC channel (#ardour at irc.freenode.net) about your patch.
@ -130,7 +130,7 @@ Not every PO editor can calculate the equation for the plural forms in your
language, but you can look it up in headers of PO files from some application
such a GIMP or Inkscape. Here is an example for Russian:
http://git.gnome.org/browse/gimp/plain/po/ru.po
https://git.gnome.org/browse/gimp/plain/po/ru.po
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2); 10<=4 && (n%100<10 || n"

View File

@ -60,6 +60,6 @@ Use given template for new session
\fB\-v\fR, \fB\-\-version\fR
Print version and exit
.SH "REPORTING BUGS"
Report bugs to http://tracker.ardour.org
Report bugs to https://tracker.ardour.org
.br
Website http://ardour.org
Website https://ardour.org

View File

@ -10,7 +10,7 @@ fi
libs=$TOP/@LIBS@
# http://tracker.ardour.org/view.php?id=5605#c18109
# https://tracker.ardour.org/view.php?id=5605#c18109
export GTK2_RC_FILES=/nonexistent
#

View File

@ -218,7 +218,7 @@ MidiSource::midi_read (const ReaderLock& lm,
Note that multiple tracks can use a MidiSource simultaneously, so
all playback state must be in parameters (the cursor) and must not
be cached in the source of model itself.
See http://tracker.ardour.org/view.php?id=6541
See https://tracker.ardour.org/view.php?id=6541
*/
cursor.connect(Invalidated);
cursor.iter = _model->begin (start.beats(), false, filtered, &cursor.active_notes);

View File

@ -45,7 +45,7 @@ SndFileImportableSource::get_timecode_info (SNDFILE* sf, SF_BROADCAST_INFO* binf
return 0;
}
/* see http://tracker.ardour.org/view.php?id=6208
/* see https://tracker.ardour.org/view.php?id=6208
* 0xffffffff 0xfffc5680
* seems to be a bug in Presonus Capture (which generated the file)
*

View File

@ -20,7 +20,7 @@
*
* see http://pidgin.im/pipermail/devel/2014-April/023475.html
* and https://pidgin.im/pipermail/commits/2014-April/025031.html
* http://tracker.ardour.org/view.php?id=6575
* https://tracker.ardour.org/view.php?id=6575
*/
#ifndef __pbd_gstdio_compat_h__

View File

@ -670,7 +670,7 @@ WaveView::draw_image (Cairo::RefPtr<Cairo::ImageSurface>& image, PeakData* peaks
for (int i = 0; i < n_peaks; ++i) {
bool connected_segment = false;
/* http://lac.linuxaudio.org/2013/papers/36.pdf Fig3 */
/* https://lac.linuxaudio.org/2013/papers/36.pdf Fig3 */
if (i + 1 == n_peaks) {
wave_context->move_to (i, tips[i].top);
wave_context->line_to (i, tips[i].bot);
@ -912,10 +912,10 @@ WaveView::process_draw_request (boost::shared_ptr<WaveViewDrawRequest> req)
Cairo::RefPtr<Cairo::ImageSurface> cairo_image =
Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, n_peaks, req->image->props.height);
// http://cairographics.org/manual/cairo-Image-Surfaces.html#cairo-image-surface-create
// https://cairographics.org/manual/cairo-Image-Surfaces.html#cairo-image-surface-create
// This function always returns a valid pointer, but it will return a pointer to a "nil" surface..
// but there's some evidence that req->image can be NULL.
// http://tracker.ardour.org/view.php?id=6478
// https://tracker.ardour.org/view.php?id=6478
assert (cairo_image);
if (peaks_read > 0) {