# HG changeset patch # User John W. Eaton # Date 1524079197 14400 # Node ID ed0c2683a316f28c237f800e617484ef55cfbd8d # Parent 607c59f168343a0a9f4e81d3d4cd1cec2b433987# Parent 35115cc6183bf78c08fdbe4b628211c7e1880353 maint: Merge stable to default. diff -r 607c59f16834 -r ed0c2683a316 libgui/languages/nl_NL.ts --- a/libgui/languages/nl_NL.ts Wed Apr 18 09:22:02 2018 -0400 +++ b/libgui/languages/nl_NL.ts Wed Apr 18 15:19:57 2018 -0400 @@ -544,7 +544,7 @@ global - gobaal + globaal diff -r 607c59f16834 -r ed0c2683a316 libinterp/op-kw-docs --- a/libinterp/op-kw-docs Wed Apr 18 09:22:02 2018 -0400 +++ b/libinterp/op-kw-docs Wed Apr 18 15:19:57 2018 -0400 @@ -650,14 +650,14 @@ @end example @seealso{switch} @end deftypefn -## FIXME: Can't have duplicate DOCSTRING entries. The function methods -## already has a docstring which overrides this keyword definition. -#methods -#@c libinterp/parse-tree/oct-parse.in.yy -#-*- texinfo -*- -#@deftypefn {} {} methods -#Begin a methods block in a classdef definition. -#@end deftypefn +@c ## FIXME: Can't have duplicate DOCSTRING entries. The function methods +@c ## already has a docstring which overrides this keyword definition. +@c #methods +@c #@c libinterp/parse-tree/oct-parse.in.yy +@c #-*- texinfo -*- +@c #@deftypefn {} {} methods +@c #Begin a methods block in a classdef definition. +@c #@end deftypefn otherwise @c libinterp/parse-tree/oct-parse.in.yy -*- texinfo -*- diff -r 607c59f16834 -r ed0c2683a316 liboctave/util/url-transfer.cc --- a/liboctave/util/url-transfer.cc Wed Apr 18 09:22:02 2018 -0400 +++ b/liboctave/util/url-transfer.cc Wed Apr 18 15:19:57 2018 -0400 @@ -36,6 +36,7 @@ #include "dir-ops.h" #include "file-ops.h" #include "file-stat.h" +#include "oct-env.h" #include "unwind-prot.h" #include "url-transfer.h" @@ -323,6 +324,14 @@ init ("", "", std::cin, os); + std::string cainfo = sys::env::getenv ("CURLOPT_CAINFO"); + if (! cainfo.empty ()) + SETOPT (CURLOPT_CAINFO, cainfo.c_str ()); + + std::string capath = sys::env::getenv ("CURLOPT_CAPATH"); + if (! capath.empty ()) + SETOPT (CURLOPT_CAPATH, capath.c_str ()); + SETOPT (CURLOPT_NOBODY, 0); // Restore the default HTTP request method to GET after setting