スポンサーリンク

Yahoo!のユーザーインターフェースライブラリ YUIの2.5.0が2008/3/19にリリースされました。

  • Adobe AIRサポートの改良
  • JSONセキュリティパッチ
  • YUI Configurator
  • バグフィックス
FirefoxにおけるJSONのパース
Douglas Crockfordは、json.orgのJSON-parsingコードにセキュリティ脆弱性があるとリポートしました。
この脆弱性は、JSONパーサが非クォートはクォートされていると騙されます。
この結果、安全ではないスクリプトが評価されます。

DataTableの改善

列の動的な追加・更新・削除の処理がかなりパフォーマンスが改善されました。

YUI Comfigurator

YUI Configuratorは、コンポーネント選択インタフェースのダッシュボードを提供します。
http://developer.yahoo.com/yui/articles/hosting/#configure

新しい集合ファイルyuiloader-dom-event.js

yuiloader-dom-event.js を追加しました。
yuiloader-dom-event.js には、YUI Core(Yahoo Global Object, Dom
Collection, Event Utility)と YUI
Loader(動的にscriptとCSSのリソースを追加するためのGet
Utilityを含んでいます)が含まれています。
YUIをオンデマンドでlazy-loadすることが可能です。
<!--Load then new yuiloader-dom-event aggregate file:-->
<script type="text/javascript" 
src="http://yui.yahooapis.com/2.5.1/build/yuiloader-dom-event/yuiloader-dom-event.js" >
</script>

<!--Now, when you want to use a new component, you can just do this:-->
<script type="text/javascript">
// Instantiate and configure Loader:
var loader = new YAHOO.util.YUILoader({
		// Identify the components you want to load.  Loader will automatically
		// identify any additional dependencies required for the specified 
		// components.
require: ["button", "slider"],
// Configure loader to pull in optional dependencies.  For example, 
// animation is an optional dependency for slider.
loadOptional: true,
// The function to call when all script/css resources have been loaded
onSuccess: function() {
//this is your callback function; you can use
//this space to call all of your instantiation
//logic for the components you just loaded.

//so, you can implement button safely here:
var oButton = new YAHOO.widget.Button("mybutton");
}
});

// Load the files onto the page:
loader.insert();
</script>

スポンサーリンク
スポンサーリンク
 
いつもシェア、ありがとうございます!


もっと情報を探しませんか?

関連記事

最近の記事

人気のページ

スポンサーリンク
 

過去ログ

2020 : 01 02 03 04 05 06 07 08 09 10 11 12
2019 : 01 02 03 04 05 06 07 08 09 10 11 12
2018 : 01 02 03 04 05 06 07 08 09 10 11 12
2017 : 01 02 03 04 05 06 07 08 09 10 11 12
2016 : 01 02 03 04 05 06 07 08 09 10 11 12
2015 : 01 02 03 04 05 06 07 08 09 10 11 12
2014 : 01 02 03 04 05 06 07 08 09 10 11 12
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12
2003 : 01 02 03 04 05 06 07 08 09 10 11 12

サイト

Vim入門

C言語入門

C++入門

JavaScript/Node.js入門

Python入門

FreeBSD入門

Ubuntu入門

セキュリティ入門

パソコン自作入門

ブログ

トップ


プライバシーポリシー