From 6bd35ef74006d4220640983e2aa72decd49f6379 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 21 Sep 2017 18:29:41 -0700 Subject: [PATCH 1/6] log the lack of http sig info --- Zotlabs/Web/HTTPSig.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Zotlabs/Web/HTTPSig.php b/Zotlabs/Web/HTTPSig.php index 986e10d73..8062764fb 100644 --- a/Zotlabs/Web/HTTPSig.php +++ b/Zotlabs/Web/HTTPSig.php @@ -67,8 +67,10 @@ class HTTPSig { $sig_block = self::parse_sigheader($headers['authorization']); } - if(! $sig_block) + if(! $sig_block) { + logger('no signature provided.'); return $result; + } logger('sig_block: ' . print_r($sig_block,true), LOGGER_DATA); From fefc2290a142072f740d091e800258d957378e96 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 21 Sep 2017 21:32:59 -0700 Subject: [PATCH 2/6] pubsites broken and directory server admin selection includes known dead sites --- Zotlabs/Module/Admin/Site.php | 2 +- Zotlabs/Module/Pubsites.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Module/Admin/Site.php b/Zotlabs/Module/Admin/Site.php index 4c5b82e78..4946e3433 100644 --- a/Zotlabs/Module/Admin/Site.php +++ b/Zotlabs/Module/Admin/Site.php @@ -206,7 +206,7 @@ class Site { // directory server should not be set or settable unless we are a directory client if($dirmode == DIRECTORY_MODE_NORMAL) { - $x = q("select site_url from site where site_flags in (%d,%d) and site_realm = '%s'", + $x = q("select site_url from site where site_flags in (%d,%d) and site_realm = '%s' and site_dead = 0", intval(DIRECTORY_MODE_SECONDARY), intval(DIRECTORY_MODE_PRIMARY), dbesc($realm) diff --git a/Zotlabs/Module/Pubsites.php b/Zotlabs/Module/Pubsites.php index d87967189..ef02cf099 100644 --- a/Zotlabs/Module/Pubsites.php +++ b/Zotlabs/Module/Pubsites.php @@ -36,7 +36,8 @@ class Pubsites extends \Zotlabs\Web\Controller { $o .= ''; if($j['sites']) { foreach($j['sites'] as $jj) { - if(! \Zotlabs\Lib\System::compatible_project($jj['project'])) + $projectname = explode(' ',$jj['project']); + if(! \Zotlabs\Lib\System::compatible_project($projectname[0])) continue; if(strpos($jj['version'],' ')) { $x = explode(' ', $jj['version']); From ae5a1362a7ea864cafc2ecc652863eeb9939742c Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 21 Sep 2017 22:19:21 -0700 Subject: [PATCH 3/6] no visible feedback when moving the affinity slider and waiting for content to load, the appropriate spinner div seems to have gone missing at some time in the past --- view/tpl/main_slider.tpl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/view/tpl/main_slider.tpl b/view/tpl/main_slider.tpl index a4e2e1925..d4f0dd936 100755 --- a/view/tpl/main_slider.tpl +++ b/view/tpl/main_slider.tpl @@ -1,4 +1,5 @@
+