You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry if this is not the proper location to submit the issue, but I didn't found a fork of https://github.com/perma-id/w3id.org/ in the adlnet org to submit there.
# xAPI PROFILE SPEC VERSION
# ---------------------------------------------
# Ontology Rewrite rule to serve HTML content from the URI if requested
RewriteCond %{HTTP_ACCEPT} !application/rdf\+xml.*(text/html|application/xhtml\+xml)
RewriteCond %{HTTP_ACCEPT} text/html [OR]
RewriteCond %{HTTP_ACCEPT} application/xhtml\+xml [OR]
RewriteCond %{HTTP_USER_AGENT} ^Mozilla/.*
# Match the empty uri
RewriteRule ^$ https://adlnet.github.io/xapi-profiles [R=303]
The text was updated successfully, but these errors were encountered:
@imartinezortiz , this is the perfect place to bring things up. We've spun up a working group that meets every other Tuesday (including next Tuesday) and will address the issue then, if not before. If you aren't already part of it, let me know if you want an invitation. Thanks!
Per the 5/3/2022 meeting, @imartinezortiz has already tested the above fix. This was brought on by the xAPI Profile Server being the redirect from the w3ids. Whereas the vocab server successfully handled these, the xAPI Profile Server lacks some capability but also some rules have not been updated. @andyjohnson will submit a Pull Request once a certain threshold/timing has been reached to the w3id repository maintainers.
Sorry if this is not the proper location to submit the issue, but I didn't found a fork of https://github.com/perma-id/w3id.org/ in the adlnet org to submit there.
Reviewing the xAPI profile structure: profile properties section of the spec I realized that following the link https://w3id.org/xapi/profiles#1.0 included in the
conformsTo
attribute, does not redirect to https://adlnet.github.io/xapi-profiles/#1.0, but instead shows the empty content of https://w3id.org/xapi/profiles directory.The problems seems to be related to https://github.com/perma-id/w3id.org/blob/master/xapi/profiles/.htaccess#L34. My understanding is that the hash / fragment part is never seen by the server so the pattern never matches. I've tried locally the following directive and it works:
The text was updated successfully, but these errors were encountered: