From ace8252569289b42361404a33e7e650a7c6aa716 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 09:34:44 +0200 Subject: update changelog --- CHANGELOG | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 472dad3e6..62645b2b1 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,7 @@ -Hubzilla 3.4 (????-??-??) +Hubzilla 3.4 (2018-05-04) + - Provide warnings about profile photo and cover photo permissions + - Don't duplicate addressbook entries on repeated channel imports + - Where possible strip zid parameter from links that get pasted into posts so that they will get a correct zid when rendered - Rename boxy schema to Focus-Boxy - Rename BS-Default schema to Focus-Light - Mark simple_* schemas unmaintained and deprecated - they will be removed in next release if nobody steps up to maintain them. @@ -54,6 +57,7 @@ Hubzilla 3.4 (????-??-??) - Fix pending registrations visible in admin accounts Addons + Pubcrawl: fix issues with "private" messages Pubcrawl: fix issues with postgresql Fuzzloc: new addon to blur your browser location Pubcrawl: implement follow by webfinger -- cgit v1.2.3 From 998dd582068a2ffd31f3388aaefe4d639d7eb9c0 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 09:37:22 +0200 Subject: switch DIRECTORY_FALLBACK_MASTER to https://zotadel.net --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 5cf6cedeb..981ca8837 100755 --- a/boot.php +++ b/boot.php @@ -81,7 +81,7 @@ define ( 'DIRECTORY_MODE_STANDALONE', 0x0100); // A detached (off the grid) hub // point to go out and find the rest of the world. define ( 'DIRECTORY_REALM', 'RED_GLOBAL'); -define ( 'DIRECTORY_FALLBACK_MASTER', 'https://gravizot.de'); +define ( 'DIRECTORY_FALLBACK_MASTER', 'https://zotadel.net'); $DIRECTORY_FALLBACK_SERVERS = array( 'https://hubzilla.zottel.net', -- cgit v1.2.3 From 76e644e18af572e5ea96223a2ad3c48f5e34be37 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 12:00:59 +0200 Subject: bump version --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot.php b/boot.php index 981ca8837..f7c7e645a 100755 --- a/boot.php +++ b/boot.php @@ -50,7 +50,7 @@ require_once('include/attach.php'); require_once('include/bbcode.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '3.5.2' ); +define ( 'STD_VERSION', '3.5.3' ); define ( 'ZOT_REVISION', '6.0a' ); -- cgit v1.2.3 From 34f6d9f7142833ef74355b49fb9cf47f93dcea20 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 13:54:12 +0200 Subject: missing basetag --- include/text.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/include/text.php b/include/text.php index c7417a19b..5be44c3cb 100644 --- a/include/text.php +++ b/include/text.php @@ -2559,6 +2559,8 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag, $i $basetag = substr($tag,7); $basetag = substr($basetag,0,-6); } + else + $basetag = substr($tag,1); //create text for link @@ -2587,6 +2589,7 @@ function handle_tag($a, &$body, &$access_tag, &$str_tags, $profile_uid, $tag, $i 'url' => $url, 'contact' => $r[0] ]; + } //is it a person tag? @@ -3334,4 +3337,4 @@ function unique_multidim_array($array, $key) { $i++; } return $temp_array; -} \ No newline at end of file +} -- cgit v1.2.3 From 97cb1089377681aa0f7b1c14aa86e00be4ce6ca6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 22:03:51 +0200 Subject: missing permission description --- Zotlabs/Module/Wiki.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php index 7dc8eb1bc..322a3933c 100644 --- a/Zotlabs/Module/Wiki.php +++ b/Zotlabs/Module/Wiki.php @@ -95,7 +95,7 @@ class Wiki extends \Zotlabs\Web\Controller { $owner['channel_deny_gid']) ? 'lock' : 'unlock' ), - 'acl' => populate_acl($owner_acl), + 'acl' => populate_acl($owner_acl, false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_wiki')), 'allow_cid' => acl2json($owner_acl['allow_cid']), 'allow_gid' => acl2json($owner_acl['allow_gid']), 'deny_cid' => acl2json($owner_acl['deny_cid']), -- cgit v1.2.3 From 90cf238019a06e4f76a4523e9f78243edd3c14f6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 22:13:45 +0200 Subject: fix too big buttons in wiki list --- view/css/mod_wiki.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/view/css/mod_wiki.css b/view/css/mod_wiki.css index e0b02b414..998b932db 100644 --- a/view/css/mod_wiki.css +++ b/view/css/mod_wiki.css @@ -33,7 +33,7 @@ width: 100%; } -td i { +td > i { padding: 7px 5px; cursor: pointer; } @@ -68,4 +68,4 @@ code { #wiki-content-container code { background: #F5F5F5; -} \ No newline at end of file +} -- cgit v1.2.3 From f995ef012444617ead1760d16f712ca0051dc68b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 4 May 2018 22:46:43 +0200 Subject: set XML_OPTION_SKIP_WHITE to 1 again --- include/network.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/network.php b/include/network.php index a00ede6bf..c55660da8 100644 --- a/include/network.php +++ b/include/network.php @@ -807,7 +807,7 @@ function xml2array($contents, $namespaces = true, $get_attributes=1, $priority = xml_parser_set_option($parser, XML_OPTION_TARGET_ENCODING, "UTF-8"); // http://minutillo.com/steve/weblog/2004/6/17/php-xml-and-character-encodings-a-tale-of-sadness-rage-and-data-loss xml_parser_set_option($parser, XML_OPTION_CASE_FOLDING, 0); - xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 0); + xml_parser_set_option($parser, XML_OPTION_SKIP_WHITE, 1); @xml_parse_into_struct($parser, trim($contents), $xml_values); @xml_parser_free($parser); @@ -2052,4 +2052,4 @@ function jsonld_document_loader($url) { } return []; -} \ No newline at end of file +} -- cgit v1.2.3 From 733a5ccb08e0f6ac3e9ec7908b3b73957e0f7117 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 5 May 2018 07:32:35 +0200 Subject: use cursor-pointer class instead of fakelink to avoid the link color for the dropdown caret --- view/tpl/conv_item.tpl | 2 +- view/tpl/conv_list.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index dd83bd9e9..f72737d82 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -31,7 +31,7 @@
{{$item.name}} {{if $item.thread_author_menu}} - +