XSLT 4-1

Size: px
Start display at page:

Download "XSLT 4-1"

Transcription

1 XSLT 4-1

2 XSLT XML XML HTML XSLT 1.0 (W3C ) ( ) XML 4-2

3 XSLT XML <?xml version="1.0" encoding="shift_jis"?> <booklist> <book id="kobe:xml"> <title>xml </title> <author> </author> <author> </author> <publisher> </publisher> <price unit="yen">2000</price> </book> <book id="hyogo:java"> <title>java </title> <author> </author> <publisher> </publisher> <price unit="yen">1500</price> <image ref="java_nymon.jpg"/> </book> </booklist> 4-3

4 XSLT ( ) <?xml version="1.0" encoding="shift_jis"?> <xsl:stylesheet xmlns:xsl=" version="1.0"> <xsl:output method="html" encoding="shift_jis"/> <xsl:strip-space elements="*"/> <xsl:template match="/booklist"> <html> <body> <table border="1"> <tr><th> </th><th> </th><th> </th></tr> <xsl:apply-templates/> <tr><td colspan="2" align="center"> </td> <td align="right"><xsl:value-of select="sum(book/price)"/></td></tr> </table> </body> </html> <xsl:template match="book"> <tr><td><xsl:value-of select="title"/></td> <td><xsl:value-of select="author"/></td> <td align="right"><xsl:value-of select="price"/></td></tr> </xsl:stylesheet> 4-4

5 xsl:output method xml, html, text encoding xsl:strip-space elements ( XML ) xsl:preserve-space 4-5

6 ( ) xsl:template match xsl:apply-template select (XPath ) select xsl:value-of XPath select 4-6

7 (expression) XPath : <xsl:apply-templates select=" "> : <xsl:if test=" "> : <xsl:value-of select=" "> : <element attr="{ }"> 4-7

8 (pattern) (pattern): 1 (location path pattern): XPath child attribute // id( ) ID key(, ) xsl:key XPath 4-8

9 <xsl:template match=" "> xsl:apply-templates <xsl:template name=" "> xsl:call-template XSLT 4-9

10 <!-- : --> <xsl:template match="/ *"> <xsl:apply-templates/> <!-- : --> <xsl:template <xsl:value-of select="."/> <!-- : --> <xsl:template match="processing-instruction()"/> <!-- : --> <xsl:template match="comment()"/> 4-10

11 priority 0.5 : match="text()" : match="book", match="@id" 0.5 : match="book/author" 4-11

12 <xsl:apply-templates select=" "/> select ( ) <!-- --> <xsl:apply-templates/> <!-- --> <xsl:apply-templates select="*"/> <!-- author --> <xsl:apply-templates select="author"/> <!-- author --> <xsl:apply-templates select=".//author"/> 4-12

13 ( ) xsl:apply-templates xsl:apply-templates apply(current_node, current_node_list) = find matching rules for the current_node; choose the highest priority rule in the matching rules; foreach apply-templates instruction in the rule { node_list = nodeset sepecified by select; foreach node in node_list { apply(node, node_list); } } 4-13

14 ( ) ( 1 ) XPath XPath 4-14

15 <!-- book image --> <xsl:template match="book/image"> <xsl:value-of <!-- book image --> <xsl:template match="book[image]"> <xsl:value-of <!-- author --> <xsl:template match="/"> <xsl:apply-templates select=".//author"/> 4-15

16 <xsl:call-templates name=" "/> 4-16

17 xsl:value-of : : <xsl:value-of select="@ref"/> : <xsl:value-of select="position()"/> xsl:element : xsl:attribute : xsl:text : ( ) xsl:processing-instruction : xsl:comment : xsl:copy-of : xsl:copy : ( ) 4-17

18 ( ) xsl:number : <xsl:template match="/booklist">... <td align="right"> <xsl:number value="sum(book/price)" grouping-separator="," grouping-size="3"/> </td>... <xsl:template match="book">... <td align="right"> <xsl:number count="book"/> </td>

19 if <xsl:for-each select=" "> </xsl:for-each> <xsl:if test=" "> </xsl:if> <xsl:choose> <xsl:when test=" 1"> 1</xsl:when> <xsl:when test=" 2"> 2</xsl:when>... <xsl:otherwise> </xsl:otherwise> </xsl:choose> 4-19

20 <xsl:template match="/booklist">... <!-- xsl:apply-templates --> <xsl:apply-templates select="book"> <xsl:sort select="price" data-type="number"/> </xsl:apply-templates>... <xsl:template match="/booklist">... <!-- xsl:for-each --> <xsl:for-each select="book"> <xsl:sort select="price" data-type="number"/>... </xsl:for-each>

21 xsl:variable : ( ) <xsl:variable name=" " select=" "/> <!-- --> <xsl:variable name=" "> </xsl:variable> xsl:param : <xsl:param name=" " select=" "/> <xsl:param name=" "> </xsl:param> xsl:param xsl:template xsl:apply-templates, xsl:call-template xsl:with-param 4-21

22 xsl:include href xsl:import href xsl:apply-imports 4-22

23 XML <?xml version="1.0" encoding="shift_jis"?> <?xml-stylesheet href="style1.xsl" type="text/xsl"?> <booklist> <book id="kobe:xml"> <title>xml </title> <author> </author> <author> </author> <publisher> </publisher> <price unit="yen">2000</price> </book> <book id="hyogo:java"> <title>java </title> <author> </author> <publisher> </publisher> <price unit="yen">1500</price> <image ref="java_nymon.jpg"/> </book> </booklist> 4-23

24 XSLT.java XML XML XML Web 4-24

Web2.0 REST API + XSLT Amazon hon.jp API XML Consortium XML ( ) REST(GET)API hon.jp Amazon.co.jp Google Map Exif to RDF(kanzaki.com) REST +

Web2.0 REST API + XSLT Amazon hon.jp API XML Consortium XML ( ) REST(GET)API hon.jp Amazon.co.jp Google Map Exif to RDF(kanzaki.com) REST + Web2.0 REST API + XSLT Amazon hon.jp API XML Consortium 2006-04-11 XML ( ) REST(GET)API hon.jp Amazon.co.jp Google Map Exif to RDF(kanzaki.com) REST +XSLT hon.jp hon.jp + Aamazon.co.jp Exif to RDF(kanzaki.com)

More information

XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium XML ( ) REST(GET)API Amazon.co.jp hon.jp REST

XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium XML ( ) REST(GET)API Amazon.co.jp hon.jp REST XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium 2006-05-23 XML ( ) REST(GET)API Amazon.co.jp hon.jp REST + XSLT ( ) hon.jp hon.jp + Aamazon.co.jp Exif to RDF(kanzaki.com)

More information

橡SPA2000.PDF

橡SPA2000.PDF XSLT ( ) d-oka@is.s.u-tokyo.ac.jp ( ) hagiya@is.s.u-tokyo.ac.jp XSLT(eXtensible Stylesheet Language Transformations) XML XML XSLT XSLT XML XSLT XML XSLT XML XML XPath XML XSLT XPath XML XSLT,XPath 1 XSLT([6])

More information

XSLT XSLT xsd XSLT XML xsd XPath <xsl:template ]

XSLT XSLT xsd XSLT XML xsd XPath <xsl:template ] XML Week splat XML XML Web 2005,2006 WS-Security End-to-End XSLT (xsd) XSLT MUST MAY Java class MUST,MAY XSLT XSLT xsd XSLT XML xsd XPath

More information

PostgreSQL の XML 機能解説と将来拡張への提言

PostgreSQL の XML 機能解説と将来拡張への提言 2009 11 21 11 00 11 50 B 1 PostgreSQL "Let's Postgres" 2 PostgreSQL XML URL http://lets.postgresql.jp/documents/technical/tutorial/xml 3 4 Storage Query Language XML Schemas Programming Interface 5 XML

More information

.xml.xsl bcs.dtd 2. 提案 BCS.DTD のエレメントと属性 BCS.DTD のエレメントの属性を以下に示す 出 エレメント説明 現 属性 下位構造 数 code 適宜工事コード等を記述する 任 意 Common Docinfo Reference UkeoiKeiyakusyoHikaeSoufusyo KoujiTyakusyuTodoke SongaihokenKeiyakuHoukokusyo

More information

XMLとXSLT

XMLとXSLT XML と XSLT 棚橋沙弥香 目次 現場のシステム構成とXML/XSLの位置づけ XMLとは XSL/XSLTとは Xalanのインストール いろいろなXSL XMLマスター試験の紹介 現場のシステム構成 HTML 画面上のデータ 電文 電文 外部 WEB サーバー (Java) CORBA 通信 認証サーバー (C 言語 ) DB XML 電文 HTML XSL XSLT 変換今回の説明範囲

More information

Webプログラミング演習

Webプログラミング演習 Web プログラミング演習 STEP11 XSLT を使った画面生成 XML:Extensible Markup Language コンピュータが扱うデータや文書を表現する技術 SGML(Standard Generalized Markup Language) の改良 利用者が自由に拡張可能なマークアップ言語を設計 HTML=SGML を利用して作成された Web ページ記述言語 XHTML=XML

More information

XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0

XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0 XML 2-1 XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0 http://www.w3.org/tr/rec-xml http://www.fxis.co.jp/xmlcafe/tmp/rec-xml.html

More information

情報アプリケーションⅠ シラバス

情報アプリケーションⅠ シラバス XML の基礎と実践 1/58 Ⅰ. XML の基本と構造 1. XML とは XML(eXtensible Markup Language) とは 情報記述言語 である HTML(Hyper Text Markup Language) はプレーンテキスト ( 平文 ) にタグと呼ばれる命令を埋め込む (Markup) ことで文書を修飾したり 構造を示したりする Web 用のマークアップ言語である

More information

スライド 1

スライド 1 XML with SQLServer ~let's take fun when you can do it~ Presented by 夏椰 ( 今川美保 ) Agenda( その 1) XML XML XSLT XPath XML Schema XQuery Agenda( その 2) SQLServer における XML XML 型 XML Schema XQuery & XPath チェック制約

More information

XMLの利用(XMLとXSL)

XMLの利用(XMLとXSL) XML の利用 XML(Extensible Markup Language) とは XML の基礎知識 XML とは WC(World Wide Web Consortium) で標準化された情報記述言語で有る 情報記述言語には HTML(Hyper Text Markup Language) が有り インターネット上の文書を標準化し世界規模の文書の閲覧を可能に仕たが 固定的なタグしか使用出来ない為

More information

XSLの活用と技術内容の紹介

XSLの活用と技術内容の紹介 XSL XML WG XSLXSLT SWG XSL 1 Agenda XSL XSL-FO XSLT XSL-FO XSL 2 XSL XSL XSL 3 XSL XSL W3C 1.0 2001-10-15 XSL XML (XSLT) XML (XSL-FO Formatting-Object ) XML XSL 4 XSL 5 XML 1.0 1998-02-10 XSLT 1999-11-16

More information

Microsoft Word - 2部-3.doc

Microsoft Word - 2部-3.doc 目 次... 3 1. 課題の概要... 3 図 1 XSLT スタイルシートによる HTML 変換...3 リスト1 プログラム実行イメージ (HTML 変換モード )... 3 図 2 HTML 変換モードの HTML をブラウザで表示したときの例...4 リスト2 プログラム実行イメージ ( 人気ランキングモード )... 5 リスト3 人気ランキングモードのリストの条件... 5 図 3 人気ランキングモードのリストのツリー構造...

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 2 3 /usr/local javalib xerces-2_6_2 xalan-2_6_0 4 XERCES_HOME=/usr/local/javalib/xerces-2_6_2 CLASSPATH=$XERCES_HOME/xmlParserAPIs.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesImpl.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesSamples.jar:$CLASSPATH

More information

Microsoft Word - XML.doc

Microsoft Word - XML.doc XML(extensible markup language) ( インターネット時代の ) 拡張可能なタグによる汎用的データ記述言語データを, アプリケーションに依存しない形式で, 内容や意味を表すタグをつけて, テキスト形式で保存する ソフトウェアが意味を理解し情報処理することを目指す semantic Web( コンテンツの意味がコンピュータに理解可能な web, 情報 web から知識 web

More information

xslt #xslt

xslt #xslt xslt #xslt 1 1: xslt 2 2 2 Examples 2 2 XSLT 3 2: xslt 7 Examples 7 XSLT 7 8 You can share this PDF with anyone you feel could benefit from it, downloaded the latest version from: xslt It is an unofficial

More information

052-XML04/fiÁ1-part3-’ÓŠ¹

052-XML04/fiÁ1-part3-’ÓŠ¹ & XML Data Store Part 3 Feature*1 AKIMOTO, Shougo i i i i i i inter 52 XML Magazine 04 i i i i i i i i P a r t 3 i i i i i XML Magazine 04 53 & XML Data Store Feature*1 i i inter i inter i inter inter

More information

XMLテクノロジを使いやすくする

XMLテクノロジを使いやすくする XML 2005 9 XML... 3... 3 XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML... 11 SAX... 11 XSL... 12... 13... 13... 14... 14 XML... 15 XML... 15 JAXB CLASS GENERATOR... 16

More information

Microsoft PowerPoint - 05XMLによるデータの表現.pptx

Microsoft PowerPoint - 05XMLによるデータの表現.pptx 九州大学工学府海洋システム工学専攻講義資料担当 : 木村船舶海洋情報学 05. XMLによるデータの表現 XML(Extensible Markup Language) 情報を保管 ラベル付け 構造化 または保護するための コンテナ のようなもの異なるシステムが相互にコミュニケーションするための手段 基盤 1) データは XML 文書 ( テキスト ) で表現される 2) タグによって情報は 要素

More information

セマンティックWebの動向とメタデータ

セマンティックWebの動向とメタデータ Web 2003-05-27 XML XML Web WG RDF RSS RDF ) RSS 1.0 XHTML SVG NewsML RSS XHTML SVG NewsML RSS RSS RS S RSsS Web PDF Web 2 HTML title meta Web NewsML Id RDF W3C Web 3 HTML NewsML RSS(RDF ) XML RDF HTML(XHTML)

More information

おなじ変換を実現する XSLT スタイルシートを岩井が書いてみた それが下の例 2 である 例 2 <indexterm> 要素を <title> 要素の外に移動させる XSLT スタイルシート 1: <?xml version="1.0" encoding="utf-8"?> 2: <xsl:st

おなじ変換を実現する XSLT スタイルシートを岩井が書いてみた それが下の例 2 である 例 2 <indexterm> 要素を <title> 要素の外に移動させる XSLT スタイルシート 1: <?xml version=1.0 encoding=utf-8?> 2: <xsl:st 第 9 講 XSLT 入門 XML で XML を処理する? ( 担当者 : 岩井茂樹 ) 9.1 DOMとXSLT XML 入門 第 10 章の例題 10-5の課題は,XML 文書の構造変換である サンプルのXML 文書 ( 同書, pp.375-376) では, いくつかの 要素が誤って 要素の中に置かれている これを, 要素の兄弟の位置に移動する変換をおこなう

More information

ppt

ppt XML 2004-09-15 ( XML(Extended Markup Language XML XML HTML XML XML (? W3C(World Wide Web Consortium XML 2004-09-15 2 XML XML 1.0 (Extensible Markup Language W3C(World Wide Web Consortium http://www.w3/org/

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 8 : Web Same Origin Policy : XML :, XML http://www.w3.org/xml/ http://www.w3.org/tr/dom-level-3-core 1 / 31 xml.html: XML xpath-test.html: XPATH valid-test.html: XML (IE ) xslt-test.html: JS XSLT xslt-test.xml:

More information

3.3 World Wide Web 26

3.3 World Wide Web 26 3.3 World Wide Web 26 WWW の生い立ち 1989 CERN (European Center for Nuclear Research) で文書管理のために考案 他の文書へのリンクを含むテキスト (HyperText) HTML 1993 Mosaic クリックするだけでリンク先にアクセスすることのできるグラフカルユーザインタフェース 1994 World Wide Web

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

More information

Microsoft Word - 3部.doc

Microsoft Word - 3部.doc 目 次... 4 1. 課題の概要... 4 図 1 掲示板画面の例 ( 通常表示 )... 4 図 2 掲示板画面の例 ( 追加 )... 5 図 3 掲示板画面の例 ( 検索 )... 5 図 4 掲示板画面の例 ( 一覧表示 )... 6 2. データの保存... 7 リスト1 XML のスキーマ条件... 7 図 5 BBS.xml のツリー構造... 7 リスト2 BBS.xml... 8

More information

websample 1 2 websample index.html

websample 1 2 websample index.html Web HTML Web 1 2 3 4 5 6 7 1 2 3 4 5 6 websample 1 2 websample index.html -1-1 HTML index.html html head /head body /body /html body table border="1" /table /body table border="" /table table /table table

More information

SPRAT:実行時自動チューニング機能を備えるストリーム処理記述用言語

SPRAT:実行時自動チューニング機能を備えるストリーム処理記述用言語 JST CREST 研究領域 ポストペタスケール高性能計算に資するシステムソフトウェア技術の創出 研究課題 進化的アプローチによる超並列複合システム向け開発環境の創出 2014 年 12 月 25 日 ATTA@ 東京大学山上会館 研究代表滝沢寛之東北大学大学院情報科学研究科 主たる共同研究者須田礼仁 ( 東京大学 ) 高橋大介 ( 筑波大学 ) 江川隆輔 ( 東北大学 ) 特定のシステムを想定したコード最適化

More information

Table of Contents はじめに... 4 XSL-FO 変換のステップ... 5 SampleDoc の構造... 6 Hello! World... 8 SampleDoc から XSL-FO への最も簡単な例... 8 スタイルシートの構造... 9 ブロック要素とインライン要素.

Table of Contents はじめに... 4 XSL-FO 変換のステップ... 5 SampleDoc の構造... 6 Hello! World... 8 SampleDoc から XSL-FO への最も簡単な例... 8 スタイルシートの構造... 9 ブロック要素とインライン要素. XSL-FO による XML ドキュメント印刷のためのスタイルシート作成方法 改訂 6 版 アンテナハウス株式会社 Table of Contents はじめに... 4 XSL-FO 変換のステップ... 5 SampleDoc の構造... 6 Hello! World... 8 SampleDoc から XSL-FO への最も簡単な例... 8 スタイルシートの構造... 9 ブロック要素とインライン要素...

More information

XMLプログラミング(DOM編)

XMLプログラミング(DOM編) XML プログラミング DOM に依る XML 文書の操作 DOM と DOMDocument オブジェクト プログラミング言語から XML を扱うには DOM(Document Object Model) と呼ばれるプログラミングインターフェイスを利用するのが最も簡単で有る DOM は Internet Explorer 5.x 以降の XML パーサ (MSXML) に実装されて居る DOMDocument

More information

本日のテーマ Formatter って何? Formatter や XSL-FO 関連の話 DITA Open Toolkit って何? DITA OT がやってくれることカスタマイズの話 Formatter って何? Formatter は XSL-FO のレンダリングエンジンです XSL-FO

本日のテーマ Formatter って何? Formatter や XSL-FO 関連の話 DITA Open Toolkit って何? DITA OT がやってくれることカスタマイズの話 Formatter って何? Formatter は XSL-FO のレンダリングエンジンです XSL-FO 美味しい DITA の作り方セミナー 10/12/20 1 AH Formatter で DITA を自動組版してみよう アンテナハウス株式会社 : 小林具典 10/12/20 2 本日のテーマ Formatter って何? Formatter や XSL-FO 関連の話 DITA Open Toolkit って何? DITA OT がやってくれることカスタマイズの話 Formatter って何?

More information

XISによる効率良いシステム開発のポイント

XISによる効率良いシステム開発のポイント XML excelon XIS excelon XIS XML April 17, 2002 excelon Extensible Information Server Page 2 Overview XML DOM (XML ) ( ) excelon XIS (DOM ) CRUD ( XML ) amazon.com 2,000 / 100 / GUI / ( 10 ) Windows (NT/2000/XP),

More information

FileMaker Server 8 Advanced Custom Web Publishing Guide

FileMaker Server 8 Advanced Custom Web Publishing Guide FileMaker Server 8 Advanced Web 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc.

More information

FileMaker Server Custom Web Publishing with XML and XSLT

FileMaker Server Custom Web Publishing with XML and XSLT FileMaker Server 10 Web with XML and XSLT 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac

More information

Web

Web Web 1 1 1........................... 1 2 Web...................... 1 3...................... 3 4........................ 4 5........................... 5 i............................ 5 ii iii..........................

More information

Oracle XDK(10.1.2)の技術概要

Oracle XDK(10.1.2)の技術概要 Oracle XDK 10.1.2 2005 1 Oracle XDK 10.1.2... 3... 3 Oracle XML Developer's Kit 10g... 4... 4... 5... 5 XML /XSL... 5 XML... 6 XML Class Generator... 6 XML JavaBeans... 6 XML SQL Utility... 7 XSQL Pages...

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

分散情報システム構成法

分散情報システム構成法 Web Information System Design No.6 Web 文書空間 萩野達也 (hagino@sfc.keio.ac.jp) 1 Web 文書の全体構成要素 Web 文書 XML データ文書 XML アプリケーション HTTP URI 参照操作 Unicode 2 HTML 以外の XML アプリケーション HTML の成功を XML に Extensible Stylesheet

More information

XSL-FOによるXMLドキュメント印刷のためのスタイルシート作成方法

XSL-FOによるXMLドキュメント印刷のためのスタイルシート作成方法 XSL-FO による XML ドキュメント印刷のための スタイルシート作成方法 2016 年 3 月改訂 10 版 アンテナハウス株式会社 目次 はじめに... 1 XSL スタイルシート作成のステップ... 3 SimpleDoc の構造... 4 Hello! World... 7 SimpleDoc 文書から XSL-FO への変換の最も簡単な例... 7 スタイルシートの構造... 8 ブロック要素とインライン要素...

More information

XSL-FOによるXMLドキュメント印刷のためのスタイルシート作成方法

XSL-FOによるXMLドキュメント印刷のためのスタイルシート作成方法 XSL-FO による XML ドキュメント印刷のためのスタイルシート作成方法 2008 年 5 月改訂 8 版 アンテナハウス株式会社 目次 はじめに...1 XSL スタイルシート作成のステップ...2 SimpleDoc の構造...3 Hello! World...5 SimpleDoc 文書から XSL-FO への変換の最も簡単な例...5 スタイルシートの構造...6 ブロック要素とインライン要素...6

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

Oracle HTML DBのテンプレート・カスタマイズ

Oracle HTML DBのテンプレート・カスタマイズ Oracle HTML DB 2003 10 Oracle HTML DB... 3... 3... 5... 5 1:... 6 2:... 6 3: 2... 7... 8... 8... 8 CSS JavaScript... 10 HTML DB... 11... 11 Oracle HTML DB 2 Oracle Corporation Customizing Templates in

More information

_IMv2.key

_IMv2.key 飯島基 文 customb2b@me.com $ ssh ladmin@im.example.com $ cd /Library/Server/Web/Data/Sites/Default/ $ git clone https://github.com/msyk/inter-mediator.git

More information

Disclaimer 当資料の位置づけ 当資料は IBM DataPower Gateway (IDG) における OAuth 機能の概要と 実装方法および考慮点をまとめたものです Firmware v を前提としています 注意事項 当資料に含まれる情報は可能な限り正確を期しております

Disclaimer 当資料の位置づけ 当資料は IBM DataPower Gateway (IDG) における OAuth 機能の概要と 実装方法および考慮点をまとめたものです Firmware v を前提としています 注意事項 当資料に含まれる情報は可能な限り正確を期しております IBM DataPower Gateway (IDG) OAuth 構成ガイド Disclaimer 当資料の位置づけ 当資料は IBM DataPower Gateway (IDG) における OAuth 機能の概要と 実装方法および考慮点をまとめたものです Firmware v7.2.0.2 を前提としています 注意事項 当資料に含まれる情報は可能な限り正確を期しておりますが 当資料に記載された内容に関して何ら保証するものではありません

More information

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI 7 XML Week Web WebOS WebShell WebOS WebOS GUI WebOS WebOS 2 WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI CUI JavaScript I/O CommandClass WebShell webshell

More information

立ち読みページ

立ち読みページ 6 6 46. 47. 48. 49. 50. 51. 52. 53. 146 148 150 152 154 158 160 162 6 46 Web ( ) table tr td th >> HTML

More information

XPath式を用いたApplication Profileに基づくメタデータスキーマとインスタンスの関連付け

XPath式を用いたApplication Profileに基づくメタデータスキーマとインスタンスの関連付け 人工知能学会研究会資料 SIG-SWO-A101-03 XPath 式を用いた Application Profile に基づくメタデータスキーマとインスタンスの関連付け A Model for Mapping Metadata Instances to Metadata Schema based on DCMI Application Profile using XPath Expressions

More information

Oracle Database 10gによる高パフォーマンス・エンタープライズXMLアプリケーションの作成

Oracle Database 10gによる高パフォーマンス・エンタープライズXMLアプリケーションの作成 Oracle Database 10g XML 2005 9 Oracle Database 10g XML TU UT... 3 TU UT... 3 TUOracle XML Developer's Kit 10gUT... 4 TU UT... 5 TU UT... 5 TU UT... 5 TUXML /XSL UT... 5 TUXML UT... 6 TUXML Class GeneratorUT...

More information

1. スキーマを作成する チュートリアル : 簡単な日記帳を作る 最初のステップとして 簡単な日記帳を作ってみましょう 件名 と 本文 があるだけの簡単なものです 1. スキーマを作成する では まず 日記帳 のスキーマを定義します スキーマは XML ファイル として作成します コラム :XML

1. スキーマを作成する チュートリアル : 簡単な日記帳を作る 最初のステップとして 簡単な日記帳を作ってみましょう 件名 と 本文 があるだけの簡単なものです 1. スキーマを作成する では まず 日記帳 のスキーマを定義します スキーマは XML ファイル として作成します コラム :XML 目次 目次 1. スキーマを作成する... 2 2. スキーマを登録する... 5 3. エントリを定義する... 6 4. エントリを投稿する... 9 5. エントリを表示する ( デザイン定義 )... 11... 18 1 / 22 1. スキーマを作成する チュートリアル : 簡単な日記帳を作る 最初のステップとして 簡単な日記帳を作ってみましょう 件名 と 本文 があるだけの簡単なものです

More information

<4D F736F F D A957A A A8FEE95F18F88979D DEC90AC E646F63>

<4D F736F F D A957A A A8FEE95F18F88979D DEC90AC E646F63> 情報処理 C (P.1) 情報処理 C (2011 年度 ) ホームページの作成 http://open.shonan.bunkyo.ac.jp/~ohtan/ テキストエディタ ( メモ帳 TeraPad など ) でHTMLファイルを作成する HTML(Hyper Text Markup Language ) ホームページを記述するための言語のこと テキストエディタの起動 (TeraPad の場合

More information

PDF5-ML-Template

PDF5-ML-Template 実践!PDF5-ML プラグイン 牧田敏彦 tmakita@antenna.co.jp 目次 PDF5-ML プラグインまでの経緯 PDF5-ML プラグインの特徴 PDF5-ML プラグインは 使える でしょうか? 2 Copyright 2015 Antenna House, Inc. 目次 PDF5-ML プラグインまでの経緯 PDF5-ML プラグインの特徴 PDF5-ML プラグインは 使える

More information

CMS Designer リファレンスマニュアル

CMS Designer リファレンスマニュアル 目次 目次 1. この資料について... 5 2. CMS DESIGNER の基本的な仕組み... 6 2.1 概要... 6 2.2 主なフォルダ構成... 8 2.3 作業の流れ... 9 2.4 XML と文字コードについて... 10 3. スキーマ定義... 11 3.1 スキーマとは何か... 11 3.2 スキーマファイルの作成... 12 3.3 スキーマファイルの編集... 12

More information

OOW_I06

OOW_I06 G XDK XML Agenda XDK Overview XML Parser XML Schema Processor (XML SQL Utility XML Class Generator XML Transviewer Beans XSQL Servlet Oracle XML Developer s Kit Oracle XML Devleloper s Kit (XDK XML DB

More information

FileList Convert a pdf file!

FileList Convert a pdf file! Tamadaigakufuzokuhijirigaokac yugakukoutougakkoupasocom butamadaigakufuzokuhijirigaok acyugakukoutougakkoupasoco mbutamadaigakufuzokuhijiriga 2009 09 20 21 okacyugakukoutougakkoupaso combutamadaigakufuzokuhijiri

More information

情報システム 第6回講義資料

情報システム 第6回講義資料 情報学科 CS コース情報システム (3 年後期 ) 講義ノート ー第 6 回ー XSLT, Xlink/Xpointer, インデックス 田中克己 角谷和俊 ( 参考図書 ) S.Abiteboul, P. Buneman, and D. Suciu, Data on the Web From Relations to Semistructured Data and XML, Morgan Kaufmann

More information

Table of Contents XML...5 XSLT...6 XSLT...7 XSLT...7 XSL-FO XSLT...7 XSL-FO...8 XSL-FO XSL-FO Keep

Table of Contents XML...5 XSLT...6 XSLT...7 XSLT...7 XSL-FO XSLT...7 XSL-FO...8 XSL-FO XSL-FO Keep Extensible Stylesheet Language (XSL-FO) 2001 4 Table of Contents...4...5 XML...5 XSLT...6 XSLT...7 XSLT...7 XSL-FO XSLT...7 XSL-FO...8 XSL-FO...9...9 XSL-FO...10...10...10...10...11...12...12 Keep Break...13

More information

rzasppdf.ps

rzasppdf.ps IBM i 7.2 Database SQL XML IBM i 7.2 Database SQL XML 237 IBM i 7.1 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Database SQL XML Programming 1 2014.4 Copyright IBM Corporation 2012, 2013. SQL XML.......

More information

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML 6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 3 1.1 HTML Web HTML(Hyper Text Markup Language)

More information

CONTENTS 0 /JSP 13 0.1 Web 14 1 HTML Web 21 1.1 Web HTML 22 1.2 HTML 27 1.3 Web 33 1.4 HTML 43 1.5 46 1.6 47 1.7 48 2 Web 51 2.1 Web 52 2.2 Web 54 2.3 Web 59 2.4 65 2.5 68 2.6 75 2.7 76 2.8 77 3 81 3.1

More information

Part1 159 a a

Part1 159 a a Tomcat 158 Part1 159 a a Tomcat hello World!

More information

情報システム設計論II ユーザインタフェース(1)

情報システム設計論II ユーザインタフェース(1) CMP 実習 2 DB+PHP+XML/JSON+JavaScript 中村, 宮下, 斉藤, 菊池 1 PHP と JavaScript 連携 サーバとクライアントをどうやって繋げるか? PHP と JavaScript 間の情報のやりとりを行う JavaScript JSON/XML PHP DB 簡易的な Web API を作ろう! PHP に GET で情報を送り込むことで XML または

More information

■新聞記事

■新聞記事 情報処理 C (P.1) 情報処理 C ホームページ作成入門 テキストエディタ ( メモ帳 TeraPad など ) でHTMLファイルを作成する HTML(Hyper Text Markup Language ) ホームページを記述するための言語のこと テキストエディタの起動 (TeraPad の場合 ) [ スタート ]-[ プログラム ]-[ テキストエディタ ]-[TeraPad] をクリック

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

More information

Taro php.jtdc

Taro php.jtdc 4-5 PHP 演習問題 演習 1 フォルダ \data\dbserver\php のPHPスクリプト randamu.php を使い, データベース testdb のテーブル table1 を取り込み, ランダムにデータを表示させるWebサーバを構築し, クライアント( Windows 側 ) のブラウザURL epc**.cen.hic.ac.jp/randamu.php を入力し, 確認する

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション iconnector, imaker, Zelkova --- --- iconnector imaker Zelkova XML XML ipex,, ixslt 100% W3C XSLTXSLT XML XML iconnector XML imessenger XML imaker ExcelXML XML imaker for Excel XML iconnector RDB XML imessenger

More information

Microsoft PowerPoint (山本構成員).ppt

Microsoft PowerPoint (山本構成員).ppt 資料 2-4 医療情報の爆発的流通と基盤としてのネットワーク 東京大学大学院情報学環山本隆一 Interfaculty Initiative in Information Studies, The University of Tokyo 2 Interfaculty Initiative in Information Studies, The University of Tokyo 重点計画 2006

More information

3 CSS について Cascading Style Sheets(CSS カスケーディング スタイル シート カスケード スタイル シート) とは HTML や XML の要素をどのように修飾 ( 表示 ) するかを指示する W3C による仕様の一つ 文書の構造と体裁を分離させるという理念を実現す

3 CSS について Cascading Style Sheets(CSS カスケーディング スタイル シート カスケード スタイル シート) とは HTML や XML の要素をどのように修飾 ( 表示 ) するかを指示する W3C による仕様の一つ 文書の構造と体裁を分離させるという理念を実現す HTML/CSS 1 HTML について Hyper Text Markup Language( ハイパーテキストマークアップランゲージ ) 略記 略称:HTML( エイチティーエムエル ) とは ウェブ上のドキュメントを記述するためのマークアップ言語である Web 作成基本プログラミング用語であり C 言語のようなプログラミングとは違い 文章の中に記述することでさまざまな機能を記述設定することができる

More information

Network Computing の基礎

Network Computing の基礎 CSS Cascading Style Sheets Cascading = Style Sheets = CSS WEB HTML CSS 2 HTML h1 p CSS 3 CSS CSS HTML sample1.html CSS HTML sample2.html CSS CSS sample2.css CSS

More information

XQueryってどんなもの?

XQueryってどんなもの? 2 XML Week XML XML XML-DB WG NTT ( ) ymmt@po.ntts.co.jp chiba@isid.co.jp obamikio@jp.ibm.com XQuery SQL SQL SQL XQuery SQL XML XQuery XML XML XPath XML XPath XML XPath XPath XML XML XQuery XML XML XPath

More information

ACS電子ジャーナル利用マニュアル

ACS電子ジャーナル利用マニュアル American Chemical Society ACS Web Edition & Journal Archives American Chemical Society ACS 4 Web Edition 2002 7 1879 Journal Archives ACS 1...2 2 2-1...3 2-2...4 2-3...5 3 3-1 Abstract...6 3-2 Full Text

More information

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt 1 2 3 4 5 6 7 8 9 10 11 No Image No Image 12 13 14 15 16 17 18 19 20 21 22 23 No Image No Image No Image No Image 24 No Image No Image No Image No Image 25 No Image No Image No Image No Image 26 27 28

More information

hands_on_4.PDF

hands_on_4.PDF PHPMySQL 4 PC LAN 2 () () SQLDBMS DBMS DataBase Management System mysql DBMS SQL Structured Query Language SQL DBMS 3 DBMS DataBase Management System B Table 3 Table 2 Table 1 a 1 a 2 a 3 A SQLStructured

More information

2

2 2 485 1300 1 6 17 18 3 18 18 3 17 () 6 1 2 3 4 1 18 11 27 10001200 705 2 18 12 27 10001230 705 3 19 2 5 10001140 302 5 () 6 280 2 7 ACCESS WEB 8 9 10 11 12 13 14 3 A B C D E 1 Data 13 12 Data 15 9 18 2

More information

Microsoft Word IL3_3.doc

Microsoft Word IL3_3.doc ホームページ作成 (Web ページ作成 ) Microsoft Internet Explorer6.0 WZ EDITOR4.0 Paint Shop Pro 7 2004 年度情報リテラシー Ⅲ 学籍番号氏名あ Web ページ作成 1.Web ページとは HTML(Hyper Text Markup Language) というコンピュータ言語で書かれたものであり ブラウザとよばれるソフトを使って表示することができるが

More information

地域と文化資産

地域と文化資産 11 2005 1980 151 20 65 1 6 37 7 A D E F G H - 2 - 2005 8 6 10:00 10:30 2-432 A D 7 E 8 1-F 1-G - 3 - 2005 H 1970 2005 8 26-4 - A B D E F G H 3 7 8 1 5 6 1 10-5 - 2005 10 1 5 6 1 1 30 2 3 5 3 2 1 2005 8

More information

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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 http://www.moj.go.jp/press/090130-1.html 55 56 57

More information

(2) IT Web, ( ) Web Copyright XML 2007 All rights reserved. 3 (3) IT ( ) IT All Win 2007 All rights reserved. 4

(2) IT Web, ( ) Web Copyright XML 2007 All rights reserved. 3 (3) IT ( ) IT All Win 2007 All rights reserved. 4 Copyright XML 2007 All rights reserved. 1 (1) ( ) 2007 All rights reserved. 2 (2) IT Web, ( ) Web Copyright XML 2007 All rights reserved. 3 (3) IT ( ) IT All Win 2007 All rights reserved. 4 Web XML XML

More information

Version C 1 2 3 4 5 1 2 3 4 5 6 7 8 9 0 A 1 2 1 3 4 5 1 1 2 1 1 1 2 4 5 6 7 8 3 1 2 C a b c d e f g A A B C B a b c d e f g 3 4 4 5 6 7 8 1 2 a b 1 2 a b 1 2 1 2 5 4 1 23 5 6 6 a b 1 2 e c d 3

More information

Alchemy API 2

Alchemy API 2 IBM Bluemix AlchemyAPI 1 Alchemy API 2 Free API Key h"p://www.alchemyapi.com/ 3 目的 チェック ( 例 )To retrieve meta informa7on in images. 名 姓 メールアドレス確認メールアドレス 挑戦すること 4 Free API Key!! 1000! API API! API =! API

More information

2009 Web B012-1

2009 Web B012-1 2009 Web 2010 2 1 5108B012-1 1 4 1.1....................................... 4 1.2................................... 4 2 Web 5 2.1 Web............................... 5 2.2 Web.................................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 3 Webデザイナーに求められる知識 優秀な HTML, CSS, 画像編集, JavaScript, jquery, XML, 色 彩理論, LL, データベース, SEO, SMO, EFO, コピーラ イティング, テキストライティング, イラストレー ション, Flash, ディレクション能力, プロジェクトマ ネジメント, Logo作成, Typography, サーバ管理, PHP, Perl,

More information

Title からだから遠く : からだトーク 2014 Author(s) 佐久間, 新 ; 本間, 直樹 ; 菊竹, 智之 Citation Communication-Design. 13 P.23-P.47 Issue 2015-09-30 Date Text Version publisher URL http://hdl.handle.net/11094/53841 DOI Rights

More information

soturon2013

soturon2013 4.4. CGI, CGI Web. UNIX, UNIX Windows. UNIX CGI. i ( ). mi- http://www.mimikaki.net/ 67 (mi- ),mi-, http://ugawalab.miyakyo-u.ac.jp/j3/chika/wari.cgi.txt http://ugawalab.miyakyo-u.ac.jp/j3/chika/wari.cgi.txt,.

More information

PowerPoint Presentation

PowerPoint Presentation 2 3 4 HTML 5 Level.1 Markup Professional HTML 5 Level.2 Application Development Professional 5 6 7 8 9 http://www.html5exam.jp/ @html5cert https://www.facebook.com/html5exam http://www.pearsonvue.com/japan/registration/

More information

untitled

untitled FONT FACE=" " /FONT hp11.html FONT FACE=" " /FONT FONT FACE=" " HTML HP10.html HTML HTML HTML html head title /title font face=" " size="5" /fontbr font face=" " size="5" /fontbr font size="5" /fontbr

More information

Microsoft Word - NTTDoCoMo_Takeshi_Kato_final.doc

Microsoft Word - NTTDoCoMo_Takeshi_Kato_final.doc WS004 30 差分 XSLT スタイルシート生成法の提案と実装 加藤剛志上野英俊石川憲洋高橋修 ( 株 )NTT ドコモマルチメディア研究所 398536 横須賀市光の丘 35 NTT oomo R& センター mail: {t_kato, ueno, ishikawa, osamu}@mml.yrp.nttdocomo.co.jp あらまし我々は 更新前後の XML 文書の差分を抽出し その差分情報を

More information

Hirosaki University Repository Title 東 北 北 部 の 縄 文 式 に 後 続 する 土 器 Author(s) 村 越, 潔 Citation 弘 前 大 学 教 育 学 部 紀 要. 14, 1965, p.27-34 Issue Date 1965-03-30 URL http://hdl.handle.net/10129/722 Rights Text

More information

1 1 1......................... 1 2.......................... 2 3.................... 2 4...................... 3 2 4 1....... 4 2........................ 7 3................... 8 3 12 1...........................

More information

Title 体 験 話 法 の 機 能 について : 二 重 の 視 点 性 の 観 点 から Author(s) 三 瓶, 裕 文 Citation (37): 17-32 Issue 2012-05 Date Type Journal Article Text Version publisher URL http://hdl.handle.net/10086/25722 Right Hitotsubashi

More information

1. 2 DITA 2 2. 1 2. 1. 1 UModel UModel Altova [1] UModel UModel UML(Unified Modeling Language) Java C# VB.NET UML UModel UML 2. 1. 2 XML XML [7] chksp

1. 2 DITA 2 2. 1 2. 1. 1 UModel UModel Altova [1] UModel UModel UML(Unified Modeling Language) Java C# VB.NET UML UModel UML 2. 1. 2 XML XML [7] chksp 30 (2013 ) DITA DITA(Darwin Information Typing Architecture) In software development processes, several documents are created in period of each development phases. Most of these have different file type

More information

Hirosaki University Repository Title 更 級 日 記 の 特 徴 的 表 現 について Author(s) 伊 藤, 守 幸 Citation 弘 前 大 学 国 語 国 文 学. 7, 1985, p.21-31 Issue Date 1985-03-20 URL http://hdl.handle.net/10129/4129 Rights Text version

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

スライド 1

スライド 1 Jameleon 2007130 Agenda Jameleon Jameleon Jameleon a) b) c) d) e) f) g) h) i) Jameleon Jameleon http://jameleon.sourceforge.net/ 200612123.3-M4 GNU Lesser General Public LicenseGNU LGPL Jameleon JUnit

More information

PowerPoint Presentation

PowerPoint Presentation AI Programming data mining ( Plug in Weka to Eclipse) Review of Identification Tree Run bouncing ball in Weka Run bouncing ball in Eclipse How about color? weight? rubber? Please write down their formulae.

More information