]> git.ipfire.org Git - thirdparty/rrdtool-1.x.git/commitdiff
Update URL from http to https
authorWolfgang Stöggl <c72578@yahoo.de>
Thu, 21 Mar 2019 10:25:39 +0000 (11:25 +0100)
committerTobias Oetiker <tobi@oetiker.ch>
Thu, 21 Mar 2019 14:00:30 +0000 (15:00 +0100)
- Command used to replace http with https:
  git grep -l 'http://oss.oetiker.ch' -- './*' ':(exclude)CHANGES' | \
  xargs sed -b -i 's|http://oss.oetiker.ch|https://oss.oetiker.ch|g'
- Fixes:
  https://github.com/oetiker/rrdtool-1.x/issues/934

33 files changed:
README.md
WIN32-BUILD-TIPS.txt
bindings/dotnet/rrd_binding_test.cs
bindings/dotnet/rrdlib.cs
bindings/python/README.md
bindings/python/rrdtoolmodule.c
configure
doc/rrdbuild.pod
doc/rrdtool-dump.xsd
m4/acinclude.m4
rrdtool.spec
src/rrd_dump.c
tests/modify-test1.create.dump
tests/modify-test1.mod1.dump
tests/modify-test3.create.dump
tests/modify-test3.mod1.dump
tests/modify2-testa-create.dump
tests/modify2-testb-mod1.dump
tests/modify2-testc-mod1.dump
tests/modify4-testa-create.dump
tests/modify4-testa1-create.dump
tests/modify4-testa2-create.dump
tests/modify5-testa1-create.dump
tests/modify5-testa2-create.dump
tests/tune1-testa-mod1.dump
tests/tune1-testa-mod2.dump
tests/tune1-testorg.dump
tests/tune2-testa-mod1.dump
tests/tune2-testorg.dump
win32/librrd-4.rc
win32/rrdcgi.rc
win32/rrdtool.rc
win32/rrdupdate.rc

index 01e662dd712d6a228d3c44507440c7af34a3e181..9de555f79bd7ddc11cd5f1f3246be884fd9dca53 100644 (file)
--- a/README.md
+++ b/README.md
@@ -80,7 +80,7 @@ pod files.
 
 The latest released Version:
 -------------------
-Is always available from http://oss.oetiker.ch/rrdtool/
+Is always available from https://oss.oetiker.ch/rrdtool/
 
 
 Tobias Oetiker <tobi@oetiker.ch>
index 37b659c089b7e2b0ecefe1da5fadfe8a2354ee00..0c2873e5d42e1e2747f415de7b87ae9c138ad649 100644 (file)
@@ -317,22 +317,22 @@ Compiling RRDtool 1.2.x on Win32 with MingW32 gcc:
 
    = zlib
 
-     http://oss.oetiker.ch/rrdtool/pub/libs/zlib-1.2.3.tar.gz
+     https://oss.oetiker.ch/rrdtool/pub/libs/zlib-1.2.3.tar.gz
      http://www.zlib.net/
 
    = libpng
 
-     http://oss.oetiker.ch/rrdtool/pub/libs/libpng-1.2.12.tar.gz
+     https://oss.oetiker.ch/rrdtool/pub/libs/libpng-1.2.12.tar.gz
      http://libpng.sourceforge.net/
 
    = freetype
 
-     http://oss.oetiker.ch/rrdtool/pub/libs/freetype-2.2.1.tar.gz
+     https://oss.oetiker.ch/rrdtool/pub/libs/freetype-2.2.1.tar.gz
      http://freetype.sourceforge.net/index2.html
  
    = libart_lgpl
 
-     http://oss.oetiker.ch/rrdtool/pub/libs/libart_lgpl-2.3.17.tar.gz
+     https://oss.oetiker.ch/rrdtool/pub/libs/libart_lgpl-2.3.17.tar.gz
      http://www.levien.com/libart/
 
      Note: libart_lgpl needs a special tweak because the archive contains
index 807bc55192949d6f0883663852ed03d401408759..7fba6b218ced98376ca9403a0bc4403c0acd1a92 100644 (file)
@@ -9,7 +9,7 @@
  * data, fetching data, creating graphs, dumping and exporting the data to
  * XML, then restoring from an XML file. The examples follow the tutorial 
  * written by Alex van den Bogaerdt found at 
- * http://oss.oetiker.ch/rrdtool/tut/rrdtutorial.en.html
+ * https://oss.oetiker.ch/rrdtool/tut/rrdtutorial.en.html
  ****************************************************************************/
 
 using System;
index aaca8550edbaa64b0d7016fde94a45ccfd47166a..f60fbd8ac21d489315a450b7d724d9baa7ac06ed 100644 (file)
@@ -8,7 +8,7 @@
  * To use, please make sure that you place the rrdlib.dll in the same 
  * directory as this dll, or change the "const string dll" to point to the
  * proper location. For documentation, please see the RRDtool website at:
- * http://oss.oetiker.ch/rrdtool/
+ * https://oss.oetiker.ch/rrdtool/
  * For usage examples, please see the rrd_binding_test project.
  ****************************************************************************/
 using System;
index cf325ef772a4662129bb9ee7deb4b3ea4d102355..9f22960c2411da650aa522148d6dff35a4a64a91 100644 (file)
@@ -1,7 +1,7 @@
 python-rrdtool
 ==============
 
-Python bindings for [RRDtool](http://oss.oetiker.ch/rrdtool) with a native C extension.
+Python bindings for [RRDtool](https://oss.oetiker.ch/rrdtool) with a native C extension.
 
 Supported Python versions: 2.6+, 3.3+.
 
index 9a11945d0264b5cb12fef7371d99e413c018af0c..248afd418c6ef9fda24adc35f623df7f9127413a 100644 (file)
@@ -262,7 +262,7 @@ static char _rrdtool_create__doc__[] = "Create a new Round Robin Database.\n\n\
     [DS:ds-name[=mapped-ds-name[source-index]]:DST:heartbeat:min:max]\n\
     [RRA:CF:xff:steps:rows]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html";
 
 static PyObject *
 _rrdtool_create(PyObject *Py_UNUSED(self), PyObject *args)
@@ -301,7 +301,7 @@ static char _rrdtool_dump__doc__[] = "Dump an RRD to XML.\n\n\
     file.rrd\n\
     [file.xml]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrddump.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrddump.en.html";
 
 static PyObject *
 _rrdtool_dump(PyObject *Py_UNUSED(self), PyObject *args)
@@ -340,7 +340,7 @@ static char _rrdtool_update__doc__[] = "Store a new set of values into\
    N|timestamp:value[:value...]\n\
    [timestamp:value[:value...] ...]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdupdate.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdupdate.en.html";
 
 static PyObject *
 _rrdtool_update(PyObject *Py_UNUSED(self), PyObject *args)
@@ -414,7 +414,7 @@ static char _rrdtool_fetch__doc__[] = "Fetch data from an RRD.\n\n\
     [-a|--align-start]\n\
     [-d|--daemon address]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdfetch.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdfetch.en.html";
 
 static PyObject *
 _rrdtool_fetch(PyObject *Py_UNUSED(self), PyObject *args)
@@ -491,7 +491,7 @@ static char _rrdtool_flushcached__doc__[] = "Flush RRD files from memory.\n\n\
     filename\n\
     [filename ...]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdflushcached.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdflushcached.en.html";
 
 static PyObject *
 _rrdtool_flushcached(PyObject *Py_UNUSED(self), PyObject *args)
@@ -585,7 +585,7 @@ static char _rrdtool_graph__doc__[] = "Create a graph based on one or more " \
     CDEF:vname=RPN expression\n\
     VDEF=vname:RPN expression\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html";
 
 static PyObject *
 _rrdtool_graph(PyObject *Py_UNUSED(self), PyObject *args)
@@ -643,7 +643,7 @@ static char _rrdtool_graphv__doc__[] = "Create a graph based on one or more " \
   This function works the same way as 'graph', but will return a info\n\
   dictionary instead of None.\n\n\
   Full documentation can be found at (graphv section):\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdgraph.en.html";
 
 static PyObject *
 _rrdtool_graphv(PyObject *Py_UNUSED(self), PyObject *args)
@@ -688,7 +688,7 @@ static char _rrdtool_xport__doc__[] = "Dictionary representation of data " \
     [CDEF:vname=rpn-expression]\n\
     [XPORT:vname[:legend]]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdxport.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdxport.en.html";
 
 static PyObject *
 _rrdtool_xport(PyObject *Py_UNUSED(self), PyObject *args)
@@ -848,7 +848,7 @@ static char _rrdtool_tune__doc__[] = "Modify some basic properties of a " \
     [-d|--data-source-type ds-name:DST]\n\
     [-r|--data-source-rename old-name:new-name]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdtune.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdtune.en.html";
 
 static PyObject *
 _rrdtool_tune(PyObject *Py_UNUSED(self), PyObject *args)
@@ -886,7 +886,7 @@ static char _rrdtool_first__doc__[] = "Get the first UNIX timestamp of the "\
     [--rraindex number]\n\
     [-d|--daemon address]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdfirst.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdfirst.en.html";
 
 static PyObject *
 _rrdtool_first(PyObject *Py_UNUSED(self), PyObject *args)
@@ -921,7 +921,7 @@ static char _rrdtool_last__doc__[] = "Get the UNIX timestamp of the most "\
     filename\n\
     [-d|--daemon address]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdlast.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdlast.en.html";
 
 static PyObject *
 _rrdtool_last(PyObject *Py_UNUSED(self), PyObject *args)
@@ -958,7 +958,7 @@ static char _rrdtool_resize__doc__[] = "Modify the number of rows in a "\
     GROW|SHRINK\n\
     rows\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdlast.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdlast.en.html";
 
 static PyObject *
 _rrdtool_resize(PyObject *Py_UNUSED(self), PyObject *args)
@@ -996,7 +996,7 @@ static char _rrdtool_info__doc__[] = "Extract header information from an "\
     [-d|--daemon address]\n\
     [-F|--noflush]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdinfo.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdinfo.en.html";
 
 static PyObject *
 _rrdtool_info(PyObject *Py_UNUSED(self), PyObject *args)
@@ -1033,7 +1033,7 @@ static char _rrdtool_lastupdate__doc__[] = "Returns datetime and value stored "\
     filename\n\
     [-d|--daemon address]\n\n\
   Full documentation can be found at:\n\
-  http://oss.oetiker.ch/rrdtool/doc/rrdlastupdate.en.html";
+  https://oss.oetiker.ch/rrdtool/doc/rrdlastupdate.en.html";
 
 static PyObject *
 _rrdtool_lastupdate(PyObject *Py_UNUSED(self), PyObject *args)
index 18cf5702d44d9e6c6c44af0197e7992fa887435d..97ec9906e43c69f8619d0886811c7483defa04e6 100755 (executable)
--- a/configure
+++ b/configure
@@ -20133,7 +20133,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of glib-2.0 is 2.28.7.
 
@@ -20154,7 +20154,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of glib-2.0 is 2.28.7.
 
@@ -20390,7 +20390,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of gthread-2.0 is x.x.x.
 
@@ -20411,7 +20411,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of gthread-2.0 is x.x.x.
 
@@ -20645,7 +20645,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of pcre is x.x.x.
 
@@ -20666,7 +20666,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of pcre is x.x.x.
 
@@ -20901,7 +20901,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of libpng is 1.4.8.
 
@@ -20922,7 +20922,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of libpng is 1.4.8.
 
@@ -21135,7 +21135,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of pangocairo is 1.28.4.
 
@@ -21156,7 +21156,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of pangocairo is 1.28.4.
 
@@ -21369,7 +21369,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of gobject-2.0 is 2.58.1.
 
@@ -21390,7 +21390,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of gobject-2.0 is 2.58.1.
 
@@ -21618,7 +21618,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of libxml-2.0 is 2.7.8.
 
@@ -21639,7 +21639,7 @@ $as_echo "$as_me: WARNING:
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of libxml-2.0 is 2.7.8.
 
index bf00ca94201b30ae6f2bb6ae86bd1d13d486cd90..abe9298a71240c30dc1f9db3c45a662325cf74d7 100644 (file)
@@ -55,7 +55,7 @@ Now make sure the BUILD_DIR exists and go there:
 Lets first assume you already have all the necessary libraries
 pre-installed.
 
- wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.1.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.1.tar.gz
  gunzip -c rrdtool-1.7.1.tar.gz | tar xf -
  cd rrdtool-1.7.1
  ./configure --prefix=$INSTALL_DIR && make && make install
@@ -219,7 +219,7 @@ environment variable will be helpful.
 Chances are very high that you already have that on your system ...
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/zlib-1.2.3.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/zlib-1.2.3.tar.gz
  gunzip -c zlib-1.2.3.tar.gz | tar xf -
  cd zlib-1.2.3
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC" --shared
@@ -234,7 +234,7 @@ drop the settings of LDFLAGS and CPPFLAGS. Note that the backslash (\) at
 the end of lines means that the command is split over multiple lines.
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/libpng-1.2.18.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/libpng-1.2.18.tar.gz
  gunzip -c libpng-1.2.18.tar.gz | tar xf -
  cd libpng-1.2.18
  env CFLAGS="-O3 -fPIC" ./configure --prefix=$INSTALL_DIR
@@ -244,7 +244,7 @@ the end of lines means that the command is split over multiple lines.
 =head3 Building freetype
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/freetype-2.3.5.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/freetype-2.3.5.tar.gz
  gunzip -c freetype-2.3.5.tar.gz | tar xf -
  cd freetype-2.3.5
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC"
@@ -259,7 +259,7 @@ add the following at the start the configure line:
 =head3 Building LibXML2
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/libxml2-2.6.32.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/libxml2-2.6.32.tar.gz
  gunzip -c libxml2-2.6.32.tar.gz | tar xf -
  cd libxml2-2.6.32
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC"
@@ -274,7 +274,7 @@ Run the fc-cache program to build the fontconfig cache after changing the
 config file.
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/fontconfig-2.4.2.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/fontconfig-2.4.2.tar.gz
  gunzip -c fontconfig-2.4.2.tar.gz   | tar xf -
  cd fontconfig-2.4.2
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC" --with-freetype-config=$INSTALL_DIR/bin/freetype-config
@@ -284,7 +284,7 @@ config file.
 =head3 Building Pixman
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/pixman-0.10.0.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/pixman-0.10.0.tar.gz
  gunzip -c pixman-0.10.0.tar.gz  | tar xf -
  cd pixman-0.10.0
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC"
@@ -294,7 +294,7 @@ config file.
 =head3 Building Cairo
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/cairo-1.6.4.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/cairo-1.6.4.tar.gz
  gunzip -c cairo-1.6.4.tar.gz   | tar xf -
  cd cairo-1.6.4
  ./configure --prefix=$INSTALL_DIR \
@@ -316,7 +316,7 @@ When building on Solaris you may want to do
 =head3 Building Glib
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/glib-2.15.4.tar.gz
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/glib-2.15.4.tar.gz
  gunzip -c glib-2.15.4.tar.gz  | tar xf -
  cd glib-2.15.4
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC"
@@ -326,7 +326,7 @@ When building on Solaris you may want to do
 =head3 Building Pango
 
  cd $BUILD_DIR
- wget http://oss.oetiker.ch/rrdtool/pub/libs/pango-1.21.1.tar.bz2
+ wget https://oss.oetiker.ch/rrdtool/pub/libs/pango-1.21.1.tar.bz2
  bunzip2 -c pango-1.21.1.tar.bz2 | tar xf -
  cd pango-1.21.1
  ./configure --prefix=$INSTALL_DIR CFLAGS="-O3 -fPIC" --without-x
index 77b69a58327e3e0be727cdabda8714d1ac0104b8..6c5776bed7c02bd29836e2e6ae1f10117f66d696 100644 (file)
@@ -6,8 +6,8 @@
                Tobias Lindenmann <tobias.lindenmann at 1und1.de>
 -->
 <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
-       xmlns:ns="http://oss.oetiker.ch/rrdtool/rrdtool-dump.xml" 
-       targetNamespace="http://oss.oetiker.ch/rrdtool/rrdtool-dump.xml" 
+       xmlns:ns="https://oss.oetiker.ch/rrdtool/rrdtool-dump.xml" 
+       targetNamespace="https://oss.oetiker.ch/rrdtool/rrdtool-dump.xml" 
        elementFormDefault="qualified">
        
        <!-- Root element -->
        
        <!-- Start of simpleTypes -->
        <!-- Allowed data source types. -->
-       <!-- @see http://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html-->
+       <!-- @see https://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html-->
        <xsd:simpleType name="DataSourceType">
                <xsd:restriction base="xsd:string">
                        <xsd:enumeration value="GAUGE"/>
        </xsd:simpleType>
        
        <!-- A ds-name must be 1 to 19 characters long in the characters [a-zA-Z0-9_]. -->
-       <!-- @see http://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html-->
+       <!-- @see https://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html-->
        <xsd:simpleType name="DataSourceNameType">
                <xsd:restriction base="xsd:string">
                        <xsd:pattern value="[a-zA-Z0-9_]{1,19}"/>
        </xsd:simpleType>
 
        <!-- Allowed consolidation function (cf). -->
-       <!-- @see http://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html-->
+       <!-- @see https://oss.oetiker.ch/rrdtool/doc/rrdcreate.en.html-->
        <xsd:simpleType name="ConsolidationFunctionType">
                <xsd:restriction base="xsd:string">
                        <xsd:enumeration value="AVERAGE"/>
index e6beff99e65593dde6f78bd551cc5d6bec48beeb..5872b017da4c98e8a8dc5ad639793d2cfd1a8e1f 100644 (file)
@@ -74,7 +74,7 @@ AC_DEFUN([EX_CHECK_ALL],
 
   You can find also find an archive copy on
 
-     http://oss.oetiker.ch/rrdtool/pub/libs
+     https://oss.oetiker.ch/rrdtool/pub/libs
 
   The last tested version of $4 is $5.
 
index 7ced3334166192ecc46d7dfa7a05165eb3d28605..7b3001c2f564cf9060f5ddb5d5ce357e27f1c9c5 100644 (file)
@@ -15,9 +15,9 @@ Version: 1.GIT
 Release: 1%{?dist}
 License: GPLv2+ with exceptions
 Group: Applications/Databases
-URL: http://oss.oetiker.ch/rrdtool/
-#Source0: http://oss.oetiker.ch/%{name}/pub/%{name}-%{version}.tar.gz
-Source0: http://oss.oetiker.ch/rrdtool/pub/beta/%{name}-%{version}.tar.gz
+URL: https://oss.oetiker.ch/rrdtool/
+#Source0: https://oss.oetiker.ch/%{name}/pub/%{name}-%{version}.tar.gz
+Source0: https://oss.oetiker.ch/rrdtool/pub/beta/%{name}-%{version}.tar.gz
 %if %{with_php}
 Source1: php4-%{svnrev}.tar.gz
 Patch1: rrdtool-1.3.0-beta4-fix-rrd_update-in-php-bindings.patch
index 12b24297af84304c8f1d1d8791c78ac8d3c64683..b17f958efbe7ee46a582559c7212d87b6e9cf885 100644 (file)
@@ -99,16 +99,16 @@ int rrd_dump_cb_r(
 
     if (opt_header == 1) {
         CB_PUTS("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
-        CB_PUTS("<!DOCTYPE rrd SYSTEM \"http://oss.oetiker.ch/rrdtool/rrdtool.dtd\">\n");
+        CB_PUTS("<!DOCTYPE rrd SYSTEM \"https://oss.oetiker.ch/rrdtool/rrdtool.dtd\">\n");
         CB_PUTS("<!-- Round Robin Database Dump -->\n");
         CB_PUTS("<rrd>\n");
     } else if (opt_header == 2) {
         CB_PUTS("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n");
         CB_PUTS("<!-- Round Robin Database Dump -->\n");
-        CB_PUTS("<rrd xmlns=\"http://oss.oetiker.ch/rrdtool/rrdtool-dump.xml\" "
+        CB_PUTS("<rrd xmlns=\"https://oss.oetiker.ch/rrdtool/rrdtool-dump.xml\" "
                 "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n");
-        CB_PUTS("\txsi:schemaLocation=\"http://oss.oetiker.ch/rrdtool/rrdtool-dump.xml "
-                "http://oss.oetiker.ch/rrdtool/rrdtool-dump.xsd\">\n");
+        CB_PUTS("\txsi:schemaLocation=\"https://oss.oetiker.ch/rrdtool/rrdtool-dump.xml "
+                "https://oss.oetiker.ch/rrdtool/rrdtool-dump.xsd\">\n");
     } else {
         CB_PUTS("<!-- Round Robin Database Dump -->\n");
         CB_PUTS("<rrd>\n");
index 83376967fb69e5ce2ac5f2675a54231114022ac8..d6ee93ba491b17d76675801efd0c56e25202f788 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 8e2edfec731f039e6914264e476837e56ede4e20..e5149f0e21898406c4984e0c216c099eed3d8406 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 2ab56cebe1377eca87a75eb2249359a947bcdd00..43f3af7a1e5bbfed38bda97f635c1c1c5b1b6993 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index f1dff3b025b4f9aafad6e150971690d6a2ca0283..e326b9ee1dbf5d951cffe878c99edeb64cf23e4f 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 2085648b6b97ae9274dd9f72e1f21ada2191a7be..ab0a3916ea1c34503e3e1bd2c5d480d1e4ef218f 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 23254e8ffae4067082156cdf493f273b2f86337e..38c39c27abb4e2169be109841a982a206bd0adaf 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 7d4f9c2d0f2568d726ba24cbd173afd58d4344fe..ecbde3b9868e4509dac42c2f64a7981c6f34e584 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index a288704b043dfde7543b87880cf8021d3d4b898a..805d4f5d5509bc869353c9909136ae6225847eae 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 292c1b874d65cc002c6f41453df49a76e34b0dbb..2373f41bf97d5ab3287c65f5d563c2b50f0e9830 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index a95d96e7a8a28ab0bb9a8581481ed03edcc8c21e..33432d789a8b9a7104beea1a2b6d624f3b9499c3 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 292c1b874d65cc002c6f41453df49a76e34b0dbb..2373f41bf97d5ab3287c65f5d563c2b50f0e9830 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index a95d96e7a8a28ab0bb9a8581481ed03edcc8c21e..33432d789a8b9a7104beea1a2b6d624f3b9499c3 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 6a246bc7fdf4b9520248adce34c0a86642cea648..618283b3ca7b530f376ddd970d472cac39d85df5 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index fa8ec3397417671dc75fae2cb863a87a387dbd48..5ea9bf9ee10f069474e122abbbdb5adf24a0aa21 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 0b640c77141e9696b146a6cada106f0013de94d8..cdbbfece2fd174ed43f5d3bfccd9ee2b1e2d289d 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 3030a04942b4de0b4a954c2f5a35857dec2e28e3..536116d0c92530f98fac06509a67ab2ba3e3693a 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index 16b17320c5c92577538bc2dd44a9985112e3d677..f7cc68b4d85c1b2805fb55984d8b479016725cbb 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE rrd SYSTEM "http://oss.oetiker.ch/rrdtool/rrdtool.dtd">
+<!DOCTYPE rrd SYSTEM "https://oss.oetiker.ch/rrdtool/rrdtool.dtd">
 <!-- Round Robin Database Dump -->
 <rrd>
        <version>0003</version>
index c4b75fe0b8f9b1d52dc0d590aeba5b87c42e18b5..d88b82928ac5a91850f899c86538c5da8a34191e 100644 (file)
@@ -18,7 +18,7 @@ BEGIN
     BLOCK "040904b0"\r
     BEGIN\r
       VALUE "Comments", "RRDtool is available under the terms of the GNU General Public License V2 or later"\r
-      VALUE "CompanyName", "The RRDtool Project, http://oss.oetiker.ch/rrdtool/"\r
+      VALUE "CompanyName", "The RRDtool Project, https://oss.oetiker.ch/rrdtool/"\r
       VALUE "LegalCopyright", "Copyright (c) 1998-2019 Tobias Oetiker"\r
       VALUE "FileDescription", "time-series data storage and display system"\r
       VALUE "ProductName", "RRDtool"\r
index 2b29a8c5a9da2eaf6bd664ee060cd4cf8657616f..3d09ae524e426ac2c2a0009887e33ef171efe266 100644 (file)
@@ -18,7 +18,7 @@ BEGIN
     BLOCK "040904b0"\r
     BEGIN\r
       VALUE "Comments", "RRDtool is available under the terms of the GNU General Public License V2 or later"\r
-      VALUE "CompanyName", "The RRDtool Project, http://oss.oetiker.ch/rrdtool/"\r
+      VALUE "CompanyName", "The RRDtool Project, https://oss.oetiker.ch/rrdtool/"\r
       VALUE "LegalCopyright", "Copyright (c) 1998-2019 Tobias Oetiker"\r
       VALUE "FileDescription", "time-series data storage and display system"\r
       VALUE "ProductName", "RRDtool"\r
index 5e973e40a7683168990f978367e6fc17c54d9e53..9eb6a7c97fc0f784e62f88319786b9b3fe010091 100644 (file)
@@ -18,7 +18,7 @@ BEGIN
     BLOCK "040904b0"\r
     BEGIN\r
       VALUE "Comments", "RRDtool is available under the terms of the GNU General Public License V2 or later"\r
-      VALUE "CompanyName", "The RRDtool Project, http://oss.oetiker.ch/rrdtool/"\r
+      VALUE "CompanyName", "The RRDtool Project, https://oss.oetiker.ch/rrdtool/"\r
       VALUE "LegalCopyright", "Copyright (c) 1998-2019 Tobias Oetiker"\r
       VALUE "FileDescription", "time-series data storage and display system"\r
       VALUE "ProductName", "RRDtool"\r
index ea95dc8405455b697f44b0369480cbdf958e1723..971b6f19a11645480d365301acb9d2c9ec7ef525 100644 (file)
@@ -18,7 +18,7 @@ BEGIN
     BLOCK "040904b0"\r
     BEGIN\r
       VALUE "Comments", "RRDtool is available under the terms of the GNU General Public License V2 or later"\r
-      VALUE "CompanyName", "The RRDtool Project, http://oss.oetiker.ch/rrdtool/"\r
+      VALUE "CompanyName", "The RRDtool Project, https://oss.oetiker.ch/rrdtool/"\r
       VALUE "LegalCopyright", "Copyright (c) 1998-2019 Tobias Oetiker"\r
       VALUE "FileDescription", "time-series data storage and display system"\r
       VALUE "ProductName", "RRDtool"\r