달력

02

« 2012/02 »

  •  
  •  
  •  
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  •  
  •  
  •  

'RDF'에 해당되는 글 3

  1. 2008/03/12 [RDF 입문서] 1. 소개
  2. 2008/02/22 RDFa Basics
  3. 2008/02/21 RDF란?
2008/03/12 16:46

[RDF 입문서] 1. 소개 General Web2008/03/12 16:46

원문출처 : http://www.w3.org/TR/2004/REC-rdf-primer-20040210/

W3C 권장 2004.02.10
이 것에 대한 버전 : http://www.w3.org/TR/2004/REC-rdf-primer-20040210/
최종버전 : http://www.w3.org/TR/rdf-primer/
최초버전 : http://www.w3.org/TR/2003/PR-rdf-primer-20031215/
작성자 : Frank Manola, Eric Miller

주의: 번역에 실수가 있을 수 있습니다.(사실 엉망입니다. ㅡㅡ;)

[요약번역]
RDF는 웹 상에 정보 표시를 하기 위한 일반적인 목적을 가지는 언어이다.
이 입문서는 RDF를 효과적으로 사용하는데 필요한 기본적인 정보를 제공한다.
RDF의 기본적인 컨셉과 XML Syntax를 기술한다.

1. Introduction
RDF는 월드와이드웹 상에서 정보를 묘사하기 위한 언어이다. 이것은 웹 문서의 저작권과 라이선스, 웹에서의 제목, 작성자, 웹 페이지의 수정 데이터와 같은 웹 리소스를 메타데이터로 특별하게 묘사한다.
RDF는 사용자에 의해 디스플레이 되거나 어플리케이션에 의해 프로세스된 정보의 위치를 파악한다.
RDF는 어플리케이션 사이에서 교환되는 정보의 의미를 잃어버리지 않기 위해 공통 프레임워크를 제공한다.
RDF는 Uniform Resource Identifiers(URI), 프로퍼티 값과 간단한 프로퍼티들의 아이템 리소스를 이용하자는 아이디어에 기반한다.

An RDF Graph Describing Eric Miller

에릭 밀러가 묘사한 RDF 그래프(그림참조:http://www.w3.org/TR/rdf-primer/)

그림 1은 RDF는 식별을 위해 URIs를 사용합니다.
개인에 대한 식별은 http://www.w3.org/People/EM/contact#me URI 주소를 사용합니다.
사람에 대한 식별은 http://www.w3.org/2000/10/swap/pim/contact#Person URI 주소를 사용합니다.
메일박스 속성 값과 같은 예를 들어서 mailto:em@w3.org 이런 속성 값은 숫자나 날짜 등과 같은 다른 데이터 타입도 캐릭터 문자열을 사용한다.

RDF는 또한 그래프 교환이나 녹음을 위한 XML 기반 문법(RDF/XML 이라 불림)을 제공합니다.
그림1은 RDF/XML에서 RDF의 작은 조각입니다.

예제1:에릭 밀러가 묘사한 RDF/XML
<?xml version="1.0" ?>
<rdf: RDF xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#
               xmlns:contact=http://www.w3.org/2000/10/swap/pim/contact#>

<contact:Person rdf:about=http://www.w3.org/People/EMcontact#me>
   <contact:fullName>Eric Miller</contact:fullName>
   <contat:mailbox rdf:resource=mailto:em@w3.org"/>
   <contact:personlTitle>Dr.</contact:personalTitle>
</contact:Person>

</rdf:RDF>

참고로 RDF/XML은 mailbox 그리고 fullName 그리고 각각의 값인 em@w3.org Eric Miller를  URIs 에 포함합니다.

HTML 처럼 RDF/XML은 URIs를 사용하여 기계로 해석하고, 웹 전반에 정보의 조각을 링크할 수 있습니다. 기존의 하이퍼 텍스트와 달리 RDF URIs는 어떤 식별자든 참조할 수 있는데 "Eric Miller"가 있는 사람 같은 경우는 되지 않을수도 있다. 결과적으로 웹 페이지와 같은 묘사외에 RDF는 자동차, 비즈니스, 사람들, 뉴스 이벤트 등을 묘사할 수 있고 추가적으로 RDF 프로퍼티에 링크된 아이템들 사이에 존재하는 관계를 정확하게 식별하기 위한 URIs를 가질 수 있다.

다음의 문서는 RDF의 특징을 기고한 것이다.

  • RDF Concepts and Abstract Syntax [RDF-CONCEPTS]
  • RDF/XML Syntax Specification [RDF-SYNTAX]
  • RDF Vocabulary Description Language 1.0: RDF Schema [RDF-VOCABULARY]
  • RDF Semantics [RDF-SEMANTICS]
  • RDF Test Cases [RDF-TESTS]
  • RDF Primer (this document)

    RDF 입문서는 RDF를 정보 시스템 설계자와 어플리케이션 개발자가 RDF의 특징을 이해하고 어떻게 그것을 사용하는지를 돕기 위한 RDF 어플리케이션의 일부를 기술하여 제공한다.

  • RDF는 어떤 모습인가?
  • RDF에서는 어떤 정보를 나타낼수 있나?
  • RDF는 어떤 정보를 작성하고, 접근하고 처리하는가?
  • RDF는 기존 정보를 어떻게 결합하는가?

  • 'General Web' 카테고리의 다른 글

    2. xml 문서의 생성과 CSS를 이용한 XML 문서 출력  (0) 2008/04/11
    xml과 10가지 설계목표  (0) 2008/04/11
    [RDF 입문서] 1. 소개  (0) 2008/03/12
    RDFa Basics  (0) 2008/02/22
    RDF란?  (0) 2008/02/21
    div를 이용한 웹 레이아웃 코드  (0) 2008/01/09
    Posted by -세티-
    2008/02/22 20:44

    RDFa Basics General Web2008/02/22 20:44

    영상 출처 : http://www.youtube.com/watch?v=ldl0m-5zLz4

    'General Web' 카테고리의 다른 글

    2. xml 문서의 생성과 CSS를 이용한 XML 문서 출력  (0) 2008/04/11
    xml과 10가지 설계목표  (0) 2008/04/11
    [RDF 입문서] 1. 소개  (0) 2008/03/12
    RDFa Basics  (0) 2008/02/22
    RDF란?  (0) 2008/02/21
    div를 이용한 웹 레이아웃 코드  (0) 2008/01/09
    TAG RDF
    Posted by -세티-
    2008/02/21 00:41

    RDF란? General Web2008/02/21 00:41

    출처: http://www.w3.org/RDF/

    Resource Description Framework(RDF)는 XML을 사용하여, 음악, 사진, 이벤트와 같은 개인적인 수집물이나 라이브러리 카탈로그나 월드와이드 디렉토리로 부터 뉴스, 소프트웨어, 목차 등과 같은 집합체인 어플리케이션의 다양성을 통합한다.RDF 명세서는 웹 상의 지식교환을 위해 경량의 온톨로지 시스템을 제공한다.
    W3C Semantic Web Activity Statement는 RDF Core WG, Web Ontology 그리고 RDF 그룹을 포함하는 W3C의 RDF 계획을 설명한다.

    RDF Specification Development
    RDF 명세는 URI와 XML 기술로 이루어진다.

  • RDF/XML Syntax Specification (Revised)
    W3C Recommendation
    Dave Beckett, ed.
  • RDF Vocabulary Description Language 1.0: RDF Schema
    W3C Recomendation
    Dan Brickley, R.V. Guha, eds.
  • RDF Primer
    W3C Recommendation
    Frank Manola, Eric Miller, eds.
  • Resource Description Framework (RDF): Concepts and Abstract Syntax
    W3C Recommendation
    Graham Klyne, Jeremy Carroll, eds.
  • RDF Semantics
    W3C Recommendation
    Patrick Hayes, ed.
  • RDF Test Cases
    W3C Recommendation
    Jan Grant, Dave Beckett, eds.
  • 다음의 문서는 최초의 RDF 명세이다.
    RDF Model and Syntax (1999 Recommendation) and RDF Schema (1999 Proposed Recommendation)
    RDF, OWL은 시멘틱 웹의 명세이다.

    다른 RDF와 관련된 W3C 기술 보고서는 다음과 같다.

    팀 버너스 리의 웹 디자인 이슈는 RDF를 빌드하는 메타데이터 아키텍처와 OWL 명세 그리고  웹 기반 온톨로지를 정의하고 구조화하기 위한 언어를 제공하는 것이다.

    Bookmarks: Recommended Reading

    These sites track developments related to RDF:

    RDF에 대한 소개

    While the RDF specs provide the most in-depth details about RDF, a number of shorter overviews and presentations are also available, for developers and for a general audience.

    아티클과 발표자료


    프로젝트와 어플리케이션
    RDF와 관련된 다양한 프로젝트가 활성화 되고 있다.
    다음은 샘플이다.
    the Resource Description Framework Applications and Projects section in the RDF Resource Guide lists many more.


    Syndication, Aggregation, and Rating

    • RDF Site Summary (RSS) 1.0

      lightweight multipurpose extensible metadata description and syndication format. proposed Aug 2000 to the RDF Interest Group

    • XMLNews-Meta - A suite of specifications for exchanging news and information using open Web standards
    • PRISM: Publishing Requirements for Industry Standard Metadata

      PRISM is a packaging and metadata format, similar to NewsML, RSS, and XMLNews-Meta. Like RSS 1.0 and XMLNews-Meta, PRISM is based on RDF. PRISM is developed by an industry consortium of publishing software developers and publishers, including (among many others) Adobe, Quark, Condé Nast, and Time Inc.

    • The UK Mirror Service is a national UK service providing mirrors/collections of software and data from around the world. It uses RDF internally for mirror description and mirror content description of over 4 million resources. April 2000
    • Daniel Veillard's Linux Packages Database, a tool that makes use of RDF encoded metadata for locating and identifying dependencies between software packages available for the Linux operating system.
    • Java, RDF, and the "Virtual Web", Leon Shklar (see also parts two and three), a Gamelan Tech Focus series on content syndication and aggregation strategies, September/October 1999.

    Personal Collections: Music, Photos, Calendars, and Contacts

    Some of the most exciting applications of RDF are at a smaller scale, very close to home. These applications depend on emerging technical and social mechanisms for managing trust on the web (access control, privacy, rights management), so as of this writing (Aug 2001) they tend to be advanced development projects more than production systems.


    개발 리소스
    RDF 개발과 관련된 리소스
     W3C Semantic Web Interest Group
    IRC chat channel
    What is RDF?
    XML.com

    RDF는 웹 상에 정보를 재게시하기 위한 일반적인 목적의 언어이다.
    RDF 스키마는 웹 상에 RDF 보카블러리를 기술하기 위해 어떻게 RDF를 사용해야 하는가를 기술하는 하나의 표준이다.

    다음의 샘플은 어떻게 보카블러리를 이용하여 서비스를 생성하는지에 대한 것이다.

    • SchemaWeb provides a comprehensive directory of RDF schemas to be browsed and searched by human agents and also an extensive set of web services to be used by RDF agents and reasoning software applications that wish to obtain real-time schema information whilst processing RDF data.
    • Dublin Core Metadata Registry is an RDF based metadata registry designed to provide users and applications an authoritative source of information about the Dublin Core element set and related vocabularies.
    • DAML Ontology Library which organizes hundreds of ontologies in a variety of different ways (keyword, organization, submission date, etc.)


    관련된 기술들
    Conceptual Graphs
    -
    Corese : A COnceptual REsource Search Engine, Conceptual Graphs and the Semantic Web
    SOAP/WSDL
    Using RDF with SOAP
    Basic XML and RDF techniques for knowledge management: part 1 Generate RDF using XSLT
    Basic XML and RDF techniques for knowledge management: part 2 Combining files into an RDF model, and basic RDF querying
    Supercharging WSDL with RDF
    RDF model for WSDL

    UML/MOF/XMI
    Ontology Definition Metamodel (ODM
    Representing UML in RDF
    A Layered Approach to Information Modeling and Interoperability on the Web
    A Discussion of the Relationship Between RDF-Schema and UML
    DAML/UML Based Ontology Set

    TopicMaps

  • XML Topic Maps through RDF Glasses, Presented at KT2001, Nikita Ogievetsky, Cogitech, Inc.
  • DAML and Quantum Topic Maps, Presented at KT2002, Nikita Ogievetsky, Cogitech, Inc.
  • XTM to RDF converter, Cogitech, Inc.
  • Representing XML Topic Maps as RDF, Eric van der Vlist.
  • Topic maps, RDF, DAML, OIL. A comparison, Lars Marius Garshol.

    Timeline: Historical Events and Publications
  • 'General Web' 카테고리의 다른 글

    2. xml 문서의 생성과 CSS를 이용한 XML 문서 출력  (0) 2008/04/11
    xml과 10가지 설계목표  (0) 2008/04/11
    [RDF 입문서] 1. 소개  (0) 2008/03/12
    RDFa Basics  (0) 2008/02/22
    RDF란?  (0) 2008/02/21
    div를 이용한 웹 레이아웃 코드  (0) 2008/01/09
    Posted by -세티-