Skip to content

Commit

Permalink
Update tracker/reference URLs to prefer HTTPs
Browse files Browse the repository at this point in the history
  • Loading branch information
kiilerix authored and x42 committed Oct 24, 2022
1 parent b374322 commit 004b32b
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README-GITHUB.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions TRANSLATORS
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions ardour.1
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion gtk2_ardour/ardev_common.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -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

#
Expand Down
2 changes: 1 addition & 1 deletion libs/ardour/midi_source.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion libs/ardour/sndfileimportable.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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)
*
Expand Down
2 changes: 1 addition & 1 deletion libs/pbd/pbd/gstdio_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__
Expand Down
6 changes: 3 additions & 3 deletions libs/waveview/wave_view.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 004b32b

Please sign in to comment.