Show page source of XMLフォーマット #11610

  * 画像の順番、音楽の順番などを定義するXMLフォーマットの仕様を決定しましょう

=== 案1
<playlist>
  <pictures> //スライドショーの画像を定義するブロック
    <picture>
      <file>test1.png</file>
      <span>5000</span> //5000ms表示
    </picture>
    <picture>
      <file>test2.png</file>
      <span>6000</span> //6000ms表示
    </picture>
  </pictures>
  <songs>  //楽曲のリストを定義するブロック
    <song>
      <title>曲のタイトル1</title>
    </song>
    <song>
      <title>曲のタイトル2</title>
    </song>
  </songs>
</playlist>

  * 2008.02.17 optionsブロックは他のファイルに移行します
  * 2008.02.23 <timing>タグを<span>タグに変更します