<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/zena/deploy.rb</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/awstats.conf.rhtml</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/database.rhtml</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/httpd.rhtml</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/start.html</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/stats.vhost.rhtml</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/template.rb</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/vhost.rhtml</filename>
    </added>
    <added>
      <filename>lib/zena/deploy/vhost_www.rhtml</filename>
    </added>
    <added>
      <filename>lib/zena/info.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,3 +1,9 @@
+== 0.15.1 2009-10-17
+
+* 2 minor enhancements:
+  * fixed deployment using capistrano
+  * fixed zena:setup task to copy files instead of symlink
+
 == 0.15.0 2009-10-16
 
 * 5 major enhancements:</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -33,10 +33,11 @@ PROJ.email = 'gaspard@teti.ch'
 PROJ.url = 'http://zenadmin.org'
 PROJ.version = Zena::VERSION
 PROJ.rubyforge.name = 'zena'
+PROJ.readme_file = 'README.rdoc'
 
 PROJ.spec.opts &lt;&lt; '--color'
 PROJ.gem.files = (
-  ['History.txt', 'README.txt', 'db/schema.rb'] +
+  ['History.txt', 'README.rdoc', 'db/schema.rb'] +
   ['app', 'bin', 'bricks', 'config', 'db', 'lib', 'locale', 'public', 'rails', 'vendor', 'test'].map do |d|
     Dir.glob(&quot;#{d}/**/*&quot;).reject {|path| File.basename(path) =~ /^\./ }
   end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,5 @@
 #!/usr/bin/env ruby
 require 'rubygems'
-require 'zena/root'
+require 'zena/info'
 
-exec &quot;rails -m #{File.join(Zena::ROOT, 'config', 'zena.rb').inspect} #{ARGV.first}&quot;
+exec &quot;rails -m #{File.join(Zena::ROOT, 'lib', 'zena', 'deploy', 'template.rb').inspect} #{ARGV.first}&quot;</diff>
      <filename>bin/zena</filename>
    </modified>
    <modified>
      <diff>@@ -1,382 +1,38 @@
-=begin
-
-Deployment 'recipe' for capistrano. Creates everything for your zena app.
-
-Assumed:
-  - mysql root user has the same password as ssh
-  - you are using apache 2.2+ (using balance_proxy)
-  - server is running debian etch
-  - you have installed subversion on the server (aptitude install subversion)
-  - you have installed mysql on the server (aptitude install mysql...)
-  - you have installed the required dependencies (see main README file)
-
-========== USAGE ==========
-
-1. Copy the file 'deploy_config_example.rb' to 'deploy_config.rb' and edit the entries in this new file.
-2. Run =&gt; cap initial_setup
-3. Run =&gt; cap mksite -s host='example.com' -s pass='secret' -s lang='en'
-
-If anything goes wrong, ask the mailing list (lists.zenadmin.org) or read the content of this file to understand what went wrong...
-
-And yes, 'pass' is not as intuitive as 'password' but we cannot use the latter because it's used for the ssh login.
-
-
-=end
-require 'erb'
-
-#================= ADVANCED SETTINGS =============#
-
-set :deploy_to,    &quot;/var/zena&quot;
-set :zena_sites,   &quot;/var/www/zena&quot;
-set :apache2_vhost_root, &quot;/etc/apache2/sites-available&quot;
-set :apache2_deflate,       true
-set :apache2_debug_deflate, false
-set :apache2_debug_rewrite, false
-set :apache2_static,        []
-set :apache2_reload_cmd, &quot;/etc/init.d/apache2 reload&quot;
-set :debian_host,           true
-set :ssh_user,              &quot;root&quot;
-
-load File.join(File.dirname(__FILE__), 'deploy_config')
-
-role :web,         &quot;#{ssh_user}@#{server_ip}&quot;
-role :app,         &quot;#{ssh_user}@#{server_ip}&quot;
-role :db,          &quot;#{ssh_user}@#{server_ip}&quot;, :primary =&gt; true
-
-#================= END ADVANCED SETTINGS ==========#
-
-
-# helper
-set :in_current, &quot;cd #{deploy_to}/current &amp;&amp;&quot;
-class RenderClass
-  def initialize(path)
-    @text = File.read(path)
-  end
-
-  def render(hash)
-    @values = hash
-    ERB.new(@text).result(binding)
-  end
-
-  def method_missing(sym)
-    return @values[sym] if @values.has_key?(sym)
-    super
-  end
-end
-
-def render(file, hash)
-  RenderClass.new(file).render(hash)
-end
-
-#========================== SOURCE CODE   =========================#
-
-
-desc &quot;set permissions to www-data&quot;
-task :set_permissions, :roles =&gt; :app do
-  run &quot;chown -R www-data:www-data #{deploy_to}&quot;
-  run &quot;chown -R www-data:www-data #{zena_sites}&quot;
-end
-
-&quot;Update the currently released version of the software directly via an SCM update operation&quot;
-task :update_current do
-  source.sync(revision, self[:release_path])
-end
-
-desc &quot;clear all zafu compiled templates&quot;
-task :clear_zafu, :roles =&gt; :app do
-  run &quot;#{in_current} rake zena:clear_zafu RAILS_ENV=production&quot;
-end
-
-desc &quot;clear all cache compiled templates&quot;
-task :clear_cache, :roles =&gt; :app do
-  run &quot;#{in_current} rake zena:clear_cache RAILS_ENV=production&quot;
-end
-
-desc &quot;after code update&quot;
-task :after_update, :roles =&gt; :app do
-  app_update_symlinks
-  db_update_config
-  migrate
-  clear_zafu
-  clear_cache
-end
-
-desc &quot;update symlink to 'sites' directory&quot;
-task :app_update_symlinks, :roles =&gt; :app do
-  run &quot;test ! -e #{deploy_to}/current/sites || rm #{deploy_to}/current/sites&quot;
-  run &quot;ln -sf #{zena_sites} #{deploy_to}/current/sites&quot;
-  set_permissions
-end
-
-desc &quot;migrate database (zena version)&quot;
-task :migrate, :roles =&gt; :db do
-  run &quot;#{in_current} rake zena:migrate RAILS_ENV=production&quot;
-end
-
-desc &quot;initial app setup&quot;
-task :app_setup, :roles =&gt; :app do
-  run &quot;test -e #{deploy_to}  || mkdir #{deploy_to}&quot;
-  run &quot;test -e #{zena_sites} || mkdir #{zena_sites}&quot;
-  deploy::setup
-end
-
-#========================== MANAGE HOST   =========================#
-desc &quot;create a new site&quot;
-task :mksite, :roles =&gt; :app do
-  run &quot;#{in_current} rake zena:mksite HOST='#{self[:host]}' PASSWORD='#{self[:pass]}' RAILS_ENV='production' LANG='#{self[:lang] || 'en'}'&quot;
-  create_vhost
-  create_awstats
-  set_permissions
-end
-
-desc &quot;update code in the current version&quot;
-task :up, :roles =&gt; :app do
-  run &quot;cd #{deploy_to}/current &amp;&amp; svn up &amp;&amp; (echo #{strategy.configuration[:real_revision]} &gt; #{deploy_to}/current/REVISION)&quot;
-  db_update_config
-  clear_zafu
-  clear_cache
-  migrate
-  restart
-end
-
-desc &quot;light update code (no migration, no clear)&quot;
-task :lightup, :roles =&gt; :app do
-  run &quot;cd #{deploy_to}/current &amp;&amp; svn up&quot;
-  restart
-end
-
-#========================== MONGREL ===============================#
-desc &quot;configure mongrel&quot;
-task :mongrel_setup, :roles =&gt; :app do
-  run &quot;#{in_current} mongrel_rails cluster::configure -e production -p #{mongrel_port} -N #{mongrel_count} -c #{deploy_to}/current -P log/mongrel.pid -l log/mongrel.log -a 127.0.0.1 --user www-data --group www-data&quot;
-  run &quot;#{in_current} echo 'config_script: config/mongrel_upload_progress.conf' &gt;&gt; config/mongrel_cluster.yml&quot;
-end
-
-desc &quot;Stop the drb upload_progress server&quot;
-task :stop_upload_progress , :roles =&gt; :app do
-  run &quot;#{in_current} ruby lib/upload_progress_server.rb stop&quot;
-end
-
-desc &quot;Start the drb upload_progress server&quot;
-task :start_upload_progress , :roles =&gt; :app do
-  run &quot;#{in_current} lib/upload_progress_server.rb start&quot;
-end
-
-desc &quot;Restart the upload_progress server&quot;
-task :restart_upload_progress, :roles =&gt; :app do
-  stop_upload_progress
-  start_upload_progress
-end
-
-desc &quot;Start mongrel&quot;
-task :start, :roles =&gt; :app do
-  restart_upload_progress
-  run &quot;#{in_current} mongrel_rails cluster::start&quot;
-end
-
-desc &quot;Stop mongrel&quot;
-task :stop, :roles =&gt; :app do
-  stop_upload_progress
-  run &quot;#{in_current} mongrel_rails cluster::stop&quot;
-end
-
-desc &quot;Restart mongrel&quot;
-task :restart, :roles =&gt; :app do
-  stop
-  restart_upload_progress
-  start
-end
-
-#========================== APACHE2 ===============================#
-desc &quot;Update vhost configuration file&quot;
-task :create_vhost, :roles =&gt; :web do
-  unless self[:host]
-    puts &quot;HOST not set (use -s host=...)&quot;
-  else
-    vhost = render(&quot;config/vhost.rhtml&quot;,
-                  :host        =&gt; self[:host],
-                  :static      =&gt; apache2_static,
-                  :deflate       =&gt; apache2_deflate,
-                  :debug_deflate =&gt; apache2_debug_deflate,
-                  :debug_rewrite =&gt; apache2_debug_rewrite,
-                  :balancer    =&gt; db_name
-                  )
-    put(vhost, &quot;#{apache2_vhost_root}/#{self[:host]}&quot;)
-
-    run &quot;test -e /etc/apache2/sites-enabled/#{self[:host]} || a2ensite #{self[:host]}&quot; if debian_host
-
-    unless self[:host] =~ /^www/
-      vhost_www = render(&quot;config/vhost_www.rhtml&quot;,
-                    :host        =&gt; self[:host]
-                    )
-      put(vhost_www, &quot;#{apache2_vhost_root}/www.#{self[:host]}&quot;)
-      run &quot;test -e /etc/apache2/sites-enabled/www.#{self[:host]} || a2ensite www.#{self[:host]}&quot; if debian_host
-    end
-    run apache2_reload_cmd
-  end
-end
-
-#========================== APACHE2 ===============================#
-desc &quot;Update awstats configuration file&quot;
-task :create_awstats, :roles =&gt; :web do
-  unless debian_host
-    puts &quot;skipping debian specific awstats&quot;
-  else
-    unless self[:host] &amp;&amp; self[:pass]
-      puts &quot;host or password not set (use -s host=... -s pass=...)&quot;
-    else
-      # create awstats config file
-      awstats_conf = render(&quot;config/awstats.conf.rhtml&quot;, :host =&gt; self[:host] )
-      put(awstats_conf, &quot;/etc/awstats/awstats.#{self[:host]}.conf&quot;)
-      run &quot;chown www-data:www-data /etc/awstats/awstats.#{self[:host]}.conf&quot;
-      run &quot;chmod 640 /etc/awstats/awstats.#{self[:host]}.conf&quot;
-
-      # create stats vhost
-      stats_vhost = render(&quot;config/stats.vhost.rhtml&quot;, :host =&gt; self[:host] )
-      put(stats_vhost, &quot;#{apache2_vhost_root}/stats.#{self[:host]}&quot;)
-      run &quot;test -e /etc/apache2/sites-enabled/stats.#{self[:host]} || a2ensite stats.#{self[:host]}&quot;
-
-      # directory setup for stats
-      run &quot;test -e #{zena_sites}/#{self[:host]}/log/awstats || mkdir #{zena_sites}/#{self[:host]}/log/awstats&quot;
-      run &quot;chown www-data:www-data #{zena_sites}/#{self[:host]}/log/awstats&quot;
-
-      # setup cron task for awstats
-      run &quot;cat /etc/cron.d/awstats | grep \&quot;#{self[:host]}\&quot; || echo \&quot;0,10,20,30,40,50 * * * * www-data [ -x /usr/lib/cgi-bin/awstats.pl -a -f /etc/awstats/awstats.#{self[:host]}.conf -a -r #{zena_sites}/#{self[:host]}/log/apache2.access.log ] &amp;&amp; /usr/lib/cgi-bin/awstats.pl -config=#{self[:host]} -update &gt;/dev/null\n\&quot; &gt;&gt; /etc/cron.d/awstats&quot;
-
-      # create .htpasswd file
-      run &quot;test ! -e #{zena_sites}/#{self[:host]}/log/.awstatspw || rm #{zena_sites}/#{self[:host]}/log/.awstatspw&quot;
-      run &quot;htpasswd -c -b #{zena_sites}/#{self[:host]}/log/.awstatspw 'admin' '#{self[:pass]}'&quot;
-
-      # reload apache
-      run &quot;/etc/init.d/apache2 reload&quot;
-    end
-  end
-end
-
-desc &quot;Rename a webhost&quot;
-task :rename_host, :roles =&gt; :web do
-  unless self[:host] &amp;&amp; self[:old_host]
-    puts &quot;host or old_host not set (use -s host=... -s old_host=...)&quot;
-  else
-    run &quot;#{in_current} rake zena:rename_host OLD_HOST='#{self[:old_host]}' HOST='#{self[:host]}' RAILS_ENV='production'&quot;
-    old_vhost_path = &quot;#{apache2_vhost_root}/#{self[:old_host]}&quot;
-    run &quot;a2dissite #{self[:old_host]}&quot;
-    run &quot;test -e #{old_vhost_path} &amp;&amp; rm #{old_vhost_path}&quot;
-    # FIXME: remove old awstats vhost !!
-    create_vhost
-    create_awstats
-    clear_zafu
-    clear_cache
-    set_permissions
-  end
-end
-
-desc &quot;Apache2 initial setup&quot;
-task :apache2_setup, :roles =&gt; :web do
-  ports = (mongrel_port.to_i...(mongrel_port.to_i + mongrel_count.to_i)).to_a
-  httpd_conf = render(&quot;config/httpd.rhtml&quot;, :balancer =&gt; db_name, :ports =&gt; ports)
-  if debian_host
-    put(httpd_conf, &quot;/etc/apache2/conf.d/#{db_name}&quot;)
-  else
-    put(httpd_conf, &quot;/etc/apache2/conf.d/#{db_name}&quot;)
-  end
-
-  run &quot;test -e /etc/apache2/sites-enabled/000-default &amp;&amp; a2dissite default || echo 'default already disabled'&quot;
-  run &quot;test -e /etc/apache2/mods-enabled/rewrite.load || a2enmod rewrite&quot;
-  run &quot;test -e /etc/apache2/mods-enabled/deflate.load || a2enmod deflate&quot;
-  run &quot;test -e /etc/apache2/mods-enabled/proxy_balancer.load || a2enmod proxy_balancer&quot;
-  run &quot;test -e /etc/apache2/mods-enabled/proxy.load || a2enmod proxy&quot;
-  run &quot;test -e /etc/apache2/mods-enabled/proxy_http.load || a2enmod proxy_http&quot;
-  run &quot;test -e /etc/apache2/mods-enabled/expires.load || a2enmod expires&quot;
-  run &quot;/etc/init.d/apache2 force-reload&quot;
-end
-
-#========================== MYSQL   ===============================#
-
-desc &quot;set database.yml file according to settings&quot;
-task :db_update_config, :roles =&gt; :app do
-  db_app_config = render(&quot;config/database.rhtml&quot;,
-                :db_name     =&gt; db_name,
-                :db_user     =&gt; db_user,
-                :db_password =&gt; db_password
-                )
-  put(db_app_config, &quot;#{deploy_to}/current/config/database.yml&quot;)
-end
-
-desc &quot;create database&quot;
-task :db_create, :roles =&gt; :db do
-  on_rollback do
-    run &quot;mysql -u root -p -e \&quot;DROP DATABASE #{db_name};\&quot;&quot; do |channel, stream, data|
-      if data =~ /^Enter password:\s*/m
-        logger.info &quot;#{channel[:host]} asked for password&quot;
-        channel.send_data &quot;#{password}\n&quot;
-      end
-      puts data
-    end
-  end
-
-  run &quot;mysql -u root -p -e \&quot;CREATE DATABASE #{db_name} DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; GRANT ALL ON #{db_name}.* TO '#{db_user}'@'localhost' IDENTIFIED BY '#{db_password}';\&quot;&quot; do |channel, stream, data|
-    if data =~ /^Enter password:\s*/m
-      logger.info &quot;#{channel[:host]} asked for password&quot;
-      channel.send_data &quot;#{password}\n&quot;
-    end
-    puts data
-  end
-end
-
-desc &quot;initial database setup&quot;
-task :db_setup, :roles =&gt; :db do
-  transaction do
-    db_create
-  end
-end
-
-
-desc &quot;Full initial setup&quot;
-task :initial_setup do
-  transaction do
-    app_setup
-
-    db_setup
-
-    deploy::update
-
-    mongrel_setup
-
-    apache2_setup
-
-    set_permissions
-
-    start
-  end
+set :db_name,             &quot;zena&quot;   # If you change this: no dots in this name !
+set :server_ip,           nil      # FIXME: set this to your remote server IP in the form: &quot;215.0.0.1&quot;
+set :mongrel_port,        &quot;8000&quot;
+set :mongrel_count,       &quot;3&quot;
+set :db_password,         nil      # FIXME: set password (can be anything).
+set :db_user,             &quot;zena&quot;
+set :repository,          &quot;http://svn.zenadmin.org/zena/trunk&quot;
+
+if self[:server_ip]
+  #================= ADVANCED SETTINGS =============#
+
+  set :deploy_to,    &quot;/var/zena&quot;
+  set :zena_sites,   &quot;/var/www/zena&quot;
+  set :apache2_vhost_root, &quot;/etc/apache2/sites-available&quot;
+  set :apache2_deflate,       true
+  set :apache2_debug_deflate, false
+  set :apache2_debug_rewrite, false
+  set :apache2_static,        []
+  set :apache2_reload_cmd, &quot;/etc/init.d/apache2 reload&quot;
+  set :debian_host,           true
+  set :ssh_user,              &quot;root&quot;
+
+  role :web,         &quot;#{ssh_user}@#{server_ip}&quot;
+  role :app,         &quot;#{ssh_user}@#{server_ip}&quot;
+  role :db,          &quot;#{ssh_user}@#{server_ip}&quot;, :primary =&gt; true
+
+  #================= END ADVANCED SETTINGS ==========#
+  require 'zena/deploy'
+
+else
+  puts &lt;&lt;-TXT
+***********************************************************
+You should fix your configurations file 'config/deploy.rb'
+before running capistrano
+***********************************************************
+TXT
 end
 
-desc &quot;Database dump&quot;
-task :db_dump, :roles =&gt; :db do
-  run &quot;mysqldump #{db_name} -u root -p &gt; #{deploy_to}/current/#{db_name}.sql&quot; do |channel, stream, data|
-    if data =~ /^Enter password:\s*/m
-      logger.info &quot;#{channel[:host]} asked for password&quot;
-      channel.send_data &quot;#{password}\n&quot;
-    end
-    puts data
-  end
-  run &quot;#{in_current} tar czf #{db_name}.sql.tgz #{db_name}.sql&quot;
-  run &quot;#{in_current} rm #{db_name}.sql&quot;
-end
-
-desc &quot;Get backup file back&quot;
-task :get_backup, :roles =&gt; :app do
-  get &quot;#{deploy_to}/current/#{db_name}_data.tgz&quot;, &quot;./#{db_name}_#{Time.now.strftime '%Y-%m-%d-%H'}.tgz&quot;
-end
-
-# FIXME: backup not loading data for every site...
-desc &quot;Backup all data and bring it backup here&quot;
-task :backup, :roles =&gt; :app do
-  db_dump
-  # key track of the current svn revision for app
-
-  run &quot;#{in_current} svn info &gt; #{deploy_to}/current/zena_version.txt&quot;
-  run &quot;#{in_current} rake zena:full_backup RAILS_ENV='production'&quot;
-  run &quot;#{in_current} tar czf #{db_name}_data.tgz #{db_name}.sql.tgz sites_data.tgz zena_version.txt&quot;
-  get_backup
-end</diff>
      <filename>config/deploy.rb</filename>
    </modified>
    <modified>
      <diff>@@ -17,12 +17,7 @@ RedCloth:
 #  lib:          'RMagick'
 #  version:      '= 2.11.1'
 
-sqlite3-ruby:
-  lib:          'sqlite3'
-  version:      '&gt;= 1.2.4'
-
 yamltest:
-  development_only:  yes
   version: '= 0.5.3'
 
 grosser-fast_gettext:</diff>
      <filename>config/gems.yml</filename>
    </modified>
    <modified>
      <diff>@@ -1,47 +1,37 @@
 require 'yaml'
 require 'fileutils'
 
-require File.join(File.dirname(__FILE__), '..', 'zena.rb') # to have Zena::ROOT
+require File.join(File.dirname(__FILE__), '..', 'zena', 'info') # to have Zena::ROOT
 
-def symlink_assets(from, to)
+def copy_assets(from, to)
   from = File.expand_path(from)
   to = File.expand_path(to)
   return if from == to
-  # FIXME: how do we keep favicon.ico and robots.txt in the root dir of a site ?
-  # FIXME: ln should be to 'current' release, not calendar -&gt; /var/zena/releases/20070511195642/public/calendar
-  #        we could create a symlink in the sites dir to 'shared' -&gt; /var/zena/current/public
-  #        and then symlink with &quot;#{host_path}/public/#{dir}&quot; -&gt; &quot;../shared/public/#{dir}&quot;
-  #        OR we could symlink /var/zena/current/...
-  ['calendar', 'images', 'javascripts', 'stylesheets', 'icons'].each do |dir|
-    File.unlink(&quot;#{to}/public/#{dir}&quot;) if File.symlink?(&quot;#{to}/public/#{dir}&quot;)
-    if File.exist?(&quot;#{to}/public/#{dir}&quot;)
-      if File.directory?(&quot;#{to}/public/#{dir}&quot;)
-        # replace each file
-        Dir.foreach(&quot;#{from}/public/#{dir}&quot;) do |f|
-          src, trg = &quot;#{from}/public/#{dir}/#{f}&quot;, &quot;#{to}/public/#{dir}/#{f}&quot;
-          next if f =~ /\A\./
-          if File.exist?(trg) || File.symlink?(trg)
-            File.unlink(trg)
-          end
-          FileUtils.ln_s(src, trg)
-        end
-      else
-        # ignore
-        puts &quot;Cannot install assets in #{to}/public/#{dir} (not a directory)&quot;
+  ['config/mongrel_upload_progress.conf', 'lib/upload_progress_server.rb', 'config/deploy.rb', 'db/migrate/*.rb', 'public/**/*'].each do |base_path|
+    if base_path =~ /\*/
+      Dir[&quot;#{from}/#{base_path}&quot;].each do |path|
+        path = path[(from.length + 1)..-1]
+        next if File.directory?(path)
+        copy_files(&quot;#{from}/#{path}&quot;, &quot;#{to}/#{path}&quot;)
       end
     else
-      FileUtils.ln_s(&quot;#{from}/public/#{dir}&quot;, &quot;#{to}/public/#{dir}&quot;)
+      copy_files(&quot;#{from}/#{base_path}&quot;, &quot;#{to}/#{base_path}&quot;)
     end
   end
 end
 
-def copy_assets(from, to)
-  from = File.expand_path(from)
-  to = File.expand_path(to)
-  return if from == to
-
-  ['config/mongrel_upload_progress.conf', 'lib/upload_progress_server.rb'].each do |path|
-    FileUtils.cp(&quot;#{from}/#{path}&quot;, &quot;#{to}/#{path}&quot;) unless File.exist?(&quot;#{to}/#{path}&quot;)
+def copy_files(from, to)
+  base = File.dirname(to)
+  unless File.exist?(base)
+    FileUtils.mkpath(base)
+  end
+  if File.directory?(from)
+    Dir.foreach(from) do |f|
+      next if f =~ /\A./
+      copy_files(&quot;#{from}/#{f}&quot;, &quot;#{to}/#{f}&quot;)
+    end
+  else
+    FileUtils.cp(from, base)
   end
 end
 
@@ -52,8 +42,6 @@ namespace :zena do
     if Zena::ROOT == RAILS_ROOT
       puts &quot;Copy assets should only be used when zena is loaded externally (via gem for example).&quot;
     else
-      symlink_assets(Zena::ROOT, RAILS_ROOT)
-      puts &quot;* symlinked assets&quot;
       copy_assets(Zena::ROOT, RAILS_ROOT)
       puts &quot;* copied assets&quot;
     end
@@ -210,7 +198,7 @@ namespace :zena do
       end
     else
       # migrate all to latest
-      paths  = {'zena' =&gt; &quot;#{Zena::ROOT}/db/migrate&quot;}
+      paths  = {'zena' =&gt; &quot;#{RAILS_ROOT}/db/migrate&quot;}
       bricks = ['zena']
 
       Bricks::Patcher.foreach_brick do |brick_path|</diff>
      <filename>lib/tasks/zena.rake</filename>
    </modified>
    <modified>
      <diff>@@ -2,6 +2,7 @@
 require 'yaml'
 require 'date'
 require 'fileutils'
+require File.join(File.dirname(__FILE__), 'zena', 'info')
 
 AUTHENTICATED_PREFIX = &quot;oo&quot;
 SITES_ROOT = &quot;#{RAILS_ROOT}/sites&quot;
@@ -23,10 +24,7 @@ UPLOAD_KEY     = defined?(Mongrel) ? 'upload_id' : &quot;X-Progress-ID&quot;
 require 'bricks/patcher'
 
 module Zena
-  VERSION = '0.15.0'
-  REVISION = 1336
-  ROOT    = File.expand_path(File.join(File.dirname(__FILE__), '..'))
-
+  # VERSION is defined in root.rb
   class &lt;&lt; self
     attr_accessor :tools_enabled
     def add_load_paths(config = nil)
@@ -180,7 +178,7 @@ end
 
 
 # test if DRB started
-unless RAILS_ENV == 'test' || File.exist?(File.join(File.dirname(__FILE__), '..', 'log', 'upload_progress_drb.pid'))
+if RAILS_ENV == 'production' &amp;&amp; !File.exist?(File.join(File.dirname(__FILE__), '..', 'log', 'upload_progress_drb.pid'))
   puts &quot;\n** WARNING: drb server not running. Upload progress will not work.&quot;
   puts &quot; * WARNING: you should start the drb server with 'lib/upload_progress_server.rb start'\n\n&quot;
 end</diff>
      <filename>lib/zena.rb</filename>
    </modified>
    <modified>
      <diff>@@ -2,25 +2,26 @@
 
 Gem::Specification.new do |s|
   s.name = %q{zena}
-  s.version = &quot;0.15.0&quot;
+  s.version = &quot;0.15.1&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
   s.authors = [&quot;Gaspard Bucher&quot;]
-  s.date = %q{2009-10-16}
+  s.date = %q{2009-10-17}
   s.default_executable = %q{zena}
-  s.description = %q{CMS based on Ruby on Rails, (c) Gaspard Bucher, teti.ch 2007-2009, licenced under MIT
+  s.description = %q{CMS with super natural powers, based on Ruby on Rails
 
-This version of zena is *TOTALLY UNUSABLE* for the moment. It is the result of the slow migration from Rails 1.2.3 to Rails 2.x. You will need the latest rails edge with some patches which you can find here: http://github.com/gaspard/rails/tree/master.}
+website: http://zenadmin.org
+licence: MIT}
   s.email = %q{gaspard@teti.ch}
   s.executables = [&quot;zena&quot;]
-  s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;README.txt&quot;, &quot;bin/zena&quot;, &quot;lib/bricks&quot;, &quot;lib/core_ext&quot;, &quot;lib/log_recorder&quot;, &quot;lib/log_recorder/lib&quot;, &quot;lib/log_recorder/test&quot;, &quot;lib/tasks&quot;, &quot;lib/tasks/capistrano.rake&quot;, &quot;lib/tasks/zena.rake&quot;, &quot;lib/zena&quot;, &quot;lib/zena/acts&quot;, &quot;lib/zena/controller&quot;, &quot;lib/zena/fix&quot;, &quot;lib/zena/parser&quot;, &quot;lib/zena/unit&quot;, &quot;lib/zena/use&quot;, &quot;lib/zena/use/custom_queries&quot;, &quot;lib/zena/use/custom_queries/complex.host.yml&quot;, &quot;lib/zena/view&quot;, &quot;public/images/swf/xspf/license.txt&quot;, &quot;public/robots.txt&quot;, &quot;vendor/bricks/20070122-172926.txt&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt&quot;, &quot;test/fixtures/files/other.txt&quot;, &quot;test/fixtures/files/some.txt&quot;]
-  s.files = [&quot;History.txt&quot;, &quot;README.txt&quot;, &quot;db/schema.rb&quot;, &quot;app/controllers&quot;, &quot;app/controllers/application_controller.rb&quot;, &quot;app/controllers/comments_controller.rb&quot;, &quot;app/controllers/data_entries_controller.rb&quot;, &quot;app/controllers/discussions_controller.rb&quot;, &quot;app/controllers/documents_controller.rb&quot;, &quot;app/controllers/groups_controller.rb&quot;, &quot;app/controllers/iformats_controller.rb&quot;, &quot;app/controllers/links_controller.rb&quot;, &quot;app/controllers/nodes_controller.rb&quot;, &quot;app/controllers/preferences_controller.rb&quot;, &quot;app/controllers/relations_controller.rb&quot;, &quot;app/controllers/sessions_controller.rb&quot;, &quot;app/controllers/sites_controller.rb&quot;, &quot;app/controllers/users_controller.rb&quot;, &quot;app/controllers/versions_controller.rb&quot;, &quot;app/controllers/virtual_classes_controller.rb&quot;, &quot;app/helpers&quot;, &quot;app/helpers/application_helper.rb&quot;, &quot;app/helpers/documents_helper.rb&quot;, &quot;app/helpers/nodes_helper.rb&quot;, &quot;app/helpers/versions_helper.rb&quot;, &quot;app/models&quot;, &quot;app/models/book.rb&quot;, &quot;app/models/cache.rb&quot;, &quot;app/models/cached_page.rb&quot;, &quot;app/models/comment.rb&quot;, &quot;app/models/contact.rb&quot;, &quot;app/models/contact_content.rb&quot;, &quot;app/models/contact_version.rb&quot;, &quot;app/models/data_entry.rb&quot;, &quot;app/models/discussion.rb&quot;, &quot;app/models/document.rb&quot;, &quot;app/models/document_content.rb&quot;, &quot;app/models/document_version.rb&quot;, &quot;app/models/dyn_attribute.rb&quot;, &quot;app/models/group.rb&quot;, &quot;app/models/iformat.rb&quot;, &quot;app/models/image.rb&quot;, &quot;app/models/image_content.rb&quot;, &quot;app/models/image_version.rb&quot;, &quot;app/models/link.rb&quot;, &quot;app/models/node.rb&quot;, &quot;app/models/note.rb&quot;, &quot;app/models/page.rb&quot;, &quot;app/models/project.rb&quot;, &quot;app/models/reference.rb&quot;, &quot;app/models/relation.rb&quot;, &quot;app/models/relation_proxy.rb&quot;, &quot;app/models/section.rb&quot;, &quot;app/models/site.rb&quot;, &quot;app/models/skin.rb&quot;, &quot;app/models/template.rb&quot;, &quot;app/models/template_content.rb&quot;, &quot;app/models/template_version.rb&quot;, &quot;app/models/text_document.rb&quot;, &quot;app/models/text_document_content.rb&quot;, &quot;app/models/text_document_version.rb&quot;, &quot;app/models/user.rb&quot;, &quot;app/models/version.rb&quot;, &quot;app/models/virtual_class.rb&quot;, &quot;app/models/zip.rb&quot;, &quot;app/views&quot;, &quot;app/views/comments&quot;, &quot;app/views/comments/_add.rhtml&quot;, &quot;app/views/comments/_bin.rhtml&quot;, &quot;app/views/comments/_form.rhtml&quot;, &quot;app/views/comments/_li.rhtml&quot;, &quot;app/views/comments/_li_simple.rhtml&quot;, &quot;app/views/comments/_list.rhtml&quot;, &quot;app/views/comments/create.rjs&quot;, &quot;app/views/comments/edit.rjs&quot;, &quot;app/views/comments/empty_bin.rjs&quot;, &quot;app/views/comments/index.rhtml&quot;, &quot;app/views/comments/publish.rjs&quot;, &quot;app/views/comments/remove.rjs&quot;, &quot;app/views/comments/reply_to.rjs&quot;, &quot;app/views/comments/update.rjs&quot;, &quot;app/views/data_entries&quot;, &quot;app/views/data_entries/_li.html.erb&quot;, &quot;app/views/data_entries/create.rjs&quot;, &quot;app/views/data_entries/destroy.rjs&quot;, &quot;app/views/data_entries/edit.rjs&quot;, &quot;app/views/data_entries/index.html.erb&quot;, &quot;app/views/data_entries/show.html.erb&quot;, &quot;app/views/data_entries/show.rjs&quot;, &quot;app/views/data_entries/update.rjs&quot;, &quot;app/views/discussions&quot;, &quot;app/views/discussions/_add.rhtml&quot;, &quot;app/views/discussions/_form.rhtml&quot;, &quot;app/views/discussions/_li.rhtml&quot;, &quot;app/views/discussions/_list.rhtml&quot;, &quot;app/views/discussions/create.rjs&quot;, &quot;app/views/discussions/remove.rjs&quot;, &quot;app/views/discussions/show.rjs&quot;, &quot;app/views/discussions/update.rjs&quot;, &quot;app/views/documents&quot;, &quot;app/views/documents/_crop.rhtml&quot;, &quot;app/views/documents/crop_form.rjs&quot;, &quot;app/views/documents/new.rhtml&quot;, &quot;app/views/documents/show.rhtml&quot;, &quot;app/views/groups&quot;, &quot;app/views/groups/_add.rhtml&quot;, &quot;app/views/groups/_form.rhtml&quot;, &quot;app/views/groups/_li.rhtml&quot;, &quot;app/views/groups/create.rjs&quot;, &quot;app/views/groups/destroy.rjs&quot;, &quot;app/views/groups/edit.html.erb&quot;, &quot;app/views/groups/index.rhtml&quot;, &quot;app/views/groups/show.html.erb&quot;, &quot;app/views/groups/show.rjs&quot;, &quot;app/views/iformats&quot;, &quot;app/views/iformats/_add.rhtml&quot;, &quot;app/views/iformats/_form.rhtml&quot;, &quot;app/views/iformats/_li.rhtml&quot;, &quot;app/views/iformats/create.rjs&quot;, &quot;app/views/iformats/destroy.rjs&quot;, &quot;app/views/iformats/edit.html.erb&quot;, &quot;app/views/iformats/index.rhtml&quot;, &quot;app/views/iformats/show.html.erb&quot;, &quot;app/views/iformats/show.rjs&quot;, &quot;app/views/iformats/update.rjs&quot;, &quot;app/views/image&quot;, &quot;app/views/image/_title.rhtml&quot;, &quot;app/views/links&quot;, &quot;app/views/links/_add.rhtml&quot;, &quot;app/views/links/_form.rhtml&quot;, &quot;app/views/links/_li.rhtml&quot;, &quot;app/views/links/_list.rhtml&quot;, &quot;app/views/links/create.rjs&quot;, &quot;app/views/links/destroy.rjs&quot;, &quot;app/views/links/show.rjs&quot;, &quot;app/views/nodes&quot;, &quot;app/views/nodes/404.html&quot;, &quot;app/views/nodes/500.html&quot;, &quot;app/views/nodes/_dates.rhtml&quot;, &quot;app/views/nodes/_edit_attribute.rhtml&quot;, &quot;app/views/nodes/_gallery.rhtml&quot;, &quot;app/views/nodes/_groups.rhtml&quot;, &quot;app/views/nodes/_import_results.rhtml&quot;, &quot;app/views/nodes/_list_nodes.rhtml&quot;, &quot;app/views/nodes/_parent.rhtml&quot;, &quot;app/views/nodes/_position.rhtml&quot;, &quot;app/views/nodes/_results.rhtml&quot;, &quot;app/views/nodes/_show_attr.rhtml&quot;, &quot;app/views/nodes/_table.rhtml&quot;, &quot;app/views/nodes/clear_order.rjs&quot;, &quot;app/views/nodes/create.rjs&quot;, &quot;app/views/nodes/drive.rjs&quot;, &quot;app/views/nodes/drop.rjs&quot;, &quot;app/views/nodes/edit.html.erb&quot;, &quot;app/views/nodes/edit.rjs&quot;, &quot;app/views/nodes/import.rhtml&quot;, &quot;app/views/nodes/save_text.rjs&quot;, &quot;app/views/nodes/search.rjs&quot;, &quot;app/views/nodes/show.rjs&quot;, &quot;app/views/nodes/table_update.rjs&quot;, &quot;app/views/nodes/update.rjs&quot;, &quot;app/views/nodes/zafu.rjs&quot;, &quot;app/views/relations&quot;, &quot;app/views/relations/_add.erb&quot;, &quot;app/views/relations/_form.erb&quot;, &quot;app/views/relations/_li.erb&quot;, &quot;app/views/relations/create.rjs&quot;, &quot;app/views/relations/destroy.rjs&quot;, &quot;app/views/relations/edit.erb&quot;, &quot;app/views/relations/index.erb&quot;, &quot;app/views/relations/new.erb&quot;, &quot;app/views/relations/show.rjs&quot;, &quot;app/views/relations/update.rjs&quot;, &quot;app/views/search&quot;, &quot;app/views/search/_form.rhtml&quot;, &quot;app/views/sites&quot;, &quot;app/views/sites/_form.erb&quot;, &quot;app/views/sites/_li.erb&quot;, &quot;app/views/sites/clear_cache.rjs&quot;, &quot;app/views/sites/edit.erb&quot;, &quot;app/views/sites/index.erb&quot;, &quot;app/views/sites/show.rjs&quot;, &quot;app/views/sites/update.rjs&quot;, &quot;app/views/sites/zena_up.html.erb&quot;, &quot;app/views/templates&quot;, &quot;app/views/templates/defaults&quot;, &quot;app/views/templates/defaults/+adminLayout.zafu&quot;, &quot;app/views/templates/defaults/+login.zafu&quot;, &quot;app/views/templates/document_create_tabs&quot;, &quot;app/views/templates/document_create_tabs/_file.rhtml&quot;, &quot;app/views/templates/document_create_tabs/_import.rhtml&quot;, &quot;app/views/templates/document_create_tabs/_template.rhtml&quot;, &quot;app/views/templates/document_create_tabs/_text_doc.rhtml&quot;, &quot;app/views/templates/drive_tabs&quot;, &quot;app/views/templates/drive_tabs/_drive.rhtml&quot;, &quot;app/views/templates/drive_tabs/_help.rhtml&quot;, &quot;app/views/templates/drive_tabs/_links.rhtml&quot;, &quot;app/views/templates/edit_tabs&quot;, &quot;app/views/templates/edit_tabs/_contact.rhtml&quot;, &quot;app/views/templates/edit_tabs/_custom.rhtml&quot;, &quot;app/views/templates/edit_tabs/_document.rhtml&quot;, &quot;app/views/templates/edit_tabs/_help.rhtml&quot;, &quot;app/views/templates/edit_tabs/_image.rhtml&quot;, &quot;app/views/templates/edit_tabs/_template.rhtml&quot;, &quot;app/views/templates/edit_tabs/_text.rhtml&quot;, &quot;app/views/templates/edit_tabs/_textdocument.rhtml&quot;, &quot;app/views/templates/edit_tabs/_title.rhtml&quot;, &quot;app/views/users&quot;, &quot;app/views/users/_add.rhtml&quot;, &quot;app/views/users/_form.rhtml&quot;, &quot;app/views/users/_li.rhtml&quot;, &quot;app/views/users/change_info.rjs&quot;, &quot;app/views/users/change_password.rjs&quot;, &quot;app/views/users/create.rjs&quot;, &quot;app/views/users/index.rhtml&quot;, &quot;app/views/users/preferences.html.erb&quot;, &quot;app/views/users/show.rjs&quot;, &quot;app/views/users/update.rjs&quot;, &quot;app/views/versions&quot;, &quot;app/views/versions/_li.rhtml&quot;, &quot;app/views/versions/_list.rhtml&quot;, &quot;app/views/versions/_tr.rhtml&quot;, &quot;app/views/versions/backup.rjs&quot;, &quot;app/views/versions/css_preview.rjs&quot;, &quot;app/views/versions/destroy.rjs&quot;, &quot;app/views/versions/diff.rjs&quot;, &quot;app/views/versions/edit.rhtml&quot;, &quot;app/views/versions/preview.rjs&quot;, &quot;app/views/versions/show.rjs&quot;, &quot;app/views/versions/update.rjs&quot;, &quot;app/views/virtual_classes&quot;, &quot;app/views/virtual_classes/_add.erb&quot;, &quot;app/views/virtual_classes/_form.erb&quot;, &quot;app/views/virtual_classes/_li.erb&quot;, &quot;app/views/virtual_classes/create.rjs&quot;, &quot;app/views/virtual_classes/destroy.rjs&quot;, &quot;app/views/virtual_classes/index.erb&quot;, &quot;app/views/virtual_classes/new.erb&quot;, &quot;app/views/virtual_classes/show.rjs&quot;, &quot;app/views/virtual_classes/update.rjs&quot;, &quot;bin/zena&quot;, &quot;bricks/captcha&quot;, &quot;bricks/captcha/MIT-LICENSE&quot;, &quot;bricks/captcha/patch&quot;, &quot;bricks/captcha/patch/application_controller.rb&quot;, &quot;bricks/captcha/patch/application_helper.rb&quot;, &quot;bricks/captcha/patch/site.rb&quot;, &quot;bricks/captcha/README&quot;, &quot;bricks/captcha/zafu&quot;, &quot;bricks/captcha/zafu/captcha.rb&quot;, &quot;bricks/determinator&quot;, &quot;bricks/math&quot;, &quot;bricks/math/patch&quot;, &quot;bricks/math/patch/application_helper.rb&quot;, &quot;bricks/tags&quot;, &quot;bricks/tags/lib&quot;, &quot;bricks/tags/lib/has_tags.rb&quot;, &quot;bricks/tags/patch&quot;, &quot;bricks/tags/patch/node.rb&quot;, &quot;bricks/tags/README&quot;, &quot;bricks/tags/test&quot;, &quot;bricks/tags/test/sites&quot;, &quot;bricks/tags/test/sites/zena&quot;, &quot;bricks/tags/test/sites/zena/links.yml&quot;, &quot;bricks/tags/test/unit&quot;, &quot;bricks/tags/test/unit/tags_test.rb&quot;, &quot;bricks/tags/test/zafu&quot;, &quot;bricks/tags/test/zafu/tags.yml&quot;, &quot;bricks/toto.zip&quot;, &quot;config/awstats.conf.rhtml&quot;, &quot;config/boot.rb&quot;, &quot;config/database.rhtml&quot;, &quot;config/database.yml&quot;, &quot;config/database_example.yml&quot;, &quot;config/deploy.rb&quot;, &quot;config/deploy_config_example.rb&quot;, &quot;config/environment.rb&quot;, &quot;config/environments&quot;, &quot;config/environments/development.rb&quot;, &quot;config/environments/production.rb&quot;, &quot;config/environments/test.rb&quot;, &quot;config/gems.yml&quot;, &quot;config/httpd.rhtml&quot;, &quot;config/initializers&quot;, &quot;config/initializers/mime_types.rb&quot;, &quot;config/initializers/zena.rb&quot;, &quot;config/locales&quot;, &quot;config/locales/de.yml&quot;, &quot;config/locales/fr-CH.yml&quot;, &quot;config/locales/fr.yml&quot;, &quot;config/mongrel_upload_progress.conf&quot;, &quot;config/routes.rb&quot;, &quot;config/start.html&quot;, &quot;config/stats.vhost.rhtml&quot;, &quot;config/vhost.rhtml&quot;, &quot;config/vhost_www.rhtml&quot;, &quot;config/zena.rb&quot;, &quot;db/init&quot;, &quot;db/init/base&quot;, &quot;db/init/base/help.en.zml&quot;, &quot;db/init/base/help.fr.zml&quot;, &quot;db/init/base/skins&quot;, &quot;db/init/base/skins/default&quot;, &quot;db/init/base/skins/default/favicon.png&quot;, &quot;db/init/base/skins/default/Node-+adminLayout.zafu&quot;, &quot;db/init/base/skins/default/Node-+index.zafu&quot;, &quot;db/init/base/skins/default/Node-+login.zafu&quot;, &quot;db/init/base/skins/default/Node-+notFound.zafu&quot;, &quot;db/init/base/skins/default/Node-+popupLayout.zafu&quot;, &quot;db/init/base/skins/default/Node-+search.zafu&quot;, &quot;db/init/base/skins/default/Node-tree.zafu&quot;, &quot;db/init/base/skins/default/Node.zafu&quot;, &quot;db/init/base/skins/default/notes.zafu&quot;, &quot;db/init/base/skins/default/Project.zafu&quot;, &quot;db/init/base/skins/default/style.css&quot;, &quot;db/init/base/skins/default.zml&quot;, &quot;db/init/base/skins.zml&quot;, &quot;db/migrate&quot;, &quot;db/migrate/001_create_base.rb&quot;, &quot;db/migrate/002_add_time_zone_to_users.rb&quot;, &quot;db/migrate/003_add_custom_base_flag.rb&quot;, &quot;db/migrate/004_rename_template_skin.rb&quot;, &quot;db/migrate/005_create_cached_pages.rb&quot;, &quot;db/migrate/006_create_sites.rb&quot;, &quot;db/migrate/007_replace_id_by_zip.rb&quot;, &quot;db/migrate/008_user_status.rb&quot;, &quot;db/migrate/009_fulltext.rb&quot;, &quot;db/migrate/010_create_template_content.rb&quot;, &quot;db/migrate/011_project_to_section.rb&quot;, &quot;db/migrate/012_add_project_id.rb&quot;, &quot;db/migrate/013_remove_defaults.rb&quot;, &quot;db/migrate/014_add_sort_field.rb&quot;, &quot;db/migrate/015_add_dyn_attributes.rb&quot;, &quot;db/migrate/016_remove_translations.rb&quot;, &quot;db/migrate/017_rename_authorize.rb&quot;, &quot;db/migrate/018_add_auth_option.rb&quot;, &quot;db/migrate/019_remove_user_status.rb&quot;, &quot;db/migrate/020_create_participation.rb&quot;, &quot;db/migrate/021_create_relations.rb&quot;, &quot;db/migrate/022_create_virtual_classes.rb&quot;, &quot;db/migrate/023_ip_on_anonymous_comment.rb&quot;, &quot;db/migrate/024_correct_vclass_kpath.rb&quot;, &quot;db/migrate/025_move_tag_into_vclass.rb&quot;, &quot;db/migrate/026_rename_templates.rb&quot;, &quot;db/migrate/027_add_country_to_contacts.rb&quot;, &quot;db/migrate/028_change_size_of_conten_type_field.rb&quot;, &quot;db/migrate/029_create_data_entries.rb&quot;, &quot;db/migrate/030_redit_auto_publish_site_settings.rb&quot;, &quot;db/migrate/031_create_iformats.rb&quot;, &quot;db/migrate/032_caches_context_as_hash.rb&quot;, &quot;db/migrate/033_documents_kpath_change.rb&quot;, &quot;db/migrate/034_change_file_storage.rb&quot;, &quot;db/migrate/035_add_status_to_link.rb&quot;, &quot;db/migrate/036_add_flag_fields_on_nodes.rb&quot;, &quot;db/migrate/037_add_auto_create_discussion_to_v_class.rb&quot;, &quot;db/migrate/038_create_site_attributes.rb&quot;, &quot;db/migrate/039_default_position.rb&quot;, &quot;db/migrate/040_second_value_for_data_entry.rb&quot;, &quot;db/migrate/041_add_attributes_to_v_class.rb&quot;, &quot;db/migrate/042_fix_position_should_be_float.rb&quot;, &quot;db/migrate/043_move_user_lang_into_participation.rb&quot;, &quot;db/migrate/044_remove_monolingual_site_option.rb&quot;, &quot;db/migrate/045_avoid_star_in_templates.rb&quot;, &quot;db/migrate/046_fix_zazen_image_tag.rb&quot;, &quot;db/migrate/047_change_default_link_id_to_zero.rb&quot;, &quot;db/migrate/048_link_source_target_can_be_null.rb&quot;, &quot;db/migrate/049_fix_publish_from_is_null.rb&quot;, &quot;db/migrate/050_date_in_links.rb&quot;, &quot;db/migrate/051_add_exif_tags_to_images.rb&quot;, &quot;db/migrate/20090825201159_insert_zero_link.rb&quot;, &quot;db/migrate/20090825201200_merge_bricks_migrations_with_std_migrations.rb&quot;, &quot;db/migrate/20090924141459_zafu_fix_sept09.rb&quot;, &quot;db/migrate/20090927125912_allow_null_in_text_fields.rb&quot;, &quot;db/migrate/20090928133440_no_more_private_nodes.rb&quot;, &quot;db/migrate/20090928143754_version_status_change.rb&quot;, &quot;db/migrate/20091001084025_change_status_values_for_comments.rb&quot;, &quot;db/migrate/20091009084057_add_vhash_in_node.rb&quot;, &quot;db/migrate/20091013100351_rename_publish_group_to_drive_group.rb&quot;, &quot;db/migrate/20091014130833_fix_template_title.rb&quot;, &quot;db/migrate/20091014183726_merge_participation_into_users.rb&quot;, &quot;db/production.sqlite3&quot;, &quot;lib/base_additions.rb&quot;, &quot;lib/bricks&quot;, &quot;lib/bricks/patcher.rb&quot;, &quot;lib/comment_query.rb&quot;, &quot;lib/core_ext&quot;, &quot;lib/core_ext/date_time.rb&quot;, &quot;lib/core_ext/dir.rb&quot;, &quot;lib/core_ext/fixnum.rb&quot;, &quot;lib/core_ext/string.rb&quot;, &quot;lib/exif_data.rb&quot;, &quot;lib/fix_rails_layouts.rb&quot;, &quot;lib/gettext_strings.rb&quot;, &quot;lib/image_builder.rb&quot;, &quot;lib/log_recorder&quot;, &quot;lib/log_recorder/lib&quot;, &quot;lib/log_recorder/lib/log_recorder.rb&quot;, &quot;lib/log_recorder/test&quot;, &quot;lib/log_recorder/test/log_recorder_test.rb&quot;, &quot;lib/parser.rb&quot;, &quot;lib/tasks&quot;, &quot;lib/tasks/capistrano.rake&quot;, &quot;lib/tasks/zena.rake&quot;, &quot;lib/tasks/zena.rb&quot;, &quot;lib/upload_progress_server.rb&quot;, &quot;lib/webdav_adapter.rb&quot;, &quot;lib/zafu_parser.rb&quot;, &quot;lib/zazen_parser.rb&quot;, &quot;lib/zena&quot;, &quot;lib/zena/acts&quot;, &quot;lib/zena/acts/multiversion.rb&quot;, &quot;lib/zena/acts/secure.rb&quot;, &quot;lib/zena/app.rb&quot;, &quot;lib/zena/code_syntax.rb&quot;, &quot;lib/zena/controller&quot;, &quot;lib/zena/controller/test_case.rb&quot;, &quot;lib/zena/db.rb&quot;, &quot;lib/zena/fix&quot;, &quot;lib/zena/fix/mysql_connection.rb&quot;, &quot;lib/zena/foxy_parser.rb&quot;, &quot;lib/zena/migrator.rb&quot;, &quot;lib/zena/parser&quot;, &quot;lib/zena/parser/zafu_rules.rb&quot;, &quot;lib/zena/parser/zafu_tags.rb&quot;, &quot;lib/zena/parser/zazen_rules.rb&quot;, &quot;lib/zena/parser/zazen_tags.rb&quot;, &quot;lib/zena/parser/zena_rules.rb&quot;, &quot;lib/zena/parser/zena_tags.rb&quot;, &quot;lib/zena/parser.rb&quot;, &quot;lib/zena/root.rb&quot;, &quot;lib/zena/routes.rb&quot;, &quot;lib/zena/test_controller.rb&quot;, &quot;lib/zena/unit&quot;, &quot;lib/zena/unit/test_case.rb&quot;, &quot;lib/zena/use&quot;, &quot;lib/zena/use/ajax.rb&quot;, &quot;lib/zena/use/authentification.rb&quot;, &quot;lib/zena/use/calendar.rb&quot;, &quot;lib/zena/use/custom_queries&quot;, &quot;lib/zena/use/custom_queries/complex.host.yml&quot;, &quot;lib/zena/use/dates.rb&quot;, &quot;lib/zena/use/dyn_attributes.rb&quot;, &quot;lib/zena/use/error_rendering.rb&quot;, &quot;lib/zena/use/fixtures.rb&quot;, &quot;lib/zena/use/grid.rb&quot;, &quot;lib/zena/use/html_tags.rb&quot;, &quot;lib/zena/use/i18n.rb&quot;, &quot;lib/zena/use/nested_attributes_alias.rb&quot;, &quot;lib/zena/use/node_query_finders.rb&quot;, &quot;lib/zena/use/refactor.rb&quot;, &quot;lib/zena/use/relations.rb&quot;, &quot;lib/zena/use/rendering.rb&quot;, &quot;lib/zena/use/test_helper.rb&quot;, &quot;lib/zena/use/urls.rb&quot;, &quot;lib/zena/use/zafu.rb&quot;, &quot;lib/zena/use/zazen.rb&quot;, &quot;lib/zena/view&quot;, &quot;lib/zena/view/test_case.rb&quot;, &quot;lib/zena.rb&quot;, &quot;locale/en&quot;, &quot;locale/en/LC_MESSAGES&quot;, &quot;locale/en/LC_MESSAGES/zena.mo&quot;, &quot;locale/en/zena.po&quot;, &quot;locale/fr&quot;, &quot;locale/fr/LC_MESSAGES&quot;, &quot;locale/fr/LC_MESSAGES/zena.mo&quot;, &quot;locale/fr/zena.po&quot;, &quot;locale/zena.pot&quot;, &quot;public/calendar&quot;, &quot;public/calendar/calendar-brown.css&quot;, &quot;public/calendar/calendar-setup.js&quot;, &quot;public/calendar/calendar.js&quot;, &quot;public/calendar/iconCalendar.gif&quot;, &quot;public/calendar/lang&quot;, &quot;public/calendar/lang/calendar-en-utf8.js&quot;, &quot;public/calendar/lang/calendar-fr-utf8.js&quot;, &quot;public/calendar/lang/lang.zip&quot;, &quot;public/dispatch.cgi&quot;, &quot;public/dispatch.fcgi&quot;, &quot;public/dispatch.rb&quot;, &quot;public/favicon.ico&quot;, &quot;public/images&quot;, &quot;public/images/accept.png&quot;, &quot;public/images/action.png&quot;, &quot;public/images/add.png&quot;, &quot;public/images/ajax-loader.gif&quot;, &quot;public/images/anchor.png&quot;, &quot;public/images/application.png&quot;, &quot;public/images/application_add.png&quot;, &quot;public/images/application_cascade.png&quot;, &quot;public/images/application_delete.png&quot;, &quot;public/images/application_double.png&quot;, &quot;public/images/application_edit.png&quot;, &quot;public/images/application_error.png&quot;, &quot;public/images/application_form.png&quot;, &quot;public/images/application_form_add.png&quot;, &quot;public/images/application_form_delete.png&quot;, &quot;public/images/application_form_edit.png&quot;, &quot;public/images/application_form_magnify.png&quot;, &quot;public/images/application_get.png&quot;, &quot;public/images/application_go.png&quot;, &quot;public/images/application_home.png&quot;, &quot;public/images/application_key.png&quot;, &quot;public/images/application_lightning.png&quot;, &quot;public/images/application_link.png&quot;, &quot;public/images/application_osx.png&quot;, &quot;public/images/application_osx_terminal.png&quot;, &quot;public/images/application_put.png&quot;, &quot;public/images/application_side_boxes.png&quot;, &quot;public/images/application_side_contract.png&quot;, &quot;public/images/application_side_expand.png&quot;, &quot;public/images/application_side_list.png&quot;, &quot;public/images/application_side_tree.png&quot;, &quot;public/images/application_split.png&quot;, &quot;public/images/application_tile_horizontal.png&quot;, &quot;public/images/application_tile_vertical.png&quot;, &quot;public/images/application_view_columns.png&quot;, &quot;public/images/application_view_detail.png&quot;, &quot;public/images/application_view_gallery.png&quot;, &quot;public/images/application_view_icons.png&quot;, &quot;public/images/application_view_list.png&quot;, &quot;public/images/application_view_tile.png&quot;, &quot;public/images/application_xp.png&quot;, &quot;public/images/application_xp_terminal.png&quot;, &quot;public/images/arrow_branch.png&quot;, &quot;public/images/arrow_divide.png&quot;, &quot;public/images/arrow_down.png&quot;, &quot;public/images/arrow_in.png&quot;, &quot;public/images/arrow_inout.png&quot;, &quot;public/images/arrow_join.png&quot;, &quot;public/images/arrow_left.png&quot;, &quot;public/images/arrow_merge.png&quot;, &quot;public/images/arrow_out.png&quot;, &quot;public/images/arrow_redo.png&quot;, &quot;public/images/arrow_refresh.png&quot;, &quot;public/images/arrow_refresh_small.png&quot;, &quot;public/images/arrow_right.png&quot;, &quot;public/images/arrow_rotate_anticlockwise.png&quot;, &quot;public/images/arrow_rotate_clockwise.png&quot;, &quot;public/images/arrow_switch.png&quot;, &quot;public/images/arrow_turn_left.png&quot;, &quot;public/images/arrow_turn_right.png&quot;, &quot;public/images/arrow_undo.png&quot;, &quot;public/images/arrow_up.png&quot;, &quot;public/images/asterisk_orange.png&quot;, &quot;public/images/asterisk_yellow.png&quot;, &quot;public/images/attach.png&quot;, &quot;public/images/award_star_add.png&quot;, &quot;public/images/award_star_bronze_1.png&quot;, &quot;public/images/award_star_bronze_2.png&quot;, &quot;public/images/award_star_bronze_3.png&quot;, &quot;public/images/award_star_delete.png&quot;, &quot;public/images/award_star_gold_1.png&quot;, &quot;public/images/award_star_gold_2.png&quot;, &quot;public/images/award_star_gold_3.png&quot;, &quot;public/images/award_star_silver_1.png&quot;, &quot;public/images/award_star_silver_2.png&quot;, &quot;public/images/award_star_silver_3.png&quot;, &quot;public/images/basket.png&quot;, &quot;public/images/basket_add.png&quot;, &quot;public/images/basket_delete.png&quot;, &quot;public/images/basket_edit.png&quot;, &quot;public/images/basket_error.png&quot;, &quot;public/images/basket_go.png&quot;, &quot;public/images/basket_put.png&quot;, &quot;public/images/basket_remove.png&quot;, &quot;public/images/bell.png&quot;, &quot;public/images/bell_add.png&quot;, &quot;public/images/bell_delete.png&quot;, &quot;public/images/bell_error.png&quot;, &quot;public/images/bell_go.png&quot;, &quot;public/images/bell_link.png&quot;, &quot;public/images/bin.png&quot;, &quot;public/images/bin_closed.png&quot;, &quot;public/images/bin_empty.gif&quot;, &quot;public/images/bin_empty.png&quot;, &quot;public/images/bin_full.gif&quot;, &quot;public/images/bomb.png&quot;, &quot;public/images/book.png&quot;, &quot;public/images/book_add.png&quot;, &quot;public/images/book_addresses.png&quot;, &quot;public/images/book_delete.png&quot;, &quot;public/images/book_edit.png&quot;, &quot;public/images/book_error.png&quot;, &quot;public/images/book_go.png&quot;, &quot;public/images/book_key.png&quot;, &quot;public/images/book_link.png&quot;, &quot;public/images/book_next.png&quot;, &quot;public/images/book_open.png&quot;, &quot;public/images/book_previous.png&quot;, &quot;public/images/box.png&quot;, &quot;public/images/brick.png&quot;, &quot;public/images/brick_add.png&quot;, &quot;public/images/brick_delete.png&quot;, &quot;public/images/brick_edit.png&quot;, &quot;public/images/brick_error.png&quot;, &quot;public/images/brick_go.png&quot;, &quot;public/images/brick_link.png&quot;, &quot;public/images/bricks.png&quot;, &quot;public/images/briefcase.png&quot;, &quot;public/images/bug.png&quot;, &quot;public/images/bug_add.png&quot;, &quot;public/images/bug_delete.png&quot;, &quot;public/images/bug_edit.png&quot;, &quot;public/images/bug_error.png&quot;, &quot;public/images/bug_go.png&quot;, &quot;public/images/bug_link.png&quot;, &quot;public/images/building.png&quot;, &quot;public/images/building_add.png&quot;, &quot;public/images/building_delete.png&quot;, &quot;public/images/building_edit.png&quot;, &quot;public/images/building_error.png&quot;, &quot;public/images/building_go.png&quot;, &quot;public/images/building_key.png&quot;, &quot;public/images/building_link.png&quot;, &quot;public/images/bullet_add.png&quot;, &quot;public/images/bullet_arrow_bottom.png&quot;, &quot;public/images/bullet_arrow_down.png&quot;, &quot;public/images/bullet_arrow_top.png&quot;, &quot;public/images/bullet_arrow_up.png&quot;, &quot;public/images/bullet_black.png&quot;, &quot;public/images/bullet_blue.png&quot;, &quot;public/images/bullet_delete.png&quot;, &quot;public/images/bullet_disk.png&quot;, &quot;public/images/bullet_error.png&quot;, &quot;public/images/bullet_feed.png&quot;, &quot;public/images/bullet_go.png&quot;, &quot;public/images/bullet_green.png&quot;, &quot;public/images/bullet_key.png&quot;, &quot;public/images/bullet_orange.png&quot;, &quot;public/images/bullet_picture.png&quot;, &quot;public/images/bullet_pink.png&quot;, &quot;public/images/bullet_purple.png&quot;, &quot;public/images/bullet_red.png&quot;, &quot;public/images/bullet_star.png&quot;, &quot;public/images/bullet_toggle_minus.png&quot;, &quot;public/images/bullet_toggle_plus.png&quot;, &quot;public/images/bullet_white.png&quot;, &quot;public/images/bullet_wrench.png&quot;, &quot;public/images/bullet_yellow.png&quot;, &quot;public/images/cake.png&quot;, &quot;public/images/calculator.png&quot;, &quot;public/images/calculator_add.png&quot;, &quot;public/images/calculator_delete.png&quot;, &quot;public/images/calculator_edit.png&quot;, &quot;public/images/calculator_error.png&quot;, &quot;public/images/calculator_link.png&quot;, &quot;public/images/calendar.png&quot;, &quot;public/images/calendar_add.png&quot;, &quot;public/images/calendar_delete.png&quot;, &quot;public/images/calendar_edit.png&quot;, &quot;public/images/calendar_link.png&quot;, &quot;public/images/calendar_view_day.png&quot;, &quot;public/images/calendar_view_month.png&quot;, &quot;public/images/calendar_view_week.png&quot;, &quot;public/images/camera.png&quot;, &quot;public/images/camera_add.png&quot;, &quot;public/images/camera_delete.png&quot;, &quot;public/images/camera_edit.png&quot;, &quot;public/images/camera_error.png&quot;, &quot;public/images/camera_go.png&quot;, &quot;public/images/camera_link.png&quot;, &quot;public/images/camera_small.png&quot;, &quot;public/images/cancel.png&quot;, &quot;public/images/car.png&quot;, &quot;public/images/car_add.png&quot;, &quot;public/images/car_delete.png&quot;, &quot;public/images/cart.png&quot;, &quot;public/images/cart_add.png&quot;, &quot;public/images/cart_delete.png&quot;, &quot;public/images/cart_edit.png&quot;, &quot;public/images/cart_error.png&quot;, &quot;public/images/cart_go.png&quot;, &quot;public/images/cart_put.png&quot;, &quot;public/images/cart_remove.png&quot;, &quot;public/images/cd.png&quot;, &quot;public/images/cd_add.png&quot;, &quot;public/images/cd_burn.png&quot;, &quot;public/images/cd_delete.png&quot;, &quot;public/images/cd_edit.png&quot;, &quot;public/images/cd_eject.png&quot;, &quot;public/images/cd_go.png&quot;, &quot;public/images/chart_bar.png&quot;, &quot;public/images/chart_bar_add.png&quot;, &quot;public/images/chart_bar_delete.png&quot;, &quot;public/images/chart_bar_edit.png&quot;, &quot;public/images/chart_bar_error.png&quot;, &quot;public/images/chart_bar_link.png&quot;, &quot;public/images/chart_curve.png&quot;, &quot;public/images/chart_curve_add.png&quot;, &quot;public/images/chart_curve_delete.png&quot;, &quot;public/images/chart_curve_edit.png&quot;, &quot;public/images/chart_curve_error.png&quot;, &quot;public/images/chart_curve_go.png&quot;, &quot;public/images/chart_curve_link.png&quot;, &quot;public/images/chart_line.png&quot;, &quot;public/images/chart_line_add.png&quot;, &quot;public/images/chart_line_delete.png&quot;, &quot;public/images/chart_line_edit.png&quot;, &quot;public/images/chart_line_error.png&quot;, &quot;public/images/chart_line_link.png&quot;, &quot;public/images/chart_organisation.png&quot;, &quot;public/images/chart_organisation_add.png&quot;, &quot;public/images/chart_organisation_delete.png&quot;, &quot;public/images/chart_pie.png&quot;, &quot;public/images/chart_pie_add.png&quot;, &quot;public/images/chart_pie_delete.png&quot;, &quot;public/images/chart_pie_edit.png&quot;, &quot;public/images/chart_pie_error.png&quot;, &quot;public/images/chart_pie_link.png&quot;, &quot;public/images/clock.png&quot;, &quot;public/images/clock_add.png&quot;, &quot;public/images/clock_delete.png&quot;, &quot;public/images/clock_edit.png&quot;, &quot;public/images/clock_error.png&quot;, &quot;public/images/clock_go.png&quot;, &quot;public/images/clock_link.png&quot;, &quot;public/images/clock_pause.png&quot;, &quot;public/images/clock_play.png&quot;, &quot;public/images/clock_red.png&quot;, &quot;public/images/clock_stop.png&quot;, &quot;public/images/cog.png&quot;, &quot;public/images/cog_add.png&quot;, &quot;public/images/cog_delete.png&quot;, &quot;public/images/cog_edit.png&quot;, &quot;public/images/cog_error.png&quot;, &quot;public/images/cog_go.png&quot;, &quot;public/images/coins.png&quot;, &quot;public/images/coins_add.png&quot;, &quot;public/images/coins_delete.png&quot;, &quot;public/images/collection.png&quot;, &quot;public/images/color_swatch.png&quot;, &quot;public/images/color_wheel.png&quot;, &quot;public/images/column_add.png&quot;, &quot;public/images/column_delete.png&quot;, &quot;public/images/comment.png&quot;, &quot;public/images/comment_add.png&quot;, &quot;public/images/comment_delete.png&quot;, &quot;public/images/comment_edit.png&quot;, &quot;public/images/comments.png&quot;, &quot;public/images/comments_add.png&quot;, &quot;public/images/comments_delete.png&quot;, &quot;public/images/comments_red.png&quot;, &quot;public/images/compress.png&quot;, &quot;public/images/computer.png&quot;, &quot;public/images/computer_add.png&quot;, &quot;public/images/computer_delete.png&quot;, &quot;public/images/computer_edit.png&quot;, &quot;public/images/computer_error.png&quot;, &quot;public/images/computer_go.png&quot;, &quot;public/images/computer_key.png&quot;, &quot;public/images/computer_link.png&quot;, &quot;public/images/connect.png&quot;, &quot;public/images/contrast.png&quot;, &quot;public/images/contrast_decrease.png&quot;, &quot;public/images/contrast_high.png&quot;, &quot;public/images/contrast_increase.png&quot;, &quot;public/images/contrast_low.png&quot;, &quot;public/images/control_eject.png&quot;, &quot;public/images/control_eject_blue.png&quot;, &quot;public/images/control_end.png&quot;, &quot;public/images/control_end_blue.png&quot;, &quot;public/images/control_equalizer.png&quot;, &quot;public/images/control_equalizer_blue.png&quot;, &quot;public/images/control_fastforward.png&quot;, &quot;public/images/control_fastforward_blue.png&quot;, &quot;public/images/control_pause.png&quot;, &quot;public/images/control_pause_blue.png&quot;, &quot;public/images/control_play.png&quot;, &quot;public/images/control_play_blue.png&quot;, &quot;public/images/control_repeat.png&quot;, &quot;public/images/control_repeat_blue.png&quot;, &quot;public/images/control_rewind.png&quot;, &quot;public/images/control_rewind_blue.png&quot;, &quot;public/images/control_start.png&quot;, &quot;public/images/control_start_blue.png&quot;, &quot;public/images/control_stop.png&quot;, &quot;public/images/control_stop_blue.png&quot;, &quot;public/images/controller.png&quot;, &quot;public/images/controller_add.png&quot;, &quot;public/images/controller_delete.png&quot;, &quot;public/images/controller_error.png&quot;, &quot;public/images/creditcards.png&quot;, &quot;public/images/cross.png&quot;, &quot;public/images/css.png&quot;, &quot;public/images/css_add.png&quot;, &quot;public/images/css_delete.png&quot;, &quot;public/images/css_go.png&quot;, &quot;public/images/css_valid.png&quot;, &quot;public/images/cup.png&quot;, &quot;public/images/cup_add.png&quot;, &quot;public/images/cup_delete.png&quot;, &quot;public/images/cup_edit.png&quot;, &quot;public/images/cup_error.png&quot;, &quot;public/images/cup_go.png&quot;, &quot;public/images/cup_key.png&quot;, &quot;public/images/cup_link.png&quot;, &quot;public/images/cursor.png&quot;, &quot;public/images/cut.png&quot;, &quot;public/images/cut_red.png&quot;, &quot;public/images/database.png&quot;, &quot;public/images/database_add.png&quot;, &quot;public/images/database_connect.png&quot;, &quot;public/images/database_delete.png&quot;, &quot;public/images/database_edit.png&quot;, &quot;public/images/database_error.png&quot;, &quot;public/images/database_gear.png&quot;, &quot;public/images/database_go.png&quot;, &quot;public/images/database_key.png&quot;, &quot;public/images/database_lightning.png&quot;, &quot;public/images/database_link.png&quot;, &quot;public/images/database_refresh.png&quot;, &quot;public/images/database_save.png&quot;, &quot;public/images/database_table.png&quot;, &quot;public/images/date.png&quot;, &quot;public/images/date_add.png&quot;, &quot;public/images/date_delete.png&quot;, &quot;public/images/date_edit.png&quot;, &quot;public/images/date_error.png&quot;, &quot;public/images/date_go.png&quot;, &quot;public/images/date_link.png&quot;, &quot;public/images/date_magnify.png&quot;, &quot;public/images/date_next.png&quot;, &quot;public/images/date_previous.png&quot;, &quot;public/images/delete.png&quot;, &quot;public/images/disconnect.png&quot;, &quot;public/images/disk.png&quot;, &quot;public/images/disk_multiple.png&quot;, &quot;public/images/door.png&quot;, &quot;public/images/door_in.png&quot;, &quot;public/images/door_open.png&quot;, &quot;public/images/door_out.png&quot;, &quot;public/images/drink.png&quot;, &quot;public/images/drink_empty.png&quot;, &quot;public/images/drive.png&quot;, &quot;public/images/drive_add.png&quot;, &quot;public/images/drive_burn.png&quot;, &quot;public/images/drive_cd.png&quot;, &quot;public/images/drive_cd_empty.png&quot;, &quot;public/images/drive_delete.png&quot;, &quot;public/images/drive_disk.png&quot;, &quot;public/images/drive_edit.png&quot;, &quot;public/images/drive_error.png&quot;, &quot;public/images/drive_go.png&quot;, &quot;public/images/drive_key.png&quot;, &quot;public/images/drive_link.png&quot;, &quot;public/images/drive_magnify.png&quot;, &quot;public/images/drive_network.png&quot;, &quot;public/images/drive_rename.png&quot;, &quot;public/images/drive_user.png&quot;, &quot;public/images/drive_web.png&quot;, &quot;public/images/dvd.png&quot;, &quot;public/images/dvd_add.png&quot;, &quot;public/images/dvd_delete.png&quot;, &quot;public/images/dvd_edit.png&quot;, &quot;public/images/dvd_error.png&quot;, &quot;public/images/dvd_go.png&quot;, &quot;public/images/dvd_key.png&quot;, &quot;public/images/dvd_link.png&quot;, &quot;public/images/email.png&quot;, &quot;public/images/email_add.png&quot;, &quot;public/images/email_attach.png&quot;, &quot;public/images/email_delete.png&quot;, &quot;public/images/email_edit.png&quot;, &quot;public/images/email_error.png&quot;, &quot;public/images/email_go.png&quot;, &quot;public/images/email_link.png&quot;, &quot;public/images/email_open.png&quot;, &quot;public/images/email_open_image.png&quot;, &quot;public/images/emoticon_evilgrin.png&quot;, &quot;public/images/emoticon_grin.png&quot;, &quot;public/images/emoticon_happy.png&quot;, &quot;public/images/emoticon_smile.png&quot;, &quot;public/images/emoticon_surprised.png&quot;, &quot;public/images/emoticon_tongue.png&quot;, &quot;public/images/emoticon_unhappy.png&quot;, &quot;public/images/emoticon_waii.png&quot;, &quot;public/images/emoticon_wink.png&quot;, &quot;public/images/error.png&quot;, &quot;public/images/error_add.png&quot;, &quot;public/images/error_delete.png&quot;, &quot;public/images/error_go.png&quot;, &quot;public/images/exclamation.png&quot;, &quot;public/images/ext&quot;, &quot;public/images/ext/contact.png&quot;, &quot;public/images/ext/contact_pv.png&quot;, &quot;public/images/ext/doc.png&quot;, &quot;public/images/ext/doc_tiny.png&quot;, &quot;public/images/ext/jpg.png&quot;, &quot;public/images/ext/jpg_tiny.png&quot;, &quot;public/images/ext/other.png&quot;, &quot;public/images/ext/other_pv.png&quot;, &quot;public/images/ext/other_tiny.png&quot;, &quot;public/images/ext/page.png&quot;, &quot;public/images/ext/page_pv.png&quot;, &quot;public/images/ext/page_tiny.png&quot;, &quot;public/images/ext/pdf.png&quot;, &quot;public/images/ext/pdf_pv.png&quot;, &quot;public/images/ext/pdf_tiny.png&quot;, &quot;public/images/ext/png.png&quot;, &quot;public/images/ext/png_tiny.png&quot;, &quot;public/images/ext/post.png&quot;, &quot;public/images/ext/post_pv.png&quot;, &quot;public/images/ext/post_tiny.png&quot;, &quot;public/images/ext/project.png&quot;, &quot;public/images/ext/project_pv.png&quot;, &quot;public/images/ext/project_tiny.png&quot;, &quot;public/images/ext/rtf.png&quot;, &quot;public/images/ext/rtf_tiny.png&quot;, &quot;public/images/ext/tag.png&quot;, &quot;public/images/ext/tag_pv.png&quot;, &quot;public/images/ext/xls.png&quot;, &quot;public/images/ext/xls_tiny.png&quot;, &quot;public/images/ext/zip.png&quot;, &quot;public/images/ext/zip_pv.png&quot;, &quot;public/images/ext/zip_tiny.png&quot;, &quot;public/images/eye.png&quot;, &quot;public/images/feed.png&quot;, &quot;public/images/feed_add.png&quot;, &quot;public/images/feed_delete.png&quot;, &quot;public/images/feed_disk.png&quot;, &quot;public/images/feed_edit.png&quot;, &quot;public/images/feed_error.png&quot;, &quot;public/images/feed_go.png&quot;, &quot;public/images/feed_key.png&quot;, &quot;public/images/feed_link.png&quot;, &quot;public/images/feed_magnify.png&quot;, &quot;public/images/female.png&quot;, &quot;public/images/film.png&quot;, &quot;public/images/film_add.png&quot;, &quot;public/images/film_delete.png&quot;, &quot;public/images/film_edit.png&quot;, &quot;public/images/film_error.png&quot;, &quot;public/images/film_go.png&quot;, &quot;public/images/film_key.png&quot;, &quot;public/images/film_link.png&quot;, &quot;public/images/film_save.png&quot;, &quot;public/images/find.png&quot;, &quot;public/images/flag_blue.png&quot;, &quot;public/images/flag_green.png&quot;, &quot;public/images/flag_orange.png&quot;, &quot;public/images/flag_pink.png&quot;, &quot;public/images/flag_purple.png&quot;, &quot;public/images/flag_red.png&quot;, &quot;public/images/flag_yellow.png&quot;, &quot;public/images/folder.png&quot;, &quot;public/images/folder_add.png&quot;, &quot;public/images/folder_bell.png&quot;, &quot;public/images/folder_brick.png&quot;, &quot;public/images/folder_bug.png&quot;, &quot;public/images/folder_camera.png&quot;, &quot;public/images/folder_database.png&quot;, &quot;public/images/folder_delete.png&quot;, &quot;public/images/folder_edit.png&quot;, &quot;public/images/folder_error.png&quot;, &quot;public/images/folder_explore.png&quot;, &quot;public/images/folder_feed.png&quot;, &quot;public/images/folder_find.png&quot;, &quot;public/images/folder_go.png&quot;, &quot;public/images/folder_heart.png&quot;, &quot;public/images/folder_image.png&quot;, &quot;public/images/folder_key.png&quot;, &quot;public/images/folder_lightbulb.png&quot;, &quot;public/images/folder_link.png&quot;, &quot;public/images/folder_magnify.png&quot;, &quot;public/images/folder_page.png&quot;, &quot;public/images/folder_page_white.png&quot;, &quot;public/images/folder_palette.png&quot;, &quot;public/images/folder_picture.png&quot;, &quot;public/images/folder_star.png&quot;, &quot;public/images/folder_table.png&quot;, &quot;public/images/folder_user.png&quot;, &quot;public/images/folder_wrench.png&quot;, &quot;public/images/font.png&quot;, &quot;public/images/font_add.png&quot;, &quot;public/images/font_delete.png&quot;, &quot;public/images/font_go.png&quot;, &quot;public/images/group.png&quot;, &quot;public/images/group_add.png&quot;, &quot;public/images/group_admin.png&quot;, &quot;public/images/group_delete.png&quot;, &quot;public/images/group_edit.png&quot;, &quot;public/images/group_error.png&quot;, &quot;public/images/group_gear.png&quot;, &quot;public/images/group_go.png&quot;, &quot;public/images/group_key.png&quot;, &quot;public/images/group_link.png&quot;, &quot;public/images/group_pub.png&quot;, &quot;public/images/group_site.png&quot;, &quot;public/images/heart.png&quot;, &quot;public/images/heart_add.png&quot;, &quot;public/images/heart_delete.png&quot;, &quot;public/images/help.png&quot;, &quot;public/images/home.png&quot;, &quot;public/images/hourglass.png&quot;, &quot;public/images/hourglass_add.png&quot;, &quot;public/images/hourglass_delete.png&quot;, &quot;public/images/hourglass_go.png&quot;, &quot;public/images/hourglass_link.png&quot;, &quot;public/images/house.png&quot;, &quot;public/images/house_go.png&quot;, &quot;public/images/house_link.png&quot;, &quot;public/images/html.png&quot;, &quot;public/images/html_add.png&quot;, &quot;public/images/html_delete.png&quot;, &quot;public/images/html_go.png&quot;, &quot;public/images/html_valid.png&quot;, &quot;public/images/image.png&quot;, &quot;public/images/image_add.png&quot;, &quot;public/images/image_delete.png&quot;, &quot;public/images/image_edit.png&quot;, &quot;public/images/image_link.png&quot;, &quot;public/images/images.png&quot;, &quot;public/images/img_not_found.png&quot;, &quot;public/images/information.png&quot;, &quot;public/images/ipod.png&quot;, &quot;public/images/ipod_cast.png&quot;, &quot;public/images/ipod_cast_add.png&quot;, &quot;public/images/ipod_cast_delete.png&quot;, &quot;public/images/ipod_sound.png&quot;, &quot;public/images/joystick.png&quot;, &quot;public/images/joystick_add.png&quot;, &quot;public/images/joystick_delete.png&quot;, &quot;public/images/joystick_error.png&quot;, &quot;public/images/key.png&quot;, &quot;public/images/key_add.png&quot;, &quot;public/images/key_delete.png&quot;, &quot;public/images/key_go.png&quot;, &quot;public/images/keyboard.png&quot;, &quot;public/images/keyboard_add.png&quot;, &quot;public/images/keyboard_delete.png&quot;, &quot;public/images/keyboard_magnify.png&quot;, &quot;public/images/latex_error.png&quot;, &quot;public/images/layers.png&quot;, &quot;public/images/layout.png&quot;, &quot;public/images/layout_add.png&quot;, &quot;public/images/layout_content.png&quot;, &quot;public/images/layout_delete.png&quot;, &quot;public/images/layout_edit.png&quot;, &quot;public/images/layout_error.png&quot;, &quot;public/images/layout_header.png&quot;, &quot;public/images/layout_link.png&quot;, &quot;public/images/layout_sidebar.png&quot;, &quot;public/images/lightbulb.png&quot;, &quot;public/images/lightbulb_add.png&quot;, &quot;public/images/lightbulb_delete.png&quot;, &quot;public/images/lightbulb_off.png&quot;, &quot;public/images/lightning.png&quot;, &quot;public/images/lightning_add.png&quot;, &quot;public/images/lightning_delete.png&quot;, &quot;public/images/lightning_go.png&quot;, &quot;public/images/link.png&quot;, &quot;public/images/link_add.png&quot;, &quot;public/images/link_break.png&quot;, &quot;public/images/link_delete.png&quot;, &quot;public/images/link_edit.png&quot;, &quot;public/images/link_error.png&quot;, &quot;public/images/link_go.png&quot;, &quot;public/images/lock.png&quot;, &quot;public/images/lock_add.png&quot;, &quot;public/images/lock_break.png&quot;, &quot;public/images/lock_delete.png&quot;, &quot;public/images/lock_edit.png&quot;, &quot;public/images/lock_go.png&quot;, &quot;public/images/lock_open.png&quot;, &quot;public/images/lorry.png&quot;, &quot;public/images/lorry_add.png&quot;, &quot;public/images/lorry_delete.png&quot;, &quot;public/images/lorry_error.png&quot;, &quot;public/images/lorry_flatbed.png&quot;, &quot;public/images/lorry_go.png&quot;, &quot;public/images/lorry_link.png&quot;, &quot;public/images/magifier_zoom_out.png&quot;, &quot;public/images/magnifier.png&quot;, &quot;public/images/magnifier_zoom_in.png&quot;, &quot;public/images/male.png&quot;, &quot;public/images/map.png&quot;, &quot;public/images/map_add.png&quot;, &quot;public/images/map_delete.png&quot;, &quot;public/images/map_edit.png&quot;, &quot;public/images/map_go.png&quot;, &quot;public/images/map_magnify.png&quot;, &quot;public/images/medal_bronze_1.png&quot;, &quot;public/images/medal_bronze_2.png&quot;, &quot;public/images/medal_bronze_3.png&quot;, &quot;public/images/medal_bronze_add.png&quot;, &quot;public/images/medal_bronze_delete.png&quot;, &quot;public/images/medal_gold_1.png&quot;, &quot;public/images/medal_gold_2.png&quot;, &quot;public/images/medal_gold_3.png&quot;, &quot;public/images/medal_gold_add.png&quot;, &quot;public/images/medal_gold_delete.png&quot;, &quot;public/images/medal_silver_1.png&quot;, &quot;public/images/medal_silver_2.png&quot;, &quot;public/images/medal_silver_3.png&quot;, &quot;public/images/medal_silver_add.png&quot;, &quot;public/images/medal_silver_delete.png&quot;, &quot;public/images/money.png&quot;, &quot;public/images/money_add.png&quot;, &quot;public/images/money_delete.png&quot;, &quot;public/images/money_dollar.png&quot;, &quot;public/images/money_euro.png&quot;, &quot;public/images/money_pound.png&quot;, &quot;public/images/money_yen.png&quot;, &quot;public/images/monitor.png&quot;, &quot;public/images/monitor_add.png&quot;, &quot;public/images/monitor_delete.png&quot;, &quot;public/images/monitor_edit.png&quot;, &quot;public/images/monitor_error.png&quot;, &quot;public/images/monitor_go.png&quot;, &quot;public/images/monitor_lightning.png&quot;, &quot;public/images/monitor_link.png&quot;, &quot;public/images/mouse.png&quot;, &quot;public/images/mouse_add.png&quot;, &quot;public/images/mouse_delete.png&quot;, &quot;public/images/mouse_error.png&quot;, &quot;public/images/music.png&quot;, &quot;public/images/new.png&quot;, &quot;public/images/newspaper.png&quot;, &quot;public/images/newspaper_add.png&quot;, &quot;public/images/newspaper_delete.png&quot;, &quot;public/images/newspaper_go.png&quot;, &quot;public/images/newspaper_link.png&quot;, &quot;public/images/note.png&quot;, &quot;public/images/note_add.png&quot;, &quot;public/images/note_delete.png&quot;, &quot;public/images/note_edit.png&quot;, &quot;public/images/note_error.png&quot;, &quot;public/images/note_go.png&quot;, &quot;public/images/overlays.png&quot;, &quot;public/images/package.png&quot;, &quot;public/images/package_add.png&quot;, &quot;public/images/package_delete.png&quot;, &quot;public/images/package_go.png&quot;, &quot;public/images/package_green.png&quot;, &quot;public/images/package_link.png&quot;, &quot;public/images/page.png&quot;, &quot;public/images/page_add.png&quot;, &quot;public/images/page_attach.png&quot;, &quot;public/images/page_code.png&quot;, &quot;public/images/page_copy.png&quot;, &quot;public/images/page_delete.png&quot;, &quot;public/images/page_edit.png&quot;, &quot;public/images/page_error.png&quot;, &quot;public/images/page_excel.png&quot;, &quot;public/images/page_find.png&quot;, &quot;public/images/page_gear.png&quot;, &quot;public/images/page_go.png&quot;, &quot;public/images/page_green.png&quot;, &quot;public/images/page_key.png&quot;, &quot;public/images/page_lightning.png&quot;, &quot;public/images/page_link.png&quot;, &quot;public/images/page_paintbrush.png&quot;, &quot;public/images/page_paste.png&quot;, &quot;public/images/page_red.png&quot;, &quot;public/images/page_refresh.png&quot;, &quot;public/images/page_save.png&quot;, &quot;public/images/page_white.png&quot;, &quot;public/images/page_white_acrobat.png&quot;, &quot;public/images/page_white_actionscript.png&quot;, &quot;public/images/page_white_add.png&quot;, &quot;public/images/page_white_c.png&quot;, &quot;public/images/page_white_camera.png&quot;, &quot;public/images/page_white_cd.png&quot;, &quot;public/images/page_white_code.png&quot;, &quot;public/images/page_white_code_red.png&quot;, &quot;public/images/page_white_coldfusion.png&quot;, &quot;public/images/page_white_compressed.png&quot;, &quot;public/images/page_white_copy.png&quot;, &quot;public/images/page_white_cplusplus.png&quot;, &quot;public/images/page_white_csharp.png&quot;, &quot;public/images/page_white_cup.png&quot;, &quot;public/images/page_white_database.png&quot;, &quot;public/images/page_white_delete.png&quot;, &quot;public/images/page_white_dvd.png&quot;, &quot;public/images/page_white_edit.png&quot;, &quot;public/images/page_white_error.png&quot;, &quot;public/images/page_white_excel.png&quot;, &quot;public/images/page_white_find.png&quot;, &quot;public/images/page_white_flash.png&quot;, &quot;public/images/page_white_freehand.png&quot;, &quot;public/images/page_white_gear.png&quot;, &quot;public/images/page_white_get.png&quot;, &quot;public/images/page_white_go.png&quot;, &quot;public/images/page_white_h.png&quot;, &quot;public/images/page_white_horizontal.png&quot;, &quot;public/images/page_white_key.png&quot;, &quot;public/images/page_white_lightning.png&quot;, &quot;public/images/page_white_link.png&quot;, &quot;public/images/page_white_magnify.png&quot;, &quot;public/images/page_white_medal.png&quot;, &quot;public/images/page_white_office.png&quot;, &quot;public/images/page_white_paint.png&quot;, &quot;public/images/page_white_paintbrush.png&quot;, &quot;public/images/page_white_paste.png&quot;, &quot;public/images/page_white_php.png&quot;, &quot;public/images/page_white_picture.png&quot;, &quot;public/images/page_white_powerpoint.png&quot;, &quot;public/images/page_white_put.png&quot;, &quot;public/images/page_white_ruby.png&quot;, &quot;public/images/page_white_stack.png&quot;, &quot;public/images/page_white_star.png&quot;, &quot;public/images/page_white_swoosh.png&quot;, &quot;public/images/page_white_text.png&quot;, &quot;public/images/page_white_text_width.png&quot;, &quot;public/images/page_white_tux.png&quot;, &quot;public/images/page_white_vector.png&quot;, &quot;public/images/page_white_visualstudio.png&quot;, &quot;public/images/page_white_width.png&quot;, &quot;public/images/page_white_word.png&quot;, &quot;public/images/page_white_world.png&quot;, &quot;public/images/page_white_wrench.png&quot;, &quot;public/images/page_white_zip.png&quot;, &quot;public/images/page_word.png&quot;, &quot;public/images/page_world.png&quot;, &quot;public/images/paintbrush.png&quot;, &quot;public/images/paintcan.png&quot;, &quot;public/images/palette.png&quot;, &quot;public/images/paste_plain.png&quot;, &quot;public/images/paste_word.png&quot;, &quot;public/images/pencil.png&quot;, &quot;public/images/pencil_add.png&quot;, &quot;public/images/pencil_delete.png&quot;, &quot;public/images/pencil_go.png&quot;, &quot;public/images/phone.png&quot;, &quot;public/images/phone_add.png&quot;, &quot;public/images/phone_delete.png&quot;, &quot;public/images/phone_sound.png&quot;, &quot;public/images/photo.png&quot;, &quot;public/images/photo_add.png&quot;, &quot;public/images/photo_blue.png&quot;, &quot;public/images/photo_delete.png&quot;, &quot;public/images/photo_grey.png&quot;, &quot;public/images/photo_link.png&quot;, &quot;public/images/photos.png&quot;, &quot;public/images/picture.png&quot;, &quot;public/images/picture_add.png&quot;, &quot;public/images/picture_delete.png&quot;, &quot;public/images/picture_edit.png&quot;, &quot;public/images/picture_empty.png&quot;, &quot;public/images/picture_error.png&quot;, &quot;public/images/picture_go.png&quot;, &quot;public/images/picture_key.png&quot;, &quot;public/images/picture_link.png&quot;, &quot;public/images/picture_save.png&quot;, &quot;public/images/pictures.png&quot;, &quot;public/images/pilcrow.png&quot;, &quot;public/images/pill.png&quot;, &quot;public/images/pill_add.png&quot;, &quot;public/images/pill_delete.png&quot;, &quot;public/images/pill_go.png&quot;, &quot;public/images/plugin.png&quot;, &quot;public/images/plugin_add.png&quot;, &quot;public/images/plugin_delete.png&quot;, &quot;public/images/plugin_disabled.png&quot;, &quot;public/images/plugin_edit.png&quot;, &quot;public/images/plugin_error.png&quot;, &quot;public/images/plugin_go.png&quot;, &quot;public/images/plugin_link.png&quot;, &quot;public/images/printer.png&quot;, &quot;public/images/printer_add.png&quot;, &quot;public/images/printer_delete.png&quot;, &quot;public/images/printer_empty.png&quot;, &quot;public/images/printer_error.png&quot;, &quot;public/images/project.png&quot;, &quot;public/images/rails.png&quot;, &quot;public/images/rainbow.png&quot;, &quot;public/images/report.png&quot;, &quot;public/images/report_add.png&quot;, &quot;public/images/report_delete.png&quot;, &quot;public/images/report_disk.png&quot;, &quot;public/images/report_edit.png&quot;, &quot;public/images/report_go.png&quot;, &quot;public/images/report_key.png&quot;, &quot;public/images/report_link.png&quot;, &quot;public/images/report_magnify.png&quot;, &quot;public/images/report_picture.png&quot;, &quot;public/images/report_user.png&quot;, &quot;public/images/report_word.png&quot;, &quot;public/images/resultset_first.png&quot;, &quot;public/images/resultset_last.png&quot;, &quot;public/images/resultset_next.png&quot;, &quot;public/images/resultset_previous.png&quot;, &quot;public/images/rosette.png&quot;, &quot;public/images/row_add.png&quot;, &quot;public/images/row_delete.png&quot;, &quot;public/images/rss.png&quot;, &quot;public/images/rss_add.png&quot;, &quot;public/images/rss_delete.png&quot;, &quot;public/images/rss_go.png&quot;, &quot;public/images/rss_valid.png&quot;, &quot;public/images/ruby.png&quot;, &quot;public/images/ruby_add.png&quot;, &quot;public/images/ruby_delete.png&quot;, &quot;public/images/ruby_gear.png&quot;, &quot;public/images/ruby_get.png&quot;, &quot;public/images/ruby_go.png&quot;, &quot;public/images/ruby_key.png&quot;, &quot;public/images/ruby_link.png&quot;, &quot;public/images/ruby_put.png&quot;, &quot;public/images/script.png&quot;, &quot;public/images/script_add.png&quot;, &quot;public/images/script_code.png&quot;, &quot;public/images/script_code_red.png&quot;, &quot;public/images/script_delete.png&quot;, &quot;public/images/script_edit.png&quot;, &quot;public/images/script_error.png&quot;, &quot;public/images/script_gear.png&quot;, &quot;public/images/script_go.png&quot;, &quot;public/images/script_key.png&quot;, &quot;public/images/script_lightning.png&quot;, &quot;public/images/script_link.png&quot;, &quot;public/images/script_palette.png&quot;, &quot;public/images/script_save.png&quot;, &quot;public/images/server.png&quot;, &quot;public/images/server_add.png&quot;, &quot;public/images/server_chart.png&quot;, &quot;public/images/server_compressed.png&quot;, &quot;public/images/server_connect.png&quot;, &quot;public/images/server_database.png&quot;, &quot;public/images/server_delete.png&quot;, &quot;public/images/server_edit.png&quot;, &quot;public/images/server_error.png&quot;, &quot;public/images/server_go.png&quot;, &quot;public/images/server_key.png&quot;, &quot;public/images/server_lightning.png&quot;, &quot;public/images/server_link.png&quot;, &quot;public/images/server_uncompressed.png&quot;, &quot;public/images/shading.png&quot;, &quot;public/images/shape_align_bottom.png&quot;, &quot;public/images/shape_align_center.png&quot;, &quot;public/images/shape_align_left.png&quot;, &quot;public/images/shape_align_middle.png&quot;, &quot;public/images/shape_align_right.png&quot;, &quot;public/images/shape_align_top.png&quot;, &quot;public/images/shape_flip_horizontal.png&quot;, &quot;public/images/shape_flip_vertical.png&quot;, &quot;public/images/shape_group.png&quot;, &quot;public/images/shape_handles.png&quot;, &quot;public/images/shape_move_back.png&quot;, &quot;public/images/shape_move_backwards.png&quot;, &quot;public/images/shape_move_forwards.png&quot;, &quot;public/images/shape_move_front.png&quot;, &quot;public/images/shape_rotate_anticlockwise.png&quot;, &quot;public/images/shape_rotate_clockwise.png&quot;, &quot;public/images/shape_square.png&quot;, &quot;public/images/shape_square_add.png&quot;, &quot;public/images/shape_square_delete.png&quot;, &quot;public/images/shape_square_edit.png&quot;, &quot;public/images/shape_square_error.png&quot;, &quot;public/images/shape_square_go.png&quot;, &quot;public/images/shape_square_key.png&quot;, &quot;public/images/shape_square_link.png&quot;, &quot;public/images/shape_ungroup.png&quot;, &quot;public/images/shield.png&quot;, &quot;public/images/shield_add.png&quot;, &quot;public/images/shield_delete.png&quot;, &quot;public/images/shield_go.png&quot;, &quot;public/images/silk.html&quot;, &quot;public/images/sitemap.png&quot;, &quot;public/images/sitemap_color.png&quot;, &quot;public/images/sound.png&quot;, &quot;public/images/sound_add.png&quot;, &quot;public/images/sound_delete.png&quot;, &quot;public/images/sound_low.png&quot;, &quot;public/images/sound_mute.png&quot;, &quot;public/images/sound_none.png&quot;, &quot;public/images/spellcheck.png&quot;, &quot;public/images/sport_8ball.png&quot;, &quot;public/images/sport_basketball.png&quot;, &quot;public/images/sport_football.png&quot;, &quot;public/images/sport_golf.png&quot;, &quot;public/images/sport_raquet.png&quot;, &quot;public/images/sport_shuttlecock.png&quot;, &quot;public/images/sport_soccer.png&quot;, &quot;public/images/sport_tennis.png&quot;, &quot;public/images/star.png&quot;, &quot;public/images/status_away.png&quot;, &quot;public/images/status_busy.png&quot;, &quot;public/images/status_offline.png&quot;, &quot;public/images/status_online.png&quot;, &quot;public/images/stop.png&quot;, &quot;public/images/style.png&quot;, &quot;public/images/style_add.png&quot;, &quot;public/images/style_delete.png&quot;, &quot;public/images/style_edit.png&quot;, &quot;public/images/style_go.png&quot;, &quot;public/images/sum.png&quot;, &quot;public/images/swf&quot;, &quot;public/images/swf/xspf&quot;, &quot;public/images/swf/xspf/com&quot;, &quot;public/images/swf/xspf/com/zuardi&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/MusicButton.as&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/MusicPlayer.as&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/Playlist.as&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/ProgressiveSlider.as&quot;, &quot;public/images/swf/xspf/license.txt&quot;, &quot;public/images/swf/xspf/Main.as&quot;, &quot;public/images/swf/xspf/musicplayer.swf&quot;, &quot;public/images/swf/xspf/musicplayer_f6.swf&quot;, &quot;public/images/swf/xspf/musicplayerbtn.fla&quot;, &quot;public/images/swf/xspf/parameters.as&quot;, &quot;public/images/tab.png&quot;, &quot;public/images/tab_add.png&quot;, &quot;public/images/tab_delete.png&quot;, &quot;public/images/tab_edit.png&quot;, &quot;public/images/tab_go.png&quot;, &quot;public/images/table.png&quot;, &quot;public/images/table_add.png&quot;, &quot;public/images/table_delete.png&quot;, &quot;public/images/table_edit.png&quot;, &quot;public/images/table_error.png&quot;, &quot;public/images/table_gear.png&quot;, &quot;public/images/table_go.png&quot;, &quot;public/images/table_key.png&quot;, &quot;public/images/table_lightning.png&quot;, &quot;public/images/table_link.png&quot;, &quot;public/images/table_multiple.png&quot;, &quot;public/images/table_refresh.png&quot;, &quot;public/images/table_relationship.png&quot;, &quot;public/images/table_row_delete.png&quot;, &quot;public/images/table_row_insert.png&quot;, &quot;public/images/table_save.png&quot;, &quot;public/images/table_sort.png&quot;, &quot;public/images/tag.png&quot;, &quot;public/images/tag_blue.png&quot;, &quot;public/images/tag_blue_add.png&quot;, &quot;public/images/tag_blue_delete.png&quot;, &quot;public/images/tag_blue_edit.png&quot;, &quot;public/images/tag_green.png&quot;, &quot;public/images/tag_orange.png&quot;, &quot;public/images/tag_pink.png&quot;, &quot;public/images/tag_purple.png&quot;, &quot;public/images/tag_red.png&quot;, &quot;public/images/tag_yellow.png&quot;, &quot;public/images/target.png&quot;, &quot;public/images/telephone.png&quot;, &quot;public/images/telephone_add.png&quot;, &quot;public/images/telephone_delete.png&quot;, &quot;public/images/telephone_edit.png&quot;, &quot;public/images/telephone_error.png&quot;, &quot;public/images/telephone_go.png&quot;, &quot;public/images/telephone_key.png&quot;, &quot;public/images/telephone_link.png&quot;, &quot;public/images/television.png&quot;, &quot;public/images/television_add.png&quot;, &quot;public/images/television_delete.png&quot;, &quot;public/images/text_align_center.png&quot;, &quot;public/images/text_align_justify.png&quot;, &quot;public/images/text_align_left.png&quot;, &quot;public/images/text_align_right.png&quot;, &quot;public/images/text_allcaps.png&quot;, &quot;public/images/text_bold.png&quot;, &quot;public/images/text_columns.png&quot;, &quot;public/images/text_dropcaps.png&quot;, &quot;public/images/text_heading_1.png&quot;, &quot;public/images/text_heading_2.png&quot;, &quot;public/images/text_heading_3.png&quot;, &quot;public/images/text_heading_4.png&quot;, &quot;public/images/text_heading_5.png&quot;, &quot;public/images/text_heading_6.png&quot;, &quot;public/images/text_horizontalrule.png&quot;, &quot;public/images/text_indent.png&quot;, &quot;public/images/text_indent_remove.png&quot;, &quot;public/images/text_italic.png&quot;, &quot;public/images/text_kerning.png&quot;, &quot;public/images/text_letter_omega.png&quot;, &quot;public/images/text_letterspacing.png&quot;, &quot;public/images/text_linespacing.png&quot;, &quot;public/images/text_list_bullets.png&quot;, &quot;public/images/text_list_numbers.png&quot;, &quot;public/images/text_lowercase.png&quot;, &quot;public/images/text_padding_bottom.png&quot;, &quot;public/images/text_padding_left.png&quot;, &quot;public/images/text_padding_right.png&quot;, &quot;public/images/text_padding_top.png&quot;, &quot;public/images/text_replace.png&quot;, &quot;public/images/text_signature.png&quot;, &quot;public/images/text_smallcaps.png&quot;, &quot;public/images/text_strikethrough.png&quot;, &quot;public/images/text_subscript.png&quot;, &quot;public/images/text_superscript.png&quot;, &quot;public/images/text_underline.png&quot;, &quot;public/images/text_uppercase.png&quot;, &quot;public/images/textfield.png&quot;, &quot;public/images/textfield_add.png&quot;, &quot;public/images/textfield_delete.png&quot;, &quot;public/images/textfield_key.png&quot;, &quot;public/images/textfield_rename.png&quot;, &quot;public/images/thumb_down.png&quot;, &quot;public/images/thumb_up.png&quot;, &quot;public/images/tick.png&quot;, &quot;public/images/time.png&quot;, &quot;public/images/time_add.png&quot;, &quot;public/images/time_delete.png&quot;, &quot;public/images/time_go.png&quot;, &quot;public/images/timeline_marker.png&quot;, &quot;public/images/transmit.png&quot;, &quot;public/images/transmit_add.png&quot;, &quot;public/images/transmit_blue.png&quot;, &quot;public/images/transmit_delete.png&quot;, &quot;public/images/transmit_edit.png&quot;, &quot;public/images/transmit_error.png&quot;, &quot;public/images/transmit_go.png&quot;, &quot;public/images/tux.png&quot;, &quot;public/images/user.png&quot;, &quot;public/images/user_add.png&quot;, &quot;public/images/user_admin.png&quot;, &quot;public/images/user_comment.png&quot;, &quot;public/images/user_delete.png&quot;, &quot;public/images/user_edit.png&quot;, &quot;public/images/user_female.png&quot;, &quot;public/images/user_go.png&quot;, &quot;public/images/user_gray.png&quot;, &quot;public/images/user_green.png&quot;, &quot;public/images/user_orange.png&quot;, &quot;public/images/user_pub.png&quot;, &quot;public/images/user_red.png&quot;, &quot;public/images/user_su.png&quot;, &quot;public/images/user_suit.png&quot;, &quot;public/images/validate.png&quot;, &quot;public/images/valider.png&quot;, &quot;public/images/vcard.png&quot;, &quot;public/images/vcard_add.png&quot;, &quot;public/images/vcard_delete.png&quot;, &quot;public/images/vcard_edit.png&quot;, &quot;public/images/vector.png&quot;, &quot;public/images/vector_add.png&quot;, &quot;public/images/vector_delete.png&quot;, &quot;public/images/wand.png&quot;, &quot;public/images/weather_clouds.png&quot;, &quot;public/images/weather_cloudy.png&quot;, &quot;public/images/weather_lightning.png&quot;, &quot;public/images/weather_rain.png&quot;, &quot;public/images/weather_snow.png&quot;, &quot;public/images/weather_sun.png&quot;, &quot;public/images/webcam.png&quot;, &quot;public/images/webcam_add.png&quot;, &quot;public/images/webcam_delete.png&quot;, &quot;public/images/webcam_error.png&quot;, &quot;public/images/world.png&quot;, &quot;public/images/world_add.png&quot;, &quot;public/images/world_delete.png&quot;, &quot;public/images/world_edit.png&quot;, &quot;public/images/world_go.png&quot;, &quot;public/images/world_link.png&quot;, &quot;public/images/wrench.png&quot;, &quot;public/images/wrench_orange.png&quot;, &quot;public/images/xhtml.png&quot;, &quot;public/images/xhtml_add.png&quot;, &quot;public/images/xhtml_delete.png&quot;, &quot;public/images/xhtml_go.png&quot;, &quot;public/images/xhtml_valid.png&quot;, &quot;public/images/zoom.png&quot;, &quot;public/images/zoom_in.png&quot;, &quot;public/images/zoom_out.png&quot;, &quot;public/img&quot;, &quot;public/img/logo.png&quot;, &quot;public/javascripts&quot;, &quot;public/javascripts/application.js&quot;, &quot;public/javascripts/builder.js&quot;, &quot;public/javascripts/controls.js&quot;, &quot;public/javascripts/dragdrop.js&quot;, &quot;public/javascripts/effects.js&quot;, &quot;public/javascripts/prototype.js&quot;, &quot;public/javascripts/scriptaculous.js&quot;, &quot;public/javascripts/slider.js&quot;, &quot;public/javascripts/sound.js&quot;, &quot;public/javascripts/tablekit.js&quot;, &quot;public/javascripts/unittest.js&quot;, &quot;public/javascripts/upload-progress.js&quot;, &quot;public/javascripts/zena.js&quot;, &quot;public/robots.txt&quot;, &quot;public/stylesheets&quot;, &quot;public/stylesheets/admin.css&quot;, &quot;public/stylesheets/calendar.css&quot;, &quot;public/stylesheets/code.css&quot;, &quot;public/stylesheets/comment.css&quot;, &quot;public/stylesheets/csshover2.htc&quot;, &quot;public/stylesheets/default.css&quot;, &quot;public/stylesheets/popup.css&quot;, &quot;public/stylesheets/reset.css&quot;, &quot;public/stylesheets/search.css&quot;, &quot;public/stylesheets/upload-progress.css&quot;, &quot;public/stylesheets/wiki.css&quot;, &quot;public/stylesheets/zen.css&quot;, &quot;public/stylesheets/zena.css&quot;, &quot;rails/init.rb&quot;, &quot;vendor/apache_upload&quot;, &quot;vendor/apache_upload/mod_upload_progress.c&quot;, &quot;vendor/bricks&quot;, &quot;vendor/bricks/20070122-172926.txt&quot;, &quot;vendor/plugins&quot;, &quot;vendor/plugins/ar_mysql_full_text&quot;, &quot;vendor/plugins/ar_mysql_full_text/init.rb&quot;, &quot;vendor/plugins/ar_mysql_full_text/lib&quot;, &quot;vendor/plugins/ar_mysql_full_text/lib/ar_mysql_full_text.rb&quot;, &quot;vendor/plugins/ar_mysql_full_text/README&quot;, &quot;vendor/plugins/gettext_i18n_rails&quot;, &quot;vendor/plugins/gettext_i18n_rails/init.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/action_controller.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/active_record.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/backend.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/haml_parser.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/i18n_hacks.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/model_attributes_finder.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/ruby_gettext_extractor.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/Rakefile&quot;, &quot;vendor/plugins/gettext_i18n_rails/README.markdown&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/action_controller_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/active_record_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/backend_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/spec_helper.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/tasks&quot;, &quot;vendor/plugins/gettext_i18n_rails/tasks/gettext_rails_i18n.rake&quot;, &quot;vendor/plugins/responds_to_parent&quot;, &quot;vendor/plugins/responds_to_parent/init.rb&quot;, &quot;vendor/plugins/responds_to_parent/lib&quot;, &quot;vendor/plugins/responds_to_parent/lib/responds_to_parent.rb&quot;, &quot;vendor/plugins/responds_to_parent/MIT-LICENSE&quot;, &quot;vendor/plugins/responds_to_parent/Rakefile&quot;, &quot;vendor/plugins/responds_to_parent/README&quot;, &quot;vendor/plugins/responds_to_parent/test&quot;, &quot;vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb&quot;, &quot;vendor/plugins/rjs-assertions&quot;, &quot;vendor/plugins/rjs-assertions/init.rb&quot;, &quot;vendor/plugins/rjs-assertions/lib&quot;, &quot;vendor/plugins/rjs-assertions/lib/rjs-assertions.rb&quot;, &quot;vendor/plugins/rjs-assertions/MIT-LICENSE&quot;, &quot;vendor/plugins/rjs-assertions/README&quot;, &quot;vendor/rails_patches&quot;, &quot;vendor/rails_patches/support_for_inverse_relationships_on_active_record_objects.diff&quot;, &quot;vendor/TextMate&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/info.plist&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Preferences&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage&quot;, &quot;vendor/TextMate/Zena.tmbundle&quot;, &quot;vendor/TextMate/Zena.tmbundle/Commands&quot;, &quot;vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand&quot;, &quot;vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand&quot;, &quot;vendor/TextMate/Zena.tmbundle/info.plist&quot;, &quot;vendor/TextMate/Zena.tmbundle/Support&quot;, &quot;vendor/TextMate/Zena.tmbundle/Support/RubyMate&quot;, &quot;vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb&quot;, &quot;test/fixtures&quot;, &quot;test/fixtures/comments.yml&quot;, &quot;test/fixtures/contact_contents.yml&quot;, &quot;test/fixtures/data_entries.yml&quot;, &quot;test/fixtures/discussions.yml&quot;, &quot;test/fixtures/document_contents.yml&quot;, &quot;test/fixtures/dyn_attributes.yml&quot;, &quot;test/fixtures/files&quot;, &quot;test/fixtures/files/bird.jpg&quot;, &quot;test/fixtures/files/bomb.png&quot;, &quot;test/fixtures/files/exif_sample.jpg&quot;, &quot;test/fixtures/files/flower.jpg&quot;, &quot;test/fixtures/files/forest.pdf&quot;, &quot;test/fixtures/files/import.tgz&quot;, &quot;test/fixtures/files/jet_30.zip&quot;, &quot;test/fixtures/files/lake.jpg&quot;, &quot;test/fixtures/files/letter.zip&quot;, &quot;test/fixtures/files/Node-test.zafu&quot;, &quot;test/fixtures/files/other.txt&quot;, &quot;test/fixtures/files/simple.zml.gz&quot;, &quot;test/fixtures/files/some.txt&quot;, &quot;test/fixtures/files/translations_de.yml&quot;, &quot;test/fixtures/files/translations_fr.yml&quot;, &quot;test/fixtures/files/tree.jpg&quot;, &quot;test/fixtures/files/water.pdf&quot;, &quot;test/fixtures/groups.yml&quot;, &quot;test/fixtures/groups_users.yml&quot;, &quot;test/fixtures/iformats.yml&quot;, &quot;test/fixtures/import&quot;, &quot;test/fixtures/import/photos&quot;, &quot;test/fixtures/import/photos/bird.jpg&quot;, &quot;test/fixtures/import/photos/bird.jpg.en.zml&quot;, &quot;test/fixtures/import/photos/bird.jpg.fr.zml&quot;, &quot;test/fixtures/import/photos/document.yml.en&quot;, &quot;test/fixtures/import/photos/document.yml.fr&quot;, &quot;test/fixtures/import/photos.en.zml&quot;, &quot;test/fixtures/import/simple.zml&quot;, &quot;test/fixtures/links.yml&quot;, &quot;test/fixtures/nodes.yml&quot;, &quot;test/fixtures/relations.yml&quot;, &quot;test/fixtures/sites.yml&quot;, &quot;test/fixtures/template_contents.yml&quot;, &quot;test/fixtures/users.yml&quot;, &quot;test/fixtures/versions.yml&quot;, &quot;test/fixtures/virtual_classes.yml&quot;, &quot;test/fixtures/zips.yml&quot;, &quot;test/functional&quot;, &quot;test/functional/application_controller_test.rb&quot;, &quot;test/functional/calendar_controller_test.rb&quot;, &quot;test/functional/comments_controller_test.rb&quot;, &quot;test/functional/data_entries_controller_test.rb&quot;, &quot;test/functional/discussion_controller_test.rb&quot;, &quot;test/functional/documents_controller_test.rb&quot;, &quot;test/functional/groups_controller_test.rb&quot;, &quot;test/functional/iformats_controller_test.rb&quot;, &quot;test/functional/links_controller_test.rb&quot;, &quot;test/functional/nodes_controller_test.rb&quot;, &quot;test/functional/note_controller_test.rb&quot;, &quot;test/functional/preferences_controller_test.rb&quot;, &quot;test/functional/relations_controller_test.rb&quot;, &quot;test/functional/search_controller_test.rb&quot;, &quot;test/functional/sessions_controller_test.rb&quot;, &quot;test/functional/sites_controller_test.rb&quot;, &quot;test/functional/users_controller_test.rb&quot;, &quot;test/functional/versions_controller_test.rb&quot;, &quot;test/functional/virtual_classes_controller_test.rb&quot;, &quot;test/helpers&quot;, &quot;test/helpers/node_query&quot;, &quot;test/helpers/node_query/basic.yml&quot;, &quot;test/helpers/node_query/comments.yml&quot;, &quot;test/helpers/node_query/complex.yml&quot;, &quot;test/helpers/node_query/filters.yml&quot;, &quot;test/helpers/node_query/relations.yml&quot;, &quot;test/helpers/node_query_test.rb&quot;, &quot;test/integration&quot;, &quot;test/integration/multiple_hosts_test.rb&quot;, &quot;test/integration/multiversion_test.rb&quot;, &quot;test/integration/navigation_test.rb&quot;, &quot;test/sites&quot;, &quot;test/sites/complex&quot;, &quot;test/sites/complex/complex.png&quot;, &quot;test/sites/complex/groups.yml&quot;, &quot;test/sites/complex/links.yml&quot;, &quot;test/sites/complex/nodes.yml&quot;, &quot;test/sites/complex/relations.yml&quot;, &quot;test/sites/complex/sites.yml&quot;, &quot;test/sites/complex/users.yml&quot;, &quot;test/sites/complex/versions.yml&quot;, &quot;test/sites/complex/virtual_classes.yml&quot;, &quot;test/sites/ocean&quot;, &quot;test/sites/ocean/contact_contents.yml&quot;, &quot;test/sites/ocean/groups.yml&quot;, &quot;test/sites/ocean/iformats.yml&quot;, &quot;test/sites/ocean/nodes.yml&quot;, &quot;test/sites/ocean/sites.yml&quot;, &quot;test/sites/ocean/template_contents.yml&quot;, &quot;test/sites/ocean/users.yml&quot;, &quot;test/sites/ocean/versions.yml&quot;, &quot;test/sites/README&quot;, &quot;test/sites/zena&quot;, &quot;test/sites/zena/comments.yml&quot;, &quot;test/sites/zena/contact_contents.yml&quot;, &quot;test/sites/zena/data_entries.yml&quot;, &quot;test/sites/zena/discussions.yml&quot;, &quot;test/sites/zena/document_contents.yml&quot;, &quot;test/sites/zena/dyn_attributes.yml&quot;, &quot;test/sites/zena/groups.yml&quot;, &quot;test/sites/zena/iformats.yml&quot;, &quot;test/sites/zena/links.yml&quot;, &quot;test/sites/zena/nodes.yml&quot;, &quot;test/sites/zena/relations.yml&quot;, &quot;test/sites/zena/sites.yml&quot;, &quot;test/sites/zena/template_contents.yml&quot;, &quot;test/sites/zena/users.yml&quot;, &quot;test/sites/zena/versions.yml&quot;, &quot;test/sites/zena/virtual_classes.yml&quot;, &quot;test/test_helper.rb&quot;, &quot;test/test_zena.rb&quot;, &quot;test/unit&quot;, &quot;test/unit/cache_test.rb&quot;, &quot;test/unit/cached_page_test.rb&quot;, &quot;test/unit/comment_test.rb&quot;, &quot;test/unit/contact_content_test.rb&quot;, &quot;test/unit/contact_test.rb&quot;, &quot;test/unit/contact_version_test.rb&quot;, &quot;test/unit/core_ext_test.rb&quot;, &quot;test/unit/data_entry_test.rb&quot;, &quot;test/unit/discussion_test.rb&quot;, &quot;test/unit/document_content_test.rb&quot;, &quot;test/unit/document_test.rb&quot;, &quot;test/unit/document_version_test.rb&quot;, &quot;test/unit/dyn_attributes_test.rb&quot;, &quot;test/unit/exif_data_test.rb&quot;, &quot;test/unit/group_test.rb&quot;, &quot;test/unit/iformat_test.rb&quot;, &quot;test/unit/image_builder_test.rb&quot;, &quot;test/unit/image_content_test.rb&quot;, &quot;test/unit/image_test.rb&quot;, &quot;test/unit/image_version_test.rb&quot;, &quot;test/unit/letter_test.rb&quot;, &quot;test/unit/link_test.rb&quot;, &quot;test/unit/multiversion_test.rb&quot;, &quot;test/unit/node_test.rb&quot;, &quot;test/unit/note_test.rb&quot;, &quot;test/unit/page_test.rb&quot;, &quot;test/unit/project_test.rb&quot;, &quot;test/unit/reference_test.rb&quot;, &quot;test/unit/relation_proxy_test.rb&quot;, &quot;test/unit/relation_test.rb&quot;, &quot;test/unit/section_test.rb&quot;, &quot;test/unit/secure_test.rb&quot;, &quot;test/unit/site_test.rb&quot;, &quot;test/unit/skin_test.rb&quot;, &quot;test/unit/template_content_test.rb&quot;, &quot;test/unit/template_test.rb&quot;, &quot;test/unit/template_version_test.rb&quot;, &quot;test/unit/text_document_content_test.rb&quot;, &quot;test/unit/text_document_test.rb&quot;, &quot;test/unit/text_document_version_test.rb&quot;, &quot;test/unit/user_test.rb&quot;, &quot;test/unit/version_test.rb&quot;, &quot;test/unit/virtual_class_test.rb&quot;, &quot;test/unit/zena&quot;, &quot;test/unit/zena/db_test.rb&quot;, &quot;test/unit/zena/parser&quot;, &quot;test/unit/zena/parser/latex.yml&quot;, &quot;test/unit/zena/parser/zafu.yml&quot;, &quot;test/unit/zena/parser/zafu_asset.yml&quot;, &quot;test/unit/zena/parser/zafu_insight.yml&quot;, &quot;test/unit/zena/parser/zazen.yml&quot;, &quot;test/unit/zena/parser_test.rb&quot;, &quot;test/unit/zena/unit&quot;, &quot;test/unit/zena/unit/test_case_test.rb&quot;, &quot;test/unit/zena/use&quot;, &quot;test/unit/zena/use/calendar_test.rb&quot;, &quot;test/unit/zena/use/dates_model_methods_test.rb&quot;, &quot;test/unit/zena/use/dates_string_methods_test.rb&quot;, &quot;test/unit/zena/use/dates_view_methods_test.rb&quot;, &quot;test/unit/zena/use/html_tags_test.rb&quot;, &quot;test/unit/zena/use/i18n_test.rb&quot;, &quot;test/unit/zena/use/nested_attributes_alias_model_test.rb&quot;, &quot;test/unit/zena/use/nested_attributes_alias_view_test.rb&quot;, &quot;test/unit/zena/use/refactor_test.rb&quot;, &quot;test/unit/zena/use/rendering_test.rb&quot;, &quot;test/unit/zena/use/urls_test.rb&quot;, &quot;test/unit/zena/use/zafu_test.rb&quot;, &quot;test/unit/zena/use/zazen_test.rb&quot;, &quot;test/unit/zena/zena_tags&quot;, &quot;test/unit/zena/zena_tags/ajax.yml&quot;, &quot;test/unit/zena/zena_tags/apphelper.yml&quot;, &quot;test/unit/zena/zena_tags/basic.yml&quot;, &quot;test/unit/zena/zena_tags/complex.yml&quot;, &quot;test/unit/zena/zena_tags/data.yml&quot;, &quot;test/unit/zena/zena_tags/errors.yml&quot;, &quot;test/unit/zena/zena_tags/eval.yml&quot;, &quot;test/unit/zena/zena_tags/relations.yml&quot;, &quot;test/unit/zena/zena_tags/zazen.yml&quot;, &quot;test/unit/zena/zena_tags_test.rb&quot;]
+  s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;README.rdoc&quot;, &quot;bin/zena&quot;, &quot;lib/bricks&quot;, &quot;lib/core_ext&quot;, &quot;lib/log_recorder&quot;, &quot;lib/log_recorder/lib&quot;, &quot;lib/log_recorder/test&quot;, &quot;lib/tasks&quot;, &quot;lib/tasks/capistrano.rake&quot;, &quot;lib/tasks/zena.rake&quot;, &quot;lib/zena&quot;, &quot;lib/zena/acts&quot;, &quot;lib/zena/controller&quot;, &quot;lib/zena/deploy&quot;, &quot;lib/zena/deploy/awstats.conf.rhtml&quot;, &quot;lib/zena/deploy/database.rhtml&quot;, &quot;lib/zena/deploy/httpd.rhtml&quot;, &quot;lib/zena/deploy/start.html&quot;, &quot;lib/zena/deploy/stats.vhost.rhtml&quot;, &quot;lib/zena/deploy/vhost.rhtml&quot;, &quot;lib/zena/deploy/vhost_www.rhtml&quot;, &quot;lib/zena/fix&quot;, &quot;lib/zena/parser&quot;, &quot;lib/zena/unit&quot;, &quot;lib/zena/use&quot;, &quot;lib/zena/use/custom_queries&quot;, &quot;lib/zena/use/custom_queries/complex.host.yml&quot;, &quot;lib/zena/view&quot;, &quot;public/images/swf/xspf/license.txt&quot;, &quot;public/robots.txt&quot;, &quot;vendor/bricks/20070122-172926.txt&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt&quot;, &quot;test/fixtures/files/other.txt&quot;, &quot;test/fixtures/files/some.txt&quot;]
+  s.files = [&quot;History.txt&quot;, &quot;README.rdoc&quot;, &quot;db/schema.rb&quot;, &quot;app/controllers&quot;, &quot;app/controllers/application_controller.rb&quot;, &quot;app/controllers/comments_controller.rb&quot;, &quot;app/controllers/data_entries_controller.rb&quot;, &quot;app/controllers/discussions_controller.rb&quot;, &quot;app/controllers/documents_controller.rb&quot;, &quot;app/controllers/groups_controller.rb&quot;, &quot;app/controllers/iformats_controller.rb&quot;, &quot;app/controllers/links_controller.rb&quot;, &quot;app/controllers/nodes_controller.rb&quot;, &quot;app/controllers/preferences_controller.rb&quot;, &quot;app/controllers/relations_controller.rb&quot;, &quot;app/controllers/sessions_controller.rb&quot;, &quot;app/controllers/sites_controller.rb&quot;, &quot;app/controllers/users_controller.rb&quot;, &quot;app/controllers/versions_controller.rb&quot;, &quot;app/controllers/virtual_classes_controller.rb&quot;, &quot;app/helpers&quot;, &quot;app/helpers/application_helper.rb&quot;, &quot;app/helpers/documents_helper.rb&quot;, &quot;app/helpers/nodes_helper.rb&quot;, &quot;app/helpers/versions_helper.rb&quot;, &quot;app/models&quot;, &quot;app/models/book.rb&quot;, &quot;app/models/cache.rb&quot;, &quot;app/models/cached_page.rb&quot;, &quot;app/models/comment.rb&quot;, &quot;app/models/contact.rb&quot;, &quot;app/models/contact_content.rb&quot;, &quot;app/models/contact_version.rb&quot;, &quot;app/models/data_entry.rb&quot;, &quot;app/models/discussion.rb&quot;, &quot;app/models/document.rb&quot;, &quot;app/models/document_content.rb&quot;, &quot;app/models/document_version.rb&quot;, &quot;app/models/dyn_attribute.rb&quot;, &quot;app/models/group.rb&quot;, &quot;app/models/iformat.rb&quot;, &quot;app/models/image.rb&quot;, &quot;app/models/image_content.rb&quot;, &quot;app/models/image_version.rb&quot;, &quot;app/models/link.rb&quot;, &quot;app/models/node.rb&quot;, &quot;app/models/note.rb&quot;, &quot;app/models/page.rb&quot;, &quot;app/models/project.rb&quot;, &quot;app/models/reference.rb&quot;, &quot;app/models/relation.rb&quot;, &quot;app/models/relation_proxy.rb&quot;, &quot;app/models/section.rb&quot;, &quot;app/models/site.rb&quot;, &quot;app/models/skin.rb&quot;, &quot;app/models/template.rb&quot;, &quot;app/models/template_content.rb&quot;, &quot;app/models/template_version.rb&quot;, &quot;app/models/text_document.rb&quot;, &quot;app/models/text_document_content.rb&quot;, &quot;app/models/text_document_version.rb&quot;, &quot;app/models/user.rb&quot;, &quot;app/models/version.rb&quot;, &quot;app/models/virtual_class.rb&quot;, &quot;app/models/zip.rb&quot;, &quot;app/views&quot;, &quot;app/views/comments&quot;, &quot;app/views/comments/_add.rhtml&quot;, &quot;app/views/comments/_bin.rhtml&quot;, &quot;app/views/comments/_form.rhtml&quot;, &quot;app/views/comments/_li.rhtml&quot;, &quot;app/views/comments/_li_simple.rhtml&quot;, &quot;app/views/comments/_list.rhtml&quot;, &quot;app/views/comments/create.rjs&quot;, &quot;app/views/comments/edit.rjs&quot;, &quot;app/views/comments/empty_bin.rjs&quot;, &quot;app/views/comments/index.rhtml&quot;, &quot;app/views/comments/publish.rjs&quot;, &quot;app/views/comments/remove.rjs&quot;, &quot;app/views/comments/reply_to.rjs&quot;, &quot;app/views/comments/update.rjs&quot;, &quot;app/views/data_entries&quot;, &quot;app/views/data_entries/_li.html.erb&quot;, &quot;app/views/data_entries/create.rjs&quot;, &quot;app/views/data_entries/destroy.rjs&quot;, &quot;app/views/data_entries/edit.rjs&quot;, &quot;app/views/data_entries/index.html.erb&quot;, &quot;app/views/data_entries/show.html.erb&quot;, &quot;app/views/data_entries/show.rjs&quot;, &quot;app/views/data_entries/update.rjs&quot;, &quot;app/views/discussions&quot;, &quot;app/views/discussions/_add.rhtml&quot;, &quot;app/views/discussions/_form.rhtml&quot;, &quot;app/views/discussions/_li.rhtml&quot;, &quot;app/views/discussions/_list.rhtml&quot;, &quot;app/views/discussions/create.rjs&quot;, &quot;app/views/discussions/remove.rjs&quot;, &quot;app/views/discussions/show.rjs&quot;, &quot;app/views/discussions/update.rjs&quot;, &quot;app/views/documents&quot;, &quot;app/views/documents/_crop.rhtml&quot;, &quot;app/views/documents/crop_form.rjs&quot;, &quot;app/views/documents/new.rhtml&quot;, &quot;app/views/documents/show.rhtml&quot;, &quot;app/views/groups&quot;, &quot;app/views/groups/_add.rhtml&quot;, &quot;app/views/groups/_form.rhtml&quot;, &quot;app/views/groups/_li.rhtml&quot;, &quot;app/views/groups/create.rjs&quot;, &quot;app/views/groups/destroy.rjs&quot;, &quot;app/views/groups/edit.html.erb&quot;, &quot;app/views/groups/index.rhtml&quot;, &quot;app/views/groups/show.html.erb&quot;, &quot;app/views/groups/show.rjs&quot;, &quot;app/views/iformats&quot;, &quot;app/views/iformats/_add.rhtml&quot;, &quot;app/views/iformats/_form.rhtml&quot;, &quot;app/views/iformats/_li.rhtml&quot;, &quot;app/views/iformats/create.rjs&quot;, &quot;app/views/iformats/destroy.rjs&quot;, &quot;app/views/iformats/edit.html.erb&quot;, &quot;app/views/iformats/index.rhtml&quot;, &quot;app/views/iformats/show.html.erb&quot;, &quot;app/views/iformats/show.rjs&quot;, &quot;app/views/iformats/update.rjs&quot;, &quot;app/views/image&quot;, &quot;app/views/image/_title.rhtml&quot;, &quot;app/views/links&quot;, &quot;app/views/links/_add.rhtml&quot;, &quot;app/views/links/_form.rhtml&quot;, &quot;app/views/links/_li.rhtml&quot;, &quot;app/views/links/_list.rhtml&quot;, &quot;app/views/links/create.rjs&quot;, &quot;app/views/links/destroy.rjs&quot;, &quot;app/views/links/show.rjs&quot;, &quot;app/views/nodes&quot;, &quot;app/views/nodes/404.html&quot;, &quot;app/views/nodes/500.html&quot;, &quot;app/views/nodes/_dates.rhtml&quot;, &quot;app/views/nodes/_edit_attribute.rhtml&quot;, &quot;app/views/nodes/_gallery.rhtml&quot;, &quot;app/views/nodes/_groups.rhtml&quot;, &quot;app/views/nodes/_import_results.rhtml&quot;, &quot;app/views/nodes/_list_nodes.rhtml&quot;, &quot;app/views/nodes/_parent.rhtml&quot;, &quot;app/views/nodes/_position.rhtml&quot;, &quot;app/views/nodes/_results.rhtml&quot;, &quot;app/views/nodes/_show_attr.rhtml&quot;, &quot;app/views/nodes/_table.rhtml&quot;, &quot;app/views/nodes/clear_order.rjs&quot;, &quot;app/views/nodes/create.rjs&quot;, &quot;app/views/nodes/drive.rjs&quot;, &quot;app/views/nodes/drop.rjs&quot;, &quot;app/views/nodes/edit.html.erb&quot;, &quot;app/views/nodes/edit.rjs&quot;, &quot;app/views/nodes/import.rhtml&quot;, &quot;app/views/nodes/save_text.rjs&quot;, &quot;app/views/nodes/search.rjs&quot;, &quot;app/views/nodes/show.rjs&quot;, &quot;app/views/nodes/table_update.rjs&quot;, &quot;app/views/nodes/update.rjs&quot;, &quot;app/views/nodes/zafu.rjs&quot;, &quot;app/views/relations&quot;, &quot;app/views/relations/_add.erb&quot;, &quot;app/views/relations/_form.erb&quot;, &quot;app/views/relations/_li.erb&quot;, &quot;app/views/relations/create.rjs&quot;, &quot;app/views/relations/destroy.rjs&quot;, &quot;app/views/relations/edit.erb&quot;, &quot;app/views/relations/index.erb&quot;, &quot;app/views/relations/new.erb&quot;, &quot;app/views/relations/show.rjs&quot;, &quot;app/views/relations/update.rjs&quot;, &quot;app/views/search&quot;, &quot;app/views/search/_form.rhtml&quot;, &quot;app/views/sites&quot;, &quot;app/views/sites/_form.erb&quot;, &quot;app/views/sites/_li.erb&quot;, &quot;app/views/sites/clear_cache.rjs&quot;, &quot;app/views/sites/edit.erb&quot;, &quot;app/views/sites/index.erb&quot;, &quot;app/views/sites/show.rjs&quot;, &quot;app/views/sites/update.rjs&quot;, &quot;app/views/sites/zena_up.html.erb&quot;, &quot;app/views/templates&quot;, &quot;app/views/templates/defaults&quot;, &quot;app/views/templates/defaults/+adminLayout.zafu&quot;, &quot;app/views/templates/defaults/+login.zafu&quot;, &quot;app/views/templates/document_create_tabs&quot;, &quot;app/views/templates/document_create_tabs/_file.rhtml&quot;, &quot;app/views/templates/document_create_tabs/_import.rhtml&quot;, &quot;app/views/templates/document_create_tabs/_template.rhtml&quot;, &quot;app/views/templates/document_create_tabs/_text_doc.rhtml&quot;, &quot;app/views/templates/drive_tabs&quot;, &quot;app/views/templates/drive_tabs/_drive.rhtml&quot;, &quot;app/views/templates/drive_tabs/_help.rhtml&quot;, &quot;app/views/templates/drive_tabs/_links.rhtml&quot;, &quot;app/views/templates/edit_tabs&quot;, &quot;app/views/templates/edit_tabs/_contact.rhtml&quot;, &quot;app/views/templates/edit_tabs/_custom.rhtml&quot;, &quot;app/views/templates/edit_tabs/_document.rhtml&quot;, &quot;app/views/templates/edit_tabs/_help.rhtml&quot;, &quot;app/views/templates/edit_tabs/_image.rhtml&quot;, &quot;app/views/templates/edit_tabs/_template.rhtml&quot;, &quot;app/views/templates/edit_tabs/_text.rhtml&quot;, &quot;app/views/templates/edit_tabs/_textdocument.rhtml&quot;, &quot;app/views/templates/edit_tabs/_title.rhtml&quot;, &quot;app/views/users&quot;, &quot;app/views/users/_add.rhtml&quot;, &quot;app/views/users/_form.rhtml&quot;, &quot;app/views/users/_li.rhtml&quot;, &quot;app/views/users/change_info.rjs&quot;, &quot;app/views/users/change_password.rjs&quot;, &quot;app/views/users/create.rjs&quot;, &quot;app/views/users/index.rhtml&quot;, &quot;app/views/users/preferences.html.erb&quot;, &quot;app/views/users/show.rjs&quot;, &quot;app/views/users/update.rjs&quot;, &quot;app/views/versions&quot;, &quot;app/views/versions/_li.rhtml&quot;, &quot;app/views/versions/_list.rhtml&quot;, &quot;app/views/versions/_tr.rhtml&quot;, &quot;app/views/versions/backup.rjs&quot;, &quot;app/views/versions/css_preview.rjs&quot;, &quot;app/views/versions/destroy.rjs&quot;, &quot;app/views/versions/diff.rjs&quot;, &quot;app/views/versions/edit.rhtml&quot;, &quot;app/views/versions/preview.rjs&quot;, &quot;app/views/versions/show.rjs&quot;, &quot;app/views/versions/update.rjs&quot;, &quot;app/views/virtual_classes&quot;, &quot;app/views/virtual_classes/_add.erb&quot;, &quot;app/views/virtual_classes/_form.erb&quot;, &quot;app/views/virtual_classes/_li.erb&quot;, &quot;app/views/virtual_classes/create.rjs&quot;, &quot;app/views/virtual_classes/destroy.rjs&quot;, &quot;app/views/virtual_classes/index.erb&quot;, &quot;app/views/virtual_classes/new.erb&quot;, &quot;app/views/virtual_classes/show.rjs&quot;, &quot;app/views/virtual_classes/update.rjs&quot;, &quot;bin/zena&quot;, &quot;bricks/captcha&quot;, &quot;bricks/captcha/MIT-LICENSE&quot;, &quot;bricks/captcha/patch&quot;, &quot;bricks/captcha/patch/application_controller.rb&quot;, &quot;bricks/captcha/patch/application_helper.rb&quot;, &quot;bricks/captcha/patch/site.rb&quot;, &quot;bricks/captcha/README&quot;, &quot;bricks/captcha/zafu&quot;, &quot;bricks/captcha/zafu/captcha.rb&quot;, &quot;bricks/math&quot;, &quot;bricks/math/patch&quot;, &quot;bricks/math/patch/application_helper.rb&quot;, &quot;bricks/tags&quot;, &quot;bricks/tags/lib&quot;, &quot;bricks/tags/lib/has_tags.rb&quot;, &quot;bricks/tags/patch&quot;, &quot;bricks/tags/patch/node.rb&quot;, &quot;bricks/tags/README&quot;, &quot;bricks/tags/test&quot;, &quot;bricks/tags/test/sites&quot;, &quot;bricks/tags/test/sites/zena&quot;, &quot;bricks/tags/test/sites/zena/links.yml&quot;, &quot;bricks/tags/test/unit&quot;, &quot;bricks/tags/test/unit/tags_test.rb&quot;, &quot;bricks/tags/test/zafu&quot;, &quot;bricks/tags/test/zafu/tags.yml&quot;, &quot;bricks/toto.zip&quot;, &quot;config/boot.rb&quot;, &quot;config/database.yml&quot;, &quot;config/database_example.yml&quot;, &quot;config/deploy.rb&quot;, &quot;config/environment.rb&quot;, &quot;config/environments&quot;, &quot;config/environments/development.rb&quot;, &quot;config/environments/production.rb&quot;, &quot;config/environments/test.rb&quot;, &quot;config/gems.yml&quot;, &quot;config/initializers&quot;, &quot;config/initializers/mime_types.rb&quot;, &quot;config/initializers/zena.rb&quot;, &quot;config/mongrel_upload_progress.conf&quot;, &quot;config/routes.rb&quot;, &quot;db/development.sqlite3&quot;, &quot;db/init&quot;, &quot;db/init/base&quot;, &quot;db/init/base/help.en.zml&quot;, &quot;db/init/base/help.fr.zml&quot;, &quot;db/init/base/skins&quot;, &quot;db/init/base/skins/default&quot;, &quot;db/init/base/skins/default/favicon.png&quot;, &quot;db/init/base/skins/default/Node-+adminLayout.zafu&quot;, &quot;db/init/base/skins/default/Node-+index.zafu&quot;, &quot;db/init/base/skins/default/Node-+login.zafu&quot;, &quot;db/init/base/skins/default/Node-+notFound.zafu&quot;, &quot;db/init/base/skins/default/Node-+popupLayout.zafu&quot;, &quot;db/init/base/skins/default/Node-+search.zafu&quot;, &quot;db/init/base/skins/default/Node-tree.zafu&quot;, &quot;db/init/base/skins/default/Node.zafu&quot;, &quot;db/init/base/skins/default/notes.zafu&quot;, &quot;db/init/base/skins/default/Project.zafu&quot;, &quot;db/init/base/skins/default/style.css&quot;, &quot;db/init/base/skins/default.zml&quot;, &quot;db/init/base/skins.zml&quot;, &quot;db/migrate&quot;, &quot;db/migrate/001_create_base.rb&quot;, &quot;db/migrate/002_add_time_zone_to_users.rb&quot;, &quot;db/migrate/003_add_custom_base_flag.rb&quot;, &quot;db/migrate/004_rename_template_skin.rb&quot;, &quot;db/migrate/005_create_cached_pages.rb&quot;, &quot;db/migrate/006_create_sites.rb&quot;, &quot;db/migrate/007_replace_id_by_zip.rb&quot;, &quot;db/migrate/008_user_status.rb&quot;, &quot;db/migrate/009_fulltext.rb&quot;, &quot;db/migrate/010_create_template_content.rb&quot;, &quot;db/migrate/011_project_to_section.rb&quot;, &quot;db/migrate/012_add_project_id.rb&quot;, &quot;db/migrate/013_remove_defaults.rb&quot;, &quot;db/migrate/014_add_sort_field.rb&quot;, &quot;db/migrate/015_add_dyn_attributes.rb&quot;, &quot;db/migrate/016_remove_translations.rb&quot;, &quot;db/migrate/017_rename_authorize.rb&quot;, &quot;db/migrate/018_add_auth_option.rb&quot;, &quot;db/migrate/019_remove_user_status.rb&quot;, &quot;db/migrate/020_create_participation.rb&quot;, &quot;db/migrate/021_create_relations.rb&quot;, &quot;db/migrate/022_create_virtual_classes.rb&quot;, &quot;db/migrate/023_ip_on_anonymous_comment.rb&quot;, &quot;db/migrate/024_correct_vclass_kpath.rb&quot;, &quot;db/migrate/025_move_tag_into_vclass.rb&quot;, &quot;db/migrate/026_rename_templates.rb&quot;, &quot;db/migrate/027_add_country_to_contacts.rb&quot;, &quot;db/migrate/028_change_size_of_conten_type_field.rb&quot;, &quot;db/migrate/029_create_data_entries.rb&quot;, &quot;db/migrate/030_redit_auto_publish_site_settings.rb&quot;, &quot;db/migrate/031_create_iformats.rb&quot;, &quot;db/migrate/032_caches_context_as_hash.rb&quot;, &quot;db/migrate/033_documents_kpath_change.rb&quot;, &quot;db/migrate/034_change_file_storage.rb&quot;, &quot;db/migrate/035_add_status_to_link.rb&quot;, &quot;db/migrate/036_add_flag_fields_on_nodes.rb&quot;, &quot;db/migrate/037_add_auto_create_discussion_to_v_class.rb&quot;, &quot;db/migrate/038_create_site_attributes.rb&quot;, &quot;db/migrate/039_default_position.rb&quot;, &quot;db/migrate/040_second_value_for_data_entry.rb&quot;, &quot;db/migrate/041_add_attributes_to_v_class.rb&quot;, &quot;db/migrate/042_fix_position_should_be_float.rb&quot;, &quot;db/migrate/043_move_user_lang_into_participation.rb&quot;, &quot;db/migrate/044_remove_monolingual_site_option.rb&quot;, &quot;db/migrate/045_avoid_star_in_templates.rb&quot;, &quot;db/migrate/046_fix_zazen_image_tag.rb&quot;, &quot;db/migrate/047_change_default_link_id_to_zero.rb&quot;, &quot;db/migrate/048_link_source_target_can_be_null.rb&quot;, &quot;db/migrate/049_fix_publish_from_is_null.rb&quot;, &quot;db/migrate/050_date_in_links.rb&quot;, &quot;db/migrate/051_add_exif_tags_to_images.rb&quot;, &quot;db/migrate/20090825201159_insert_zero_link.rb&quot;, &quot;db/migrate/20090825201200_merge_bricks_migrations_with_std_migrations.rb&quot;, &quot;db/migrate/20090924141459_zafu_fix_sept09.rb&quot;, &quot;db/migrate/20090927125912_allow_null_in_text_fields.rb&quot;, &quot;db/migrate/20090928133440_no_more_private_nodes.rb&quot;, &quot;db/migrate/20090928143754_version_status_change.rb&quot;, &quot;db/migrate/20091001084025_change_status_values_for_comments.rb&quot;, &quot;db/migrate/20091009084057_add_vhash_in_node.rb&quot;, &quot;db/migrate/20091013100351_rename_publish_group_to_drive_group.rb&quot;, &quot;db/migrate/20091014130833_fix_template_title.rb&quot;, &quot;db/migrate/20091014183726_merge_participation_into_users.rb&quot;, &quot;db/production.sqlite3&quot;, &quot;db/test.sqlite3&quot;, &quot;lib/base_additions.rb&quot;, &quot;lib/bricks&quot;, &quot;lib/bricks/patcher.rb&quot;, &quot;lib/comment_query.rb&quot;, &quot;lib/core_ext&quot;, &quot;lib/core_ext/date_time.rb&quot;, &quot;lib/core_ext/dir.rb&quot;, &quot;lib/core_ext/fixnum.rb&quot;, &quot;lib/core_ext/string.rb&quot;, &quot;lib/exif_data.rb&quot;, &quot;lib/fix_rails_layouts.rb&quot;, &quot;lib/gettext_strings.rb&quot;, &quot;lib/image_builder.rb&quot;, &quot;lib/log_recorder&quot;, &quot;lib/log_recorder/lib&quot;, &quot;lib/log_recorder/lib/log_recorder.rb&quot;, &quot;lib/log_recorder/test&quot;, &quot;lib/log_recorder/test/log_recorder_test.rb&quot;, &quot;lib/parser.rb&quot;, &quot;lib/tasks&quot;, &quot;lib/tasks/capistrano.rake&quot;, &quot;lib/tasks/zena.rake&quot;, &quot;lib/tasks/zena.rb&quot;, &quot;lib/upload_progress_server.rb&quot;, &quot;lib/webdav_adapter.rb&quot;, &quot;lib/zafu_parser.rb&quot;, &quot;lib/zazen_parser.rb&quot;, &quot;lib/zena&quot;, &quot;lib/zena/acts&quot;, &quot;lib/zena/acts/multiversion.rb&quot;, &quot;lib/zena/acts/secure.rb&quot;, &quot;lib/zena/app.rb&quot;, &quot;lib/zena/code_syntax.rb&quot;, &quot;lib/zena/controller&quot;, &quot;lib/zena/controller/test_case.rb&quot;, &quot;lib/zena/db.rb&quot;, &quot;lib/zena/deploy&quot;, &quot;lib/zena/deploy/awstats.conf.rhtml&quot;, &quot;lib/zena/deploy/database.rhtml&quot;, &quot;lib/zena/deploy/httpd.rhtml&quot;, &quot;lib/zena/deploy/start.html&quot;, &quot;lib/zena/deploy/stats.vhost.rhtml&quot;, &quot;lib/zena/deploy/template.rb&quot;, &quot;lib/zena/deploy/vhost.rhtml&quot;, &quot;lib/zena/deploy/vhost_www.rhtml&quot;, &quot;lib/zena/deploy.rb&quot;, &quot;lib/zena/fix&quot;, &quot;lib/zena/fix/mysql_connection.rb&quot;, &quot;lib/zena/foxy_parser.rb&quot;, &quot;lib/zena/info.rb&quot;, &quot;lib/zena/migrator.rb&quot;, &quot;lib/zena/parser&quot;, &quot;lib/zena/parser/zafu_rules.rb&quot;, &quot;lib/zena/parser/zafu_tags.rb&quot;, &quot;lib/zena/parser/zazen_rules.rb&quot;, &quot;lib/zena/parser/zazen_tags.rb&quot;, &quot;lib/zena/parser/zena_rules.rb&quot;, &quot;lib/zena/parser/zena_tags.rb&quot;, &quot;lib/zena/parser.rb&quot;, &quot;lib/zena/routes.rb&quot;, &quot;lib/zena/test_controller.rb&quot;, &quot;lib/zena/unit&quot;, &quot;lib/zena/unit/test_case.rb&quot;, &quot;lib/zena/use&quot;, &quot;lib/zena/use/ajax.rb&quot;, &quot;lib/zena/use/authentification.rb&quot;, &quot;lib/zena/use/calendar.rb&quot;, &quot;lib/zena/use/custom_queries&quot;, &quot;lib/zena/use/custom_queries/complex.host.yml&quot;, &quot;lib/zena/use/dates.rb&quot;, &quot;lib/zena/use/dyn_attributes.rb&quot;, &quot;lib/zena/use/error_rendering.rb&quot;, &quot;lib/zena/use/fixtures.rb&quot;, &quot;lib/zena/use/grid.rb&quot;, &quot;lib/zena/use/html_tags.rb&quot;, &quot;lib/zena/use/i18n.rb&quot;, &quot;lib/zena/use/nested_attributes_alias.rb&quot;, &quot;lib/zena/use/node_query_finders.rb&quot;, &quot;lib/zena/use/refactor.rb&quot;, &quot;lib/zena/use/relations.rb&quot;, &quot;lib/zena/use/rendering.rb&quot;, &quot;lib/zena/use/test_helper.rb&quot;, &quot;lib/zena/use/urls.rb&quot;, &quot;lib/zena/use/zafu.rb&quot;, &quot;lib/zena/use/zazen.rb&quot;, &quot;lib/zena/view&quot;, &quot;lib/zena/view/test_case.rb&quot;, &quot;lib/zena.rb&quot;, &quot;locale/en&quot;, &quot;locale/en/LC_MESSAGES&quot;, &quot;locale/en/LC_MESSAGES/zena.mo&quot;, &quot;locale/en/zena.po&quot;, &quot;locale/fr&quot;, &quot;locale/fr/LC_MESSAGES&quot;, &quot;locale/fr/LC_MESSAGES/zena.mo&quot;, &quot;locale/fr/zena.po&quot;, &quot;locale/zena.pot&quot;, &quot;public/calendar&quot;, &quot;public/calendar/calendar-brown.css&quot;, &quot;public/calendar/calendar-setup.js&quot;, &quot;public/calendar/calendar.js&quot;, &quot;public/calendar/iconCalendar.gif&quot;, &quot;public/calendar/lang&quot;, &quot;public/calendar/lang/calendar-en-utf8.js&quot;, &quot;public/calendar/lang/calendar-fr-utf8.js&quot;, &quot;public/calendar/lang/lang.zip&quot;, &quot;public/dispatch.cgi&quot;, &quot;public/dispatch.fcgi&quot;, &quot;public/dispatch.rb&quot;, &quot;public/favicon.ico&quot;, &quot;public/images&quot;, &quot;public/images/accept.png&quot;, &quot;public/images/action.png&quot;, &quot;public/images/add.png&quot;, &quot;public/images/ajax-loader.gif&quot;, &quot;public/images/anchor.png&quot;, &quot;public/images/application.png&quot;, &quot;public/images/application_add.png&quot;, &quot;public/images/application_cascade.png&quot;, &quot;public/images/application_delete.png&quot;, &quot;public/images/application_double.png&quot;, &quot;public/images/application_edit.png&quot;, &quot;public/images/application_error.png&quot;, &quot;public/images/application_form.png&quot;, &quot;public/images/application_form_add.png&quot;, &quot;public/images/application_form_delete.png&quot;, &quot;public/images/application_form_edit.png&quot;, &quot;public/images/application_form_magnify.png&quot;, &quot;public/images/application_get.png&quot;, &quot;public/images/application_go.png&quot;, &quot;public/images/application_home.png&quot;, &quot;public/images/application_key.png&quot;, &quot;public/images/application_lightning.png&quot;, &quot;public/images/application_link.png&quot;, &quot;public/images/application_osx.png&quot;, &quot;public/images/application_osx_terminal.png&quot;, &quot;public/images/application_put.png&quot;, &quot;public/images/application_side_boxes.png&quot;, &quot;public/images/application_side_contract.png&quot;, &quot;public/images/application_side_expand.png&quot;, &quot;public/images/application_side_list.png&quot;, &quot;public/images/application_side_tree.png&quot;, &quot;public/images/application_split.png&quot;, &quot;public/images/application_tile_horizontal.png&quot;, &quot;public/images/application_tile_vertical.png&quot;, &quot;public/images/application_view_columns.png&quot;, &quot;public/images/application_view_detail.png&quot;, &quot;public/images/application_view_gallery.png&quot;, &quot;public/images/application_view_icons.png&quot;, &quot;public/images/application_view_list.png&quot;, &quot;public/images/application_view_tile.png&quot;, &quot;public/images/application_xp.png&quot;, &quot;public/images/application_xp_terminal.png&quot;, &quot;public/images/arrow_branch.png&quot;, &quot;public/images/arrow_divide.png&quot;, &quot;public/images/arrow_down.png&quot;, &quot;public/images/arrow_in.png&quot;, &quot;public/images/arrow_inout.png&quot;, &quot;public/images/arrow_join.png&quot;, &quot;public/images/arrow_left.png&quot;, &quot;public/images/arrow_merge.png&quot;, &quot;public/images/arrow_out.png&quot;, &quot;public/images/arrow_redo.png&quot;, &quot;public/images/arrow_refresh.png&quot;, &quot;public/images/arrow_refresh_small.png&quot;, &quot;public/images/arrow_right.png&quot;, &quot;public/images/arrow_rotate_anticlockwise.png&quot;, &quot;public/images/arrow_rotate_clockwise.png&quot;, &quot;public/images/arrow_switch.png&quot;, &quot;public/images/arrow_turn_left.png&quot;, &quot;public/images/arrow_turn_right.png&quot;, &quot;public/images/arrow_undo.png&quot;, &quot;public/images/arrow_up.png&quot;, &quot;public/images/asterisk_orange.png&quot;, &quot;public/images/asterisk_yellow.png&quot;, &quot;public/images/attach.png&quot;, &quot;public/images/award_star_add.png&quot;, &quot;public/images/award_star_bronze_1.png&quot;, &quot;public/images/award_star_bronze_2.png&quot;, &quot;public/images/award_star_bronze_3.png&quot;, &quot;public/images/award_star_delete.png&quot;, &quot;public/images/award_star_gold_1.png&quot;, &quot;public/images/award_star_gold_2.png&quot;, &quot;public/images/award_star_gold_3.png&quot;, &quot;public/images/award_star_silver_1.png&quot;, &quot;public/images/award_star_silver_2.png&quot;, &quot;public/images/award_star_silver_3.png&quot;, &quot;public/images/basket.png&quot;, &quot;public/images/basket_add.png&quot;, &quot;public/images/basket_delete.png&quot;, &quot;public/images/basket_edit.png&quot;, &quot;public/images/basket_error.png&quot;, &quot;public/images/basket_go.png&quot;, &quot;public/images/basket_put.png&quot;, &quot;public/images/basket_remove.png&quot;, &quot;public/images/bell.png&quot;, &quot;public/images/bell_add.png&quot;, &quot;public/images/bell_delete.png&quot;, &quot;public/images/bell_error.png&quot;, &quot;public/images/bell_go.png&quot;, &quot;public/images/bell_link.png&quot;, &quot;public/images/bin.png&quot;, &quot;public/images/bin_closed.png&quot;, &quot;public/images/bin_empty.gif&quot;, &quot;public/images/bin_empty.png&quot;, &quot;public/images/bin_full.gif&quot;, &quot;public/images/bomb.png&quot;, &quot;public/images/book.png&quot;, &quot;public/images/book_add.png&quot;, &quot;public/images/book_addresses.png&quot;, &quot;public/images/book_delete.png&quot;, &quot;public/images/book_edit.png&quot;, &quot;public/images/book_error.png&quot;, &quot;public/images/book_go.png&quot;, &quot;public/images/book_key.png&quot;, &quot;public/images/book_link.png&quot;, &quot;public/images/book_next.png&quot;, &quot;public/images/book_open.png&quot;, &quot;public/images/book_previous.png&quot;, &quot;public/images/box.png&quot;, &quot;public/images/brick.png&quot;, &quot;public/images/brick_add.png&quot;, &quot;public/images/brick_delete.png&quot;, &quot;public/images/brick_edit.png&quot;, &quot;public/images/brick_error.png&quot;, &quot;public/images/brick_go.png&quot;, &quot;public/images/brick_link.png&quot;, &quot;public/images/bricks.png&quot;, &quot;public/images/briefcase.png&quot;, &quot;public/images/bug.png&quot;, &quot;public/images/bug_add.png&quot;, &quot;public/images/bug_delete.png&quot;, &quot;public/images/bug_edit.png&quot;, &quot;public/images/bug_error.png&quot;, &quot;public/images/bug_go.png&quot;, &quot;public/images/bug_link.png&quot;, &quot;public/images/building.png&quot;, &quot;public/images/building_add.png&quot;, &quot;public/images/building_delete.png&quot;, &quot;public/images/building_edit.png&quot;, &quot;public/images/building_error.png&quot;, &quot;public/images/building_go.png&quot;, &quot;public/images/building_key.png&quot;, &quot;public/images/building_link.png&quot;, &quot;public/images/bullet_add.png&quot;, &quot;public/images/bullet_arrow_bottom.png&quot;, &quot;public/images/bullet_arrow_down.png&quot;, &quot;public/images/bullet_arrow_top.png&quot;, &quot;public/images/bullet_arrow_up.png&quot;, &quot;public/images/bullet_black.png&quot;, &quot;public/images/bullet_blue.png&quot;, &quot;public/images/bullet_delete.png&quot;, &quot;public/images/bullet_disk.png&quot;, &quot;public/images/bullet_error.png&quot;, &quot;public/images/bullet_feed.png&quot;, &quot;public/images/bullet_go.png&quot;, &quot;public/images/bullet_green.png&quot;, &quot;public/images/bullet_key.png&quot;, &quot;public/images/bullet_orange.png&quot;, &quot;public/images/bullet_picture.png&quot;, &quot;public/images/bullet_pink.png&quot;, &quot;public/images/bullet_purple.png&quot;, &quot;public/images/bullet_red.png&quot;, &quot;public/images/bullet_star.png&quot;, &quot;public/images/bullet_toggle_minus.png&quot;, &quot;public/images/bullet_toggle_plus.png&quot;, &quot;public/images/bullet_white.png&quot;, &quot;public/images/bullet_wrench.png&quot;, &quot;public/images/bullet_yellow.png&quot;, &quot;public/images/cake.png&quot;, &quot;public/images/calculator.png&quot;, &quot;public/images/calculator_add.png&quot;, &quot;public/images/calculator_delete.png&quot;, &quot;public/images/calculator_edit.png&quot;, &quot;public/images/calculator_error.png&quot;, &quot;public/images/calculator_link.png&quot;, &quot;public/images/calendar.png&quot;, &quot;public/images/calendar_add.png&quot;, &quot;public/images/calendar_delete.png&quot;, &quot;public/images/calendar_edit.png&quot;, &quot;public/images/calendar_link.png&quot;, &quot;public/images/calendar_view_day.png&quot;, &quot;public/images/calendar_view_month.png&quot;, &quot;public/images/calendar_view_week.png&quot;, &quot;public/images/camera.png&quot;, &quot;public/images/camera_add.png&quot;, &quot;public/images/camera_delete.png&quot;, &quot;public/images/camera_edit.png&quot;, &quot;public/images/camera_error.png&quot;, &quot;public/images/camera_go.png&quot;, &quot;public/images/camera_link.png&quot;, &quot;public/images/camera_small.png&quot;, &quot;public/images/cancel.png&quot;, &quot;public/images/car.png&quot;, &quot;public/images/car_add.png&quot;, &quot;public/images/car_delete.png&quot;, &quot;public/images/cart.png&quot;, &quot;public/images/cart_add.png&quot;, &quot;public/images/cart_delete.png&quot;, &quot;public/images/cart_edit.png&quot;, &quot;public/images/cart_error.png&quot;, &quot;public/images/cart_go.png&quot;, &quot;public/images/cart_put.png&quot;, &quot;public/images/cart_remove.png&quot;, &quot;public/images/cd.png&quot;, &quot;public/images/cd_add.png&quot;, &quot;public/images/cd_burn.png&quot;, &quot;public/images/cd_delete.png&quot;, &quot;public/images/cd_edit.png&quot;, &quot;public/images/cd_eject.png&quot;, &quot;public/images/cd_go.png&quot;, &quot;public/images/chart_bar.png&quot;, &quot;public/images/chart_bar_add.png&quot;, &quot;public/images/chart_bar_delete.png&quot;, &quot;public/images/chart_bar_edit.png&quot;, &quot;public/images/chart_bar_error.png&quot;, &quot;public/images/chart_bar_link.png&quot;, &quot;public/images/chart_curve.png&quot;, &quot;public/images/chart_curve_add.png&quot;, &quot;public/images/chart_curve_delete.png&quot;, &quot;public/images/chart_curve_edit.png&quot;, &quot;public/images/chart_curve_error.png&quot;, &quot;public/images/chart_curve_go.png&quot;, &quot;public/images/chart_curve_link.png&quot;, &quot;public/images/chart_line.png&quot;, &quot;public/images/chart_line_add.png&quot;, &quot;public/images/chart_line_delete.png&quot;, &quot;public/images/chart_line_edit.png&quot;, &quot;public/images/chart_line_error.png&quot;, &quot;public/images/chart_line_link.png&quot;, &quot;public/images/chart_organisation.png&quot;, &quot;public/images/chart_organisation_add.png&quot;, &quot;public/images/chart_organisation_delete.png&quot;, &quot;public/images/chart_pie.png&quot;, &quot;public/images/chart_pie_add.png&quot;, &quot;public/images/chart_pie_delete.png&quot;, &quot;public/images/chart_pie_edit.png&quot;, &quot;public/images/chart_pie_error.png&quot;, &quot;public/images/chart_pie_link.png&quot;, &quot;public/images/clock.png&quot;, &quot;public/images/clock_add.png&quot;, &quot;public/images/clock_delete.png&quot;, &quot;public/images/clock_edit.png&quot;, &quot;public/images/clock_error.png&quot;, &quot;public/images/clock_go.png&quot;, &quot;public/images/clock_link.png&quot;, &quot;public/images/clock_pause.png&quot;, &quot;public/images/clock_play.png&quot;, &quot;public/images/clock_red.png&quot;, &quot;public/images/clock_stop.png&quot;, &quot;public/images/cog.png&quot;, &quot;public/images/cog_add.png&quot;, &quot;public/images/cog_delete.png&quot;, &quot;public/images/cog_edit.png&quot;, &quot;public/images/cog_error.png&quot;, &quot;public/images/cog_go.png&quot;, &quot;public/images/coins.png&quot;, &quot;public/images/coins_add.png&quot;, &quot;public/images/coins_delete.png&quot;, &quot;public/images/collection.png&quot;, &quot;public/images/color_swatch.png&quot;, &quot;public/images/color_wheel.png&quot;, &quot;public/images/column_add.png&quot;, &quot;public/images/column_delete.png&quot;, &quot;public/images/comment.png&quot;, &quot;public/images/comment_add.png&quot;, &quot;public/images/comment_delete.png&quot;, &quot;public/images/comment_edit.png&quot;, &quot;public/images/comments.png&quot;, &quot;public/images/comments_add.png&quot;, &quot;public/images/comments_delete.png&quot;, &quot;public/images/comments_red.png&quot;, &quot;public/images/compress.png&quot;, &quot;public/images/computer.png&quot;, &quot;public/images/computer_add.png&quot;, &quot;public/images/computer_delete.png&quot;, &quot;public/images/computer_edit.png&quot;, &quot;public/images/computer_error.png&quot;, &quot;public/images/computer_go.png&quot;, &quot;public/images/computer_key.png&quot;, &quot;public/images/computer_link.png&quot;, &quot;public/images/connect.png&quot;, &quot;public/images/contrast.png&quot;, &quot;public/images/contrast_decrease.png&quot;, &quot;public/images/contrast_high.png&quot;, &quot;public/images/contrast_increase.png&quot;, &quot;public/images/contrast_low.png&quot;, &quot;public/images/control_eject.png&quot;, &quot;public/images/control_eject_blue.png&quot;, &quot;public/images/control_end.png&quot;, &quot;public/images/control_end_blue.png&quot;, &quot;public/images/control_equalizer.png&quot;, &quot;public/images/control_equalizer_blue.png&quot;, &quot;public/images/control_fastforward.png&quot;, &quot;public/images/control_fastforward_blue.png&quot;, &quot;public/images/control_pause.png&quot;, &quot;public/images/control_pause_blue.png&quot;, &quot;public/images/control_play.png&quot;, &quot;public/images/control_play_blue.png&quot;, &quot;public/images/control_repeat.png&quot;, &quot;public/images/control_repeat_blue.png&quot;, &quot;public/images/control_rewind.png&quot;, &quot;public/images/control_rewind_blue.png&quot;, &quot;public/images/control_start.png&quot;, &quot;public/images/control_start_blue.png&quot;, &quot;public/images/control_stop.png&quot;, &quot;public/images/control_stop_blue.png&quot;, &quot;public/images/controller.png&quot;, &quot;public/images/controller_add.png&quot;, &quot;public/images/controller_delete.png&quot;, &quot;public/images/controller_error.png&quot;, &quot;public/images/creditcards.png&quot;, &quot;public/images/cross.png&quot;, &quot;public/images/css.png&quot;, &quot;public/images/css_add.png&quot;, &quot;public/images/css_delete.png&quot;, &quot;public/images/css_go.png&quot;, &quot;public/images/css_valid.png&quot;, &quot;public/images/cup.png&quot;, &quot;public/images/cup_add.png&quot;, &quot;public/images/cup_delete.png&quot;, &quot;public/images/cup_edit.png&quot;, &quot;public/images/cup_error.png&quot;, &quot;public/images/cup_go.png&quot;, &quot;public/images/cup_key.png&quot;, &quot;public/images/cup_link.png&quot;, &quot;public/images/cursor.png&quot;, &quot;public/images/cut.png&quot;, &quot;public/images/cut_red.png&quot;, &quot;public/images/database.png&quot;, &quot;public/images/database_add.png&quot;, &quot;public/images/database_connect.png&quot;, &quot;public/images/database_delete.png&quot;, &quot;public/images/database_edit.png&quot;, &quot;public/images/database_error.png&quot;, &quot;public/images/database_gear.png&quot;, &quot;public/images/database_go.png&quot;, &quot;public/images/database_key.png&quot;, &quot;public/images/database_lightning.png&quot;, &quot;public/images/database_link.png&quot;, &quot;public/images/database_refresh.png&quot;, &quot;public/images/database_save.png&quot;, &quot;public/images/database_table.png&quot;, &quot;public/images/date.png&quot;, &quot;public/images/date_add.png&quot;, &quot;public/images/date_delete.png&quot;, &quot;public/images/date_edit.png&quot;, &quot;public/images/date_error.png&quot;, &quot;public/images/date_go.png&quot;, &quot;public/images/date_link.png&quot;, &quot;public/images/date_magnify.png&quot;, &quot;public/images/date_next.png&quot;, &quot;public/images/date_previous.png&quot;, &quot;public/images/delete.png&quot;, &quot;public/images/disconnect.png&quot;, &quot;public/images/disk.png&quot;, &quot;public/images/disk_multiple.png&quot;, &quot;public/images/door.png&quot;, &quot;public/images/door_in.png&quot;, &quot;public/images/door_open.png&quot;, &quot;public/images/door_out.png&quot;, &quot;public/images/drink.png&quot;, &quot;public/images/drink_empty.png&quot;, &quot;public/images/drive.png&quot;, &quot;public/images/drive_add.png&quot;, &quot;public/images/drive_burn.png&quot;, &quot;public/images/drive_cd.png&quot;, &quot;public/images/drive_cd_empty.png&quot;, &quot;public/images/drive_delete.png&quot;, &quot;public/images/drive_disk.png&quot;, &quot;public/images/drive_edit.png&quot;, &quot;public/images/drive_error.png&quot;, &quot;public/images/drive_go.png&quot;, &quot;public/images/drive_key.png&quot;, &quot;public/images/drive_link.png&quot;, &quot;public/images/drive_magnify.png&quot;, &quot;public/images/drive_network.png&quot;, &quot;public/images/drive_rename.png&quot;, &quot;public/images/drive_user.png&quot;, &quot;public/images/drive_web.png&quot;, &quot;public/images/dvd.png&quot;, &quot;public/images/dvd_add.png&quot;, &quot;public/images/dvd_delete.png&quot;, &quot;public/images/dvd_edit.png&quot;, &quot;public/images/dvd_error.png&quot;, &quot;public/images/dvd_go.png&quot;, &quot;public/images/dvd_key.png&quot;, &quot;public/images/dvd_link.png&quot;, &quot;public/images/email.png&quot;, &quot;public/images/email_add.png&quot;, &quot;public/images/email_attach.png&quot;, &quot;public/images/email_delete.png&quot;, &quot;public/images/email_edit.png&quot;, &quot;public/images/email_error.png&quot;, &quot;public/images/email_go.png&quot;, &quot;public/images/email_link.png&quot;, &quot;public/images/email_open.png&quot;, &quot;public/images/email_open_image.png&quot;, &quot;public/images/emoticon_evilgrin.png&quot;, &quot;public/images/emoticon_grin.png&quot;, &quot;public/images/emoticon_happy.png&quot;, &quot;public/images/emoticon_smile.png&quot;, &quot;public/images/emoticon_surprised.png&quot;, &quot;public/images/emoticon_tongue.png&quot;, &quot;public/images/emoticon_unhappy.png&quot;, &quot;public/images/emoticon_waii.png&quot;, &quot;public/images/emoticon_wink.png&quot;, &quot;public/images/error.png&quot;, &quot;public/images/error_add.png&quot;, &quot;public/images/error_delete.png&quot;, &quot;public/images/error_go.png&quot;, &quot;public/images/exclamation.png&quot;, &quot;public/images/ext&quot;, &quot;public/images/ext/contact.png&quot;, &quot;public/images/ext/contact_pv.png&quot;, &quot;public/images/ext/doc.png&quot;, &quot;public/images/ext/doc_tiny.png&quot;, &quot;public/images/ext/jpg.png&quot;, &quot;public/images/ext/jpg_tiny.png&quot;, &quot;public/images/ext/other.png&quot;, &quot;public/images/ext/other_pv.png&quot;, &quot;public/images/ext/other_tiny.png&quot;, &quot;public/images/ext/page.png&quot;, &quot;public/images/ext/page_pv.png&quot;, &quot;public/images/ext/page_tiny.png&quot;, &quot;public/images/ext/pdf.png&quot;, &quot;public/images/ext/pdf_pv.png&quot;, &quot;public/images/ext/pdf_tiny.png&quot;, &quot;public/images/ext/png.png&quot;, &quot;public/images/ext/png_tiny.png&quot;, &quot;public/images/ext/post.png&quot;, &quot;public/images/ext/post_pv.png&quot;, &quot;public/images/ext/post_tiny.png&quot;, &quot;public/images/ext/project.png&quot;, &quot;public/images/ext/project_pv.png&quot;, &quot;public/images/ext/project_tiny.png&quot;, &quot;public/images/ext/rtf.png&quot;, &quot;public/images/ext/rtf_tiny.png&quot;, &quot;public/images/ext/tag.png&quot;, &quot;public/images/ext/tag_pv.png&quot;, &quot;public/images/ext/xls.png&quot;, &quot;public/images/ext/xls_tiny.png&quot;, &quot;public/images/ext/zip.png&quot;, &quot;public/images/ext/zip_tiny.png&quot;, &quot;public/images/eye.png&quot;, &quot;public/images/feed.png&quot;, &quot;public/images/feed_add.png&quot;, &quot;public/images/feed_delete.png&quot;, &quot;public/images/feed_disk.png&quot;, &quot;public/images/feed_edit.png&quot;, &quot;public/images/feed_error.png&quot;, &quot;public/images/feed_go.png&quot;, &quot;public/images/feed_key.png&quot;, &quot;public/images/feed_link.png&quot;, &quot;public/images/feed_magnify.png&quot;, &quot;public/images/female.png&quot;, &quot;public/images/film.png&quot;, &quot;public/images/film_add.png&quot;, &quot;public/images/film_delete.png&quot;, &quot;public/images/film_edit.png&quot;, &quot;public/images/film_error.png&quot;, &quot;public/images/film_go.png&quot;, &quot;public/images/film_key.png&quot;, &quot;public/images/film_link.png&quot;, &quot;public/images/film_save.png&quot;, &quot;public/images/find.png&quot;, &quot;public/images/flag_blue.png&quot;, &quot;public/images/flag_green.png&quot;, &quot;public/images/flag_orange.png&quot;, &quot;public/images/flag_pink.png&quot;, &quot;public/images/flag_purple.png&quot;, &quot;public/images/flag_red.png&quot;, &quot;public/images/flag_yellow.png&quot;, &quot;public/images/folder.png&quot;, &quot;public/images/folder_add.png&quot;, &quot;public/images/folder_bell.png&quot;, &quot;public/images/folder_brick.png&quot;, &quot;public/images/folder_bug.png&quot;, &quot;public/images/folder_camera.png&quot;, &quot;public/images/folder_database.png&quot;, &quot;public/images/folder_delete.png&quot;, &quot;public/images/folder_edit.png&quot;, &quot;public/images/folder_error.png&quot;, &quot;public/images/folder_explore.png&quot;, &quot;public/images/folder_feed.png&quot;, &quot;public/images/folder_find.png&quot;, &quot;public/images/folder_go.png&quot;, &quot;public/images/folder_heart.png&quot;, &quot;public/images/folder_image.png&quot;, &quot;public/images/folder_key.png&quot;, &quot;public/images/folder_lightbulb.png&quot;, &quot;public/images/folder_link.png&quot;, &quot;public/images/folder_magnify.png&quot;, &quot;public/images/folder_page.png&quot;, &quot;public/images/folder_page_white.png&quot;, &quot;public/images/folder_palette.png&quot;, &quot;public/images/folder_picture.png&quot;, &quot;public/images/folder_star.png&quot;, &quot;public/images/folder_table.png&quot;, &quot;public/images/folder_user.png&quot;, &quot;public/images/folder_wrench.png&quot;, &quot;public/images/font.png&quot;, &quot;public/images/font_add.png&quot;, &quot;public/images/font_delete.png&quot;, &quot;public/images/font_go.png&quot;, &quot;public/images/group.png&quot;, &quot;public/images/group_add.png&quot;, &quot;public/images/group_admin.png&quot;, &quot;public/images/group_delete.png&quot;, &quot;public/images/group_edit.png&quot;, &quot;public/images/group_error.png&quot;, &quot;public/images/group_gear.png&quot;, &quot;public/images/group_go.png&quot;, &quot;public/images/group_key.png&quot;, &quot;public/images/group_link.png&quot;, &quot;public/images/group_pub.png&quot;, &quot;public/images/group_site.png&quot;, &quot;public/images/heart.png&quot;, &quot;public/images/heart_add.png&quot;, &quot;public/images/heart_delete.png&quot;, &quot;public/images/help.png&quot;, &quot;public/images/home.png&quot;, &quot;public/images/hourglass.png&quot;, &quot;public/images/hourglass_add.png&quot;, &quot;public/images/hourglass_delete.png&quot;, &quot;public/images/hourglass_go.png&quot;, &quot;public/images/hourglass_link.png&quot;, &quot;public/images/house.png&quot;, &quot;public/images/house_go.png&quot;, &quot;public/images/house_link.png&quot;, &quot;public/images/html.png&quot;, &quot;public/images/html_add.png&quot;, &quot;public/images/html_delete.png&quot;, &quot;public/images/html_go.png&quot;, &quot;public/images/html_valid.png&quot;, &quot;public/images/image.png&quot;, &quot;public/images/image_add.png&quot;, &quot;public/images/image_delete.png&quot;, &quot;public/images/image_edit.png&quot;, &quot;public/images/image_link.png&quot;, &quot;public/images/images.png&quot;, &quot;public/images/img_not_found.png&quot;, &quot;public/images/information.png&quot;, &quot;public/images/ipod.png&quot;, &quot;public/images/ipod_cast.png&quot;, &quot;public/images/ipod_cast_add.png&quot;, &quot;public/images/ipod_cast_delete.png&quot;, &quot;public/images/ipod_sound.png&quot;, &quot;public/images/joystick.png&quot;, &quot;public/images/joystick_add.png&quot;, &quot;public/images/joystick_delete.png&quot;, &quot;public/images/joystick_error.png&quot;, &quot;public/images/key.png&quot;, &quot;public/images/key_add.png&quot;, &quot;public/images/key_delete.png&quot;, &quot;public/images/key_go.png&quot;, &quot;public/images/keyboard.png&quot;, &quot;public/images/keyboard_add.png&quot;, &quot;public/images/keyboard_delete.png&quot;, &quot;public/images/keyboard_magnify.png&quot;, &quot;public/images/latex_error.png&quot;, &quot;public/images/layers.png&quot;, &quot;public/images/layout.png&quot;, &quot;public/images/layout_add.png&quot;, &quot;public/images/layout_content.png&quot;, &quot;public/images/layout_delete.png&quot;, &quot;public/images/layout_edit.png&quot;, &quot;public/images/layout_error.png&quot;, &quot;public/images/layout_header.png&quot;, &quot;public/images/layout_link.png&quot;, &quot;public/images/layout_sidebar.png&quot;, &quot;public/images/lightbulb.png&quot;, &quot;public/images/lightbulb_add.png&quot;, &quot;public/images/lightbulb_delete.png&quot;, &quot;public/images/lightbulb_off.png&quot;, &quot;public/images/lightning.png&quot;, &quot;public/images/lightning_add.png&quot;, &quot;public/images/lightning_delete.png&quot;, &quot;public/images/lightning_go.png&quot;, &quot;public/images/link.png&quot;, &quot;public/images/link_add.png&quot;, &quot;public/images/link_break.png&quot;, &quot;public/images/link_delete.png&quot;, &quot;public/images/link_edit.png&quot;, &quot;public/images/link_error.png&quot;, &quot;public/images/link_go.png&quot;, &quot;public/images/lock.png&quot;, &quot;public/images/lock_add.png&quot;, &quot;public/images/lock_break.png&quot;, &quot;public/images/lock_delete.png&quot;, &quot;public/images/lock_edit.png&quot;, &quot;public/images/lock_go.png&quot;, &quot;public/images/lock_open.png&quot;, &quot;public/images/lorry.png&quot;, &quot;public/images/lorry_add.png&quot;, &quot;public/images/lorry_delete.png&quot;, &quot;public/images/lorry_error.png&quot;, &quot;public/images/lorry_flatbed.png&quot;, &quot;public/images/lorry_go.png&quot;, &quot;public/images/lorry_link.png&quot;, &quot;public/images/magifier_zoom_out.png&quot;, &quot;public/images/magnifier.png&quot;, &quot;public/images/magnifier_zoom_in.png&quot;, &quot;public/images/male.png&quot;, &quot;public/images/map.png&quot;, &quot;public/images/map_add.png&quot;, &quot;public/images/map_delete.png&quot;, &quot;public/images/map_edit.png&quot;, &quot;public/images/map_go.png&quot;, &quot;public/images/map_magnify.png&quot;, &quot;public/images/medal_bronze_1.png&quot;, &quot;public/images/medal_bronze_2.png&quot;, &quot;public/images/medal_bronze_3.png&quot;, &quot;public/images/medal_bronze_add.png&quot;, &quot;public/images/medal_bronze_delete.png&quot;, &quot;public/images/medal_gold_1.png&quot;, &quot;public/images/medal_gold_2.png&quot;, &quot;public/images/medal_gold_3.png&quot;, &quot;public/images/medal_gold_add.png&quot;, &quot;public/images/medal_gold_delete.png&quot;, &quot;public/images/medal_silver_1.png&quot;, &quot;public/images/medal_silver_2.png&quot;, &quot;public/images/medal_silver_3.png&quot;, &quot;public/images/medal_silver_add.png&quot;, &quot;public/images/medal_silver_delete.png&quot;, &quot;public/images/money.png&quot;, &quot;public/images/money_add.png&quot;, &quot;public/images/money_delete.png&quot;, &quot;public/images/money_dollar.png&quot;, &quot;public/images/money_euro.png&quot;, &quot;public/images/money_pound.png&quot;, &quot;public/images/money_yen.png&quot;, &quot;public/images/monitor.png&quot;, &quot;public/images/monitor_add.png&quot;, &quot;public/images/monitor_delete.png&quot;, &quot;public/images/monitor_edit.png&quot;, &quot;public/images/monitor_error.png&quot;, &quot;public/images/monitor_go.png&quot;, &quot;public/images/monitor_lightning.png&quot;, &quot;public/images/monitor_link.png&quot;, &quot;public/images/mouse.png&quot;, &quot;public/images/mouse_add.png&quot;, &quot;public/images/mouse_delete.png&quot;, &quot;public/images/mouse_error.png&quot;, &quot;public/images/music.png&quot;, &quot;public/images/new.png&quot;, &quot;public/images/newspaper.png&quot;, &quot;public/images/newspaper_add.png&quot;, &quot;public/images/newspaper_delete.png&quot;, &quot;public/images/newspaper_go.png&quot;, &quot;public/images/newspaper_link.png&quot;, &quot;public/images/note.png&quot;, &quot;public/images/note_add.png&quot;, &quot;public/images/note_delete.png&quot;, &quot;public/images/note_edit.png&quot;, &quot;public/images/note_error.png&quot;, &quot;public/images/note_go.png&quot;, &quot;public/images/overlays.png&quot;, &quot;public/images/package.png&quot;, &quot;public/images/package_add.png&quot;, &quot;public/images/package_delete.png&quot;, &quot;public/images/package_go.png&quot;, &quot;public/images/package_green.png&quot;, &quot;public/images/package_link.png&quot;, &quot;public/images/page.png&quot;, &quot;public/images/page_add.png&quot;, &quot;public/images/page_attach.png&quot;, &quot;public/images/page_code.png&quot;, &quot;public/images/page_copy.png&quot;, &quot;public/images/page_delete.png&quot;, &quot;public/images/page_edit.png&quot;, &quot;public/images/page_error.png&quot;, &quot;public/images/page_excel.png&quot;, &quot;public/images/page_find.png&quot;, &quot;public/images/page_gear.png&quot;, &quot;public/images/page_go.png&quot;, &quot;public/images/page_green.png&quot;, &quot;public/images/page_key.png&quot;, &quot;public/images/page_lightning.png&quot;, &quot;public/images/page_link.png&quot;, &quot;public/images/page_paintbrush.png&quot;, &quot;public/images/page_paste.png&quot;, &quot;public/images/page_red.png&quot;, &quot;public/images/page_refresh.png&quot;, &quot;public/images/page_save.png&quot;, &quot;public/images/page_white.png&quot;, &quot;public/images/page_white_acrobat.png&quot;, &quot;public/images/page_white_actionscript.png&quot;, &quot;public/images/page_white_add.png&quot;, &quot;public/images/page_white_c.png&quot;, &quot;public/images/page_white_camera.png&quot;, &quot;public/images/page_white_cd.png&quot;, &quot;public/images/page_white_code.png&quot;, &quot;public/images/page_white_code_red.png&quot;, &quot;public/images/page_white_coldfusion.png&quot;, &quot;public/images/page_white_compressed.png&quot;, &quot;public/images/page_white_copy.png&quot;, &quot;public/images/page_white_cplusplus.png&quot;, &quot;public/images/page_white_csharp.png&quot;, &quot;public/images/page_white_cup.png&quot;, &quot;public/images/page_white_database.png&quot;, &quot;public/images/page_white_delete.png&quot;, &quot;public/images/page_white_dvd.png&quot;, &quot;public/images/page_white_edit.png&quot;, &quot;public/images/page_white_error.png&quot;, &quot;public/images/page_white_excel.png&quot;, &quot;public/images/page_white_find.png&quot;, &quot;public/images/page_white_flash.png&quot;, &quot;public/images/page_white_freehand.png&quot;, &quot;public/images/page_white_gear.png&quot;, &quot;public/images/page_white_get.png&quot;, &quot;public/images/page_white_go.png&quot;, &quot;public/images/page_white_h.png&quot;, &quot;public/images/page_white_horizontal.png&quot;, &quot;public/images/page_white_key.png&quot;, &quot;public/images/page_white_lightning.png&quot;, &quot;public/images/page_white_link.png&quot;, &quot;public/images/page_white_magnify.png&quot;, &quot;public/images/page_white_medal.png&quot;, &quot;public/images/page_white_office.png&quot;, &quot;public/images/page_white_paint.png&quot;, &quot;public/images/page_white_paintbrush.png&quot;, &quot;public/images/page_white_paste.png&quot;, &quot;public/images/page_white_php.png&quot;, &quot;public/images/page_white_picture.png&quot;, &quot;public/images/page_white_powerpoint.png&quot;, &quot;public/images/page_white_put.png&quot;, &quot;public/images/page_white_ruby.png&quot;, &quot;public/images/page_white_stack.png&quot;, &quot;public/images/page_white_star.png&quot;, &quot;public/images/page_white_swoosh.png&quot;, &quot;public/images/page_white_text.png&quot;, &quot;public/images/page_white_text_width.png&quot;, &quot;public/images/page_white_tux.png&quot;, &quot;public/images/page_white_vector.png&quot;, &quot;public/images/page_white_visualstudio.png&quot;, &quot;public/images/page_white_width.png&quot;, &quot;public/images/page_white_word.png&quot;, &quot;public/images/page_white_world.png&quot;, &quot;public/images/page_white_wrench.png&quot;, &quot;public/images/page_white_zip.png&quot;, &quot;public/images/page_word.png&quot;, &quot;public/images/page_world.png&quot;, &quot;public/images/paintbrush.png&quot;, &quot;public/images/paintcan.png&quot;, &quot;public/images/palette.png&quot;, &quot;public/images/paste_plain.png&quot;, &quot;public/images/paste_word.png&quot;, &quot;public/images/pencil.png&quot;, &quot;public/images/pencil_add.png&quot;, &quot;public/images/pencil_delete.png&quot;, &quot;public/images/pencil_go.png&quot;, &quot;public/images/phone.png&quot;, &quot;public/images/phone_add.png&quot;, &quot;public/images/phone_delete.png&quot;, &quot;public/images/phone_sound.png&quot;, &quot;public/images/photo.png&quot;, &quot;public/images/photo_add.png&quot;, &quot;public/images/photo_blue.png&quot;, &quot;public/images/photo_delete.png&quot;, &quot;public/images/photo_grey.png&quot;, &quot;public/images/photo_link.png&quot;, &quot;public/images/photos.png&quot;, &quot;public/images/picture.png&quot;, &quot;public/images/picture_add.png&quot;, &quot;public/images/picture_delete.png&quot;, &quot;public/images/picture_edit.png&quot;, &quot;public/images/picture_empty.png&quot;, &quot;public/images/picture_error.png&quot;, &quot;public/images/picture_go.png&quot;, &quot;public/images/picture_key.png&quot;, &quot;public/images/picture_link.png&quot;, &quot;public/images/picture_save.png&quot;, &quot;public/images/pictures.png&quot;, &quot;public/images/pilcrow.png&quot;, &quot;public/images/pill.png&quot;, &quot;public/images/pill_add.png&quot;, &quot;public/images/pill_delete.png&quot;, &quot;public/images/pill_go.png&quot;, &quot;public/images/plugin.png&quot;, &quot;public/images/plugin_add.png&quot;, &quot;public/images/plugin_delete.png&quot;, &quot;public/images/plugin_disabled.png&quot;, &quot;public/images/plugin_edit.png&quot;, &quot;public/images/plugin_error.png&quot;, &quot;public/images/plugin_go.png&quot;, &quot;public/images/plugin_link.png&quot;, &quot;public/images/printer.png&quot;, &quot;public/images/printer_add.png&quot;, &quot;public/images/printer_delete.png&quot;, &quot;public/images/printer_empty.png&quot;, &quot;public/images/printer_error.png&quot;, &quot;public/images/project.png&quot;, &quot;public/images/rails.png&quot;, &quot;public/images/rainbow.png&quot;, &quot;public/images/report.png&quot;, &quot;public/images/report_add.png&quot;, &quot;public/images/report_delete.png&quot;, &quot;public/images/report_disk.png&quot;, &quot;public/images/report_edit.png&quot;, &quot;public/images/report_go.png&quot;, &quot;public/images/report_key.png&quot;, &quot;public/images/report_link.png&quot;, &quot;public/images/report_magnify.png&quot;, &quot;public/images/report_picture.png&quot;, &quot;public/images/report_user.png&quot;, &quot;public/images/report_word.png&quot;, &quot;public/images/resultset_first.png&quot;, &quot;public/images/resultset_last.png&quot;, &quot;public/images/resultset_next.png&quot;, &quot;public/images/resultset_previous.png&quot;, &quot;public/images/rosette.png&quot;, &quot;public/images/row_add.png&quot;, &quot;public/images/row_delete.png&quot;, &quot;public/images/rss.png&quot;, &quot;public/images/rss_add.png&quot;, &quot;public/images/rss_delete.png&quot;, &quot;public/images/rss_go.png&quot;, &quot;public/images/rss_valid.png&quot;, &quot;public/images/ruby.png&quot;, &quot;public/images/ruby_add.png&quot;, &quot;public/images/ruby_delete.png&quot;, &quot;public/images/ruby_gear.png&quot;, &quot;public/images/ruby_get.png&quot;, &quot;public/images/ruby_go.png&quot;, &quot;public/images/ruby_key.png&quot;, &quot;public/images/ruby_link.png&quot;, &quot;public/images/ruby_put.png&quot;, &quot;public/images/script.png&quot;, &quot;public/images/script_add.png&quot;, &quot;public/images/script_code.png&quot;, &quot;public/images/script_code_red.png&quot;, &quot;public/images/script_delete.png&quot;, &quot;public/images/script_edit.png&quot;, &quot;public/images/script_error.png&quot;, &quot;public/images/script_gear.png&quot;, &quot;public/images/script_go.png&quot;, &quot;public/images/script_key.png&quot;, &quot;public/images/script_lightning.png&quot;, &quot;public/images/script_link.png&quot;, &quot;public/images/script_palette.png&quot;, &quot;public/images/script_save.png&quot;, &quot;public/images/server.png&quot;, &quot;public/images/server_add.png&quot;, &quot;public/images/server_chart.png&quot;, &quot;public/images/server_compressed.png&quot;, &quot;public/images/server_connect.png&quot;, &quot;public/images/server_database.png&quot;, &quot;public/images/server_delete.png&quot;, &quot;public/images/server_edit.png&quot;, &quot;public/images/server_error.png&quot;, &quot;public/images/server_go.png&quot;, &quot;public/images/server_key.png&quot;, &quot;public/images/server_lightning.png&quot;, &quot;public/images/server_link.png&quot;, &quot;public/images/server_uncompressed.png&quot;, &quot;public/images/shading.png&quot;, &quot;public/images/shape_align_bottom.png&quot;, &quot;public/images/shape_align_center.png&quot;, &quot;public/images/shape_align_left.png&quot;, &quot;public/images/shape_align_middle.png&quot;, &quot;public/images/shape_align_right.png&quot;, &quot;public/images/shape_align_top.png&quot;, &quot;public/images/shape_flip_horizontal.png&quot;, &quot;public/images/shape_flip_vertical.png&quot;, &quot;public/images/shape_group.png&quot;, &quot;public/images/shape_handles.png&quot;, &quot;public/images/shape_move_back.png&quot;, &quot;public/images/shape_move_backwards.png&quot;, &quot;public/images/shape_move_forwards.png&quot;, &quot;public/images/shape_move_front.png&quot;, &quot;public/images/shape_rotate_anticlockwise.png&quot;, &quot;public/images/shape_rotate_clockwise.png&quot;, &quot;public/images/shape_square.png&quot;, &quot;public/images/shape_square_add.png&quot;, &quot;public/images/shape_square_delete.png&quot;, &quot;public/images/shape_square_edit.png&quot;, &quot;public/images/shape_square_error.png&quot;, &quot;public/images/shape_square_go.png&quot;, &quot;public/images/shape_square_key.png&quot;, &quot;public/images/shape_square_link.png&quot;, &quot;public/images/shape_ungroup.png&quot;, &quot;public/images/shield.png&quot;, &quot;public/images/shield_add.png&quot;, &quot;public/images/shield_delete.png&quot;, &quot;public/images/shield_go.png&quot;, &quot;public/images/silk.html&quot;, &quot;public/images/sitemap.png&quot;, &quot;public/images/sitemap_color.png&quot;, &quot;public/images/sound.png&quot;, &quot;public/images/sound_add.png&quot;, &quot;public/images/sound_delete.png&quot;, &quot;public/images/sound_low.png&quot;, &quot;public/images/sound_mute.png&quot;, &quot;public/images/sound_none.png&quot;, &quot;public/images/spellcheck.png&quot;, &quot;public/images/sport_8ball.png&quot;, &quot;public/images/sport_basketball.png&quot;, &quot;public/images/sport_football.png&quot;, &quot;public/images/sport_golf.png&quot;, &quot;public/images/sport_raquet.png&quot;, &quot;public/images/sport_shuttlecock.png&quot;, &quot;public/images/sport_soccer.png&quot;, &quot;public/images/sport_tennis.png&quot;, &quot;public/images/star.png&quot;, &quot;public/images/status_away.png&quot;, &quot;public/images/status_busy.png&quot;, &quot;public/images/status_offline.png&quot;, &quot;public/images/status_online.png&quot;, &quot;public/images/stop.png&quot;, &quot;public/images/style.png&quot;, &quot;public/images/style_add.png&quot;, &quot;public/images/style_delete.png&quot;, &quot;public/images/style_edit.png&quot;, &quot;public/images/style_go.png&quot;, &quot;public/images/sum.png&quot;, &quot;public/images/swf&quot;, &quot;public/images/swf/xspf&quot;, &quot;public/images/swf/xspf/com&quot;, &quot;public/images/swf/xspf/com/zuardi&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/MusicButton.as&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/MusicPlayer.as&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/Playlist.as&quot;, &quot;public/images/swf/xspf/com/zuardi/musicplayer/ProgressiveSlider.as&quot;, &quot;public/images/swf/xspf/license.txt&quot;, &quot;public/images/swf/xspf/Main.as&quot;, &quot;public/images/swf/xspf/musicplayer.swf&quot;, &quot;public/images/swf/xspf/musicplayer_f6.swf&quot;, &quot;public/images/swf/xspf/musicplayerbtn.fla&quot;, &quot;public/images/swf/xspf/parameters.as&quot;, &quot;public/images/tab.png&quot;, &quot;public/images/tab_add.png&quot;, &quot;public/images/tab_delete.png&quot;, &quot;public/images/tab_edit.png&quot;, &quot;public/images/tab_go.png&quot;, &quot;public/images/table.png&quot;, &quot;public/images/table_add.png&quot;, &quot;public/images/table_delete.png&quot;, &quot;public/images/table_edit.png&quot;, &quot;public/images/table_error.png&quot;, &quot;public/images/table_gear.png&quot;, &quot;public/images/table_go.png&quot;, &quot;public/images/table_key.png&quot;, &quot;public/images/table_lightning.png&quot;, &quot;public/images/table_link.png&quot;, &quot;public/images/table_multiple.png&quot;, &quot;public/images/table_refresh.png&quot;, &quot;public/images/table_relationship.png&quot;, &quot;public/images/table_row_delete.png&quot;, &quot;public/images/table_row_insert.png&quot;, &quot;public/images/table_save.png&quot;, &quot;public/images/table_sort.png&quot;, &quot;public/images/tag.png&quot;, &quot;public/images/tag_blue.png&quot;, &quot;public/images/tag_blue_add.png&quot;, &quot;public/images/tag_blue_delete.png&quot;, &quot;public/images/tag_blue_edit.png&quot;, &quot;public/images/tag_green.png&quot;, &quot;public/images/tag_orange.png&quot;, &quot;public/images/tag_pink.png&quot;, &quot;public/images/tag_purple.png&quot;, &quot;public/images/tag_red.png&quot;, &quot;public/images/tag_yellow.png&quot;, &quot;public/images/target.png&quot;, &quot;public/images/telephone.png&quot;, &quot;public/images/telephone_add.png&quot;, &quot;public/images/telephone_delete.png&quot;, &quot;public/images/telephone_edit.png&quot;, &quot;public/images/telephone_error.png&quot;, &quot;public/images/telephone_go.png&quot;, &quot;public/images/telephone_key.png&quot;, &quot;public/images/telephone_link.png&quot;, &quot;public/images/television.png&quot;, &quot;public/images/television_add.png&quot;, &quot;public/images/television_delete.png&quot;, &quot;public/images/text_align_center.png&quot;, &quot;public/images/text_align_justify.png&quot;, &quot;public/images/text_align_left.png&quot;, &quot;public/images/text_align_right.png&quot;, &quot;public/images/text_allcaps.png&quot;, &quot;public/images/text_bold.png&quot;, &quot;public/images/text_columns.png&quot;, &quot;public/images/text_dropcaps.png&quot;, &quot;public/images/text_heading_1.png&quot;, &quot;public/images/text_heading_2.png&quot;, &quot;public/images/text_heading_3.png&quot;, &quot;public/images/text_heading_4.png&quot;, &quot;public/images/text_heading_5.png&quot;, &quot;public/images/text_heading_6.png&quot;, &quot;public/images/text_horizontalrule.png&quot;, &quot;public/images/text_indent.png&quot;, &quot;public/images/text_indent_remove.png&quot;, &quot;public/images/text_italic.png&quot;, &quot;public/images/text_kerning.png&quot;, &quot;public/images/text_letter_omega.png&quot;, &quot;public/images/text_letterspacing.png&quot;, &quot;public/images/text_linespacing.png&quot;, &quot;public/images/text_list_bullets.png&quot;, &quot;public/images/text_list_numbers.png&quot;, &quot;public/images/text_lowercase.png&quot;, &quot;public/images/text_padding_bottom.png&quot;, &quot;public/images/text_padding_left.png&quot;, &quot;public/images/text_padding_right.png&quot;, &quot;public/images/text_padding_top.png&quot;, &quot;public/images/text_replace.png&quot;, &quot;public/images/text_signature.png&quot;, &quot;public/images/text_smallcaps.png&quot;, &quot;public/images/text_strikethrough.png&quot;, &quot;public/images/text_subscript.png&quot;, &quot;public/images/text_superscript.png&quot;, &quot;public/images/text_underline.png&quot;, &quot;public/images/text_uppercase.png&quot;, &quot;public/images/textfield.png&quot;, &quot;public/images/textfield_add.png&quot;, &quot;public/images/textfield_delete.png&quot;, &quot;public/images/textfield_key.png&quot;, &quot;public/images/textfield_rename.png&quot;, &quot;public/images/thumb_down.png&quot;, &quot;public/images/thumb_up.png&quot;, &quot;public/images/tick.png&quot;, &quot;public/images/time.png&quot;, &quot;public/images/time_add.png&quot;, &quot;public/images/time_delete.png&quot;, &quot;public/images/time_go.png&quot;, &quot;public/images/timeline_marker.png&quot;, &quot;public/images/transmit.png&quot;, &quot;public/images/transmit_add.png&quot;, &quot;public/images/transmit_blue.png&quot;, &quot;public/images/transmit_delete.png&quot;, &quot;public/images/transmit_edit.png&quot;, &quot;public/images/transmit_error.png&quot;, &quot;public/images/transmit_go.png&quot;, &quot;public/images/tux.png&quot;, &quot;public/images/user.png&quot;, &quot;public/images/user_add.png&quot;, &quot;public/images/user_admin.png&quot;, &quot;public/images/user_comment.png&quot;, &quot;public/images/user_delete.png&quot;, &quot;public/images/user_edit.png&quot;, &quot;public/images/user_female.png&quot;, &quot;public/images/user_go.png&quot;, &quot;public/images/user_gray.png&quot;, &quot;public/images/user_green.png&quot;, &quot;public/images/user_orange.png&quot;, &quot;public/images/user_pub.png&quot;, &quot;public/images/user_red.png&quot;, &quot;public/images/user_su.png&quot;, &quot;public/images/user_suit.png&quot;, &quot;public/images/validate.png&quot;, &quot;public/images/valider.png&quot;, &quot;public/images/vcard.png&quot;, &quot;public/images/vcard_add.png&quot;, &quot;public/images/vcard_delete.png&quot;, &quot;public/images/vcard_edit.png&quot;, &quot;public/images/vector.png&quot;, &quot;public/images/vector_add.png&quot;, &quot;public/images/vector_delete.png&quot;, &quot;public/images/wand.png&quot;, &quot;public/images/weather_clouds.png&quot;, &quot;public/images/weather_cloudy.png&quot;, &quot;public/images/weather_lightning.png&quot;, &quot;public/images/weather_rain.png&quot;, &quot;public/images/weather_snow.png&quot;, &quot;public/images/weather_sun.png&quot;, &quot;public/images/webcam.png&quot;, &quot;public/images/webcam_add.png&quot;, &quot;public/images/webcam_delete.png&quot;, &quot;public/images/webcam_error.png&quot;, &quot;public/images/world.png&quot;, &quot;public/images/world_add.png&quot;, &quot;public/images/world_delete.png&quot;, &quot;public/images/world_edit.png&quot;, &quot;public/images/world_go.png&quot;, &quot;public/images/world_link.png&quot;, &quot;public/images/wrench.png&quot;, &quot;public/images/wrench_orange.png&quot;, &quot;public/images/xhtml.png&quot;, &quot;public/images/xhtml_add.png&quot;, &quot;public/images/xhtml_delete.png&quot;, &quot;public/images/xhtml_go.png&quot;, &quot;public/images/xhtml_valid.png&quot;, &quot;public/images/zoom.png&quot;, &quot;public/images/zoom_in.png&quot;, &quot;public/images/zoom_out.png&quot;, &quot;public/img&quot;, &quot;public/img/logo.png&quot;, &quot;public/javascripts&quot;, &quot;public/javascripts/application.js&quot;, &quot;public/javascripts/builder.js&quot;, &quot;public/javascripts/controls.js&quot;, &quot;public/javascripts/dragdrop.js&quot;, &quot;public/javascripts/effects.js&quot;, &quot;public/javascripts/prototype.js&quot;, &quot;public/javascripts/scriptaculous.js&quot;, &quot;public/javascripts/slider.js&quot;, &quot;public/javascripts/sound.js&quot;, &quot;public/javascripts/tablekit.js&quot;, &quot;public/javascripts/unittest.js&quot;, &quot;public/javascripts/upload-progress.js&quot;, &quot;public/javascripts/zena.js&quot;, &quot;public/robots.txt&quot;, &quot;public/stylesheets&quot;, &quot;public/stylesheets/admin.css&quot;, &quot;public/stylesheets/calendar.css&quot;, &quot;public/stylesheets/code.css&quot;, &quot;public/stylesheets/comment.css&quot;, &quot;public/stylesheets/csshover2.htc&quot;, &quot;public/stylesheets/default.css&quot;, &quot;public/stylesheets/popup.css&quot;, &quot;public/stylesheets/reset.css&quot;, &quot;public/stylesheets/search.css&quot;, &quot;public/stylesheets/upload-progress.css&quot;, &quot;public/stylesheets/wiki.css&quot;, &quot;public/stylesheets/zen.css&quot;, &quot;public/stylesheets/zena.css&quot;, &quot;rails/init.rb&quot;, &quot;vendor/apache_upload&quot;, &quot;vendor/apache_upload/mod_upload_progress.c&quot;, &quot;vendor/bricks&quot;, &quot;vendor/bricks/20070122-172926.txt&quot;, &quot;vendor/plugins&quot;, &quot;vendor/plugins/ar_mysql_full_text&quot;, &quot;vendor/plugins/ar_mysql_full_text/init.rb&quot;, &quot;vendor/plugins/ar_mysql_full_text/lib&quot;, &quot;vendor/plugins/ar_mysql_full_text/lib/ar_mysql_full_text.rb&quot;, &quot;vendor/plugins/ar_mysql_full_text/README&quot;, &quot;vendor/plugins/gettext_i18n_rails&quot;, &quot;vendor/plugins/gettext_i18n_rails/init.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/action_controller.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/active_record.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/backend.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/haml_parser.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/i18n_hacks.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/model_attributes_finder.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails/ruby_gettext_extractor.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/lib/gettext_i18n_rails.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/Rakefile&quot;, &quot;vendor/plugins/gettext_i18n_rails/README.markdown&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/action_controller_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/active_record_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails/backend_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/gettext_i18n_rails_spec.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/spec/spec_helper.rb&quot;, &quot;vendor/plugins/gettext_i18n_rails/tasks&quot;, &quot;vendor/plugins/gettext_i18n_rails/tasks/gettext_rails_i18n.rake&quot;, &quot;vendor/plugins/responds_to_parent&quot;, &quot;vendor/plugins/responds_to_parent/init.rb&quot;, &quot;vendor/plugins/responds_to_parent/lib&quot;, &quot;vendor/plugins/responds_to_parent/lib/responds_to_parent.rb&quot;, &quot;vendor/plugins/responds_to_parent/MIT-LICENSE&quot;, &quot;vendor/plugins/responds_to_parent/Rakefile&quot;, &quot;vendor/plugins/responds_to_parent/README&quot;, &quot;vendor/plugins/responds_to_parent/test&quot;, &quot;vendor/plugins/responds_to_parent/test/responds_to_parent_test.rb&quot;, &quot;vendor/plugins/rjs-assertions&quot;, &quot;vendor/plugins/rjs-assertions/init.rb&quot;, &quot;vendor/plugins/rjs-assertions/lib&quot;, &quot;vendor/plugins/rjs-assertions/lib/rjs-assertions.rb&quot;, &quot;vendor/plugins/rjs-assertions/MIT-LICENSE&quot;, &quot;vendor/plugins/rjs-assertions/README&quot;, &quot;vendor/rails_patches&quot;, &quot;vendor/rails_patches/support_for_inverse_relationships_on_active_record_objects.diff&quot;, &quot;vendor/TextMate&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run 2.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Context.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run Focused Should.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/Run.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Commands/YAML to Shoulda.tmCommand&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/info.plist&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Preferences&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Context.tmPreferences&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Preferences/Symbol List: Should.tmPreferences&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_bad_value.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_contains.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_does_not_contain.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_good_value.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_same_elements.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_save.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_sent_email.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/assert_valid.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/association.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/attribute.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/before_should block.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block get.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block post.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/context block with setup.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory attributes for.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory build.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define with class.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_define.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_next.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/Factory_sequence.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/setup.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block with before proc.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should block.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_allow_values_for.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_assign_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful denied.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_be_restful.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_belong_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change by.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_change from to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_at_least.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_in_range.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_length_is.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_ensure_value_in_range.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_eventually.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_filter_params.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_and_belong_to_many.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_class_methods.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_column.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_db_columns.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_index.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_indices.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_instance_methods.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_many.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_named_scope.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_one.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_have_readonly_attributes.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_mass_assignment_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_allow_values_for.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_assign_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_change.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_not_set_the_flash.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_redirect_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_a_form.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_template.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_with_layout.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_render_without_layout.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_respond_with_content_type.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_return_from_session.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_route.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_set_the_flash_to.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_acceptance_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_numericality_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_presence_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of with scope.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Snippets/should_validate_uniqueness_of.tmSnippet&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/bin/yaml_to_shoulda.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/catch_exception.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/run_script.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/stdin_dialog.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/test.rb&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Support/RubyMate/todo.txt&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes&quot;, &quot;vendor/TextMate/Ruby Shoulda.tmbundle/Syntaxes/Ruby on Rails (Shoulda).tmLanguage&quot;, &quot;vendor/TextMate/Zena.tmbundle&quot;, &quot;vendor/TextMate/Zena.tmbundle/Commands&quot;, &quot;vendor/TextMate/Zena.tmbundle/Commands/Run all yaml tests.tmCommand&quot;, &quot;vendor/TextMate/Zena.tmbundle/Commands/Run focused yaml test.tmCommand&quot;, &quot;vendor/TextMate/Zena.tmbundle/info.plist&quot;, &quot;vendor/TextMate/Zena.tmbundle/Support&quot;, &quot;vendor/TextMate/Zena.tmbundle/Support/RubyMate&quot;, &quot;vendor/TextMate/Zena.tmbundle/Support/RubyMate/run_script.rb&quot;, &quot;test/fixtures&quot;, &quot;test/fixtures/comments.yml&quot;, &quot;test/fixtures/contact_contents.yml&quot;, &quot;test/fixtures/data_entries.yml&quot;, &quot;test/fixtures/discussions.yml&quot;, &quot;test/fixtures/document_contents.yml&quot;, &quot;test/fixtures/dyn_attributes.yml&quot;, &quot;test/fixtures/files&quot;, &quot;test/fixtures/files/bird.jpg&quot;, &quot;test/fixtures/files/bomb.png&quot;, &quot;test/fixtures/files/exif_sample.jpg&quot;, &quot;test/fixtures/files/flower.jpg&quot;, &quot;test/fixtures/files/forest.pdf&quot;, &quot;test/fixtures/files/import.tgz&quot;, &quot;test/fixtures/files/jet_30.zip&quot;, &quot;test/fixtures/files/lake.jpg&quot;, &quot;test/fixtures/files/letter.zip&quot;, &quot;test/fixtures/files/Node-test.zafu&quot;, &quot;test/fixtures/files/other.txt&quot;, &quot;test/fixtures/files/simple.zml.gz&quot;, &quot;test/fixtures/files/some.txt&quot;, &quot;test/fixtures/files/translations_de.yml&quot;, &quot;test/fixtures/files/translations_fr.yml&quot;, &quot;test/fixtures/files/tree.jpg&quot;, &quot;test/fixtures/files/water.pdf&quot;, &quot;test/fixtures/groups.yml&quot;, &quot;test/fixtures/iformats.yml&quot;, &quot;test/fixtures/import&quot;, &quot;test/fixtures/import/photos&quot;, &quot;test/fixtures/import/photos/bird.jpg&quot;, &quot;test/fixtures/import/photos/bird.jpg.en.zml&quot;, &quot;test/fixtures/import/photos/bird.jpg.fr.zml&quot;, &quot;test/fixtures/import/photos/document.yml.en&quot;, &quot;test/fixtures/import/photos/document.yml.fr&quot;, &quot;test/fixtures/import/photos.en.zml&quot;, &quot;test/fixtures/import/simple.zml&quot;, &quot;test/fixtures/links.yml&quot;, &quot;test/fixtures/nodes.yml&quot;, &quot;test/fixtures/relations.yml&quot;, &quot;test/fixtures/sites.yml&quot;, &quot;test/fixtures/template_contents.yml&quot;, &quot;test/fixtures/users.yml&quot;, &quot;test/fixtures/versions.yml&quot;, &quot;test/fixtures/virtual_classes.yml&quot;, &quot;test/fixtures/zips.yml&quot;, &quot;test/functional&quot;, &quot;test/functional/application_controller_test.rb&quot;, &quot;test/functional/calendar_controller_test.rb&quot;, &quot;test/functional/comments_controller_test.rb&quot;, &quot;test/functional/data_entries_controller_test.rb&quot;, &quot;test/functional/discussion_controller_test.rb&quot;, &quot;test/functional/documents_controller_test.rb&quot;, &quot;test/functional/groups_controller_test.rb&quot;, &quot;test/functional/iformats_controller_test.rb&quot;, &quot;test/functional/links_controller_test.rb&quot;, &quot;test/functional/nodes_controller_test.rb&quot;, &quot;test/functional/note_controller_test.rb&quot;, &quot;test/functional/preferences_controller_test.rb&quot;, &quot;test/functional/relations_controller_test.rb&quot;, &quot;test/functional/search_controller_test.rb&quot;, &quot;test/functional/sessions_controller_test.rb&quot;, &quot;test/functional/sites_controller_test.rb&quot;, &quot;test/functional/users_controller_test.rb&quot;, &quot;test/functional/versions_controller_test.rb&quot;, &quot;test/functional/virtual_classes_controller_test.rb&quot;, &quot;test/helpers&quot;, &quot;test/helpers/node_query&quot;, &quot;test/helpers/node_query/basic.yml&quot;, &quot;test/helpers/node_query/comments.yml&quot;, &quot;test/helpers/node_query/complex.yml&quot;, &quot;test/helpers/node_query/filters.yml&quot;, &quot;test/helpers/node_query/relations.yml&quot;, &quot;test/helpers/node_query_test.rb&quot;, &quot;test/integration&quot;, &quot;test/integration/multiple_hosts_test.rb&quot;, &quot;test/integration/multiversion_test.rb&quot;, &quot;test/integration/navigation_test.rb&quot;, &quot;test/sites&quot;, &quot;test/sites/complex&quot;, &quot;test/sites/complex/complex.png&quot;, &quot;test/sites/complex/groups.yml&quot;, &quot;test/sites/complex/links.yml&quot;, &quot;test/sites/complex/nodes.yml&quot;, &quot;test/sites/complex/relations.yml&quot;, &quot;test/sites/complex/sites.yml&quot;, &quot;test/sites/complex/users.yml&quot;, &quot;test/sites/complex/versions.yml&quot;, &quot;test/sites/complex/virtual_classes.yml&quot;, &quot;test/sites/ocean&quot;, &quot;test/sites/ocean/contact_contents.yml&quot;, &quot;test/sites/ocean/groups.yml&quot;, &quot;test/sites/ocean/iformats.yml&quot;, &quot;test/sites/ocean/nodes.yml&quot;, &quot;test/sites/ocean/sites.yml&quot;, &quot;test/sites/ocean/template_contents.yml&quot;, &quot;test/sites/ocean/users.yml&quot;, &quot;test/sites/ocean/versions.yml&quot;, &quot;test/sites/README&quot;, &quot;test/sites/zena&quot;, &quot;test/sites/zena/comments.yml&quot;, &quot;test/sites/zena/contact_contents.yml&quot;, &quot;test/sites/zena/data_entries.yml&quot;, &quot;test/sites/zena/discussions.yml&quot;, &quot;test/sites/zena/document_contents.yml&quot;, &quot;test/sites/zena/dyn_attributes.yml&quot;, &quot;test/sites/zena/groups.yml&quot;, &quot;test/sites/zena/iformats.yml&quot;, &quot;test/sites/zena/links.yml&quot;, &quot;test/sites/zena/nodes.yml&quot;, &quot;test/sites/zena/relations.yml&quot;, &quot;test/sites/zena/sites.yml&quot;, &quot;test/sites/zena/template_contents.yml&quot;, &quot;test/sites/zena/users.yml&quot;, &quot;test/sites/zena/versions.yml&quot;, &quot;test/sites/zena/virtual_classes.yml&quot;, &quot;test/test_helper.rb&quot;, &quot;test/test_zena.rb&quot;, &quot;test/unit&quot;, &quot;test/unit/cache_test.rb&quot;, &quot;test/unit/cached_page_test.rb&quot;, &quot;test/unit/comment_test.rb&quot;, &quot;test/unit/contact_content_test.rb&quot;, &quot;test/unit/contact_test.rb&quot;, &quot;test/unit/contact_version_test.rb&quot;, &quot;test/unit/core_ext_test.rb&quot;, &quot;test/unit/data_entry_test.rb&quot;, &quot;test/unit/discussion_test.rb&quot;, &quot;test/unit/document_content_test.rb&quot;, &quot;test/unit/document_test.rb&quot;, &quot;test/unit/document_version_test.rb&quot;, &quot;test/unit/dyn_attributes_test.rb&quot;, &quot;test/unit/exif_data_test.rb&quot;, &quot;test/unit/group_test.rb&quot;, &quot;test/unit/iformat_test.rb&quot;, &quot;test/unit/image_builder_test.rb&quot;, &quot;test/unit/image_content_test.rb&quot;, &quot;test/unit/image_test.rb&quot;, &quot;test/unit/image_version_test.rb&quot;, &quot;test/unit/letter_test.rb&quot;, &quot;test/unit/link_test.rb&quot;, &quot;test/unit/multiversion_test.rb&quot;, &quot;test/unit/node_test.rb&quot;, &quot;test/unit/note_test.rb&quot;, &quot;test/unit/page_test.rb&quot;, &quot;test/unit/project_test.rb&quot;, &quot;test/unit/reference_test.rb&quot;, &quot;test/unit/relation_proxy_test.rb&quot;, &quot;test/unit/relation_test.rb&quot;, &quot;test/unit/section_test.rb&quot;, &quot;test/unit/secure_test.rb&quot;, &quot;test/unit/site_test.rb&quot;, &quot;test/unit/skin_test.rb&quot;, &quot;test/unit/template_content_test.rb&quot;, &quot;test/unit/template_test.rb&quot;, &quot;test/unit/template_version_test.rb&quot;, &quot;test/unit/text_document_content_test.rb&quot;, &quot;test/unit/text_document_test.rb&quot;, &quot;test/unit/text_document_version_test.rb&quot;, &quot;test/unit/user_test.rb&quot;, &quot;test/unit/version_test.rb&quot;, &quot;test/unit/virtual_class_test.rb&quot;, &quot;test/unit/zena&quot;, &quot;test/unit/zena/db_test.rb&quot;, &quot;test/unit/zena/parser&quot;, &quot;test/unit/zena/parser/latex.yml&quot;, &quot;test/unit/zena/parser/zafu.yml&quot;, &quot;test/unit/zena/parser/zafu_asset.yml&quot;, &quot;test/unit/zena/parser/zafu_insight.yml&quot;, &quot;test/unit/zena/parser/zazen.yml&quot;, &quot;test/unit/zena/parser_test.rb&quot;, &quot;test/unit/zena/unit&quot;, &quot;test/unit/zena/unit/test_case_test.rb&quot;, &quot;test/unit/zena/use&quot;, &quot;test/unit/zena/use/calendar_test.rb&quot;, &quot;test/unit/zena/use/dates_model_methods_test.rb&quot;, &quot;test/unit/zena/use/dates_string_methods_test.rb&quot;, &quot;test/unit/zena/use/dates_view_methods_test.rb&quot;, &quot;test/unit/zena/use/html_tags_test.rb&quot;, &quot;test/unit/zena/use/i18n_test.rb&quot;, &quot;test/unit/zena/use/nested_attributes_alias_model_test.rb&quot;, &quot;test/unit/zena/use/nested_attributes_alias_view_test.rb&quot;, &quot;test/unit/zena/use/refactor_test.rb&quot;, &quot;test/unit/zena/use/rendering_test.rb&quot;, &quot;test/unit/zena/use/urls_test.rb&quot;, &quot;test/unit/zena/use/zafu_test.rb&quot;, &quot;test/unit/zena/use/zazen_test.rb&quot;, &quot;test/unit/zena/zena_tags&quot;, &quot;test/unit/zena/zena_tags/ajax.yml&quot;, &quot;test/unit/zena/zena_tags/apphelper.yml&quot;, &quot;test/unit/zena/zena_tags/basic.yml&quot;, &quot;test/unit/zena/zena_tags/complex.yml&quot;, &quot;test/unit/zena/zena_tags/data.yml&quot;, &quot;test/unit/zena/zena_tags/errors.yml&quot;, &quot;test/unit/zena/zena_tags/eval.yml&quot;, &quot;test/unit/zena/zena_tags/relations.yml&quot;, &quot;test/unit/zena/zena_tags/zazen.yml&quot;, &quot;test/unit/zena/zena_tags_test.rb&quot;]
   s.homepage = %q{http://zenadmin.org}
-  s.rdoc_options = [&quot;--main&quot;, &quot;README.txt&quot;]
+  s.rdoc_options = [&quot;--main&quot;, &quot;README.rdoc&quot;]
   s.require_paths = [&quot;lib&quot;]
   s.rubyforge_project = %q{zena}
   s.rubygems_version = %q{1.3.5}
-  s.summary = %q{CMS based on Ruby on Rails, (c) Gaspard Bucher, teti}
+  s.summary = %q{CMS with super natural powers, based on Ruby on Rails  website: http://zenadmin}
   s.test_files = [&quot;test/test_helper.rb&quot;, &quot;test/test_zena.rb&quot;, &quot;test/unit/zena/unit/test_case_test.rb&quot;]
 
   if s.respond_to? :specification_version then
@@ -33,10 +34,10 @@ This version of zena is *TOTALLY UNUSABLE* for the moment. It is the result of t
       s.add_runtime_dependency(%q&lt;rubyless&gt;, [&quot;= 0.3.2&quot;])
       s.add_runtime_dependency(%q&lt;rails&gt;, [&quot;= 2.3.4&quot;])
       s.add_runtime_dependency(%q&lt;uuidtools&gt;, [&quot;= 2.0.0&quot;])
-      s.add_runtime_dependency(%q&lt;sqlite3-ruby&gt;, [&quot;&gt;= 1.2.4&quot;])
       s.add_runtime_dependency(%q&lt;pvande-differ&gt;, [&quot;= 0.1.1&quot;])
       s.add_runtime_dependency(%q&lt;mislav-will_paginate&gt;, [&quot;~&gt; 2.2.3&quot;])
       s.add_runtime_dependency(%q&lt;syntax&gt;, [&quot;= 1.0.0&quot;])
+      s.add_runtime_dependency(%q&lt;yamltest&gt;, [&quot;= 0.5.3&quot;])
       s.add_runtime_dependency(%q&lt;json&gt;, [&quot;&gt;= 1.1.9&quot;])
       s.add_runtime_dependency(%q&lt;gettext&gt;, [&quot;= 1.93.0&quot;])
       s.add_runtime_dependency(%q&lt;grosser-fast_gettext&gt;, [&quot;~&gt; 0.4.16&quot;])
@@ -45,17 +46,16 @@ This version of zena is *TOTALLY UNUSABLE* for the moment. It is the result of t
       s.add_runtime_dependency(%q&lt;RedCloth&gt;, [&quot;= 3.0.4&quot;])
       s.add_runtime_dependency(%q&lt;querybuilder&gt;, [&quot;= 0.5.6&quot;])
       s.add_development_dependency(%q&lt;bones&gt;, [&quot;&gt;= 2.5.1&quot;])
-      s.add_development_dependency(%q&lt;yamltest&gt;, [&quot;= 0.5.3&quot;])
     else
       s.add_dependency(%q&lt;ruby-recaptcha&gt;, [&quot;= 1.0.0&quot;])
       s.add_dependency(%q&lt;tzinfo&gt;, [&quot;= 0.3.12&quot;])
       s.add_dependency(%q&lt;rubyless&gt;, [&quot;= 0.3.2&quot;])
       s.add_dependency(%q&lt;rails&gt;, [&quot;= 2.3.4&quot;])
       s.add_dependency(%q&lt;uuidtools&gt;, [&quot;= 2.0.0&quot;])
-      s.add_dependency(%q&lt;sqlite3-ruby&gt;, [&quot;&gt;= 1.2.4&quot;])
       s.add_dependency(%q&lt;pvande-differ&gt;, [&quot;= 0.1.1&quot;])
       s.add_dependency(%q&lt;mislav-will_paginate&gt;, [&quot;~&gt; 2.2.3&quot;])
       s.add_dependency(%q&lt;syntax&gt;, [&quot;= 1.0.0&quot;])
+      s.add_dependency(%q&lt;yamltest&gt;, [&quot;= 0.5.3&quot;])
       s.add_dependency(%q&lt;json&gt;, [&quot;&gt;= 1.1.9&quot;])
       s.add_dependency(%q&lt;gettext&gt;, [&quot;= 1.93.0&quot;])
       s.add_dependency(%q&lt;grosser-fast_gettext&gt;, [&quot;~&gt; 0.4.16&quot;])
@@ -64,7 +64,6 @@ This version of zena is *TOTALLY UNUSABLE* for the moment. It is the result of t
       s.add_dependency(%q&lt;RedCloth&gt;, [&quot;= 3.0.4&quot;])
       s.add_dependency(%q&lt;querybuilder&gt;, [&quot;= 0.5.6&quot;])
       s.add_dependency(%q&lt;bones&gt;, [&quot;&gt;= 2.5.1&quot;])
-      s.add_dependency(%q&lt;yamltest&gt;, [&quot;= 0.5.3&quot;])
     end
   else
     s.add_dependency(%q&lt;ruby-recaptcha&gt;, [&quot;= 1.0.0&quot;])
@@ -72,10 +71,10 @@ This version of zena is *TOTALLY UNUSABLE* for the moment. It is the result of t
     s.add_dependency(%q&lt;rubyless&gt;, [&quot;= 0.3.2&quot;])
     s.add_dependency(%q&lt;rails&gt;, [&quot;= 2.3.4&quot;])
     s.add_dependency(%q&lt;uuidtools&gt;, [&quot;= 2.0.0&quot;])
-    s.add_dependency(%q&lt;sqlite3-ruby&gt;, [&quot;&gt;= 1.2.4&quot;])
     s.add_dependency(%q&lt;pvande-differ&gt;, [&quot;= 0.1.1&quot;])
     s.add_dependency(%q&lt;mislav-will_paginate&gt;, [&quot;~&gt; 2.2.3&quot;])
     s.add_dependency(%q&lt;syntax&gt;, [&quot;= 1.0.0&quot;])
+    s.add_dependency(%q&lt;yamltest&gt;, [&quot;= 0.5.3&quot;])
     s.add_dependency(%q&lt;json&gt;, [&quot;&gt;= 1.1.9&quot;])
     s.add_dependency(%q&lt;gettext&gt;, [&quot;= 1.93.0&quot;])
     s.add_dependency(%q&lt;grosser-fast_gettext&gt;, [&quot;~&gt; 0.4.16&quot;])
@@ -84,6 +83,5 @@ This version of zena is *TOTALLY UNUSABLE* for the moment. It is the result of t
     s.add_dependency(%q&lt;RedCloth&gt;, [&quot;= 3.0.4&quot;])
     s.add_dependency(%q&lt;querybuilder&gt;, [&quot;= 0.5.6&quot;])
     s.add_dependency(%q&lt;bones&gt;, [&quot;&gt;= 2.5.1&quot;])
-    s.add_dependency(%q&lt;yamltest&gt;, [&quot;= 0.5.3&quot;])
   end
 end</diff>
      <filename>zena.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>config/awstats.conf.rhtml</filename>
    </removed>
    <removed>
      <filename>config/database.rhtml</filename>
    </removed>
    <removed>
      <filename>config/deploy_config_example.rb</filename>
    </removed>
    <removed>
      <filename>config/httpd.rhtml</filename>
    </removed>
    <removed>
      <filename>config/locales/de.yml</filename>
    </removed>
    <removed>
      <filename>config/locales/fr-CH.yml</filename>
    </removed>
    <removed>
      <filename>config/locales/fr.yml</filename>
    </removed>
    <removed>
      <filename>config/start.html</filename>
    </removed>
    <removed>
      <filename>config/stats.vhost.rhtml</filename>
    </removed>
    <removed>
      <filename>config/vhost.rhtml</filename>
    </removed>
    <removed>
      <filename>config/vhost_www.rhtml</filename>
    </removed>
    <removed>
      <filename>config/zena.rb</filename>
    </removed>
    <removed>
      <filename>lib/zena/root.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>1a47ea3221d6ed54ee74ba215b9c326922a09bd6</id>
    </parent>
  </parents>
  <author>
    <name>Gaspard Bucher</name>
    <email>gaspard@teti.ch</email>
  </author>
  <url>http://github.com/zena/zena/commit/34143c638c99ca45aaae7ffbb65664bf16737aac</url>
  <id>34143c638c99ca45aaae7ffbb65664bf16737aac</id>
  <committed-date>2009-10-17T03:54:10-07:00</committed-date>
  <authored-date>2009-10-17T03:42:16-07:00</authored-date>
  <message>Moved all files related to capistrano tasks in lib/zena/deploy and made zena tasks requireable. Fixed zena:setup to copy files instead of making asset symlinks (would break on deploy).</message>
  <tree>6f23313e519314f1d45b7311a574b60803e72f83</tree>
  <committer>
    <name>Gaspard Bucher</name>
    <email>gaspard@teti.ch</email>
  </committer>
</commit>
