talia_core 0.5.4 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +2 -2
- data/config/talia_core.yml.example +37 -35
- data/generators/talia_admin/templates/app/models/fake_source.rb +93 -0
- data/generators/talia_admin/templates/app/models/talia_collection.rb +13 -37
- data/generators/talia_base/talia_base_generator.rb +0 -1
- data/generators/talia_base/templates/app/controllers/custom_templates_controller.rb +2 -1
- data/generators/talia_base/templates/app/controllers/sources_controller.rb +1 -1
- data/generators/talia_base/templates/script/configure_talia +56 -73
- data/generators/talia_swicky/talia_swicky_generator.rb +18 -0
- data/generators/talia_swicky/templates/app/controllers/swicky_notebooks_controller.rb +111 -0
- data/generators/talia_swicky/templates/app/helpers/swicky_notebooks_helper.rb +29 -0
- data/generators/talia_swicky/templates/app/views/swicky_notebooks/index.builder +6 -0
- data/generators/talia_swicky/templates/app/views/swicky_notebooks/index.html.erb +10 -0
- data/generators/talia_swicky/templates/app/views/swicky_notebooks/show.html.erb +11 -0
- data/generators/talia_swicky/templates/test/fixtures/notebook.rdf +862 -0
- data/generators/talia_swicky/templates/test/functional/swicky_notebooks_controller_test.rb +44 -0
- data/lib/core_ext/boolean.rb +23 -0
- data/lib/core_ext/jdbc_rake_monkeypatch.rb +22 -0
- data/lib/core_ext/nil_class.rb +11 -0
- data/lib/core_ext/object.rb +34 -0
- data/lib/core_ext/string.rb +15 -0
- data/lib/custom_template.rb +3 -1
- data/lib/loader_helper.rb +16 -3
- data/lib/mysql.rb +7 -7
- data/lib/progressbar.rb +2 -2
- data/lib/swicky/exhibit_json/item.rb +129 -0
- data/lib/swicky/exhibit_json/item_collection.rb +129 -0
- data/lib/swicky/fragment.rb +0 -0
- data/lib/swicky/note.rb +7 -0
- data/lib/swicky/notebook.rb +78 -12
- data/lib/talia_core/active_source.rb +45 -13
- data/lib/talia_core/active_source_parts/class_methods.rb +154 -26
- data/lib/talia_core/active_source_parts/finders.rb +49 -26
- data/lib/talia_core/active_source_parts/predicate_handler.rb +71 -23
- data/lib/talia_core/active_source_parts/rdf/ntriples_reader.rb +13 -0
- data/lib/talia_core/active_source_parts/rdf/rdf_reader.rb +99 -0
- data/lib/talia_core/active_source_parts/rdf/rdfxml_reader.rb +12 -0
- data/lib/talia_core/active_source_parts/{rdf.rb → rdf_handler.rb} +52 -19
- data/lib/talia_core/active_source_parts/xml/generic_reader.rb +151 -260
- data/lib/talia_core/active_source_parts/xml/generic_reader_add_statements.rb +97 -0
- data/lib/talia_core/active_source_parts/xml/generic_reader_helpers.rb +88 -0
- data/lib/talia_core/active_source_parts/xml/generic_reader_import_statements.rb +239 -0
- data/lib/talia_core/active_source_parts/xml/rdf_builder.rb +14 -7
- data/lib/talia_core/active_source_parts/xml/source_builder.rb +7 -3
- data/lib/talia_core/active_source_parts/xml/source_reader.rb +17 -2
- data/lib/talia_core/collection.rb +192 -1
- data/lib/talia_core/data_types/data_loader.rb +88 -18
- data/lib/talia_core/data_types/data_record.rb +24 -2
- data/lib/talia_core/data_types/delayed_copier.rb +13 -3
- data/lib/talia_core/data_types/file_record.rb +24 -13
- data/lib/talia_core/data_types/file_store.rb +111 -94
- data/lib/talia_core/data_types/iip_data.rb +104 -23
- data/lib/talia_core/data_types/iip_loader.rb +102 -56
- data/lib/talia_core/data_types/image_data.rb +3 -1
- data/lib/talia_core/data_types/media_link.rb +4 -1
- data/lib/talia_core/data_types/mime_mapping.rb +65 -38
- data/lib/talia_core/data_types/path_helpers.rb +23 -17
- data/lib/talia_core/data_types/pdf_data.rb +9 -6
- data/lib/talia_core/data_types/simple_text.rb +5 -4
- data/lib/talia_core/data_types/xml_data.rb +53 -25
- data/lib/talia_core/dummy_handler.rb +3 -2
- data/lib/talia_core/errors.rb +13 -27
- data/lib/talia_core/initializer.rb +44 -4
- data/lib/talia_core/oai/active_source_model.rb +13 -6
- data/lib/talia_core/oai/active_source_oai_adapter.rb +13 -12
- data/lib/talia_core/rdf_import.rb +1 -1
- data/lib/talia_core/rdf_resource.rb +2 -1
- data/lib/talia_core/semantic_collection_wrapper.rb +143 -151
- data/lib/talia_core/semantic_property.rb +4 -0
- data/lib/talia_core/semantic_relation.rb +84 -33
- data/lib/talia_core/source.rb +45 -25
- data/lib/talia_core/source_fragment.rb +7 -0
- data/lib/talia_core/source_transfer_object.rb +3 -1
- data/lib/talia_core/source_types/agent.rb +16 -0
- data/lib/talia_core/source_types/dc_resource.rb +3 -3
- data/lib/talia_core/source_types/marcont_resource.rb +15 -0
- data/lib/talia_core/source_types/skos_concept.rb +17 -0
- data/lib/talia_dependencies.rb +1 -1
- data/lib/talia_util.rb +1 -1
- data/lib/talia_util/bar_progressor.rb +1 -1
- data/lib/talia_util/image_conversions.rb +8 -2
- data/lib/talia_util/import_job_helper.rb +40 -3
- data/lib/talia_util/io_helper.rb +15 -4
- data/lib/talia_util/progressable.rb +50 -1
- data/lib/talia_util/rake_tasks.rb +3 -21
- data/lib/talia_util/test_helpers.rb +6 -1
- data/lib/talia_util/util.rb +108 -27
- data/lib/talia_util/xml/base_builder.rb +28 -1
- data/lib/talia_util/xml/rdf_builder.rb +81 -5
- data/lib/tasks/talia_core_tasks.rake +2 -0
- data/test/core_ext/boolean_test.rb +26 -0
- data/test/core_ext/nil_class_test.rb +14 -0
- data/test/core_ext/object_test.rb +26 -0
- data/test/core_ext/string_test.rb +11 -0
- data/test/swicky/json_encoder_test.rb +51 -42
- data/test/swicky/notebook_test.rb +13 -6
- data/test/talia_core/active_source_finder_interface_test.rb +30 -0
- data/test/talia_core/active_source_test.rb +445 -34
- data/test/talia_core/collection_test.rb +332 -0
- data/test/talia_core/data_types/file_record_test.rb +2 -23
- data/test/talia_core/ntriples_reader_test.rb +49 -0
- data/test/talia_core/rdfxml_reader_test.rb +51 -0
- data/test/talia_core/source_test.rb +12 -0
- data/test/talia_util/import_job_helper_test.rb +19 -12
- metadata +190 -90
- data/config/database.yml +0 -19
- data/config/rdfstore.yml +0 -13
- data/config/talia_core.yml +0 -24
- data/generators/talia_base/templates/migrations/bj_migration.rb +0 -10
- data/lib/JXslt/jxslt.rb +0 -60
- data/lib/swicky/json_encoder.rb +0 -179
- data/lib/talia_core/agent.rb +0 -14
- data/lib/talia_core/background_jobs/job.rb +0 -82
- data/lib/talia_core/background_jobs/progress_job.rb +0 -68
- data/lib/talia_core/data_types/temp_file_handling.rb +0 -85
- data/lib/talia_core/ordered_source.rb +0 -228
- data/lib/talia_core/semantic_collection_item.rb +0 -94
- data/lib/talia_core/source_types/collection.rb +0 -15
- data/lib/talia_util/progressbar.rb +0 -236
- data/tasks/talia_core_tasks.rake +0 -2
- data/test/talia_core/ordered_source_test.rb +0 -394
- data/test/talia_core/semantic_collection_item_test.rb +0 -125
@@ -0,0 +1,18 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../generator_helpers'
|
2
|
+
|
3
|
+
class TaliaSwickyGenerator < Rails::Generator::Base
|
4
|
+
|
5
|
+
include GeneratorHelpers
|
6
|
+
|
7
|
+
def self_dir ; File.dirname(__FILE__) ; end
|
8
|
+
|
9
|
+
def manifest
|
10
|
+
record do |m|
|
11
|
+
m.files_in 'app'
|
12
|
+
m.files_in 'test'
|
13
|
+
m.route "map.connect 'swicky_notebooks/context/:action', :controller => 'swicky_notebooks'"
|
14
|
+
m.route "map.resources :swicky_notebooks, :path_prefix => 'users/:user_name'"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
@@ -0,0 +1,111 @@
|
|
1
|
+
class SwickyNotebooksController < ApplicationController
|
2
|
+
|
3
|
+
before_filter :get_user, :except => [:annotated_fragments, :annotations]
|
4
|
+
before_filter :basic_auth
|
5
|
+
before_filter :get_notebook, :except => [:index, :create, :annotated_fragments, :annotations]
|
6
|
+
skip_before_filter :verify_authenticity_token
|
7
|
+
|
8
|
+
rescue_from NativeException, :with => :rescue_native_error
|
9
|
+
rescue_from(URI::InvalidURIError) { render_api_result(:illegal_parameter, "Illegal URI?") }
|
10
|
+
|
11
|
+
# GET
|
12
|
+
def index
|
13
|
+
@notebooks = Swicky::Notebook.find_all
|
14
|
+
end
|
15
|
+
|
16
|
+
# GET
|
17
|
+
def show
|
18
|
+
raise(ActiveRecord::RecordNotFound, "Notebook doesn't exist #{@notebook.url}") unless(@notebook.exist?)
|
19
|
+
respond_to do |format|
|
20
|
+
format.xml { render :text => @notebook.xml_data }
|
21
|
+
format.rdf { render :text => @notebook.xml_data }
|
22
|
+
format.html { render }
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# POST
|
27
|
+
def create
|
28
|
+
@notebook = Swicky::Notebook.new(@user.name, params[:notebook_name])
|
29
|
+
@notebook.delete
|
30
|
+
@notebook.load(params[:contentfile].path)
|
31
|
+
respond_to do |format|
|
32
|
+
format.xml { render :text => @notebook.xml_data }
|
33
|
+
format.rdf { render :text => @notebook.xml_data }
|
34
|
+
format.html { render }
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# PUT
|
39
|
+
def update
|
40
|
+
@notebook.delete
|
41
|
+
@notebook.load(params[:contentfile].path)
|
42
|
+
render_api_result(:success, "Notebook updated")
|
43
|
+
end
|
44
|
+
|
45
|
+
# DELETE
|
46
|
+
def destroy
|
47
|
+
raise(ActiveRecord::RecordNotFound, "Notebook doesn't exist #{@notebook.url}") unless(@notebook.exist?)
|
48
|
+
@notebook.delete
|
49
|
+
render_api_result(:success, "Notebook deleted")
|
50
|
+
end
|
51
|
+
|
52
|
+
def annotated_fragments
|
53
|
+
coordinates = Swicky::Notebook.coordinates_for(URI.escape(params[:uri]).to_s)
|
54
|
+
render :text => coordinates.to_json
|
55
|
+
end
|
56
|
+
|
57
|
+
def annotations
|
58
|
+
notes_triples = if(params[:uri])
|
59
|
+
Swicky::Notebook.annotations_for_url(params[:uri])
|
60
|
+
elsif(params[:xpointer])
|
61
|
+
Swicky::Notebook.annotations_for_xpointer(params[:xpointer])
|
62
|
+
else
|
63
|
+
raise(ActiveRecord::RecordNotFound, "No parameter given for annotations")
|
64
|
+
end
|
65
|
+
respond_to do |format|
|
66
|
+
format.xml { render :text => Swicky::ExhibitJson::ItemCollection.new(notes_triples, params[:xpointer] || params[:uri]).to_json }
|
67
|
+
format.rdf { render :text => TaliaUtil::Xml::RdfBuilder.xml_string_for_triples(notes_triples) }
|
68
|
+
format.html { render :text => Swicky::ExhibitJson::ItemCollection.new(notes_triples, params[:xpointer] || params[:uri]).to_json }
|
69
|
+
format.json { render :text => Swicky::ExhibitJson::ItemCollection.new(notes_triples, params[:xpointer] || params[:uri]).to_json }
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
|
75
|
+
def rescue_native_error(exception)
|
76
|
+
if(exception.cause.class.name =~ /\AJava::OrgOpenrdfQuery/)
|
77
|
+
render_api_result(:illegal_parameter, "Query Error. Wrong URI?")
|
78
|
+
else
|
79
|
+
raise exception
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
def render_api_result(result, message)
|
84
|
+
result = Swicky::ApiResult.new(result, message)
|
85
|
+
respond_to do |format|
|
86
|
+
format.xml { render :text => result.to_xml, :status => result.http_status }
|
87
|
+
format.rdf { render :text => result.to_xml, :status => result.http_status }
|
88
|
+
format.html { render :text => result.to_html, :status => result.http_status }
|
89
|
+
format.json { render :text => result.to_json, :status => result.http_status }
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
def get_user
|
94
|
+
@user = User.find_by_name(params[:user_name])
|
95
|
+
raise(ActiveRecord::RecordNotFound, "No user #{params[:user_name]}") unless(@user)
|
96
|
+
end
|
97
|
+
|
98
|
+
def get_notebook
|
99
|
+
@notebook = Swicky::Notebook.new(@user.name, params[:id])
|
100
|
+
end
|
101
|
+
|
102
|
+
def basic_auth
|
103
|
+
return true if(request.get?)
|
104
|
+
user_email = @user.email_address
|
105
|
+
authenticate_or_request_with_http_basic("Swicky") do |user, pass|
|
106
|
+
@auth_user = User.authenticate(user_email, pass) if(@user.name == user)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
|
111
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'digest/md5'
|
2
|
+
module SwickyNotebooksHelper
|
3
|
+
|
4
|
+
# Wraps the given element into an <div class=""
|
5
|
+
def thctag(url, content_or_options_with_block=nil, options=nil, &block)
|
6
|
+
if(block)
|
7
|
+
content_tag(:div, thctag_options(url, content_or_options_with_block), nil, true, &block)
|
8
|
+
else
|
9
|
+
content_tag(:div, content_or_options_with_block, thctag_options(url, options))
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
private
|
14
|
+
|
15
|
+
# Updates the given options hash for the thctag
|
16
|
+
def thctag_options(url, options)
|
17
|
+
options ||= {}
|
18
|
+
options.to_options!
|
19
|
+
if(options[:class])
|
20
|
+
options[:class] << " THCContent"
|
21
|
+
else
|
22
|
+
options[:class] = "THCContent"
|
23
|
+
end
|
24
|
+
options[:id] = ('h_' << Digest::MD5.hexdigest(url))
|
25
|
+
options[:about] = url
|
26
|
+
options
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,862 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<rdf:RDF
|
3
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
4
|
+
xmlns:ns3="http://discovery-project.eu/ontologies/scholar/0.1/"
|
5
|
+
xmlns:ns1="http://discovery-project.eu/ontologies/philoSpace/"
|
6
|
+
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
|
7
|
+
|
8
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
|
9
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
10
|
+
</rdf:Description>
|
11
|
+
|
12
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject">
|
13
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
14
|
+
</rdf:Description>
|
15
|
+
|
16
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate">
|
17
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
18
|
+
</rdf:Description>
|
19
|
+
|
20
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#object">
|
21
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
22
|
+
</rdf:Description>
|
23
|
+
|
24
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">
|
25
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
26
|
+
</rdf:Description>
|
27
|
+
|
28
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest">
|
29
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
30
|
+
</rdf:Description>
|
31
|
+
|
32
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value">
|
33
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
34
|
+
</rdf:Description>
|
35
|
+
|
36
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil">
|
37
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
|
38
|
+
</rdf:Description>
|
39
|
+
|
40
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
|
41
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
42
|
+
</rdf:Description>
|
43
|
+
|
44
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#domain">
|
45
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
46
|
+
</rdf:Description>
|
47
|
+
|
48
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#range">
|
49
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
50
|
+
</rdf:Description>
|
51
|
+
|
52
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subPropertyOf">
|
53
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
54
|
+
</rdf:Description>
|
55
|
+
|
56
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subClassOf">
|
57
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
58
|
+
</rdf:Description>
|
59
|
+
|
60
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject">
|
61
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
62
|
+
</rdf:Description>
|
63
|
+
|
64
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate">
|
65
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
66
|
+
</rdf:Description>
|
67
|
+
|
68
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#object">
|
69
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
70
|
+
</rdf:Description>
|
71
|
+
|
72
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#member">
|
73
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
74
|
+
</rdf:Description>
|
75
|
+
|
76
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">
|
77
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
|
78
|
+
</rdf:Description>
|
79
|
+
|
80
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest">
|
81
|
+
<rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
|
82
|
+
</rdf:Description>
|
83
|
+
|
84
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
|
85
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
86
|
+
</rdf:Description>
|
87
|
+
|
88
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
89
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
90
|
+
</rdf:Description>
|
91
|
+
|
92
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
|
93
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
94
|
+
</rdf:Description>
|
95
|
+
|
96
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
|
97
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
98
|
+
</rdf:Description>
|
99
|
+
|
100
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value">
|
101
|
+
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
102
|
+
</rdf:Description>
|
103
|
+
|
104
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
|
105
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
106
|
+
</rdf:Description>
|
107
|
+
|
108
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#domain">
|
109
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
110
|
+
</rdf:Description>
|
111
|
+
|
112
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#range">
|
113
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
114
|
+
</rdf:Description>
|
115
|
+
|
116
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subPropertyOf">
|
117
|
+
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
118
|
+
</rdf:Description>
|
119
|
+
|
120
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subClassOf">
|
121
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
122
|
+
</rdf:Description>
|
123
|
+
|
124
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject">
|
125
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
126
|
+
</rdf:Description>
|
127
|
+
|
128
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate">
|
129
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
130
|
+
</rdf:Description>
|
131
|
+
|
132
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#object">
|
133
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
134
|
+
</rdf:Description>
|
135
|
+
|
136
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#member">
|
137
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
138
|
+
</rdf:Description>
|
139
|
+
|
140
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">
|
141
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
142
|
+
</rdf:Description>
|
143
|
+
|
144
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest">
|
145
|
+
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
|
146
|
+
</rdf:Description>
|
147
|
+
|
148
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
|
149
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
150
|
+
</rdf:Description>
|
151
|
+
|
152
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
153
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
154
|
+
</rdf:Description>
|
155
|
+
|
156
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
|
157
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
158
|
+
</rdf:Description>
|
159
|
+
|
160
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
|
161
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
162
|
+
</rdf:Description>
|
163
|
+
|
164
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value">
|
165
|
+
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
166
|
+
</rdf:Description>
|
167
|
+
|
168
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt">
|
169
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/>
|
170
|
+
</rdf:Description>
|
171
|
+
|
172
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag">
|
173
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/>
|
174
|
+
</rdf:Description>
|
175
|
+
|
176
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq">
|
177
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/>
|
178
|
+
</rdf:Description>
|
179
|
+
|
180
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty">
|
181
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
182
|
+
</rdf:Description>
|
183
|
+
|
184
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
185
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
|
186
|
+
</rdf:Description>
|
187
|
+
|
188
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral">
|
189
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
|
190
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
191
|
+
</rdf:Description>
|
192
|
+
|
193
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Datatype">
|
194
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
195
|
+
</rdf:Description>
|
196
|
+
|
197
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#domain">
|
198
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
199
|
+
</rdf:Description>
|
200
|
+
|
201
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#range">
|
202
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
203
|
+
</rdf:Description>
|
204
|
+
|
205
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subClassOf">
|
206
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
207
|
+
</rdf:Description>
|
208
|
+
|
209
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subPropertyOf">
|
210
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
211
|
+
</rdf:Description>
|
212
|
+
|
213
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
|
214
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
215
|
+
</rdf:Description>
|
216
|
+
|
217
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject">
|
218
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
219
|
+
</rdf:Description>
|
220
|
+
|
221
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate">
|
222
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
223
|
+
</rdf:Description>
|
224
|
+
|
225
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#object">
|
226
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
227
|
+
</rdf:Description>
|
228
|
+
|
229
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">
|
230
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
231
|
+
</rdf:Description>
|
232
|
+
|
233
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest">
|
234
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
235
|
+
</rdf:Description>
|
236
|
+
|
237
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value">
|
238
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
239
|
+
</rdf:Description>
|
240
|
+
|
241
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil">
|
242
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
243
|
+
</rdf:Description>
|
244
|
+
|
245
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#member">
|
246
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
247
|
+
</rdf:Description>
|
248
|
+
|
249
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
|
250
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
251
|
+
</rdf:Description>
|
252
|
+
|
253
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
254
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
255
|
+
</rdf:Description>
|
256
|
+
|
257
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
|
258
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
259
|
+
</rdf:Description>
|
260
|
+
|
261
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
|
262
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
263
|
+
</rdf:Description>
|
264
|
+
|
265
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt">
|
266
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
267
|
+
</rdf:Description>
|
268
|
+
|
269
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag">
|
270
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
271
|
+
</rdf:Description>
|
272
|
+
|
273
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq">
|
274
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
275
|
+
</rdf:Description>
|
276
|
+
|
277
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty">
|
278
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
279
|
+
</rdf:Description>
|
280
|
+
|
281
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral">
|
282
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
283
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
284
|
+
</rdf:Description>
|
285
|
+
|
286
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Datatype">
|
287
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
288
|
+
</rdf:Description>
|
289
|
+
|
290
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#domain">
|
291
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
292
|
+
</rdf:Description>
|
293
|
+
|
294
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#range">
|
295
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
296
|
+
</rdf:Description>
|
297
|
+
|
298
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subClassOf">
|
299
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
300
|
+
</rdf:Description>
|
301
|
+
|
302
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subPropertyOf">
|
303
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
304
|
+
</rdf:Description>
|
305
|
+
|
306
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#member">
|
307
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
308
|
+
</rdf:Description>
|
309
|
+
|
310
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
|
311
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
312
|
+
</rdf:Description>
|
313
|
+
|
314
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
315
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
316
|
+
</rdf:Description>
|
317
|
+
|
318
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
|
319
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
320
|
+
</rdf:Description>
|
321
|
+
|
322
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
|
323
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
324
|
+
</rdf:Description>
|
325
|
+
|
326
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt">
|
327
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
328
|
+
</rdf:Description>
|
329
|
+
|
330
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag">
|
331
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
332
|
+
</rdf:Description>
|
333
|
+
|
334
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq">
|
335
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
336
|
+
</rdf:Description>
|
337
|
+
|
338
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty">
|
339
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
340
|
+
</rdf:Description>
|
341
|
+
|
342
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Datatype">
|
343
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
344
|
+
</rdf:Description>
|
345
|
+
|
346
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property">
|
347
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
348
|
+
</rdf:Description>
|
349
|
+
|
350
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List">
|
351
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
352
|
+
</rdf:Description>
|
353
|
+
|
354
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource">
|
355
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
356
|
+
</rdf:Description>
|
357
|
+
|
358
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Class">
|
359
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
360
|
+
</rdf:Description>
|
361
|
+
|
362
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement">
|
363
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
364
|
+
</rdf:Description>
|
365
|
+
|
366
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal">
|
367
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
368
|
+
</rdf:Description>
|
369
|
+
|
370
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Container">
|
371
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
372
|
+
</rdf:Description>
|
373
|
+
|
374
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property">
|
375
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
376
|
+
</rdf:Description>
|
377
|
+
|
378
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List">
|
379
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
380
|
+
</rdf:Description>
|
381
|
+
|
382
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource">
|
383
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
384
|
+
</rdf:Description>
|
385
|
+
|
386
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Class">
|
387
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
388
|
+
</rdf:Description>
|
389
|
+
|
390
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement">
|
391
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
392
|
+
</rdf:Description>
|
393
|
+
|
394
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal">
|
395
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
396
|
+
</rdf:Description>
|
397
|
+
|
398
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Container">
|
399
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
400
|
+
</rdf:Description>
|
401
|
+
|
402
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type">
|
403
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"/>
|
404
|
+
</rdf:Description>
|
405
|
+
|
406
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject">
|
407
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject"/>
|
408
|
+
</rdf:Description>
|
409
|
+
|
410
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate">
|
411
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate"/>
|
412
|
+
</rdf:Description>
|
413
|
+
|
414
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#object">
|
415
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#object"/>
|
416
|
+
</rdf:Description>
|
417
|
+
|
418
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first">
|
419
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"/>
|
420
|
+
</rdf:Description>
|
421
|
+
|
422
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest">
|
423
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"/>
|
424
|
+
</rdf:Description>
|
425
|
+
|
426
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value">
|
427
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"/>
|
428
|
+
</rdf:Description>
|
429
|
+
|
430
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#domain">
|
431
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#domain"/>
|
432
|
+
</rdf:Description>
|
433
|
+
|
434
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#range">
|
435
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#range"/>
|
436
|
+
</rdf:Description>
|
437
|
+
|
438
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subClassOf">
|
439
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
|
440
|
+
</rdf:Description>
|
441
|
+
|
442
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#subPropertyOf">
|
443
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
|
444
|
+
</rdf:Description>
|
445
|
+
|
446
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#member">
|
447
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#member"/>
|
448
|
+
</rdf:Description>
|
449
|
+
|
450
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
|
451
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
|
452
|
+
</rdf:Description>
|
453
|
+
|
454
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy">
|
455
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
|
456
|
+
</rdf:Description>
|
457
|
+
|
458
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
|
459
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#comment"/>
|
460
|
+
</rdf:Description>
|
461
|
+
|
462
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
|
463
|
+
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
|
464
|
+
</rdf:Description>
|
465
|
+
|
466
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt">
|
467
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
468
|
+
</rdf:Description>
|
469
|
+
|
470
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag">
|
471
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
472
|
+
</rdf:Description>
|
473
|
+
|
474
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq">
|
475
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
476
|
+
</rdf:Description>
|
477
|
+
|
478
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty">
|
479
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
480
|
+
</rdf:Description>
|
481
|
+
|
482
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral">
|
483
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
484
|
+
</rdf:Description>
|
485
|
+
|
486
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Datatype">
|
487
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
488
|
+
</rdf:Description>
|
489
|
+
|
490
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property">
|
491
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
492
|
+
</rdf:Description>
|
493
|
+
|
494
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List">
|
495
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
496
|
+
</rdf:Description>
|
497
|
+
|
498
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource">
|
499
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
500
|
+
</rdf:Description>
|
501
|
+
|
502
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Class">
|
503
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
504
|
+
</rdf:Description>
|
505
|
+
|
506
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement">
|
507
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
508
|
+
</rdf:Description>
|
509
|
+
|
510
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal">
|
511
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
512
|
+
</rdf:Description>
|
513
|
+
|
514
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Container">
|
515
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
516
|
+
</rdf:Description>
|
517
|
+
|
518
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt">
|
519
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt"/>
|
520
|
+
</rdf:Description>
|
521
|
+
|
522
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag">
|
523
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag"/>
|
524
|
+
</rdf:Description>
|
525
|
+
|
526
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq">
|
527
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"/>
|
528
|
+
</rdf:Description>
|
529
|
+
|
530
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty">
|
531
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"/>
|
532
|
+
</rdf:Description>
|
533
|
+
|
534
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral">
|
535
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral"/>
|
536
|
+
</rdf:Description>
|
537
|
+
|
538
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Datatype">
|
539
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
|
540
|
+
</rdf:Description>
|
541
|
+
|
542
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property">
|
543
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
544
|
+
</rdf:Description>
|
545
|
+
|
546
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List">
|
547
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
|
548
|
+
</rdf:Description>
|
549
|
+
|
550
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Class">
|
551
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
552
|
+
</rdf:Description>
|
553
|
+
|
554
|
+
<rdf:Description rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement">
|
555
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
556
|
+
</rdf:Description>
|
557
|
+
|
558
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal">
|
559
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
|
560
|
+
</rdf:Description>
|
561
|
+
|
562
|
+
<rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#Container">
|
563
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/>
|
564
|
+
</rdf:Description>
|
565
|
+
|
566
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasLiteralStatement">
|
567
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasStatement"/>
|
568
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
569
|
+
</rdf:Description>
|
570
|
+
|
571
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasStatement">
|
572
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
573
|
+
</rdf:Description>
|
574
|
+
|
575
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasLiteralStatement">
|
576
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
577
|
+
</rdf:Description>
|
578
|
+
|
579
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasStatement">
|
580
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
581
|
+
</rdf:Description>
|
582
|
+
|
583
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasLiteralStatement">
|
584
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasLiteralStatement"/>
|
585
|
+
</rdf:Description>
|
586
|
+
|
587
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasStatement">
|
588
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasStatement"/>
|
589
|
+
</rdf:Description>
|
590
|
+
|
591
|
+
<rdf:Description rdf:about="http://dbin.org/brainlets/discovery/read/Pippo">
|
592
|
+
<rdf:type rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/Concept"/>
|
593
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
594
|
+
</rdf:Description>
|
595
|
+
|
596
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/Concept">
|
597
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
598
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
599
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
600
|
+
<rdfs:subClassOf rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/Concept"/>
|
601
|
+
</rdf:Description>
|
602
|
+
|
603
|
+
<rdf:Description rdf:about="http://dbin.org/brainlets/discovery/read/Pippo">
|
604
|
+
<rdfs:label>Pippo</rdfs:label>
|
605
|
+
<rdfs:comment>Pippo Baudo</rdfs:comment>
|
606
|
+
</rdf:Description>
|
607
|
+
|
608
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#ae7eaea486b550796177f52e2ee00c4b">
|
609
|
+
<rdf:type rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note"/>
|
610
|
+
<ns1:hasCreationDate>08-02-2010 18:51:39</ns1:hasCreationDate>
|
611
|
+
<ns1:hasNoteAuthor rdf:resource="http://foxglove.local/admin"/>
|
612
|
+
<rdfs:label>Note by: admin (08-02-2010 18:51:39)</rdfs:label>
|
613
|
+
<rdfs:comment>bla bla</rdfs:comment>
|
614
|
+
</rdf:Description>
|
615
|
+
|
616
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2">
|
617
|
+
<ns1:hasComment>bla bla</ns1:hasComment>
|
618
|
+
</rdf:Description>
|
619
|
+
|
620
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#ae7eaea486b550796177f52e2ee00c4b">
|
621
|
+
<ns1:refersTo rdf:resource="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2"/>
|
622
|
+
</rdf:Description>
|
623
|
+
|
624
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#cce53fe219c22b23713cd1d177d4bb3d">
|
625
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
626
|
+
<rdf:subject rdf:resource="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2"/>
|
627
|
+
<rdf:object>bla bla</rdf:object>
|
628
|
+
<rdf:predicate rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasComment"/>
|
629
|
+
</rdf:Description>
|
630
|
+
|
631
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#ae7eaea486b550796177f52e2ee00c4b">
|
632
|
+
<ns1:hasLiteralStatement rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note#cce53fe219c22b23713cd1d177d4bb3d"/>
|
633
|
+
</rdf:Description>
|
634
|
+
|
635
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2">
|
636
|
+
<ns3:hasSubject rdf:resource="http://dbin.org/brainlets/discovery/read/Pippo"/>
|
637
|
+
</rdf:Description>
|
638
|
+
|
639
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#85879d69ed32648d744651738294706d">
|
640
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
641
|
+
<rdf:subject rdf:resource="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2"/>
|
642
|
+
<rdf:object rdf:resource="http://dbin.org/brainlets/discovery/read/Pippo"/>
|
643
|
+
<rdf:predicate rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/hasSubject"/>
|
644
|
+
</rdf:Description>
|
645
|
+
|
646
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#ae7eaea486b550796177f52e2ee00c4b">
|
647
|
+
<ns1:hasStatement rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note#85879d69ed32648d744651738294706d"/>
|
648
|
+
</rdf:Description>
|
649
|
+
|
650
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasCreationDate">
|
651
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
652
|
+
</rdf:Description>
|
653
|
+
|
654
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasNoteAuthor">
|
655
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
656
|
+
</rdf:Description>
|
657
|
+
|
658
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasComment">
|
659
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
660
|
+
</rdf:Description>
|
661
|
+
|
662
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/refersTo">
|
663
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
664
|
+
</rdf:Description>
|
665
|
+
|
666
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/hasSubject">
|
667
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
668
|
+
</rdf:Description>
|
669
|
+
|
670
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#ae7eaea486b550796177f52e2ee00c4b">
|
671
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
672
|
+
</rdf:Description>
|
673
|
+
|
674
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#cce53fe219c22b23713cd1d177d4bb3d">
|
675
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
676
|
+
</rdf:Description>
|
677
|
+
|
678
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#85879d69ed32648d744651738294706d">
|
679
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
680
|
+
</rdf:Description>
|
681
|
+
|
682
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note">
|
683
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
684
|
+
</rdf:Description>
|
685
|
+
|
686
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2">
|
687
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
688
|
+
</rdf:Description>
|
689
|
+
|
690
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasComment">
|
691
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
692
|
+
</rdf:Description>
|
693
|
+
|
694
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/hasSubject">
|
695
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
696
|
+
</rdf:Description>
|
697
|
+
|
698
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note">
|
699
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
700
|
+
</rdf:Description>
|
701
|
+
|
702
|
+
<rdf:Description rdf:about="http://foxglove.local/admin">
|
703
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
704
|
+
</rdf:Description>
|
705
|
+
|
706
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#ae7eaea486b550796177f52e2ee00c4b">
|
707
|
+
<ns1:hasStatement rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note#cce53fe219c22b23713cd1d177d4bb3d"/>
|
708
|
+
</rdf:Description>
|
709
|
+
|
710
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasCreationDate">
|
711
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
712
|
+
</rdf:Description>
|
713
|
+
|
714
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasNoteAuthor">
|
715
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
716
|
+
</rdf:Description>
|
717
|
+
|
718
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/refersTo">
|
719
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
720
|
+
</rdf:Description>
|
721
|
+
|
722
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasCreationDate">
|
723
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasCreationDate"/>
|
724
|
+
</rdf:Description>
|
725
|
+
|
726
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasNoteAuthor">
|
727
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasNoteAuthor"/>
|
728
|
+
</rdf:Description>
|
729
|
+
|
730
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasComment">
|
731
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasComment"/>
|
732
|
+
</rdf:Description>
|
733
|
+
|
734
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/refersTo">
|
735
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/refersTo"/>
|
736
|
+
</rdf:Description>
|
737
|
+
|
738
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/hasSubject">
|
739
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/hasSubject"/>
|
740
|
+
</rdf:Description>
|
741
|
+
|
742
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note">
|
743
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
744
|
+
<rdfs:subClassOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note"/>
|
745
|
+
</rdf:Description>
|
746
|
+
|
747
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2">
|
748
|
+
<rdf:type rdf:resource="http://discovery-project.eu/ontologies/philoSpace/SourceFragment"/>
|
749
|
+
<ns3:isPartOf rdf:resource="http://dbin.org/swickynotes/demo/HanselAndGretel.htm"/>
|
750
|
+
<ns1:hasCoordinates rdf:resource="http://dbin.org/swickynotes/demo/HanselAndGretel.htm#xpointer(start-point(string-range(//DIV[@id='http://dbin.org/swickynotes/demo/HG_1']/P[1]/SPAN[1]/text()[1],'',0))/range-to(string-range(//DIV[@id='http://dbin.org/swickynotes/demo/HG_1']/P[1]/SPAN[1]/text()[1],'',266)))"/>
|
751
|
+
</rdf:Description>
|
752
|
+
|
753
|
+
<rdf:Description rdf:about="http://dbin.org/swickynotes/demo/HanselAndGretel.htm">
|
754
|
+
<rdf:type rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/Source"/>
|
755
|
+
</rdf:Description>
|
756
|
+
|
757
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment#ec9796a5349b290a7610763dcbc47af2">
|
758
|
+
<rdfs:label>Hard by a great forest dwelt a poor wood-cutter ...</rdfs:label>
|
759
|
+
<rdfs:comment>Hard by a great forest dwelt a poor wood-cutter with his wife and his two children. The boy was called Hansel and the girl Gretel. He had little to bite and to break, and once, when great dearth fell on the land, he could no longer procure even daily bread.</rdfs:comment>
|
760
|
+
</rdf:Description>
|
761
|
+
|
762
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/isPartOf">
|
763
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
764
|
+
</rdf:Description>
|
765
|
+
|
766
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasCoordinates">
|
767
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
|
768
|
+
</rdf:Description>
|
769
|
+
|
770
|
+
<rdf:Description rdf:about="http://dbin.org/swickynotes/demo/HanselAndGretel.htm">
|
771
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
772
|
+
</rdf:Description>
|
773
|
+
|
774
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment">
|
775
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
776
|
+
</rdf:Description>
|
777
|
+
|
778
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/Source">
|
779
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
|
780
|
+
</rdf:Description>
|
781
|
+
|
782
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment">
|
783
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
784
|
+
</rdf:Description>
|
785
|
+
|
786
|
+
<rdf:Description rdf:about="http://dbin.org/swickynotes/demo/HanselAndGretel.htm#xpointer(start-point(string-range(//DIV[@id='http://dbin.org/swickynotes/demo/HG_1']/P[1]/SPAN[1]/text()[1],'',0))/range-to(string-range(//DIV[@id='http://dbin.org/swickynotes/demo/HG_1']/P[1]/SPAN[1]/text()[1],'',266)))">
|
787
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
788
|
+
</rdf:Description>
|
789
|
+
|
790
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/Source">
|
791
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
792
|
+
</rdf:Description>
|
793
|
+
|
794
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/isPartOf">
|
795
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
796
|
+
</rdf:Description>
|
797
|
+
|
798
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasCoordinates">
|
799
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
800
|
+
</rdf:Description>
|
801
|
+
|
802
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/isPartOf">
|
803
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/isPartOf"/>
|
804
|
+
</rdf:Description>
|
805
|
+
|
806
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/hasCoordinates">
|
807
|
+
<rdfs:subPropertyOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasCoordinates"/>
|
808
|
+
</rdf:Description>
|
809
|
+
|
810
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment">
|
811
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
812
|
+
</rdf:Description>
|
813
|
+
|
814
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/Source">
|
815
|
+
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
816
|
+
</rdf:Description>
|
817
|
+
|
818
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/SourceFragment">
|
819
|
+
<rdfs:subClassOf rdf:resource="http://discovery-project.eu/ontologies/philoSpace/SourceFragment"/>
|
820
|
+
</rdf:Description>
|
821
|
+
|
822
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/scholar/0.1/Source">
|
823
|
+
<rdfs:subClassOf rdf:resource="http://discovery-project.eu/ontologies/scholar/0.1/Source"/>
|
824
|
+
</rdf:Description>
|
825
|
+
|
826
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#eba05099c0152e97de2e21d56d90f982">
|
827
|
+
<rdf:type rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note"/>
|
828
|
+
<ns1:hasCreationDate>08-02-2010 18:52:38</ns1:hasCreationDate>
|
829
|
+
<ns1:hasNoteAuthor rdf:resource="http://foxglove.local/admin"/>
|
830
|
+
<rdfs:label>Note by: admin (08-02-2010 18:52:38)</rdfs:label>
|
831
|
+
<rdfs:comment>annotation of the entire page</rdfs:comment>
|
832
|
+
</rdf:Description>
|
833
|
+
|
834
|
+
<rdf:Description rdf:about="http://dbin.org/swickynotes/demo/HanselAndGretel.htm">
|
835
|
+
<ns1:hasComment>annotation of the entire page</ns1:hasComment>
|
836
|
+
</rdf:Description>
|
837
|
+
|
838
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#eba05099c0152e97de2e21d56d90f982">
|
839
|
+
<ns1:refersTo rdf:resource="http://dbin.org/swickynotes/demo/HanselAndGretel.htm"/>
|
840
|
+
</rdf:Description>
|
841
|
+
|
842
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#866ab3f59049e4dbf8b575b6ffcd3bea">
|
843
|
+
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/>
|
844
|
+
<rdf:subject rdf:resource="http://dbin.org/swickynotes/demo/HanselAndGretel.htm"/>
|
845
|
+
<rdf:object>annotation of the entire page</rdf:object>
|
846
|
+
<rdf:predicate rdf:resource="http://discovery-project.eu/ontologies/philoSpace/hasComment"/>
|
847
|
+
</rdf:Description>
|
848
|
+
|
849
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#eba05099c0152e97de2e21d56d90f982">
|
850
|
+
<ns1:hasLiteralStatement rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note#866ab3f59049e4dbf8b575b6ffcd3bea"/>
|
851
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
852
|
+
</rdf:Description>
|
853
|
+
|
854
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#866ab3f59049e4dbf8b575b6ffcd3bea">
|
855
|
+
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
|
856
|
+
</rdf:Description>
|
857
|
+
|
858
|
+
<rdf:Description rdf:about="http://discovery-project.eu/ontologies/philoSpace/Note#eba05099c0152e97de2e21d56d90f982">
|
859
|
+
<ns1:hasStatement rdf:resource="http://discovery-project.eu/ontologies/philoSpace/Note#866ab3f59049e4dbf8b575b6ffcd3bea"/>
|
860
|
+
</rdf:Description>
|
861
|
+
|
862
|
+
</rdf:RDF>
|