Google Mashup Editor

Y!のpipesとはまた違った雰囲気は、XMLのコードをエディタで書くからと思います。それにしてもGetting Started Guideを一通り実行してもマッシュアップという感じはしません。あくまでAJAXアプリの開発環境という感じ。

IDEっぽくやるんならデバッガは必要ないの?とか思っていたら、

What about debugging? The best tool we've found for debugging JavaScript applications is Firebug,a Firefox extension that allows you to view JavaScript errors, inspect the DOM, and debug JavaScript (set breakpoints, view variables, and so on).

というわけでした。確かにFireBugは最強ですから。

ざっくりとした構成要素は

  • で大枠のページを定義して
  • でFeedのデータ持ってきて
  • でFeedを表示するHTMLのテンプレートをつくって
  • なんかでデータを出力していく

と、テストしてコンパイルするとAJAXスクリプトを含むWebアプリができるという感じ。

  • でカレンダーを表示したり、
  • でGoogleMapsを表示したり、

することもできるし、

  • でアプリ内でフォームをつくることもできる。内部的に生成されるのはatomとかfeedなデータになるようです。

Filterとかどこまでできるのかもう一つわかってないですが、

You can specify two kinds of filters, value and range:

  • If you specify a string in the value attribute, the filter will allow only entries that exactly match the string.
  • If you specify strings in either a min or max attribute, or both, the filter will allow entries that fall inside the given range.

Plaggerみたいな細かいことはできなさそう。