中の技術日誌ブログ

C#とC++/CLIと
VBと.NETとWindowsで戯れる
 

目次

Blog 利用状況

ニュース

自己紹介

東京でソフトウェアエンジニアをやっています。
お仕事大募集中です。
記事執筆や、講師依頼とかでも何でもどうぞ(*^_^*)
似顔絵 MSMVPロゴ
MSMVP Visual C# Since 2004/04-2013/03

記事カテゴリ

書庫

日記カテゴリ

00-整理

01-MSMVP

XMLってなぁに?(第15回)

ちょっとHTMLに戻ってみよう。

HTMLでリンクを表すのはAタグを利用する。
<a href="xxx.example.com">xxx.example.com</a>このように記述する。

では、これをXSLで行ってみよう。

a.xml
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="a.xsl"?>
<ROOT>
 <会社 link="http://example.com">example.com商社</会社>
</ROOT>
a.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
 <html>
  <head>
   <title>TITLE</title>
  </head>
  <body>
   ヘッダ
   <xsl:apply-templates />
   フッタ
  </body>
 </html>
</xsl:template>
<xsl:template match="会社">
 <a href="<xsl:value-of select="@link" />"><xsl:value-of select="." /></a>
</xsl:template>
</xsl:stylesheet>

これをIEで開いてみよう。

文字 '< ' は、属性値内に使用できません。

というエラーが表示される。
それもそのはずこれではウェルフォームドなXMLにXSLがなっていないからである。

では<>などを文字実体参照に置き換えてみよう。

a.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
 <html>
  <head>
   <title>TITLE</title>
  </head>
  <body>
   ヘッダ
   <xsl:apply-templates />
   フッタ
  </body>
 </html>
</xsl:template>
<xsl:template match="会社">
 <a href="&lt;xsl:value-of select="@link" /&gt;"><xsl:value-of select="." /></a>
</xsl:template>
</xsl:stylesheet>

a.xslをIEで開いてみよう

要求したスペースが見つかりません。

ますますおかしなエラーになってしまった。

次回へ続く

投稿日時 : 2004年10月11日 16:54

コメントを追加

# naGSRiiVYC 2011/09/29 11:24 http://oemfinder.com

7SQods I would add something else, of course, but in fact almost everything is mentioned!...

# feWerdsYofhWnG 2011/10/06 0:09 http://www.cpc-software.com/

Post brought me to think, went to mull over!!...

# PXrwsInpAXWgXkYScEL 2011/10/18 17:28 http://www.best-software.net/vend-name/adobe

Extremely easy by words but in reality?, a lot of things don`t correspond. Not everything is so rosy..!

# BpZvRlKsBhhwxA 2011/10/18 18:56 http://www.zexersoft.com/download/oem-Adobe-Photos

This article is for professionals..!

# ruXnMHIyAwe 2011/11/02 5:19 http://www.pharmaciecambier.com/

Cool:) I would say say it exploded my brain..!

# ctREbwgeUX 2011/11/02 8:34 http://papillomasfree.com/

Sent the first post, but it wasn`t published. I am writing the second. It's me, the African tourist.

# blRkDZBheh 2011/11/07 19:32 http://roaccutaneprix.net/

Author, keep doing in the same way..!

# NtcdZGSbrP 2011/11/08 16:44 http://www.farmaciaunica.com/

Sometimes I also see something like this, but earlier I didn`t pay much attention to this!...

# ofIjvUlISYxi 2011/11/16 3:51 http://www.laurenslinens.com/satinsheet.html

Hooray! the one who wrote is a cool guy..!

# WAsSSsvqVPkmR 2011/11/16 4:35 http://www.hatleystore.com/department.aspx?DeptId=

Yeah, in my opinion, it is written on every fence!!...

タイトル
名前
URL
コメント