lolita-i18n 0.3.2 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/.gitignore +29 -0
  2. data/Gemfile +11 -25
  3. data/History.rdoc +7 -0
  4. data/README.md +1 -1
  5. data/Rakefile +4 -46
  6. data/app/assets/javascripts/lolita/i18n/application.js +1 -1
  7. data/app/assets/javascripts/lolita/i18n/i18n.js +87 -0
  8. data/app/assets/stylesheets/lolita/i18n/application.scss +8 -7
  9. data/app/controllers/lolita/i18n_controller.rb +27 -9
  10. data/app/helpers/lolita/i18n_helper.rb +40 -7
  11. data/app/views/lolita/i18n/index.html.haml +23 -14
  12. data/config/locales/en.yml +7 -2
  13. data/config/locales/lv.yml +7 -2
  14. data/config/routes.rb +2 -10
  15. data/lib/lolita-i18n.rb +11 -77
  16. data/lib/lolita-i18n/configuration.rb +56 -0
  17. data/lib/lolita-i18n/exceptions.rb +6 -0
  18. data/lib/lolita-i18n/rails.rb +0 -1
  19. data/lib/lolita-i18n/request.rb +219 -0
  20. data/lib/lolita-i18n/version.rb +11 -0
  21. data/lolita-i18n.gemspec +18 -96
  22. data/spec/controllers/lolita/i18n_controller_spec.rb +64 -30
  23. data/spec/helpers/lolita/i18n_helper_spec.rb +70 -0
  24. data/spec/lolita-i18n/configuration_spec.rb +63 -0
  25. data/spec/lolita-i18n/exceptions_spec.rb +15 -0
  26. data/spec/lolita-i18n/request_spec.rb +238 -0
  27. data/spec/lolita-i18n/version_spec.rb +8 -0
  28. data/spec/lolita_i18n_spec.rb +38 -0
  29. data/spec/rails_spec_helper.rb +11 -0
  30. data/spec/requests/translating_spec.rb +51 -0
  31. data/spec/requests/translation_list_spec.rb +36 -0
  32. data/spec/routing/routes_spec.rb +11 -0
  33. data/spec/spec_helper.rb +26 -18
  34. data/spec/{rails_app → test_app}/app/controllers/application_controller.rb +2 -2
  35. data/spec/test_app/config/application.rb +19 -0
  36. data/spec/test_app/config/boot.rb +11 -0
  37. data/spec/{rails_app → test_app}/config/enviroment.rb +4 -4
  38. data/spec/test_app/config/enviroments/test.rb +44 -0
  39. data/spec/test_app/config/initializers/lolita_i18n.rb +4 -0
  40. data/spec/test_app/config/initializers/token.rb +7 -0
  41. data/spec/test_app/config/locales/en.yml +10 -0
  42. data/spec/test_app/config/locales/lv.yml +2 -0
  43. data/spec/test_app/config/locales/ru.yml +2 -0
  44. data/spec/test_app/config/mongoid.yml +6 -0
  45. data/spec/{rails_app → test_app}/config/routes.rb +2 -2
  46. data/spec/test_app/log/.gitkeep +0 -0
  47. data/spec/test_app/log/development.log +734 -0
  48. metadata +69 -80
  49. data/VERSION +0 -1
  50. data/app/assets/javascripts/lolita/i18n/i18n.js.coffee +0 -135
  51. data/lib/lolita-i18n/backend.rb +0 -87
  52. data/spec/lolita-i18n/backend_spec.rb +0 -33
  53. data/spec/rails_app/config/application.rb +0 -18
  54. data/spec/rails_app/config/initializers/lolita_i18n.rb +0 -16
  55. data/spec/rails_app/config/locales/en.yml +0 -10
  56. data/spec/rails_app/config/locales/lv.yml +0 -2
@@ -0,0 +1,8 @@
1
+ require 'spec_helper'
2
+
3
+
4
+ describe Lolita::I18n::Version do
5
+ it "should return current version of gem" do
6
+ Lolita::I18n::Version.to_s.should match(/\d+\.\d+\.\d+/)
7
+ end
8
+ end
@@ -0,0 +1,38 @@
1
+ require 'spec_helper'
2
+
3
+ describe Lolita::I18n do
4
+ describe "loaded" do
5
+ it "should check Redis connection after Lolita.setup" do
6
+ Lolita.i18n.should_receive(:yaml_backend=).and_return(double())
7
+ Lolita.i18n.should_receive(:include_modules).and_return(true)
8
+ chain = double("chain")
9
+ Lolita.i18n.should_receive(:initialize_chain).and_return(chain)
10
+ redis = double("redis")
11
+ Redis.stub(:new).and_return(redis)
12
+ redis.stub(:ping => true)
13
+ ::I18n.should_receive(:backend=).with(chain)
14
+
15
+ Lolita.setup{}
16
+ end
17
+
18
+ it "should warn when Redis is not available" do
19
+ Lolita.i18n.should_receive(:yaml_backend=).and_return(double())
20
+ Lolita.i18n.should_receive(:include_modules).and_return(true)
21
+ redis = double("redis")
22
+ Redis.stub(:new).and_return(redis)
23
+ redis.stub(:ping).and_raise(Errno::ECONNREFUSED)
24
+
25
+ Lolita.setup{}
26
+ end
27
+
28
+ it "should add #i18n to Lolita configuration" do
29
+ Lolita.configuration.should respond_to(:i18n)
30
+ end
31
+
32
+ it "should have Request,Configuration,Exceptions constants in module" do
33
+ Lolita::I18n::Request.should be_kind_of(Class)
34
+ Lolita::I18n::Configuration.should be_kind_of(Class)
35
+ Lolita::I18n::Exceptions.should be_kind_of(Module)
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,11 @@
1
+ require 'spec_helper'
2
+
3
+ require 'mongoid'
4
+
5
+ require File.expand_path("../test_app/config/enviroment.rb",__FILE__)
6
+ require "rspec/rails"
7
+ require 'capybara/rails'
8
+ require 'capybara/rspec'
9
+ Capybara.default_driver = :webkit
10
+
11
+
@@ -0,0 +1,51 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Translating process", :rails => true do
4
+ def translate_key(key, options = {})
5
+ page.should have_selector("textarea[name='#{key}']")
6
+ fill_in(key, :with => "translation for #{key}")
7
+ page.execute_script(%Q{$("textarea[name='#{key}']").blur()})
8
+
9
+ page.check("show_untranslated")
10
+ if options[:original]
11
+ page.should have_selector("textarea[name='#{key}']", :text => "translation for #{key}")
12
+ else
13
+ page.should_not have_selector("textarea[name='#{key}']")
14
+ end
15
+ end
16
+
17
+ before(:each) do
18
+ visit "/lolita/i18n"
19
+ end
20
+
21
+ describe "Translating value for default language", :rails => true, :js => true, :redis => true do
22
+
23
+ it "User can translate simple values" do
24
+ translate_key("en.untranslated_title", :original => true)
25
+ end
26
+
27
+ it "User can translate Hash values" do
28
+ translate_key("en.resource.one", :original => true)
29
+ end
30
+
31
+ it "User can translate Array values" do
32
+ translate_key("en.numbers[0]", :original => true)
33
+ end
34
+ end
35
+
36
+ describe "Translating values for foreign language", :js => true, :redis => true do
37
+ it "User can translate simple values" do
38
+ translate_key("lv.untranslated_title")
39
+ end
40
+
41
+ it "User can translate Hash values" do
42
+ translate_key("lv.resource.one")
43
+ end
44
+
45
+ it "User can translate Array values" do
46
+ translate_key("lv.numbers[0]")
47
+ end
48
+ end
49
+ end
50
+
51
+
@@ -0,0 +1,36 @@
1
+ require 'spec_helper'
2
+
3
+ describe "Viewing all translations", :rails => true, :redis => true, :js => true do
4
+ before(:each) do
5
+ visit "/lolita/i18n"
6
+ end
7
+
8
+ it "User see translations in default language and same translation in other language" do
9
+ within(".i18n-box .list>table>thead") do
10
+ page.should have_selector("th", :text => "English")
11
+ page.should have_selector("th>select option[selected]", :text => "Latvian")
12
+ end
13
+ end
14
+
15
+ it "User can switch to other language" do
16
+ within(".i18n-box .list>table>thead") do
17
+ page.select("Russian", :from => "active_locale")
18
+ end
19
+ page.should have_selector("th select option[selected]", :text => "Russian")
20
+ end
21
+
22
+ it "User can view only untranslated" do
23
+ page.should have_selector("textarea", :text => "Virsraksts")
24
+ page.check("show_untranslated")
25
+ page.should have_selector("textarea", :text => "Other")
26
+ page.should_not have_selector("textarea", :text => "Virsraksts")
27
+ end
28
+
29
+ it "User can sort original translation in ascending order" do
30
+ last_trans = page.evaluate_script("$('textarea:last').val()");
31
+ last_trans.should_not eq("zzzz")
32
+ click_link("translation_sort_link")
33
+ new_last_trans = page.evaluate_script("$('textarea:last').val()");
34
+ new_last_trans.should eq("zzzz")
35
+ end
36
+ end
@@ -0,0 +1,11 @@
1
+ require "spec_helper"
2
+
3
+ describe "Lolita I18n routes", :rails => true do
4
+ it "has route for update with key" do
5
+ {:put => "/lolita/i18n/my_id"}.should route_to(:controller => "lolita/i18n", :action => "update", :id => "my_id")
6
+ end
7
+
8
+ it "has route for list of all translations" do
9
+ {:get => "/lolita/i18n"}.should route_to(:controller => "lolita/i18n", :action => "index")
10
+ end
11
+ end
data/spec/spec_helper.rb CHANGED
@@ -1,5 +1,20 @@
1
1
  require 'rubygems'
2
2
  require 'bundler'
3
+ require 'cover_me'
4
+
5
+ CoverMe.config do |c|
6
+ # where is your project's root:
7
+ c.project.root = File.expand_path("../lolita-i18n") # => "Rails.root" (default)
8
+
9
+ # what files are you interested in coverage for:
10
+ c.file_pattern = [
11
+ /(#{CoverMe.config.project.root}\/app\/.+\.rb)/i,
12
+ /(#{CoverMe.config.project.root}\/lib\/.+\.rb)/i
13
+ ]
14
+ end
15
+
16
+ REQUIRE_RAILS = true # turn of to run lolita-i18n tests fast
17
+
3
18
  begin
4
19
  Bundler.setup(:default, :test)
5
20
  rescue Bundler::BundlerError => e
@@ -8,27 +23,20 @@ rescue Bundler::BundlerError => e
8
23
  exit e.status_code
9
24
  end
10
25
 
11
- require 'rails'
12
- require 'lolita'
13
- require File.expand_path('lib/lolita-i18n')
14
- require 'webmock/rspec'
15
-
16
- if defined?(USE_RAILS)
17
- # require 'mongoid'
18
-
19
- # Mongoid.configure do |config|
20
- # config.master = Mongo::Connection.new('127.0.0.1', 27017).db("lolita-i18n-test")
21
- # end
22
-
23
- require File.expand_path("../rails_app/config/enviroment.rb",__FILE__)
24
- require "rspec/rails"
26
+ if REQUIRE_RAILS
27
+ require 'rails'
28
+ require 'rails_spec_helper'
25
29
  end
26
-
27
-
28
-
30
+ require File.expand_path('lib/lolita-i18n')
31
+
29
32
  RSpec.configure do |config|
33
+ config.treat_symbols_as_metadata_keys_with_true_values = true
30
34
  config.mock_with :rspec
31
- config.before(:each) do
35
+ config.before(:each,:redis) do
32
36
  Lolita.i18n.store.flushdb
33
37
  end
38
+ end
39
+
40
+ at_exit do
41
+ CoverMe.complete! if 1==1
34
42
  end
@@ -1,3 +1,3 @@
1
- class ApplicationController < ActionController::Base
2
-
1
+ class ApplicationController < ActionController::Base
2
+
3
3
  end
@@ -0,0 +1,19 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+ require "action_controller/railtie"
3
+ require "action_mailer/railtie"
4
+ require "active_resource/railtie"
5
+ require "rails/test_unit/railtie"
6
+ require "sprockets/railtie"
7
+
8
+ Bundler.require(:default, :test, Rails.env) if defined?(Bundler)
9
+
10
+ module Test
11
+ class Application < Rails::Application
12
+ config.root = File.expand_path("#{File.dirname(__FILE__)}/..")
13
+ config.logger = Logger.new(File.join(config.root,"log","development.log"))
14
+ config.active_support.deprecation = :log
15
+ config.i18n.default_locale = :en
16
+ config.assets.enabled = true
17
+ #config.autoload_paths=File.expand_path("../#{File.dirname(__FILE__)}")
18
+ end
19
+ end
@@ -0,0 +1,11 @@
1
+ require 'rubygems'
2
+
3
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
4
+ begin
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ Bundler.setup(:default,:test)
7
+ rescue Bundler::GemNotFound => e
8
+ STDERR.puts e.message
9
+ STDERR.puts "Try running `bundle install`."
10
+ exit!
11
+ end if File.exist?(gemfile)
@@ -1,5 +1,5 @@
1
- # Load the rails application
2
- require File.expand_path('../application', __FILE__)
3
-
4
- # Initialize the rails application
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
5
  Test::Application.initialize!
@@ -0,0 +1,44 @@
1
+ Test::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ #config.log_level = :error
40
+
41
+ # Allow pass debug_assets=true as a query parameter to load pages with unpackaged assets
42
+ config.assets.allow_debugging = true
43
+ config.action_mailer.default_url_options = { :host => 'localhost:3000' }
44
+ end
@@ -0,0 +1,4 @@
1
+
2
+ Lolita.setup do |config|
3
+ config.i18n.store = Redis.new({:db => 0})
4
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Test::Application.config.secret_token = '12870ac65ffa35be847226a38c8f2366234f4a6659e735b2d1aecf7e630ce3897cbf08fe01db26ce809b467cab674a57056ceed825acd217f56c8ef4ccace024'
@@ -0,0 +1,10 @@
1
+ en:
2
+ zzzz: "zzzz"
3
+ title: "Title"
4
+ untranslated_title: ""
5
+ resource:
6
+ one: "One"
7
+ other: "Other"
8
+ numbers:
9
+ - "one"
10
+ - "two"
@@ -0,0 +1,2 @@
1
+ lv:
2
+ title: "Virsraksts"
@@ -0,0 +1,2 @@
1
+ ru:
2
+ title: "название"
@@ -0,0 +1,6 @@
1
+ development:
2
+ database: lolita_translation_test
3
+ host: localhost
4
+ allow_dynamic_fields: false
5
+ persist_in_safe_mode: false
6
+
@@ -1,3 +1,3 @@
1
- Test::Application.routes.draw do
2
-
1
+ Test::Application.routes.draw do
2
+
3
3
  end
File without changes
@@ -0,0 +1,734 @@
1
+ # Logfile created on 2012-07-17 14:58:55 +0300 by logger.rb/31641
2
+ MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
3
+ MONGODB (0ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
4
+ Processing by Lolita::I18nController#index as HTML
5
+ Rendered /home/kungs/a_work/ruby_docs/lolita-i18n/app/views/lolita/i18n/index.html.haml within layouts/lolita/application (0.6ms)
6
+ Completed 200 OK in 143ms (Views: 40.9ms)
7
+ Processing by Lolita::I18nController#index as HTML
8
+ Completed 200 OK in 148ms (Views: 7.4ms)
9
+ Processing by Lolita::I18nController#index as HTML
10
+ Completed 200 OK in 9ms (Views: 6.4ms)
11
+ Processing by Lolita::I18nController#index as HTML
12
+ Completed 200 OK in 8ms (Views: 6.4ms)
13
+ Processing by Lolita::I18nController#update as JSON
14
+ Parameters: {"translation"=>"translation", "id"=>"key"}
15
+ Completed 200 OK in 2ms (Views: 0.2ms)
16
+ Processing by Lolita::I18nController#update as JSON
17
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
18
+ Completed 200 OK in 2ms (Views: 0.2ms)
19
+ Processing by Lolita::I18nController#update as JSON
20
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
21
+ Completed 200 OK in 2ms (Views: 0.2ms)
22
+ Processing by Lolita::I18nController#update as JSON
23
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
24
+ Completed 200 OK in 1ms (Views: 0.1ms)
25
+ Processing by Lolita::I18nController#update as JSON
26
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
27
+ Completed 200 OK in 1ms (Views: 0.2ms)
28
+
29
+
30
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:07 +0300
31
+ Processing by Lolita::I18nController#index as HTML
32
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (1.3ms)
33
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (1.5ms)
34
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (5.2ms)
35
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.4ms)
36
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (7.0ms)
37
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (9.5ms)
38
+ Completed 200 OK in 218ms (Views: 154.4ms)
39
+
40
+
41
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:07 +0300
42
+ Compiled lolita/jquery-ui-1.8.16.lolita.css (13ms) (pid 23377)
43
+ Compiled lolita/default.css (4ms) (pid 23377)
44
+ Compiled lolita/style.css (15ms) (pid 23377)
45
+ Compiled lolita/application.css (57ms) (pid 23377)
46
+ Served asset /lolita/application.css - 200 OK (124ms)
47
+
48
+
49
+ Started GET "/assets/lolita/favicon.ico" for 127.0.0.1 at 2012-07-17 14:59:07 +0300
50
+ Served asset /lolita/favicon.ico - 200 OK (5ms)
51
+
52
+
53
+ Started GET "/assets/lolita/i18n/application.css" for 127.0.0.1 at 2012-07-17 14:59:07 +0300
54
+ Served asset /lolita/i18n/application.css - 200 OK (19ms)
55
+
56
+
57
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:07 +0300
58
+ Compiled jquery.js (1ms) (pid 23377)
59
+ Compiled jquery_ujs.js (0ms) (pid 23377)
60
+ Compiled tinymce/preinit.js (0ms) (pid 23377)
61
+ Compiled tinymce/tiny_mce_jquery_src.js (3ms) (pid 23377)
62
+ Compiled tinymce/jquery.tinymce.js (0ms) (pid 23377)
63
+ Compiled tinymce-jquery.js (54ms) (pid 23377)
64
+ Compiled modernizr_1_7_min.js (0ms) (pid 23377)
65
+ Compiled tinymce_config.js (0ms) (pid 23377)
66
+ Compiled jquery-numeric.js (0ms) (pid 23377)
67
+ Compiled application_vendor_lolita.js (104ms) (pid 23377)
68
+ Compiled lolita/base64.js (0ms) (pid 23377)
69
+ Compiled lolita/list.js (0ms) (pid 23377)
70
+ Compiled lolita/main.js (1ms) (pid 23377)
71
+ Compiled jquery-ui.js (2ms) (pid 23377)
72
+ Compiled lolita/tab.js (41ms) (pid 23377)
73
+ Compiled lolita/application.js (184ms) (pid 23377)
74
+ Served asset /lolita/application.js - 200 OK (228ms)
75
+
76
+
77
+ Started GET "/assets/lolita/i18n/application.js" for 127.0.0.1 at 2012-07-17 14:59:07 +0300
78
+ Compiled lolita/i18n/application.js (34ms) (pid 23377)
79
+ Served asset /lolita/i18n/application.js - 200 OK (74ms)
80
+
81
+
82
+ Started PUT "/lolita/i18n/ZW4udW50cmFuc2xhdGVkX3RpdGxl" for 127.0.0.1 at 2012-07-17 14:59:09 +0300
83
+ Processing by Lolita::I18nController#update as JSON
84
+ Parameters: {"translation"=>"translation for en.untranslated_title", "id"=>"ZW4udW50cmFuc2xhdGVkX3RpdGxl"}
85
+ Completed 200 OK in 2ms (Views: 0.2ms)
86
+
87
+
88
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:09 +0300
89
+ Processing by Lolita::I18nController#index as HTML
90
+ Parameters: {"show_untranslated"=>"1"}
91
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.2ms)
92
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
93
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.9ms)
94
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
95
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
96
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
97
+ Completed 200 OK in 183ms (Views: 126.2ms)
98
+
99
+
100
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:10 +0300
101
+ Processing by Lolita::I18nController#index as HTML
102
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.2ms)
103
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
104
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
105
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.5ms)
106
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (4.2ms)
107
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (5.8ms)
108
+ Completed 200 OK in 205ms (Views: 133.4ms)
109
+
110
+
111
+ Started PUT "/lolita/i18n/ZW4ucmVzb3VyY2U=" for 127.0.0.1 at 2012-07-17 14:59:11 +0300
112
+ Processing by Lolita::I18nController#update as JSON
113
+ Parameters: {"translation"=>{"one"=>"translation for en.resource.one", "other"=>"Other"}, "id"=>"ZW4ucmVzb3VyY2U="}
114
+ Completed 200 OK in 3ms (Views: 0.2ms)
115
+
116
+
117
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:11 +0300
118
+ Processing by Lolita::I18nController#index as HTML
119
+ Parameters: {"show_untranslated"=>"1"}
120
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
121
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
122
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
123
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
124
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.9ms)
125
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.2ms)
126
+ Completed 200 OK in 186ms (Views: 123.8ms)
127
+
128
+
129
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:12 +0300
130
+ Processing by Lolita::I18nController#index as HTML
131
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.2ms)
132
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
133
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
134
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.5ms)
135
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
136
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.4ms)
137
+ Completed 200 OK in 201ms (Views: 133.7ms)
138
+
139
+
140
+ Started PUT "/lolita/i18n/ZW4ubnVtYmVycw==" for 127.0.0.1 at 2012-07-17 14:59:13 +0300
141
+ Processing by Lolita::I18nController#update as JSON
142
+ Parameters: {"translation"=>["translation for en.numbers[0]", "two"], "id"=>"ZW4ubnVtYmVycw=="}
143
+ Completed 200 OK in 2ms (Views: 0.2ms)
144
+
145
+
146
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:14 +0300
147
+ Processing by Lolita::I18nController#index as HTML
148
+ Parameters: {"show_untranslated"=>"1"}
149
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
150
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
151
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
152
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
153
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.5ms)
154
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.0ms)
155
+ Completed 200 OK in 187ms (Views: 126.3ms)
156
+
157
+
158
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:15 +0300
159
+ Processing by Lolita::I18nController#index as HTML
160
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
161
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
162
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
163
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
164
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.0ms)
165
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.6ms)
166
+ Completed 200 OK in 208ms (Views: 135.2ms)
167
+
168
+
169
+ Started PUT "/lolita/i18n/bHYudW50cmFuc2xhdGVkX3RpdGxl" for 127.0.0.1 at 2012-07-17 14:59:16 +0300
170
+ Processing by Lolita::I18nController#update as JSON
171
+ Parameters: {"translation"=>"translation for lv.untranslated_title", "id"=>"bHYudW50cmFuc2xhdGVkX3RpdGxl"}
172
+ Completed 200 OK in 2ms (Views: 0.2ms)
173
+
174
+
175
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:16 +0300
176
+ Processing by Lolita::I18nController#index as HTML
177
+ Parameters: {"show_untranslated"=>"1"}
178
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
179
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
180
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
181
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
182
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
183
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.2ms)
184
+ Completed 200 OK in 183ms (Views: 124.4ms)
185
+
186
+
187
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:16 +0300
188
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
189
+
190
+
191
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:16 +0300
192
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
193
+
194
+
195
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:17 +0300
196
+ Processing by Lolita::I18nController#index as HTML
197
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
198
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
199
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
200
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
201
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
202
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.2ms)
203
+ Completed 200 OK in 205ms (Views: 147.8ms)
204
+
205
+
206
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:17 +0300
207
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
208
+
209
+
210
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:17 +0300
211
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
212
+
213
+
214
+ Started PUT "/lolita/i18n/bHYucmVzb3VyY2U=" for 127.0.0.1 at 2012-07-17 14:59:19 +0300
215
+ Processing by Lolita::I18nController#update as JSON
216
+ Parameters: {"translation"=>{"one"=>"translation for lv.resource.one", "other"=>""}, "id"=>"bHYucmVzb3VyY2U="}
217
+ Completed 200 OK in 3ms (Views: 0.2ms)
218
+
219
+
220
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:19 +0300
221
+ Processing by Lolita::I18nController#index as HTML
222
+ Parameters: {"show_untranslated"=>"1"}
223
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
224
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
225
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.9ms)
226
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.5ms)
227
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.5ms)
228
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (5.1ms)
229
+ Completed 200 OK in 190ms (Views: 124.8ms)
230
+
231
+
232
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:19 +0300
233
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
234
+
235
+
236
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:19 +0300
237
+ Served asset /lolita/application.js - 304 Not Modified (1ms)
238
+
239
+
240
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:20 +0300
241
+ Processing by Lolita::I18nController#index as HTML
242
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
243
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
244
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
245
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
246
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.2ms)
247
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.6ms)
248
+ Completed 200 OK in 224ms (Views: 135.9ms)
249
+
250
+
251
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:20 +0300
252
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
253
+
254
+
255
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:20 +0300
256
+ Served asset /lolita/application.js - 304 Not Modified (1ms)
257
+
258
+
259
+ Started PUT "/lolita/i18n/bHYubnVtYmVycw==" for 127.0.0.1 at 2012-07-17 14:59:21 +0300
260
+ Processing by Lolita::I18nController#update as JSON
261
+ Parameters: {"translation"=>["translation for lv.numbers[0]", ""], "id"=>"bHYubnVtYmVycw=="}
262
+ Completed 200 OK in 2ms (Views: 0.2ms)
263
+
264
+
265
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:22 +0300
266
+ Processing by Lolita::I18nController#index as HTML
267
+ Parameters: {"show_untranslated"=>"1"}
268
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
269
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
270
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
271
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
272
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
273
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.4ms)
274
+ Completed 200 OK in 224ms (Views: 139.4ms)
275
+
276
+
277
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:22 +0300
278
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
279
+
280
+
281
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:22 +0300
282
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
283
+
284
+
285
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:23 +0300
286
+ Processing by Lolita::I18nController#index as HTML
287
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
288
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
289
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
290
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
291
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.1ms)
292
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.6ms)
293
+ Completed 200 OK in 202ms (Views: 129.2ms)
294
+
295
+
296
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:23 +0300
297
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
298
+
299
+
300
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:23 +0300
301
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
302
+
303
+
304
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:24 +0300
305
+ Processing by Lolita::I18nController#index as HTML
306
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
307
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
308
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
309
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
310
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
311
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.3ms)
312
+ Completed 200 OK in 191ms (Views: 133.6ms)
313
+
314
+
315
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:24 +0300
316
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
317
+
318
+
319
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:24 +0300
320
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
321
+
322
+
323
+ Started GET "/lolita/i18n?active_locale=ru" for 127.0.0.1 at 2012-07-17 14:59:25 +0300
324
+ Processing by Lolita::I18nController#index as HTML
325
+ Parameters: {"active_locale"=>"ru"}
326
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.2ms)
327
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
328
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
329
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
330
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.5ms)
331
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.0ms)
332
+ Completed 200 OK in 191ms (Views: 96.6ms)
333
+
334
+
335
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:25 +0300
336
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
337
+
338
+
339
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:25 +0300
340
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
341
+
342
+
343
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:26 +0300
344
+ Processing by Lolita::I18nController#index as HTML
345
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
346
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
347
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
348
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
349
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
350
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.2ms)
351
+ Completed 200 OK in 202ms (Views: 103.1ms)
352
+
353
+
354
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:26 +0300
355
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
356
+
357
+
358
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:26 +0300
359
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
360
+
361
+
362
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 14:59:33 +0300
363
+ Processing by Lolita::I18nController#index as HTML
364
+ Parameters: {"show_untranslated"=>"1"}
365
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
366
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.2ms)
367
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (2.8ms)
368
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
369
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
370
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.3ms)
371
+ Completed 200 OK in 200ms (Views: 115.4ms)
372
+
373
+
374
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:33 +0300
375
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
376
+
377
+
378
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:33 +0300
379
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
380
+
381
+
382
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 14:59:42 +0300
383
+ Processing by Lolita::I18nController#index as HTML
384
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
385
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
386
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.9ms)
387
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
388
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.9ms)
389
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.5ms)
390
+ Completed 200 OK in 247ms (Views: 140.3ms)
391
+
392
+
393
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:43 +0300
394
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
395
+
396
+
397
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:43 +0300
398
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
399
+
400
+
401
+ Started GET "/lolita/i18n?sort=1" for 127.0.0.1 at 2012-07-17 14:59:44 +0300
402
+ Processing by Lolita::I18nController#index as HTML
403
+ Parameters: {"sort"=>"1"}
404
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.2ms)
405
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
406
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.9ms)
407
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (1.1ms)
408
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.8ms)
409
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (5.3ms)
410
+ Completed 200 OK in 250ms (Views: 101.7ms)
411
+
412
+
413
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 14:59:44 +0300
414
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
415
+
416
+
417
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 14:59:44 +0300
418
+ Served asset /lolita/application.js - 304 Not Modified (0ms)
419
+ MONGODB [DEBUG] Logging level is currently :debug which could negatively impact client-side performance. You should set your logging level no lower than :info in production.
420
+ MONGODB (48ms) admin['$cmd'].find({:ismaster=>1}).limit(-1)
421
+ Processing by Lolita::I18nController#index as HTML
422
+ Rendered /home/kungs/a_work/ruby_docs/lolita-i18n/app/views/lolita/i18n/index.html.haml within layouts/lolita/application (0.6ms)
423
+ Completed 200 OK in 97ms (Views: 37.0ms)
424
+ Processing by Lolita::I18nController#index as HTML
425
+ Completed 200 OK in 183ms (Views: 7.7ms)
426
+ Processing by Lolita::I18nController#index as HTML
427
+ Completed 200 OK in 10ms (Views: 7.7ms)
428
+ Processing by Lolita::I18nController#index as HTML
429
+ Completed 200 OK in 10ms (Views: 8.2ms)
430
+ Processing by Lolita::I18nController#update as JSON
431
+ Parameters: {"translation"=>"translation", "id"=>"key"}
432
+ Completed 200 OK in 2ms (Views: 0.2ms)
433
+ Processing by Lolita::I18nController#update as JSON
434
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
435
+ Completed 200 OK in 2ms (Views: 0.2ms)
436
+ Processing by Lolita::I18nController#update as JSON
437
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
438
+ Completed 200 OK in 2ms (Views: 0.1ms)
439
+ Processing by Lolita::I18nController#update as JSON
440
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
441
+ Completed 200 OK in 1ms (Views: 0.1ms)
442
+ Processing by Lolita::I18nController#update as JSON
443
+ Parameters: {"translation"=>"Tulkots virsraksts", "id"=>"bHYudGl0bGU=\n"}
444
+ Completed 200 OK in 2ms (Views: 0.2ms)
445
+
446
+
447
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:14 +0300
448
+ Processing by Lolita::I18nController#index as HTML
449
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (1.3ms)
450
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (1.9ms)
451
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (6.3ms)
452
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.6ms)
453
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (7.8ms)
454
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (10.4ms)
455
+ Completed 200 OK in 245ms (Views: 154.6ms)
456
+
457
+
458
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 15:03:15 +0300
459
+ Served asset /lolita/application.css - 200 OK (51ms)
460
+
461
+
462
+ Started GET "/assets/lolita/i18n/application.css" for 127.0.0.1 at 2012-07-17 15:03:15 +0300
463
+ Served asset /lolita/i18n/application.css - 200 OK (17ms)
464
+
465
+
466
+ Started GET "/assets/lolita/i18n/application.js" for 127.0.0.1 at 2012-07-17 15:03:15 +0300
467
+ Served asset /lolita/i18n/application.js - 200 OK (84ms)
468
+
469
+
470
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 15:03:15 +0300
471
+ Served asset /lolita/application.js - 200 OK (52ms)
472
+
473
+
474
+ Started GET "/assets/lolita/favicon.ico" for 127.0.0.1 at 2012-07-17 15:03:15 +0300
475
+ Served asset /lolita/favicon.ico - 200 OK (5ms)
476
+
477
+
478
+ Started PUT "/lolita/i18n/ZW4udW50cmFuc2xhdGVkX3RpdGxl" for 127.0.0.1 at 2012-07-17 15:03:16 +0300
479
+ Processing by Lolita::I18nController#update as JSON
480
+ Parameters: {"translation"=>"translation for en.untranslated_title", "id"=>"ZW4udW50cmFuc2xhdGVkX3RpdGxl"}
481
+ Completed 200 OK in 2ms (Views: 0.2ms)
482
+
483
+
484
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:16 +0300
485
+ Processing by Lolita::I18nController#index as HTML
486
+ Parameters: {"show_untranslated"=>"1"}
487
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
488
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
489
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
490
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
491
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.9ms)
492
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.4ms)
493
+ Completed 200 OK in 180ms (Views: 94.7ms)
494
+
495
+
496
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:17 +0300
497
+ Processing by Lolita::I18nController#index as HTML
498
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
499
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
500
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
501
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
502
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
503
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.4ms)
504
+ Completed 200 OK in 250ms (Views: 140.6ms)
505
+
506
+
507
+ Started PUT "/lolita/i18n/ZW4ucmVzb3VyY2U=" for 127.0.0.1 at 2012-07-17 15:03:18 +0300
508
+ Processing by Lolita::I18nController#update as JSON
509
+ Parameters: {"translation"=>{"one"=>"translation for en.resource.one", "other"=>"Other"}, "id"=>"ZW4ucmVzb3VyY2U="}
510
+ Completed 200 OK in 3ms (Views: 0.2ms)
511
+
512
+
513
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:19 +0300
514
+ Processing by Lolita::I18nController#index as HTML
515
+ Parameters: {"show_untranslated"=>"1"}
516
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
517
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.2ms)
518
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (31.2ms)
519
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
520
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
521
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
522
+ Completed 200 OK in 187ms (Views: 123.3ms)
523
+
524
+
525
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:19 +0300
526
+ Processing by Lolita::I18nController#index as HTML
527
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
528
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
529
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
530
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
531
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.5ms)
532
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (3.9ms)
533
+ Completed 200 OK in 193ms (Views: 132.2ms)
534
+
535
+
536
+ Started PUT "/lolita/i18n/ZW4ubnVtYmVycw==" for 127.0.0.1 at 2012-07-17 15:03:21 +0300
537
+ Processing by Lolita::I18nController#update as JSON
538
+ Parameters: {"translation"=>["translation for en.numbers[0]", "two"], "id"=>"ZW4ubnVtYmVycw=="}
539
+ Completed 200 OK in 2ms (Views: 0.2ms)
540
+
541
+
542
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:21 +0300
543
+ Processing by Lolita::I18nController#index as HTML
544
+ Parameters: {"show_untranslated"=>"1"}
545
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
546
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
547
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
548
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.5ms)
549
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.4ms)
550
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (5.1ms)
551
+ Completed 200 OK in 191ms (Views: 127.1ms)
552
+
553
+
554
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:22 +0300
555
+ Processing by Lolita::I18nController#index as HTML
556
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
557
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
558
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
559
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (1.3ms)
560
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (8.0ms)
561
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (10.3ms)
562
+ Completed 200 OK in 205ms (Views: 139.9ms)
563
+
564
+
565
+ Started PUT "/lolita/i18n/bHYudW50cmFuc2xhdGVkX3RpdGxl" for 127.0.0.1 at 2012-07-17 15:03:23 +0300
566
+ Processing by Lolita::I18nController#update as JSON
567
+ Parameters: {"translation"=>"translation for lv.untranslated_title", "id"=>"bHYudW50cmFuc2xhdGVkX3RpdGxl"}
568
+ Completed 200 OK in 3ms (Views: 0.6ms)
569
+
570
+
571
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:23 +0300
572
+ Processing by Lolita::I18nController#index as HTML
573
+ Parameters: {"show_untranslated"=>"1"}
574
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
575
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
576
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
577
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
578
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
579
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
580
+ Completed 200 OK in 177ms (Views: 90.5ms)
581
+
582
+
583
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:24 +0300
584
+ Processing by Lolita::I18nController#index as HTML
585
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
586
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
587
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
588
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
589
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.8ms)
590
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.6ms)
591
+ Completed 200 OK in 200ms (Views: 101.9ms)
592
+
593
+
594
+ Started PUT "/lolita/i18n/bHYucmVzb3VyY2U=" for 127.0.0.1 at 2012-07-17 15:03:26 +0300
595
+ Processing by Lolita::I18nController#update as JSON
596
+ Parameters: {"translation"=>{"one"=>"translation for lv.resource.one", "other"=>""}, "id"=>"bHYucmVzb3VyY2U="}
597
+ Completed 200 OK in 3ms (Views: 0.2ms)
598
+
599
+
600
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:26 +0300
601
+ Processing by Lolita::I18nController#index as HTML
602
+ Parameters: {"show_untranslated"=>"1"}
603
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
604
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
605
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
606
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
607
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
608
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
609
+ Completed 200 OK in 158ms (Views: 94.3ms)
610
+
611
+
612
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:27 +0300
613
+ Processing by Lolita::I18nController#index as HTML
614
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
615
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
616
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
617
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
618
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.5ms)
619
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (3.9ms)
620
+ Completed 200 OK in 195ms (Views: 132.5ms)
621
+
622
+
623
+ Started PUT "/lolita/i18n/bHYubnVtYmVycw==" for 127.0.0.1 at 2012-07-17 15:03:28 +0300
624
+ Processing by Lolita::I18nController#update as JSON
625
+ Parameters: {"translation"=>["translation for lv.numbers[0]", ""], "id"=>"bHYubnVtYmVycw=="}
626
+ Completed 200 OK in 4ms (Views: 0.2ms)
627
+
628
+
629
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:28 +0300
630
+ Processing by Lolita::I18nController#index as HTML
631
+ Parameters: {"show_untranslated"=>"1"}
632
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
633
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
634
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
635
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
636
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
637
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
638
+ Completed 200 OK in 190ms (Views: 124.3ms)
639
+
640
+
641
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:29 +0300
642
+ Processing by Lolita::I18nController#index as HTML
643
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
644
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
645
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.9ms)
646
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.5ms)
647
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.3ms)
648
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (5.0ms)
649
+ Completed 200 OK in 254ms (Views: 157.6ms)
650
+
651
+
652
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:31 +0300
653
+ Processing by Lolita::I18nController#index as HTML
654
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
655
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
656
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.6ms)
657
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
658
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
659
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.2ms)
660
+ Completed 200 OK in 185ms (Views: 130.6ms)
661
+
662
+
663
+ Started GET "/lolita/i18n?active_locale=ru" for 127.0.0.1 at 2012-07-17 15:03:32 +0300
664
+ Processing by Lolita::I18nController#index as HTML
665
+ Parameters: {"active_locale"=>"ru"}
666
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
667
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
668
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
669
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
670
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
671
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.9ms)
672
+ Completed 200 OK in 236ms (Views: 102.1ms)
673
+
674
+
675
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:33 +0300
676
+ Processing by Lolita::I18nController#index as HTML
677
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
678
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
679
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
680
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
681
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.7ms)
682
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.1ms)
683
+ Completed 200 OK in 197ms (Views: 129.8ms)
684
+
685
+
686
+ Started GET "/lolita/i18n?show_untranslated=1" for 127.0.0.1 at 2012-07-17 15:03:39 +0300
687
+ Processing by Lolita::I18nController#index as HTML
688
+ Parameters: {"show_untranslated"=>"1"}
689
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
690
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
691
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (2.0ms)
692
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.6ms)
693
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (3.4ms)
694
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.9ms)
695
+ Completed 200 OK in 262ms (Views: 97.3ms)
696
+
697
+
698
+ Started GET "/lolita/i18n" for 127.0.0.1 at 2012-07-17 15:03:48 +0300
699
+ Processing by Lolita::I18nController#index as HTML
700
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
701
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
702
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.8ms)
703
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
704
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.5ms)
705
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (3.9ms)
706
+ Completed 200 OK in 197ms (Views: 97.7ms)
707
+
708
+
709
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 15:03:49 +0300
710
+ Served asset /lolita/application.js - 304 Not Modified (36ms)
711
+
712
+
713
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 15:03:49 +0300
714
+ Served asset /lolita/application.css - 304 Not Modified (0ms)
715
+
716
+
717
+ Started GET "/lolita/i18n?sort=1" for 127.0.0.1 at 2012-07-17 15:03:50 +0300
718
+ Processing by Lolita::I18nController#index as HTML
719
+ Parameters: {"sort"=>"1"}
720
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_flash.html.haml (0.1ms)
721
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_languages.html.haml (0.1ms)
722
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/shared/_header.html.haml (1.7ms)
723
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (0.4ms)
724
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_tree.html.haml (2.9ms)
725
+ Rendered /home/kungs/.rvm/gems/ruby-1.9.3-p194@lolita-i18n/gems/lolita-3.2.0.rc.9/app/views/components/lolita/navigation/_display.html.haml (4.3ms)
726
+ Completed 200 OK in 287ms (Views: 130.3ms)
727
+
728
+
729
+ Started GET "/assets/lolita/application.css" for 127.0.0.1 at 2012-07-17 15:03:50 +0300
730
+ Served asset /lolita/application.css - 304 Not Modified (2ms)
731
+
732
+
733
+ Started GET "/assets/lolita/application.js" for 127.0.0.1 at 2012-07-17 15:03:50 +0300
734
+ Served asset /lolita/application.js - 304 Not Modified (4ms)