Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Filename:ファイル名:

Items in room.xfd

Levelレベル:

Medium

XML from report:レポートから XML:

Room → Equipment list per room

XML sample file:XMLサンプルファイル:

xml/ffe_in_room.xml

Key conceptsキーコンセプト:

Building Blocks, Dynamic page set


As the RDS – simple sample report this report uses a dynamic page set for each room ordered by room function number. It also uses the standard header and footer building blocks and the room core building block. In addition it has the FF&E in room building block. The FF&E in room building block needs an index of all the articles and the room core building block needs an index of all the ref rooms in order to function properly so the following xpath expression has been added in the Review->Global XSLT window:RDS - シンプルサンプルレポートと同様に、このレポートでは部屋機能番号順に並べられた各部屋のダイナミックページセットを使用しています。 
また、標準的なヘッダーとフッターのビルディング・ブロックと部屋コアのビルディング・ブロックを使用しています。 それに加えて、部屋棟にはFF&Eが備わっています。
部屋のビルディング・ブロックのFF&Eは、すべての物品のインデックスを必要とし、部屋のコア・ビルディング・ブロックは、正しく機能するために、
すべての参照部屋のインデックスを必要とするので、以下のxpath式がReview (レビュー) → Global XSLT window (グローバルXSLTウィンドウ) に追加されました:

<xsl:key match="article" name="article-index" use="@id"/> 
<xsl:key match="room" name="room-ref-index" use="@ref"/> 

...