summaryrefslogtreecommitdiffstats
path: root/src/dialogs
diff options
context:
space:
mode:
authorJon Phillips <jon@fabricatorz.com>2006-04-30 00:19:02 +0000
committerkidproto <kidproto@users.sourceforge.net>2006-04-30 00:19:02 +0000
commitae8fcafb494fc318b059f45a0d32595506885ef7 (patch)
tree97c01ab6635ddcc5bbfc42794f1c55109f38cd4f /src/dialogs
parentrationalize function names and remove spurious soft_ptr (diff)
downloadinkscape-ae8fcafb494fc318b059f45a0d32595506885ef7.tar.gz
inkscape-ae8fcafb494fc318b059f45a0d32595506885ef7.zip
updated cc licenses to 2.5
(bzr r637)
Diffstat (limited to 'src/dialogs')
-rw-r--r--src/dialogs/rdf.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/dialogs/rdf.cpp b/src/dialogs/rdf.cpp
index 4f86264c4..df89ee648 100644
--- a/src/dialogs/rdf.cpp
+++ b/src/dialogs/rdf.cpp
@@ -5,8 +5,10 @@
*
* Authors:
* Kees Cook <kees@outflux.net>
+ * Jon Phillips <jon@rejon.org>
*
* Copyright (C) 2004 Kees Cook <kees@outflux.net>
+ * Copyright (C) 2006 Jon Phillips <jon@rejon.org>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*
@@ -174,32 +176,32 @@ struct rdf_double_t rdf_license_freeart [] = {
struct rdf_license_t rdf_licenses [] = {
{ _("CC Attribution"),
- "http://creativecommons.org/licenses/by/2.0/",
+ "http://creativecommons.org/licenses/by/2.5/",
rdf_license_cc_a,
},
{ _("CC Attribution-ShareAlike"),
- "http://creativecommons.org/licenses/by-sa/2.0/",
+ "http://creativecommons.org/licenses/by-sa/2.5/",
rdf_license_cc_a_sa,
},
{ _("CC Attribution-NoDerivs"),
- "http://creativecommons.org/licenses/by-nd/2.0/",
+ "http://creativecommons.org/licenses/by-nd/2.5/",
rdf_license_cc_a_nd,
},
{ _("CC Attribution-NonCommercial"),
- "http://creativecommons.org/licenses/by-nc/2.0/",
+ "http://creativecommons.org/licenses/by-nc/2.5/",
rdf_license_cc_a_nc,
},
{ _("CC Attribution-NonCommercial-ShareAlike"),
- "http://creativecommons.org/licenses/by-nc-sa/2.0/",
+ "http://creativecommons.org/licenses/by-nc-sa/2.5/",
rdf_license_cc_a_nc_sa,
},
{ _("CC Attribution-NonCommercial-NoDerivs"),
- "http://creativecommons.org/licenses/by-nc-nd/2.0/",
+ "http://creativecommons.org/licenses/by-nc-nd/2.5/",
rdf_license_cc_a_nc_nd,
},