Class: EasyData::RDF::SIOC
- Inherits:
-
Namespaces
- Object
- Namespaces
- EasyData::RDF::SIOC
- Defined in:
- lib/data_models/namespaces/sioc.rb
Constant Summary collapse
- @@uri =
"http://rdfs.org/sioc/ns#"
- @@properties =
{"about" => "", "account_of" => "", "administrator_of" => "", "attachment" => "", "avatar" => "", "container_of" => "", "content" => "", "content_encoded" => "", # @deprecated "created_at" => "", # @deprecated "creator_of" => "", "description" => "", # @deprecated "earlier_version" => "", "email" => "", "email_sha1" => "", "feed" => "", "first_name" => "", # @deprecated "follows" => "", "function_of" => "", "group_of" => "", # @deprecated "has_administrator" => "", "has_container" => "", "has_creator" => "", "has_discussion" => "", "has_function" => "", "has_group" => "", # @deprecated "has_host" => "", "has_member" => "", "has_moderator" => "", "has_modifier" => "", "has_owner" => "", "has_parent" => "", "has_part" => "", # @deprecated "has_reply" => "", "has_scope" => "", "has_space" => "", "has_subscriber" => "", "has_usergroup" => "", "host_of" => "", "id" => "", "ip_address" => "", "last_activity_date" => "", "last_item_date" => "", "last_name" => "", # @deprecated "last_reply_date" => "", "later_version" => "", "latest_version" => "", "link" => "", "links_to" => "", "member_of" => "", "moderator_of" => "", "modified_at" => "", # @deprecated "modifier_of" => "", "name" => "", "next_by_date" => "", "next_version" => "", "note" => "", "num_authors" => "", "num_items" => "", "num_replies" => "", "num_threads" => "", "num_views" => "", "owner_of" => "", "parent_of" => "", "part_of" => "", # @deprecated "previous_by_date" => "", "previous_version" => "", "reference" => "", # @deprecated "related_to" => "", "reply_of" => "", "scope_of" => "", "sibling" => "", "space_of" => "", "subject" => "", # @deprecated "subscriber_of" => "", "title" => "", # @deprecated "topic" => "", "usergroup_of" => "" }
Class Method Summary collapse
-
.get_uri ⇒ Object
Return Namespace URI.
-
.properties ⇒ Object
Return a list of Namespace’s properties.
- .properties_form ⇒ Object
-
.to_s(property, uri, value) ⇒ Object
Return tag to rdf doc.
Methods inherited from Namespaces
Class Method Details
.get_uri ⇒ Object
Return Namespace URI
87 88 89 |
# File 'lib/data_models/namespaces/sioc.rb', line 87 def self.get_uri @@uri end |
.properties ⇒ Object
Return a list of Namespace’s properties
97 98 99 |
# File 'lib/data_models/namespaces/sioc.rb', line 97 def self.properties @@properties.keys end |
.properties_form ⇒ Object
101 102 103 104 105 106 107 |
# File 'lib/data_models/namespaces/sioc.rb', line 101 def self.properties_form list = {} @@properties.keys.each do |property| list[property] = property end list end |
.to_s(property, uri, value) ⇒ Object
Return tag to rdf doc
92 93 94 |
# File 'lib/data_models/namespaces/sioc.rb', line 92 def self.to_s(property,uri,value) @@properties[property].gsub("%uri%",uri).gsub('%value%',value) end |