귀하는 로그인되어 있지 않습니다. 이대로 편집하면 귀하의 IP 주소가 편집 기록에 남게 됩니다.스팸 방지 검사입니다. 이것을 입력하지 마세요!=== 통합 방식 === RSL은 다양한 방식으로 웹 자산과 연결될 수 있다. ==== robots.txt 확장 ==== '''robots.txt'''에 새로운 '''License''' 지시어를 추가한다. <syntaxhighlight lang="text"> User-agent: * Allow: / License: https://example.com/license.xml </syntaxhighlight> ==== HTTP 헤더 ==== HTTP '''Link''' 헤더를 사용한다. <syntaxhighlight lang="http"> HTTP/1.1 200 OK Content-Type: text/html Link: <https://example.com/license.xml>; rel="license"; type="application/rsl+xml" </syntaxhighlight> ==== HTML 페이지 ==== '''링크 방식:''' <syntaxhighlight lang="html"> <head> <link rel="license" type="application/rsl+xml" href="https://example.com/license.xml"> </head> </syntaxhighlight> '''인라인 방식:''' <syntaxhighlight lang="html"> <head> <script type="application/rsl+xml"> <rsl xmlns="https://rslstandard.org/rsl"> <content url=""> <license> <permits type="usage">search</permits> <payment type="attribution"/> </license> </content> </rsl> </script> </head> </syntaxhighlight> ==== RSS 피드 ==== RSL은 '''RSS 모듈'''로 작동한다. <syntaxhighlight lang="xml"> <rss xmlns:rsl="https://rslstandard.org/rsl" version="2.0"> <channel> <title>데이터셋 모음</title> <item> <title>Iris 데이터셋</title> <link>https://archive.example.com/iris</link> <rsl:content url="https://archive.example.com/iris.zip"> <rsl:license> <rsl:payment type="free"/> </rsl:license> </rsl:content> </item> </channel> </rss> </syntaxhighlight> ==== 미디어 파일 임베딩 ==== '''EPUB''', '''PDF''', '''이미지''', '''동영상''' 등의 메타데이터에 직접 삽입 가능하다. '''EPUB 예시:''' <syntaxhighlight lang="xml"> <package xmlns="http://www.idpf.org/2007/opf" xmlns:rsl="https://rslstandard.org/rsl"> <metadata> <dc:title>책 제목</dc:title> <rsl:rsl> <rsl:content url="https://press.example.com/book.epub" server="https://api.example.com"> <rsl:license> <rsl:permits type="usage">ai-train</rsl:permits> <rsl:payment type="purchase"> <rsl:amount currency="USD">29.99</rsl:amount> </rsl:payment> </rsl:license> </rsl:content> </rsl:rsl> </metadata> </package> </syntaxhighlight> 편집 요약 가온 위키에서의 모든 기여는 크리에이티브 커먼즈 저작자표시-동일조건변경허락 라이선스로 배포된다는 점을 유의해 주세요(자세한 내용에 대해서는 가온 위키:저작권 문서를 읽어주세요). 만약 여기에 동의하지 않는다면 문서를 저장하지 말아 주세요. 또한, 직접 작성했거나 퍼블릭 도메인과 같은 자유 문서에서 가져왔다는 것을 보증해야 합니다. 저작권이 있는 내용을 허가 없이 저장하지 마세요! 취소 편집 도움말 (새 창에서 열림)