= sfYui plugin =

The `sfYuiPlugin` contains the Yahoo! UI javascript libraries.

== Installation ==

  * Install the plugin
  
  {{{
    symfony plugin-install http://plugins.symfony-project.com/sfYUIPlugin
  }}}
  
  * Download YUI package from http://developer.yahoo.com/yui/download/
   
  * Unzip YUI package and move content of subdirectory "yui/build" from package into "web/sfYUIPlugin/js/yui", f.ex:
  
  {{{
    mkdir -p [project_dir]web/sfYUIPlugin/js/yui
    cp -a yui/build/* [project_dir]web/sfYUIPlugin/js/yui
  }}} 
   
  * If you want to use yui-ext (BSD licence is probably up to 0.33) checkout it from: http://svn.symfony-project.com/plugins/sfYUIPlugin/web/js/yui-ext.0.33 (revision 3472) into "web/sfYUIPlugin/js/yui-ext.0.33"
  
  {{{
    svn co -r3472 http://svn.symfony-project.com/plugins/sfYUIPlugin/web/js/yui-ext.0.33 ./web/sfYUIPlugin/js/yui-ext.0.33
  }}}
  
  Info: ExtJS (successor of yui-ext) separete itself from YUI http://extjs.com/forum/showthread.php?t=9811 and now is dual licenced (open source / commerce). Maybe ExtJS sould be in separate plugin?
  
  * Clear your symfony cache
  
  {{{
    symfony cc
  }}}
  
  
