Skip to content

RawGit is shutting down, replace it with jsDelivr #202

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/en/administration.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ The typical pattern for data in SF is to load in a graph named after the URI sou
This is the case for the ontologies. But all the from specifications loaded by PopulateRDFCache are in the graph `urn:form_specs` .
The I18N stuff is managed in the file [translations\_list.ttl](https://github.com/jmvanel/rdf-i18n/blob/master/translations_list.ttl) in a sister github project.
For example, the FOAF I18N stuff in https://github.com/jmvanel/rdf-i18n/tree/master/foaf is loaded in their respective HTPP github paths and corresponding graph URI
https://rawgit.com/jmvanel/rdf-i18n/master/foaf/foaf.fr.ttl .
https://cdn.jsdelivr.net/gh/jmvanel/rdf-i18n@master/foaf/foaf.fr.ttl .

**CAUTION** do not load data or configuration into the un-named (default) graph. It would not be taken in account by the framework.

Expand Down
6 changes: 3 additions & 3 deletions scala/forms_play/public/editor-pen.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<html>
<head>
<script type="text/javascript" async="true" src="https://rawgit.com/sofish/pen/master/src/pen.js"></script>
<script type="text/javascript" async="true" src="https://rawgit.com/sofish/pen/master/src/markdown.js"></script>
<link rel="stylesheet" href="https://rawgit.com/sofish/pen/master/src/pen.css"></link>
<script type="text/javascript" async="true" src="https://cdn.jsdelivr.net/gh/sofish/pen@master/src/pen.js"></script>
<script type="text/javascript" async="true" src="https://cdn.jsdelivr.net/gh/sofish/pen@master/src/markdown.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/sofish/pen@master/src/pen.css"></link>
</head>
<body>
test 1
Expand Down