diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-21 13:29:48 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-21 13:29:48 -0700 |
commit | b745a143c3e622705a73f083dc3adbaf28787061 (patch) | |
tree | 483bb4841d8bc3bf6d725e3d5665c12a569ef7c5 | |
parent | 6e9e267b2750df331a4a9d6d5910714bec738ec0 (diff) | |
download | volse-hubzilla-b745a143c3e622705a73f083dc3adbaf28787061.tar.gz volse-hubzilla-b745a143c3e622705a73f083dc3adbaf28787061.tar.bz2 volse-hubzilla-b745a143c3e622705a73f083dc3adbaf28787061.zip |
go back to the un-versioned jsonld context
-rwxr-xr-x | boot.php | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -456,7 +456,16 @@ define ( 'NAMESPACE_STATUSNET', 'http://status.net/schema/api/1/' ); define ( 'NAMESPACE_ATOM1', 'http://www.w3.org/2005/Atom' ); define ( 'NAMESPACE_YMEDIA', 'http://search.yahoo.com/mrss/' ); -define ( 'ACTIVITYSTREAMS_JSONLD_REV', 'https://www.w3.org/ns/activitystreams-history/v1.8.jsonld' ); +// We should be using versioned jsonld contexts so that signatures will be slightly more reliable. +// Why signatures are unreliable by design is a problem nobody seems to care about +// "because it's a proposed W3C standard". . + +// Anyway, if you use versioned contexts, communication with Mastodon fails. Have not yet investigated +// the reason for the dependency but for the current time, use the standard non-versioned context. +//define ( 'ACTIVITYSTREAMS_JSONLD_REV', 'https://www.w3.org/ns/activitystreams-history/v1.8.jsonld' ); + +define ( 'ACTIVITYSTREAMS_JSONLD_REV', 'https://www.w3.org/ns/activitystreams' ); + define ( 'ZOT_APSCHEMA_REV', '/apschema/v1.2' ); /** * activity stream defines |