From 9028e6bd30d5e457c63365cffba693a071bd1e4e Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 Jan 2015 19:41:09 -0800 Subject: typo in postgres db update, remove redmatrix.nl from directory servers since it isn't a directory server any more. --- boot.php | 1 - 1 file changed, 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index bca90fd27..2c85d52f0 100755 --- a/boot.php +++ b/boot.php @@ -81,7 +81,6 @@ define ( 'DIRECTORY_FALLBACK_MASTER', 'https://zothub.com'); $DIRECTORY_FALLBACK_SERVERS = array( 'https://zothub.com', 'https://zotid.net', - 'https://redmatrix.nl', 'https://red.zottel.red', 'https://red.pixelbits.de', 'https://whogotzot.com' -- cgit v1.2.3 From 2d682cf8b098899148017429bb7826f98accbe97 Mon Sep 17 00:00:00 2001 From: friendica Date: Tue, 20 Jan 2015 21:08:44 -0800 Subject: add my.federated.social as directory server --- boot.php | 1 + 1 file changed, 1 insertion(+) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 2c85d52f0..98ff45ebb 100755 --- a/boot.php +++ b/boot.php @@ -83,6 +83,7 @@ $DIRECTORY_FALLBACK_SERVERS = array( 'https://zotid.net', 'https://red.zottel.red', 'https://red.pixelbits.de', + 'https://my.federated.social', 'https://whogotzot.com' ); -- cgit v1.2.3 From 503047dc327a514563a1be64bba163100af5cdec Mon Sep 17 00:00:00 2001 From: Jeroen Date: Thu, 22 Jan 2015 00:11:00 +0000 Subject: added redmatrix.nl back as a directory server. this was not the issue with the performance problems --- boot.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 98ff45ebb..88e79a95c 100755 --- a/boot.php +++ b/boot.php @@ -84,7 +84,8 @@ $DIRECTORY_FALLBACK_SERVERS = array( 'https://red.zottel.red', 'https://red.pixelbits.de', 'https://my.federated.social', - 'https://whogotzot.com' + 'https://whogotzot.com', + 'https://redmatrix.nl' ); -- cgit v1.2.3 From 4ff71fc0c7d28b8a843cc67eac1d9463afe575ee Mon Sep 17 00:00:00 2001 From: marijus Date: Thu, 22 Jan 2015 02:34:38 +0100 Subject: change mod/sharedwithme backend to use activity object - this is not backwards compatible --- boot.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'boot.php') diff --git a/boot.php b/boot.php index 98ff45ebb..d6c9af7bb 100755 --- a/boot.php +++ b/boot.php @@ -501,7 +501,6 @@ define ( 'ACTIVITY_FAVORITE', NAMESPACE_ACTIVITY_SCHEMA . 'favorite' ); define ( 'ACTIVITY_POKE', NAMESPACE_ZOT . '/activity/poke' ); define ( 'ACTIVITY_MOOD', NAMESPACE_ZOT . '/activity/mood' ); -define ( 'ACTIVITY_FILE', NAMESPACE_ZOT . '/activity/file' ); define ( 'ACTIVITY_OBJ_COMMENT', NAMESPACE_ACTIVITY_SCHEMA . 'comment' ); define ( 'ACTIVITY_OBJ_NOTE', NAMESPACE_ACTIVITY_SCHEMA . 'note' ); @@ -515,6 +514,7 @@ define ( 'ACTIVITY_OBJ_TAGTERM', NAMESPACE_ZOT . '/activity/tagterm' ); define ( 'ACTIVITY_OBJ_PROFILE', NAMESPACE_ZOT . '/activity/profile' ); define ( 'ACTIVITY_OBJ_THING', NAMESPACE_ZOT . '/activity/thing' ); define ( 'ACTIVITY_OBJ_LOCATION',NAMESPACE_ZOT . '/activity/location' ); +define ( 'ACTIVITY_OBJ_FILE', NAMESPACE_ZOT . '/activity/file' ); /** * item weight for query ordering -- cgit v1.2.3