Skip to content

Commit ce8a340

Browse files
committed
Finish 3.3.2
2 parents b98ae17 + 13a0f70 commit ce8a340

File tree

12 files changed

+4059
-3399
lines changed

12 files changed

+4059
-3399
lines changed

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ $:.unshift(File.expand_path(File.join(File.dirname(__FILE__), 'lib')))
33
require 'rdf'
44
require 'rdf/vocab'
55
require 'json'
6+
require 'uri'
67
begin
78
require 'linkeddata'
89
rescue LoadError

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.1
1+
3.3.2

lib/rdf/vocab/bf2.rb

Lines changed: 343 additions & 272 deletions
Large diffs are not rendered by default.

lib/rdf/vocab/bibframe.rb

Lines changed: 343 additions & 272 deletions
Large diffs are not rendered by default.

lib/rdf/vocab/dcat.rb

Lines changed: 294 additions & 136 deletions
Large diffs are not rendered by default.

lib/rdf/vocab/doap.rb

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ module RDF::Vocab
1212
"http://purl.org/dc/elements/1.1/creator": "Edd Wilder-James",
1313
"http://purl.org/dc/elements/1.1/description": ["The Description of a Project (DOAP) vocabulary, described using W3C RDF Schema and the Web Ontology Language.", {cs: "Slovník Description of a Project (DOAP, Popis projektu), popsaný použitím W3C RDF Schema a Web Ontology Language.", de: "Das Vokabular \"Description of a Project (DOAP)\", beschrieben durch W3C RDF Schema and the Web Ontology Language.", es: "El vocabulario Description of a Project (DOAP, Descripción de un Proyecto), descrito usando RDF Schema de W3C\n\t\ty Web Ontology Language.", fr: "Le vocabulaire Description Of A Project (DOAP, Description D'Un Projet),\n\t\tdécrit en utilisant RDF Schema du W3C et OWL.", pt: "Vocabulário de descrição de um Projeto (DOAP - Description of a Project), descrito no esquema (schema) W3C RDF e na Web Ontology Language."}],
1414
"http://purl.org/dc/elements/1.1/format": "application/rdf+xml",
15-
"http://purl.org/dc/elements/1.1/rights": "Copyright © 2004-2018 Edd Dumbill, Edd Wilder-James",
15+
"http://purl.org/dc/elements/1.1/rights": "Copyright © The DOAP Authors",
1616
"http://purl.org/dc/elements/1.1/title": "Description of a Project (DOAP) vocabulary",
1717
"http://www.w3.org/2002/07/owl#imports": "http://xmlns.com/foaf/0.1/",
1818
"http://xmlns.com/foaf/0.1/maker": term(
@@ -153,7 +153,7 @@ module RDF::Vocab
153153
range: "http://www.w3.org/2000/01/rdf-schema#Literal",
154154
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
155155
property :developer,
156-
comment: {en: "Developer of software for the project.", cs: "Vývojář softwaru projektu.", de: "Software-Entwickler für eine Projekt.", es: "Desarrollador de software para el proyecto.", fr: "Développeur pour le projet.", pt: "Programador de software para o projeto."},
156+
comment: {en: "Developer of software for the project.", cs: "Vývojář softwaru projektu.", de: "Software-Entwickler für das Projekt.", es: "Desarrollador de software para el proyecto.", fr: "Développeur pour le projet.", pt: "Programador de software para o projeto."},
157157
domain: "http://usefulinc.com/ns/doap#Project",
158158
isDefinedBy: "http://usefulinc.com/ns/doap#",
159159
label: {en: "developer", cs: "vývojář", de: "Entwickler", es: "desarrollador", fr: "développeur", pt: "programador"},
@@ -166,8 +166,14 @@ module RDF::Vocab
166166
label: {en: "developer forum"},
167167
range: "http://rdfs.org/sioc/ns#Container",
168168
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
169+
property :documentation,
170+
comment: {en: "Documentation of the project.", fr: "Aide pour l’utilisation de ce projet."},
171+
domain: "http://usefulinc.com/ns/doap#Project",
172+
isDefinedBy: "http://usefulinc.com/ns/doap#",
173+
label: {en: "documentation", fr: "aide"},
174+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
169175
property :documenter,
170-
comment: {en: "Contributor of documentation to the project.", cs: "Spoluautor dokumentace projektu.", de: "Mitarbeiter an der Dokumentation eines Projektes.", es: "Proveedor de documentación para el proyecto.", fr: "Collaborateur à la documentation du projet.", pt: "Contribuidor para a documentação do projeto."},
176+
comment: {en: "Contributor of documentation to the project.", cs: "Spoluautor dokumentace projektu.", de: "Mitarbeiter an der Dokumentation des Projektes.", es: "Proveedor de documentación para el proyecto.", fr: "Collaborateur à la documentation du projet.", pt: "Contribuidor para a documentação do projeto."},
171177
domain: "http://usefulinc.com/ns/doap#Project",
172178
isDefinedBy: "http://usefulinc.com/ns/doap#",
173179
label: {en: "documenter", cs: "dokumentarista", de: "Dokumentator", es: "escritor de ayuda", fr: "rédacteur de l'aide", pt: "documentador"},
@@ -213,7 +219,7 @@ module RDF::Vocab
213219
range: "http://usefulinc.com/ns/doap#Specification",
214220
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
215221
property :language,
216-
comment: {en: "ISO language code a project has been translated into", pt: "Código de idioma ISO do projeto para o qual foi traduzido"},
222+
comment: {en: "BCP47 language code a project has been translated into", pt: "Código de idioma BCP47 do projeto para o qual foi traduzido"},
217223
domain: "http://usefulinc.com/ns/doap#Project",
218224
isDefinedBy: "http://usefulinc.com/ns/doap#",
219225
label: {en: "language", pt: "idioma"},
@@ -324,6 +330,20 @@ module RDF::Vocab
324330
isDefinedBy: "http://usefulinc.com/ns/doap#",
325331
label: {en: "screenshots", cs: "snímek obrazovky", de: "Screenshots", es: "capturas de pantalla", fr: "captures d'écran", pt: "capturas de ecrãs"},
326332
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
333+
property :"security-contact",
334+
comment: {en: "The Agent that should be contacted\n\tif security issues are found with the project."},
335+
domain: "http://usefulinc.com/ns/doap#Project",
336+
isDefinedBy: "http://usefulinc.com/ns/doap#",
337+
label: {en: "security contact"},
338+
range: "http://xmlns.com/foaf/0.1/Agent",
339+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
340+
property :"security-policy",
341+
comment: {en: "URL of the security policy of a project."},
342+
domain: "http://usefulinc.com/ns/doap#Project",
343+
isDefinedBy: "http://usefulinc.com/ns/doap#",
344+
label: {en: "security policy"},
345+
subPropertyOf: "http://xmlns.com/foaf/0.1/page",
346+
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
327347
property :"service-endpoint",
328348
comment: {en: "The URI of a web service endpoint where software as a service may be accessed"},
329349
domain: "http://usefulinc.com/ns/doap#Project",
@@ -332,7 +352,7 @@ module RDF::Vocab
332352
range: "http://www.w3.org/2000/01/rdf-schema#Resource",
333353
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
334354
property :shortdesc,
335-
comment: {en: "Short (8 or 9 words) plain text description of a project.", cs: "Krátký (8 nebo 9 slov) čistě textový popis projektu.", de: "Kurzbeschreibung (8 oder 9 Wörter) eines Projects als einfacher Text.", es: "Descripción corta (8 o 9 palabras) en texto plano de un proyecto.", fr: "Texte descriptif concis (8 ou 9 mots) d'un projet.", pt: "Descrição curta (com 8 ou 9 palavras) de um projeto em texto apenas."},
355+
comment: {en: "Short (8 or 9 words) plain text description of a project.", cs: "Krátký (8 nebo 9 slov) čistě textový popis projektu.", de: "Kurzbeschreibung (8 oder 9 Wörter) eines Projekts als einfacher Text.", es: "Descripción corta (8 o 9 palabras) en texto plano de un proyecto.", fr: "Texte descriptif concis (8 ou 9 mots) d'un projet.", pt: "Descrição curta (com 8 ou 9 palavras) de um projeto em texto apenas."},
336356
isDefinedBy: "http://usefulinc.com/ns/doap#",
337357
label: {en: "short description", cs: "krátký popis", de: "Kurzbeschreibung", es: "descripción corta", fr: "description courte", pt: "descrição curta"},
338358
range: "http://www.w3.org/2000/01/rdf-schema#Literal",
@@ -352,7 +372,7 @@ module RDF::Vocab
352372
range: "http://xmlns.com/foaf/0.1/Person",
353373
type: "http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"
354374
property :translator,
355-
comment: {en: "Contributor of translations to the project.", cs: "Spoluautor překladu projektu.", de: "Mitarbeiter an den Übersetzungen eines Projektes.", es: "Proveedor de traducciones al proyecto.", fr: "Collaborateur à la traduction du projet.", pt: "Contribuidor das traduções para o projeto."},
375+
comment: {en: "Contributor of translations to the project.", cs: "Spoluautor překladu projektu.", de: "Mitarbeiter an den Übersetzungen des Projektes.", es: "Proveedor de traducciones al proyecto.", fr: "Collaborateur à la traduction du projet.", pt: "Contribuidor das traduções para o projeto."},
356376
domain: "http://usefulinc.com/ns/doap#Project",
357377
isDefinedBy: "http://usefulinc.com/ns/doap#",
358378
label: {en: "translator", cs: "překladatel", de: "Übersetzer", es: "traductor", fr: "traducteur", pt: "tradutor"},

lib/rdf/vocab/identifiers.rb

Lines changed: 24 additions & 3 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)