lolita-i18n 0.4.2 → 0.4.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -1
- data/Gemfile +5 -6
- data/LICENSE.txt +20 -20
- data/README.md +19 -3
- data/lib/lolita-i18n.rb +1 -10
- data/lib/lolita-i18n/configuration.rb +44 -1
- data/lib/lolita-i18n/version.rb +1 -1
- data/spec/lolita-i18n/configuration_spec.rb +110 -24
- data/spec/lolita_i18n_spec.rb +2 -19
- data/spec/rails_spec_helper.rb +1 -4
- data/spec/requests/translating_spec.rb +7 -11
- metadata +2 -9
- data/spec/test_app/log/development.log +0 -734
data/.gitignore
CHANGED
data/Gemfile
CHANGED
@@ -3,14 +3,13 @@ source "http://rubygems.org"
|
|
3
3
|
gemspec
|
4
4
|
|
5
5
|
group :test do
|
6
|
+
gem "debugger"
|
6
7
|
gem "rails", "~>3.2.2"
|
7
8
|
gem "cover_me", "~>1.2.0"
|
8
9
|
gem "bson_ext", "~>1.6.2"
|
9
10
|
gem "mongoid", "~>2.4.8"
|
10
|
-
gem "rspec","~>2.
|
11
|
-
gem "
|
12
|
-
gem "
|
13
|
-
gem
|
14
|
-
gem "sass", "~>3.1.15"
|
15
|
-
|
11
|
+
gem "rspec-rails", "~>2.11.0"
|
12
|
+
gem "capybara", "~> 1.1.3"
|
13
|
+
gem "sass", "~>3.2.3"
|
14
|
+
gem "coffee-script", "~>2.2.0"
|
16
15
|
end
|
data/LICENSE.txt
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
Copyright (c) 2011 ITHouse (Latvia) and Arturs Meisters
|
2
|
-
|
3
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
-
a copy of this software and associated documentation files (the
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
9
|
-
the following conditions:
|
10
|
-
|
11
|
-
The above copyright notice and this permission notice shall be
|
12
|
-
included in all copies or substantial portions of the Software.
|
13
|
-
|
14
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
1
|
+
Copyright (c) 2011 ITHouse (Latvia) and Arturs Meisters
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -11,6 +11,23 @@ Lolita I18n is Lolita[https://github.com/ithouse/lolita] plugin, that enables .y
|
|
11
11
|
* add `REDIS_DB = your db number` in your environment files.
|
12
12
|
* open `/lolita/i18n` and start translating
|
13
13
|
|
14
|
+
### with Phusion Passenger
|
15
|
+
|
16
|
+
Add this to `environment.rb`
|
17
|
+
|
18
|
+
PhusionPassenger.on_event(:starting_worker_process) do |forked|
|
19
|
+
if forked
|
20
|
+
Lolita.i18n.reconnect
|
21
|
+
end
|
22
|
+
end
|
23
|
+
### with Unicorn
|
24
|
+
|
25
|
+
Add this to `unicorn.rb`
|
26
|
+
|
27
|
+
after_fork do |server, worker|
|
28
|
+
Lolita.i18n.reconnect
|
29
|
+
end
|
30
|
+
|
14
31
|
## Contributing to lolita-i18n
|
15
32
|
|
16
33
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
@@ -21,7 +38,6 @@ Lolita I18n is Lolita[https://github.com/ithouse/lolita] plugin, that enables .y
|
|
21
38
|
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
22
39
|
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
23
40
|
|
24
|
-
|
41
|
+
---
|
25
42
|
|
26
|
-
Copyright (c) 2011 ITHouse (Latvia). See LICENSE.txt for
|
27
|
-
further details.
|
43
|
+
Copyright (c) 2011 ITHouse (Latvia). See LICENSE.txt for further details.
|
data/lib/lolita-i18n.rb
CHANGED
@@ -28,16 +28,7 @@ end
|
|
28
28
|
Lolita.configuration.extend(LolitaI18nConfiguration)
|
29
29
|
|
30
30
|
Lolita.after_setup do
|
31
|
-
Lolita.i18n.
|
32
|
-
Lolita.i18n.include_modules
|
33
|
-
begin
|
34
|
-
r = Redis.new
|
35
|
-
r.ping
|
36
|
-
::I18n.backend = Lolita.i18n.initialize_chain
|
37
|
-
rescue Errno::ECONNREFUSED => e
|
38
|
-
warn "Warning: Lolita was unable to connect to Redis DB: #{e}"
|
39
|
-
end
|
40
|
-
true
|
31
|
+
Lolita.i18n.init
|
41
32
|
end
|
42
33
|
|
43
34
|
Lolita.i18n.load_rails!
|
@@ -35,13 +35,56 @@ module Lolita
|
|
35
35
|
|
36
36
|
# Load translation from yaml.
|
37
37
|
def load_translations
|
38
|
-
|
38
|
+
@yaml_backend.load_translations
|
39
39
|
end
|
40
40
|
|
41
41
|
# Create chain where new KeyValue backend is first and Yaml backend is second.
|
42
42
|
def initialize_chain
|
43
43
|
::I18n::Backend::Chain.new(self.backend, self.yaml_backend)
|
44
44
|
end
|
45
|
+
|
46
|
+
def init
|
47
|
+
unless @initialized
|
48
|
+
include_modules
|
49
|
+
set_yaml_backend
|
50
|
+
@initialized = true
|
51
|
+
connect
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def connect
|
56
|
+
unless @connected
|
57
|
+
reconnect
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
def reconnect
|
62
|
+
unless @initialized
|
63
|
+
init
|
64
|
+
else
|
65
|
+
disconnect
|
66
|
+
@connected = begin
|
67
|
+
connection = Redis.new
|
68
|
+
connection.ping
|
69
|
+
::I18n.backend = initialize_chain
|
70
|
+
true
|
71
|
+
rescue Errno::ECONNREFUSED => e
|
72
|
+
warn "Warning: Lolita was unable to connect to Redis DB: #{e}"
|
73
|
+
false
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
def disconnect
|
79
|
+
if @connected
|
80
|
+
store.client.disconnect
|
81
|
+
@connected = false
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def set_yaml_backend
|
86
|
+
@yaml_backend ||= ::I18n.backend
|
87
|
+
end
|
45
88
|
|
46
89
|
# Add modules for SimpleBackend that is used for Yaml translations
|
47
90
|
def include_modules
|
data/lib/lolita-i18n/version.rb
CHANGED
@@ -1,63 +1,149 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe Lolita::I18n::Configuration do
|
4
|
-
|
5
|
-
let(:
|
6
|
-
let(:redis){double("redis")}
|
4
|
+
subject { described_class.new }
|
5
|
+
let(:redis){ double("redis", :ping => true) }
|
7
6
|
|
8
7
|
it "should load rails if Rails is defined" do
|
9
8
|
Lolita.stub(:rails3?).and_return(true)
|
10
|
-
|
11
|
-
|
9
|
+
subject.should_receive(:require).with('lolita-i18n/rails')
|
10
|
+
subject.load_rails!
|
12
11
|
end
|
13
12
|
|
14
13
|
it "should allow to assign store with Hash as connection options" do
|
15
14
|
Redis.should_receive(:new).with({:key => "value"}).and_return(redis)
|
16
|
-
|
15
|
+
subject.store = {:key => "value"}
|
17
16
|
end
|
18
17
|
|
19
18
|
it "should allow to assign store as store itself" do
|
20
|
-
|
21
|
-
|
19
|
+
subject.store = redis
|
20
|
+
subject.store.should eq(redis)
|
22
21
|
end
|
23
22
|
|
24
23
|
it "should return assigned store" do
|
25
|
-
|
26
|
-
|
24
|
+
subject.store = redis
|
25
|
+
subject.store.should eq(redis)
|
27
26
|
end
|
28
27
|
|
29
28
|
it "should return new Redis connection and warn when no store is assigned" do
|
30
29
|
Redis.should_receive(:new).and_return(redis)
|
31
|
-
|
32
|
-
|
30
|
+
subject.should_receive(:warn).with("Lolita::I18n No store specified. See Lolita::I18n")
|
31
|
+
subject.store.should eq(redis)
|
33
32
|
end
|
34
33
|
|
35
34
|
it "should lazy create and return backend" do
|
36
35
|
Redis.should_receive(:new).and_return(redis)
|
37
36
|
::I18n::Backend::KeyValue.should_receive(:new).with(redis)
|
38
|
-
|
37
|
+
subject.backend
|
39
38
|
end
|
40
39
|
|
41
40
|
it "should load translations" do
|
42
41
|
yaml_backend = double("yaml_backend")
|
43
|
-
|
42
|
+
subject.yaml_backend = yaml_backend
|
44
43
|
yaml_backend.should_receive(:load_translations)
|
45
|
-
|
44
|
+
subject.load_translations
|
46
45
|
end
|
47
46
|
|
48
47
|
it "should initialize chain" do
|
49
|
-
|
48
|
+
subject.yaml_backend = double("yaml backend")
|
50
49
|
Redis.stub(:new).and_return(redis)
|
51
|
-
::I18n::Backend::Chain.should_receive(:new).with(
|
52
|
-
|
50
|
+
::I18n::Backend::Chain.should_receive(:new).with(subject.backend,subject.yaml_backend)
|
51
|
+
subject.initialize_chain
|
52
|
+
Redis.unstub(:new)
|
53
53
|
end
|
54
|
+
|
55
|
+
describe "#connect" do
|
56
|
+
before(:each){ Redis.stub(:new).and_return(redis) }
|
57
|
+
after(:each){ Redis.unstub(:new) }
|
54
58
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
59
|
+
it "should call reconnect if not connected" do
|
60
|
+
subject.should_receive(:initialize_chain).once
|
61
|
+
subject.connect
|
62
|
+
subject.connect
|
63
|
+
end
|
64
|
+
|
65
|
+
it "should return true when success" do
|
66
|
+
subject.connect.should be_true
|
67
|
+
end
|
68
|
+
|
69
|
+
it "should return not be true when fail" do
|
70
|
+
Redis.stub(:new).and_raise(Errno::ECONNREFUSED)
|
71
|
+
subject.connect.should_not be_true
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe "#reconnect" do
|
76
|
+
it "should call init if not initialized jet" do
|
77
|
+
subject.should_receive(:init).once
|
78
|
+
subject.reconnect
|
79
|
+
end
|
80
|
+
|
81
|
+
it "should not call init if already initialized" do
|
82
|
+
subject.reconnect
|
83
|
+
subject.should_not_receive(:init)
|
84
|
+
subject.reconnect
|
85
|
+
end
|
86
|
+
|
87
|
+
it "should return true when success" do
|
88
|
+
subject.reconnect.should be_true
|
89
|
+
end
|
90
|
+
|
91
|
+
it "should return false when fail" do
|
92
|
+
Redis.stub(:new).and_raise(Errno::ECONNREFUSED)
|
93
|
+
subject.reconnect.should_not be_true
|
94
|
+
Redis.unstub(:new)
|
95
|
+
end
|
96
|
+
|
97
|
+
it "should initialize chain" do
|
98
|
+
subject.should_receive(:initialize_chain).twice
|
99
|
+
subject.reconnect
|
100
|
+
subject.reconnect
|
101
|
+
end
|
102
|
+
|
103
|
+
it "should disconnect" do
|
104
|
+
subject.should_receive(:disconnect)
|
105
|
+
subject.reconnect
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
describe "#disconnect" do
|
110
|
+
it "should disconnect if connected" do
|
111
|
+
subject.store.client.should_receive(:disconnect)
|
112
|
+
subject.connect
|
113
|
+
subject.disconnect
|
114
|
+
end
|
115
|
+
|
116
|
+
it "should not disconnect if not connected"do
|
117
|
+
subject.store.client.should_not_receive(:disconnect)
|
118
|
+
subject.disconnect
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
describe "#init" do
|
123
|
+
it "should call all propper methods" do
|
124
|
+
subject.should_receive(:include_modules)
|
125
|
+
subject.should_receive(:set_yaml_backend)
|
126
|
+
subject.should_receive(:connect)
|
127
|
+
subject.init
|
128
|
+
end
|
129
|
+
|
130
|
+
it "should run only once" do
|
131
|
+
subject.should_receive(:include_modules).once
|
132
|
+
subject.should_receive(:set_yaml_backend).once
|
133
|
+
subject.should_receive(:connect).once
|
134
|
+
subject.init
|
135
|
+
subject.init
|
136
|
+
end
|
137
|
+
end
|
138
|
+
|
139
|
+
describe "#include_modules" do
|
140
|
+
it "include module in ::I18n::Backend::Simple" do
|
141
|
+
subject.include_modules
|
142
|
+
::I18n::Backend::Simple.ancestors.should include(::I18n::Backend::Flatten)
|
143
|
+
::I18n::Backend::Simple.ancestors.should include(::I18n::Backend::Pluralization)
|
144
|
+
::I18n::Backend::Simple.ancestors.should include(::I18n::Backend::Metadata)
|
145
|
+
::I18n::Backend::Simple.ancestors.should include(::I18n::Backend::InterpolationCompiler)
|
146
|
+
end
|
61
147
|
end
|
62
148
|
|
63
149
|
end
|
data/spec/lolita_i18n_spec.rb
CHANGED
@@ -2,26 +2,9 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe Lolita::I18n do
|
4
4
|
describe "loaded" do
|
5
|
+
|
5
6
|
it "should check Redis connection after Lolita.setup" do
|
6
|
-
Lolita.i18n.should_receive(:
|
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
|
-
|
7
|
+
Lolita.i18n.should_receive(:init)
|
25
8
|
Lolita.setup{}
|
26
9
|
end
|
27
10
|
|
data/spec/rails_spec_helper.rb
CHANGED
@@ -1,17 +1,13 @@
|
|
1
1
|
require 'spec_helper'
|
2
2
|
|
3
3
|
describe "Translating process", :rails => true do
|
4
|
-
def translate_key(key
|
4
|
+
def translate_key(key)
|
5
5
|
page.should have_selector("textarea[name='#{key}']")
|
6
6
|
fill_in(key, :with => "translation for #{key}")
|
7
7
|
page.execute_script(%Q{$("textarea[name='#{key}']").blur()})
|
8
|
-
|
8
|
+
page.execute_script(%Q{window.location.href='#'})
|
9
9
|
page.check("show_untranslated")
|
10
|
-
|
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
|
10
|
+
page.find_field(key).value.should == "translation for #{key}"
|
15
11
|
end
|
16
12
|
|
17
13
|
before(:each) do
|
@@ -20,16 +16,16 @@ describe "Translating process", :rails => true do
|
|
20
16
|
|
21
17
|
describe "Translating value for default language", :rails => true, :js => true, :redis => true do
|
22
18
|
|
23
|
-
it "User can translate simple values" do
|
24
|
-
translate_key("en.untranslated_title"
|
19
|
+
it "User can translate simple values" do
|
20
|
+
translate_key("en.untranslated_title")
|
25
21
|
end
|
26
22
|
|
27
23
|
it "User can translate Hash values" do
|
28
|
-
translate_key("en.resource.one"
|
24
|
+
translate_key("en.resource.one")
|
29
25
|
end
|
30
26
|
|
31
27
|
it "User can translate Array values" do
|
32
|
-
translate_key("en.numbers[0]"
|
28
|
+
translate_key("en.numbers[0]")
|
33
29
|
end
|
34
30
|
end
|
35
31
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lolita-i18n
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2012-
|
14
|
+
date: 2012-11-21 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: lolita
|
@@ -154,7 +154,6 @@ files:
|
|
154
154
|
- spec/test_app/config/mongoid.yml
|
155
155
|
- spec/test_app/config/routes.rb
|
156
156
|
- spec/test_app/log/.gitkeep
|
157
|
-
- spec/test_app/log/development.log
|
158
157
|
homepage: http://github.com/ithouse/lolita-i18n
|
159
158
|
licenses:
|
160
159
|
- MIT
|
@@ -168,18 +167,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
168
167
|
- - ! '>='
|
169
168
|
- !ruby/object:Gem::Version
|
170
169
|
version: '0'
|
171
|
-
segments:
|
172
|
-
- 0
|
173
|
-
hash: 2115151081972697486
|
174
170
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
175
171
|
none: false
|
176
172
|
requirements:
|
177
173
|
- - ! '>='
|
178
174
|
- !ruby/object:Gem::Version
|
179
175
|
version: '0'
|
180
|
-
segments:
|
181
|
-
- 0
|
182
|
-
hash: 2115151081972697486
|
183
176
|
requirements: []
|
184
177
|
rubyforge_project:
|
185
178
|
rubygems_version: 1.8.24
|
@@ -1,734 +0,0 @@
|
|
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)
|