Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e50e674

Browse files
committed
DOC: migrate dead web.resource.org/cc URIs to creativecommons.org/ns
The Creative Commons RDF vocabulary URIs under web.resource.org/cc/* return 404 (the domain has been defunct for years). The current canonical namespace is http://creativecommons.org/ns#, which preserves the predicate and class IRIs used in the license block attached to the dolphin SVG provenance (PublicDomain, Reproduction, Distribution, DerivativeWorks all resolve there). Refs #30306.
1 parent 36994e0 commit e50e674

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • galleries/examples/shapes_and_collections

galleries/examples/shapes_and_collections/dolphin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
plt.plot(x, y, 'o', color=(0.9, 0.9, 1.0), alpha=0.8)
3939

4040
# Dolphin from OpenClipart library by Andy Fitzsimon
41-
# <cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
42-
# <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
43-
# <cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
44-
# <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
41+
# <cc:License rdf:about="http://creativecommons.org/ns#PublicDomain">
42+
# <cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/>
43+
# <cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/>
44+
# <cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/>
4545
# </cc:License>
4646

4747
dolphin = """

0 commit comments

Comments
 (0)