From 8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Mon, 10 Jun 2024 18:40:43 +0200 Subject: http: -> https: --- README | 6 +++--- it_auto_prepend.php | 4 ++-- it_html.class | 2 +- it_mail.class | 2 +- it_url.class | 6 +++--- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README b/README index 134475a..44e32c1 100644 --- a/README +++ b/README @@ -11,7 +11,7 @@ tasks in PHP easier. It works in PHP 7.0 and up. Our examples omit array() around function parameters and use dangling commas. To get that, you can either use our just-in-time syntax converter or use -our patch for PHP (see http://cschneid.com/php/ for info). To use the syntax +our patch for PHP (see https://cschneid.com/php/ for info). To use the syntax converter, see the chapter about it_auto_prepend.php below. it_auto_prepend.php - ITools environment (optional) @@ -45,7 +45,7 @@ Example: head('title' => "welcome earth"), body( p('style' => "margin:1em", - a('href' => U("http://google.com/search", 'q' => "Hello World"), "Hello World"), + a('href' => U("https://google.com/search", 'q' => "Hello World"), "Hello World"), ), ), ); @@ -181,7 +181,7 @@ Helper functions dealing with URLs. Example: $filename = it_url::get_cache( - 'url' => "http://static.php.net/www.php.net/images/php.gif", + 'url' => "https://static.php.net/www.php.net/images/php.gif", 'timeout' => 5, 'cachedir' => $_SERVER['DOCUMENT_ROOT'] . "/cache", ); diff --git a/it_auto_prepend.php b/it_auto_prepend.php index d65bc7b..b606e3f 100644 --- a/it_auto_prepend.php +++ b/it_auto_prepend.php @@ -70,14 +70,14 @@ function it_initialize() # IT_HOME is recommended variable name for applications $GLOBALS['IT_HOME'] = $GLOBALS['ULTRAHOME'] = it_untaint($GLOBALS['ULTRAHOME'], TC_ALL); - try { $needsconvert = $GLOBALS['IT_SYNTAXCONVERTER_DIR'] !== false && !@eval("return is_array(42=>69,);"); } catch (Error $needsconvert) {} # Check if PHP is patched to support our syntax, see http://cschneid.com/php/ + try { $needsconvert = $GLOBALS['IT_SYNTAXCONVERTER_DIR'] !== false && !@eval("return is_array(42=>69,);"); } catch (Error $needsconvert) {} # Check if PHP is patched to support our syntax, see https://cschneid.com/php/ if ($needsconvert && !$GLOBALS['IT_SYNTAXCONVERTER_DIR']) { $GLOBALS['IT_SYNTAXCONVERTER_DIR'] = $GLOBALS['ULTRAHOME'] . "/tmp"; if (!is_writeable($GLOBALS['IT_SYNTAXCONVERTER_DIR']) || !function_exists("posix_geteuid") || posix_geteuid() != fileowner($GLOBALS['IT_SYNTAXCONVERTER_DIR'])) - die(($webmode ? "
" : "") . "Seems to be running in shared environment, manually set\n\$GLOBALS['IT_SYNTAXCONVERTER_DIR'] in $it_path/auto_prepend_local.php\nto either:\n a) FALSE (syntax conversion disabled) or\n b) the path to a writeable directory (NOTE: THIS IS UNSAFE!) or\n c) install the PHP patch from http://cschneid.com/php/\n" . ($webmode ? "" : "")); + die(($webmode ? "
" : "") . "Seems to be running in shared environment, manually set\n\$GLOBALS['IT_SYNTAXCONVERTER_DIR'] in $it_path/auto_prepend_local.php\nto either:\n a) FALSE (syntax conversion disabled) or\n b) the path to a writeable directory (NOTE: THIS IS UNSAFE!) or\n c) install the PHP patch from https://cschneid.com/php/\n" . ($webmode ? "" : "")); } ini_set('include_path', ($GLOBALS['IT_SYNTAXCONVERTER_DIR'] ? $GLOBALS['IT_SYNTAXCONVERTER_DIR'] . "/it_syntaxconverter" . PATH_SEPARATOR : '') . $it_path . PATH_SEPARATOR . $include_path); diff --git a/it_html.class b/it_html.class index 9780d5d..7e7f190 100644 --- a/it_html.class +++ b/it_html.class @@ -252,7 +252,7 @@ function body($args) $toggled_host = preg_replace("/\.$var(-[^.-]+)?/", "", $_SERVER['HTTP_HOST']); else $toggled_host = preg_replace('/^(\w+(-\w+)*)/', "\$1.$var", $_SERVER['HTTP_HOST']); - $debug_links[] = a(array('href' => U('http://' . $toggled_host . $_SERVER['REQUEST_URI']), 'style' => 'font-weight:' . (EDC($var) ? 'bold' : 'normal') . ';'), $var); + $debug_links[] = a(array('href' => U('https://' . $toggled_host . $_SERVER['REQUEST_URI']), 'style' => 'font-weight:' . (EDC($var) ? 'bold' : 'normal') . ';'), $var); } $args[] = div(array('style' => 'position:fixed; bottom:0; z-index:9999; font-family:monospace; background:white'), "Debugvars: " . implode(" ", $debug_links)); } diff --git a/it_mail.class b/it_mail.class index 63bcc28..11a4252 100644 --- a/it_mail.class +++ b/it_mail.class @@ -38,7 +38,7 @@ define('IT_MAIL_CHECKEMAIL_OK', 10); *