r18n-rails 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/r18n-rails.rb +2 -1
- data/lib/r18n-rails/controller.rb +3 -5
- data/lib/r18n-rails/mixin.rb +41 -0
- data/spec/app/app/controllers/test_controller.rb +5 -0
- data/spec/app/config/environment.rb +2 -0
- data/spec/app/log/test.log +2061 -0
- data/spec/rails_spec.rb +9 -3
- metadata +3 -2
data/lib/r18n-rails.rb
CHANGED
@@ -23,6 +23,7 @@ require 'r18n-core/translated'
|
|
23
23
|
require 'r18n-rails-api'
|
24
24
|
|
25
25
|
dir = Pathname(__FILE__).dirname.expand_path + 'r18n-rails'
|
26
|
+
require dir + 'mixin'
|
26
27
|
require dir + 'helpers'
|
27
28
|
require dir + 'controller'
|
28
29
|
|
@@ -32,6 +33,6 @@ R18n::Filters.add(::R18n::Untranslated, :untranslated_html) do
|
|
32
33
|
"#{translated}<span style='color: red'>#{untranslated}</span>"
|
33
34
|
end
|
34
35
|
|
35
|
-
ActionController::Base.helper(R18n::Rails::
|
36
|
+
ActionController::Base.helper(R18n::Rails::Mixin)
|
36
37
|
ActionController::Base.send(:include, R18n::Rails::Controller)
|
37
38
|
ActionController::Base.send(:before_filter, :set_r18n)
|
@@ -22,16 +22,14 @@ require 'r18n-rails-api'
|
|
22
22
|
module R18n
|
23
23
|
module Rails
|
24
24
|
module Controller
|
25
|
-
|
25
|
+
include Mixin
|
26
26
|
|
27
|
-
|
28
|
-
def r18n
|
29
|
-
R18n.get
|
30
|
-
end
|
27
|
+
private
|
31
28
|
|
32
29
|
# Auto detect user locales and change backend.
|
33
30
|
def set_r18n
|
34
31
|
R18n.set do
|
32
|
+
R18n::I18n.default = ::I18n.default_locale.to_s
|
35
33
|
locales = R18n::I18n.parse_http(request.env['HTTP_ACCEPT_LANGUAGE'])
|
36
34
|
|
37
35
|
if params[:locale]
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
R18n methods for Rails helpers and controllers.
|
3
|
+
|
4
|
+
Copyright (C) 2009 Andrey “A.I.” Sitnik <andrey@sitnik.ru>
|
5
|
+
|
6
|
+
This program is free software: you can redistribute it and/or modify
|
7
|
+
it under the terms of the GNU Lesser General Public License as published by
|
8
|
+
the Free Software Foundation, either version 3 of the License, or
|
9
|
+
(at your option) any later version.
|
10
|
+
|
11
|
+
This program is distributed in the hope that it will be useful,
|
12
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14
|
+
GNU Lesser General Public License for more details.
|
15
|
+
|
16
|
+
You should have received a copy of the GNU Lesser General Public License
|
17
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
18
|
+
=end
|
19
|
+
|
20
|
+
module R18n
|
21
|
+
module Rails
|
22
|
+
module Mixin
|
23
|
+
# Return current R18n instance.
|
24
|
+
def r18n
|
25
|
+
R18n.get
|
26
|
+
end
|
27
|
+
|
28
|
+
# Extend +t+ helper to use also R18n syntax.
|
29
|
+
#
|
30
|
+
# t 'user.name' # Rails I18n style
|
31
|
+
# t.user.name # R18n style
|
32
|
+
def t(*params)
|
33
|
+
if params.empty?
|
34
|
+
r18n.t
|
35
|
+
else
|
36
|
+
super(*params)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
data/spec/app/log/test.log
CHANGED
@@ -891,3 +891,2064 @@ Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
|
891
891
|
[0m
|
892
892
|
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
893
893
|
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
894
|
+
|
895
|
+
|
896
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
897
|
+
|
898
|
+
|
899
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
900
|
+
Parameters: {"locale"=>"ru"}
|
901
|
+
|
902
|
+
|
903
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
904
|
+
|
905
|
+
|
906
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
907
|
+
|
908
|
+
|
909
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
910
|
+
|
911
|
+
|
912
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
913
|
+
|
914
|
+
|
915
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
916
|
+
|
917
|
+
|
918
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:03) [GET]
|
919
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
920
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
921
|
+
FROM sqlite_master
|
922
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
923
|
+
[0m
|
924
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
925
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
926
|
+
FROM sqlite_master
|
927
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
928
|
+
[0m
|
929
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
930
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
931
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
932
|
+
FROM sqlite_master
|
933
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
934
|
+
[0m
|
935
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
936
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
937
|
+
|
938
|
+
|
939
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:27) [GET]
|
940
|
+
Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
941
|
+
|
942
|
+
|
943
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
944
|
+
Parameters: {"locale"=>"ru"}
|
945
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
946
|
+
|
947
|
+
|
948
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
949
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
950
|
+
|
951
|
+
|
952
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
953
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
954
|
+
|
955
|
+
|
956
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
957
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
|
958
|
+
|
959
|
+
|
960
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
961
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
962
|
+
|
963
|
+
|
964
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
965
|
+
Rendering test/helpers
|
966
|
+
Completed in 47ms (View: 38, DB: 0) | 200 OK [http://test.host/helpers]
|
967
|
+
|
968
|
+
|
969
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:28) [GET]
|
970
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
971
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
972
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
973
|
+
FROM sqlite_master
|
974
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
975
|
+
[0m
|
976
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
977
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
978
|
+
FROM sqlite_master
|
979
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
980
|
+
[0m
|
981
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
982
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
983
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
984
|
+
FROM sqlite_master
|
985
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
986
|
+
[0m
|
987
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
988
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
989
|
+
|
990
|
+
|
991
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
992
|
+
|
993
|
+
|
994
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
995
|
+
Parameters: {"locale"=>"ru"}
|
996
|
+
|
997
|
+
|
998
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
999
|
+
|
1000
|
+
|
1001
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
1002
|
+
|
1003
|
+
|
1004
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
1005
|
+
|
1006
|
+
|
1007
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
1008
|
+
|
1009
|
+
|
1010
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
1011
|
+
|
1012
|
+
|
1013
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:33) [GET]
|
1014
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1015
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1016
|
+
FROM sqlite_master
|
1017
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1018
|
+
[0m
|
1019
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1020
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1021
|
+
FROM sqlite_master
|
1022
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1023
|
+
[0m
|
1024
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1025
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1026
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1027
|
+
FROM sqlite_master
|
1028
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1029
|
+
[0m
|
1030
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1031
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1032
|
+
|
1033
|
+
|
1034
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1035
|
+
|
1036
|
+
|
1037
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1038
|
+
Parameters: {"locale"=>"ru"}
|
1039
|
+
|
1040
|
+
|
1041
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1042
|
+
|
1043
|
+
|
1044
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1045
|
+
|
1046
|
+
|
1047
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1048
|
+
|
1049
|
+
|
1050
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1051
|
+
|
1052
|
+
|
1053
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1054
|
+
|
1055
|
+
|
1056
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:40) [GET]
|
1057
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1058
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1059
|
+
FROM sqlite_master
|
1060
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1061
|
+
[0m
|
1062
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1063
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1064
|
+
FROM sqlite_master
|
1065
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1066
|
+
[0m
|
1067
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1068
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1069
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1070
|
+
FROM sqlite_master
|
1071
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1072
|
+
[0m
|
1073
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1074
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1075
|
+
|
1076
|
+
|
1077
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1078
|
+
Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1079
|
+
|
1080
|
+
|
1081
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1082
|
+
Parameters: {"locale"=>"ru"}
|
1083
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1084
|
+
|
1085
|
+
|
1086
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1087
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1088
|
+
|
1089
|
+
|
1090
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1091
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1092
|
+
|
1093
|
+
|
1094
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1095
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
|
1096
|
+
|
1097
|
+
|
1098
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1099
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1100
|
+
|
1101
|
+
|
1102
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1103
|
+
Rendering test/helpers
|
1104
|
+
Completed in 18ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
|
1105
|
+
|
1106
|
+
|
1107
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:51:49) [GET]
|
1108
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1109
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1110
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1111
|
+
FROM sqlite_master
|
1112
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1113
|
+
[0m
|
1114
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1115
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1116
|
+
FROM sqlite_master
|
1117
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1118
|
+
[0m
|
1119
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1120
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1121
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1122
|
+
FROM sqlite_master
|
1123
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1124
|
+
[0m
|
1125
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1126
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1127
|
+
|
1128
|
+
|
1129
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1130
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1131
|
+
|
1132
|
+
|
1133
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1134
|
+
Parameters: {"locale"=>"ru"}
|
1135
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1136
|
+
|
1137
|
+
|
1138
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1139
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1140
|
+
|
1141
|
+
|
1142
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1143
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1144
|
+
|
1145
|
+
|
1146
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1147
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
|
1148
|
+
|
1149
|
+
|
1150
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1151
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1152
|
+
|
1153
|
+
|
1154
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1155
|
+
Rendering test/helpers
|
1156
|
+
Completed in 17ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
|
1157
|
+
|
1158
|
+
|
1159
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:52:45) [GET]
|
1160
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1161
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1162
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1163
|
+
FROM sqlite_master
|
1164
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1165
|
+
[0m
|
1166
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1167
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1168
|
+
FROM sqlite_master
|
1169
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1170
|
+
[0m
|
1171
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1172
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1173
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1174
|
+
FROM sqlite_master
|
1175
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1176
|
+
[0m
|
1177
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1178
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1179
|
+
|
1180
|
+
|
1181
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1182
|
+
Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1183
|
+
|
1184
|
+
|
1185
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1186
|
+
Parameters: {"locale"=>"ru"}
|
1187
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1188
|
+
|
1189
|
+
|
1190
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1191
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1192
|
+
|
1193
|
+
|
1194
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1195
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1196
|
+
|
1197
|
+
|
1198
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1199
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
|
1200
|
+
|
1201
|
+
|
1202
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1203
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1204
|
+
|
1205
|
+
|
1206
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1207
|
+
Rendering test/helpers
|
1208
|
+
Completed in 18ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
|
1209
|
+
|
1210
|
+
|
1211
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:53:44) [GET]
|
1212
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1213
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1214
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1215
|
+
FROM sqlite_master
|
1216
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1217
|
+
[0m
|
1218
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1219
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1220
|
+
FROM sqlite_master
|
1221
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1222
|
+
[0m
|
1223
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1224
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1225
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1226
|
+
FROM sqlite_master
|
1227
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1228
|
+
[0m
|
1229
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1230
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1231
|
+
|
1232
|
+
|
1233
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1234
|
+
Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1235
|
+
|
1236
|
+
|
1237
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1238
|
+
Parameters: {"locale"=>"ru"}
|
1239
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1240
|
+
|
1241
|
+
|
1242
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1243
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1244
|
+
|
1245
|
+
|
1246
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1247
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1248
|
+
|
1249
|
+
|
1250
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1251
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/translations]
|
1252
|
+
|
1253
|
+
|
1254
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1255
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1256
|
+
|
1257
|
+
|
1258
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1259
|
+
Rendering test/helpers
|
1260
|
+
Completed in 18ms (View: 9, DB: 0) | 200 OK [http://test.host/helpers]
|
1261
|
+
|
1262
|
+
|
1263
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:53:55) [GET]
|
1264
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1265
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1266
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1267
|
+
FROM sqlite_master
|
1268
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1269
|
+
[0m
|
1270
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1271
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1272
|
+
FROM sqlite_master
|
1273
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1274
|
+
[0m
|
1275
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1276
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1277
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1278
|
+
FROM sqlite_master
|
1279
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1280
|
+
[0m
|
1281
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1282
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1283
|
+
|
1284
|
+
|
1285
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1286
|
+
Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1287
|
+
|
1288
|
+
|
1289
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1290
|
+
Parameters: {"locale"=>"ru"}
|
1291
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1292
|
+
|
1293
|
+
|
1294
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1295
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1296
|
+
|
1297
|
+
|
1298
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1299
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1300
|
+
|
1301
|
+
|
1302
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1303
|
+
Parameters: {"locale"=>"en"}
|
1304
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1305
|
+
|
1306
|
+
|
1307
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1308
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1309
|
+
|
1310
|
+
|
1311
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1312
|
+
Parameters: {"locale"=>"en"}
|
1313
|
+
Rendering test/helpers
|
1314
|
+
Completed in 19ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1315
|
+
|
1316
|
+
|
1317
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:54:33) [GET]
|
1318
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1319
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1320
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1321
|
+
FROM sqlite_master
|
1322
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1323
|
+
[0m
|
1324
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1325
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1326
|
+
FROM sqlite_master
|
1327
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1328
|
+
[0m
|
1329
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1330
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1331
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1332
|
+
FROM sqlite_master
|
1333
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1334
|
+
[0m
|
1335
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1336
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1337
|
+
|
1338
|
+
|
1339
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1340
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1341
|
+
|
1342
|
+
|
1343
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1344
|
+
Parameters: {"locale"=>"ru"}
|
1345
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1346
|
+
|
1347
|
+
|
1348
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1349
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1350
|
+
|
1351
|
+
|
1352
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1353
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1354
|
+
|
1355
|
+
|
1356
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1357
|
+
Parameters: {"locale"=>"en"}
|
1358
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1359
|
+
|
1360
|
+
|
1361
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1362
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1363
|
+
|
1364
|
+
|
1365
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1366
|
+
Parameters: {"locale"=>"en"}
|
1367
|
+
Rendering test/helpers
|
1368
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1369
|
+
|
1370
|
+
|
1371
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-19 20:54:42) [GET]
|
1372
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1373
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1374
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1375
|
+
FROM sqlite_master
|
1376
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1377
|
+
[0m
|
1378
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1379
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1380
|
+
FROM sqlite_master
|
1381
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1382
|
+
[0m
|
1383
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1384
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1385
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1386
|
+
FROM sqlite_master
|
1387
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1388
|
+
[0m
|
1389
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1390
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1391
|
+
|
1392
|
+
|
1393
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:23) [GET]
|
1394
|
+
Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1395
|
+
|
1396
|
+
|
1397
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1398
|
+
Parameters: {"locale"=>"ru"}
|
1399
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1400
|
+
|
1401
|
+
|
1402
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1403
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1404
|
+
|
1405
|
+
|
1406
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1407
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1408
|
+
|
1409
|
+
|
1410
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1411
|
+
Parameters: {"locale"=>"en"}
|
1412
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1413
|
+
|
1414
|
+
|
1415
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1416
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1417
|
+
|
1418
|
+
|
1419
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1420
|
+
Parameters: {"locale"=>"en"}
|
1421
|
+
Rendering test/helpers
|
1422
|
+
Completed in 37ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1423
|
+
|
1424
|
+
|
1425
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 15:33:24) [GET]
|
1426
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1427
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1428
|
+
FROM sqlite_master
|
1429
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1430
|
+
[0m
|
1431
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1432
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1433
|
+
FROM sqlite_master
|
1434
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1435
|
+
[0m
|
1436
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1437
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1438
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
1439
|
+
FROM sqlite_master
|
1440
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1441
|
+
[0m
|
1442
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1443
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1444
|
+
|
1445
|
+
|
1446
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1447
|
+
Completed in 19ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1448
|
+
|
1449
|
+
|
1450
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1451
|
+
Parameters: {"locale"=>"ru"}
|
1452
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1453
|
+
|
1454
|
+
|
1455
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1456
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1457
|
+
|
1458
|
+
|
1459
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1460
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1461
|
+
|
1462
|
+
|
1463
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1464
|
+
Parameters: {"locale"=>"en"}
|
1465
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1466
|
+
|
1467
|
+
|
1468
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1469
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1470
|
+
|
1471
|
+
|
1472
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1473
|
+
Parameters: {"locale"=>"en"}
|
1474
|
+
Rendering test/helpers
|
1475
|
+
Completed in 36ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1476
|
+
|
1477
|
+
|
1478
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:00:09) [GET]
|
1479
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1480
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1481
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1482
|
+
FROM sqlite_master
|
1483
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1484
|
+
[0m
|
1485
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1486
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1487
|
+
FROM sqlite_master
|
1488
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1489
|
+
[0m
|
1490
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1491
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1492
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1493
|
+
FROM sqlite_master
|
1494
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1495
|
+
[0m
|
1496
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1497
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1498
|
+
|
1499
|
+
|
1500
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
|
1501
|
+
Completed in 21ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1502
|
+
|
1503
|
+
|
1504
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
|
1505
|
+
Parameters: {"locale"=>"ru"}
|
1506
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1507
|
+
|
1508
|
+
|
1509
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
|
1510
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1511
|
+
|
1512
|
+
|
1513
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:09:56) [GET]
|
1514
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1515
|
+
|
1516
|
+
|
1517
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
|
1518
|
+
Parameters: {"locale"=>"en"}
|
1519
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1520
|
+
|
1521
|
+
|
1522
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
|
1523
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1524
|
+
|
1525
|
+
|
1526
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
|
1527
|
+
Parameters: {"locale"=>"en"}
|
1528
|
+
Rendering test/helpers
|
1529
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1530
|
+
|
1531
|
+
|
1532
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:09:57) [GET]
|
1533
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1534
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1535
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1536
|
+
FROM sqlite_master
|
1537
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1538
|
+
[0m
|
1539
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1540
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1541
|
+
FROM sqlite_master
|
1542
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1543
|
+
[0m
|
1544
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1545
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1546
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1547
|
+
FROM sqlite_master
|
1548
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1549
|
+
[0m
|
1550
|
+
[4;35;1mSQL (0.2ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1551
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1552
|
+
|
1553
|
+
|
1554
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
|
1555
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1556
|
+
|
1557
|
+
|
1558
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
|
1559
|
+
Parameters: {"locale"=>"ru"}
|
1560
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1561
|
+
|
1562
|
+
|
1563
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
|
1564
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1565
|
+
|
1566
|
+
|
1567
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:26) [GET]
|
1568
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1569
|
+
|
1570
|
+
|
1571
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
|
1572
|
+
Parameters: {"locale"=>"en"}
|
1573
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1574
|
+
|
1575
|
+
|
1576
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
|
1577
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1578
|
+
|
1579
|
+
|
1580
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
|
1581
|
+
Parameters: {"locale"=>"en"}
|
1582
|
+
Rendering test/helpers
|
1583
|
+
Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1584
|
+
|
1585
|
+
|
1586
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:11:27) [GET]
|
1587
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1588
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
1589
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1590
|
+
FROM sqlite_master
|
1591
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1592
|
+
[0m
|
1593
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1594
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1595
|
+
FROM sqlite_master
|
1596
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1597
|
+
[0m
|
1598
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1599
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1600
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
1601
|
+
FROM sqlite_master
|
1602
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1603
|
+
[0m
|
1604
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1605
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1606
|
+
|
1607
|
+
|
1608
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1609
|
+
Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1610
|
+
|
1611
|
+
|
1612
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1613
|
+
Parameters: {"locale"=>"ru"}
|
1614
|
+
Completed in 17ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1615
|
+
|
1616
|
+
|
1617
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1618
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1619
|
+
|
1620
|
+
|
1621
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1622
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1623
|
+
|
1624
|
+
|
1625
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1626
|
+
Parameters: {"locale"=>"en"}
|
1627
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1628
|
+
|
1629
|
+
|
1630
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1631
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1632
|
+
|
1633
|
+
|
1634
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1635
|
+
Parameters: {"locale"=>"en"}
|
1636
|
+
Rendering test/helpers
|
1637
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1638
|
+
|
1639
|
+
|
1640
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:11:53) [GET]
|
1641
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1642
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1643
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1644
|
+
FROM sqlite_master
|
1645
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1646
|
+
[0m
|
1647
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1648
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1649
|
+
FROM sqlite_master
|
1650
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1651
|
+
[0m
|
1652
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1653
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1654
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1655
|
+
FROM sqlite_master
|
1656
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1657
|
+
[0m
|
1658
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1659
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1660
|
+
|
1661
|
+
|
1662
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1663
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1664
|
+
|
1665
|
+
|
1666
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1667
|
+
Parameters: {"locale"=>"ru"}
|
1668
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1669
|
+
|
1670
|
+
|
1671
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1672
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1673
|
+
|
1674
|
+
|
1675
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1676
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1677
|
+
|
1678
|
+
|
1679
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1680
|
+
Parameters: {"locale"=>"en"}
|
1681
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1682
|
+
|
1683
|
+
|
1684
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1685
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1686
|
+
|
1687
|
+
|
1688
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1689
|
+
Parameters: {"locale"=>"en"}
|
1690
|
+
Rendering test/helpers
|
1691
|
+
Completed in 20ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1692
|
+
|
1693
|
+
|
1694
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:12:46) [GET]
|
1695
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1696
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1697
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1698
|
+
FROM sqlite_master
|
1699
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1700
|
+
[0m
|
1701
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1702
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1703
|
+
FROM sqlite_master
|
1704
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1705
|
+
[0m
|
1706
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1707
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1708
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1709
|
+
FROM sqlite_master
|
1710
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1711
|
+
[0m
|
1712
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1713
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1714
|
+
|
1715
|
+
|
1716
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1717
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1718
|
+
|
1719
|
+
|
1720
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1721
|
+
Parameters: {"locale"=>"ru"}
|
1722
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1723
|
+
|
1724
|
+
|
1725
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1726
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1727
|
+
|
1728
|
+
|
1729
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1730
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1731
|
+
|
1732
|
+
|
1733
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1734
|
+
Parameters: {"locale"=>"en"}
|
1735
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1736
|
+
|
1737
|
+
|
1738
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1739
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1740
|
+
|
1741
|
+
|
1742
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1743
|
+
Parameters: {"locale"=>"en"}
|
1744
|
+
Rendering test/helpers
|
1745
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1746
|
+
|
1747
|
+
|
1748
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:13:01) [GET]
|
1749
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1750
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1751
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1752
|
+
FROM sqlite_master
|
1753
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1754
|
+
[0m
|
1755
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1756
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1757
|
+
FROM sqlite_master
|
1758
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1759
|
+
[0m
|
1760
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1761
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1762
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1763
|
+
FROM sqlite_master
|
1764
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1765
|
+
[0m
|
1766
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1767
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1768
|
+
|
1769
|
+
|
1770
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1771
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1772
|
+
|
1773
|
+
|
1774
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1775
|
+
Parameters: {"locale"=>"ru"}
|
1776
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1777
|
+
|
1778
|
+
|
1779
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1780
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1781
|
+
|
1782
|
+
|
1783
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1784
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1785
|
+
|
1786
|
+
|
1787
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1788
|
+
Parameters: {"locale"=>"en"}
|
1789
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1790
|
+
|
1791
|
+
|
1792
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1793
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1794
|
+
|
1795
|
+
|
1796
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1797
|
+
Parameters: {"locale"=>"en"}
|
1798
|
+
Rendering test/helpers
|
1799
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1800
|
+
|
1801
|
+
|
1802
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:13:50) [GET]
|
1803
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1804
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1805
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1806
|
+
FROM sqlite_master
|
1807
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1808
|
+
[0m
|
1809
|
+
[4;36;1mSQL (0.6ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1810
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1811
|
+
FROM sqlite_master
|
1812
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1813
|
+
[0m
|
1814
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1815
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1816
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1817
|
+
FROM sqlite_master
|
1818
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1819
|
+
[0m
|
1820
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1821
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1822
|
+
|
1823
|
+
|
1824
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1825
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1826
|
+
|
1827
|
+
|
1828
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1829
|
+
Parameters: {"locale"=>"ru"}
|
1830
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1831
|
+
|
1832
|
+
|
1833
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1834
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1835
|
+
|
1836
|
+
|
1837
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1838
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1839
|
+
|
1840
|
+
|
1841
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1842
|
+
Parameters: {"locale"=>"en"}
|
1843
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1844
|
+
|
1845
|
+
|
1846
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1847
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1848
|
+
|
1849
|
+
|
1850
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1851
|
+
Parameters: {"locale"=>"en"}
|
1852
|
+
Rendering test/helpers
|
1853
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1854
|
+
|
1855
|
+
|
1856
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:14:27) [GET]
|
1857
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1858
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1859
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1860
|
+
FROM sqlite_master
|
1861
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1862
|
+
[0m
|
1863
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1864
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1865
|
+
FROM sqlite_master
|
1866
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1867
|
+
[0m
|
1868
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1869
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1870
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
1871
|
+
FROM sqlite_master
|
1872
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1873
|
+
[0m
|
1874
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1875
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1876
|
+
|
1877
|
+
|
1878
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1879
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1880
|
+
|
1881
|
+
|
1882
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1883
|
+
Parameters: {"locale"=>"ru"}
|
1884
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
1885
|
+
|
1886
|
+
|
1887
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1888
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1889
|
+
|
1890
|
+
|
1891
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1892
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1893
|
+
|
1894
|
+
|
1895
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1896
|
+
Parameters: {"locale"=>"en"}
|
1897
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
1898
|
+
|
1899
|
+
|
1900
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1901
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1902
|
+
|
1903
|
+
|
1904
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1905
|
+
Parameters: {"locale"=>"en"}
|
1906
|
+
Rendering test/helpers
|
1907
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
1908
|
+
|
1909
|
+
|
1910
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-22 16:15:09) [GET]
|
1911
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1912
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1913
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1914
|
+
FROM sqlite_master
|
1915
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1916
|
+
[0m
|
1917
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1918
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
1919
|
+
FROM sqlite_master
|
1920
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1921
|
+
[0m
|
1922
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1923
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1924
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
1925
|
+
FROM sqlite_master
|
1926
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1927
|
+
[0m
|
1928
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1929
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1930
|
+
|
1931
|
+
|
1932
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1933
|
+
Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1934
|
+
|
1935
|
+
|
1936
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1937
|
+
Parameters: {"locale"=>"ru"}
|
1938
|
+
|
1939
|
+
|
1940
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1941
|
+
|
1942
|
+
|
1943
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1944
|
+
|
1945
|
+
|
1946
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1947
|
+
Parameters: {"locale"=>"en"}
|
1948
|
+
|
1949
|
+
|
1950
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1951
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
1952
|
+
|
1953
|
+
|
1954
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:24:14) [GET]
|
1955
|
+
Parameters: {"locale"=>"en"}
|
1956
|
+
|
1957
|
+
|
1958
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:24:15) [GET]
|
1959
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
1960
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
1961
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
1962
|
+
FROM sqlite_master
|
1963
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1964
|
+
[0m
|
1965
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
1966
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
1967
|
+
FROM sqlite_master
|
1968
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1969
|
+
[0m
|
1970
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1971
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1972
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
1973
|
+
FROM sqlite_master
|
1974
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
1975
|
+
[0m
|
1976
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
1977
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
1978
|
+
|
1979
|
+
|
1980
|
+
Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:24:15) [GET]
|
1981
|
+
|
1982
|
+
|
1983
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
1984
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
1985
|
+
|
1986
|
+
|
1987
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
1988
|
+
Parameters: {"locale"=>"ru"}
|
1989
|
+
|
1990
|
+
|
1991
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
1992
|
+
|
1993
|
+
|
1994
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
1995
|
+
|
1996
|
+
|
1997
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
1998
|
+
Parameters: {"locale"=>"en"}
|
1999
|
+
|
2000
|
+
|
2001
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
2002
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2003
|
+
|
2004
|
+
|
2005
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
2006
|
+
Parameters: {"locale"=>"en"}
|
2007
|
+
|
2008
|
+
|
2009
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
2010
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2011
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2012
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2013
|
+
FROM sqlite_master
|
2014
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2015
|
+
[0m
|
2016
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2017
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2018
|
+
FROM sqlite_master
|
2019
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2020
|
+
[0m
|
2021
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2022
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2023
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2024
|
+
FROM sqlite_master
|
2025
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2026
|
+
[0m
|
2027
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2028
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2029
|
+
|
2030
|
+
|
2031
|
+
Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:24:36) [GET]
|
2032
|
+
Completed in 8ms (View: 0, DB: 3) | 200 OK [http://test.host/markdown]
|
2033
|
+
|
2034
|
+
|
2035
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2036
|
+
|
2037
|
+
|
2038
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2039
|
+
Parameters: {"locale"=>"ru"}
|
2040
|
+
|
2041
|
+
|
2042
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2043
|
+
|
2044
|
+
|
2045
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2046
|
+
|
2047
|
+
|
2048
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2049
|
+
Parameters: {"locale"=>"en"}
|
2050
|
+
|
2051
|
+
|
2052
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2053
|
+
|
2054
|
+
|
2055
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2056
|
+
Parameters: {"locale"=>"en"}
|
2057
|
+
|
2058
|
+
|
2059
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2060
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2061
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2062
|
+
FROM sqlite_master
|
2063
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2064
|
+
[0m
|
2065
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2066
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2067
|
+
FROM sqlite_master
|
2068
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2069
|
+
[0m
|
2070
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2071
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2072
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2073
|
+
FROM sqlite_master
|
2074
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2075
|
+
[0m
|
2076
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2077
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2078
|
+
|
2079
|
+
|
2080
|
+
Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:04) [GET]
|
2081
|
+
|
2082
|
+
|
2083
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2084
|
+
Completed in 173ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2085
|
+
|
2086
|
+
|
2087
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2088
|
+
Parameters: {"locale"=>"ru"}
|
2089
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2090
|
+
|
2091
|
+
|
2092
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2093
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2094
|
+
|
2095
|
+
|
2096
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2097
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2098
|
+
|
2099
|
+
|
2100
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2101
|
+
Parameters: {"locale"=>"en"}
|
2102
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2103
|
+
|
2104
|
+
|
2105
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2106
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2107
|
+
|
2108
|
+
|
2109
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2110
|
+
Parameters: {"locale"=>"en"}
|
2111
|
+
Rendering test/helpers
|
2112
|
+
Completed in 94ms (View: 26, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2113
|
+
|
2114
|
+
|
2115
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:16) [GET]
|
2116
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2117
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2118
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2119
|
+
FROM sqlite_master
|
2120
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2121
|
+
[0m
|
2122
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2123
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2124
|
+
FROM sqlite_master
|
2125
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2126
|
+
[0m
|
2127
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2128
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2129
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2130
|
+
FROM sqlite_master
|
2131
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2132
|
+
[0m
|
2133
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2134
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2135
|
+
|
2136
|
+
|
2137
|
+
Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:17) [GET]
|
2138
|
+
Completed in 12ms (View: 0, DB: 3) | 200 OK [http://test.host/markdown]
|
2139
|
+
|
2140
|
+
|
2141
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2142
|
+
Completed in 165ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2143
|
+
|
2144
|
+
|
2145
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2146
|
+
Parameters: {"locale"=>"ru"}
|
2147
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2148
|
+
|
2149
|
+
|
2150
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2151
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2152
|
+
|
2153
|
+
|
2154
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2155
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2156
|
+
|
2157
|
+
|
2158
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2159
|
+
Parameters: {"locale"=>"en"}
|
2160
|
+
Completed in 15ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2161
|
+
|
2162
|
+
|
2163
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2164
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2165
|
+
|
2166
|
+
|
2167
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2168
|
+
Parameters: {"locale"=>"en"}
|
2169
|
+
Rendering test/helpers
|
2170
|
+
Completed in 78ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2171
|
+
|
2172
|
+
|
2173
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2174
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2175
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2176
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2177
|
+
FROM sqlite_master
|
2178
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2179
|
+
[0m
|
2180
|
+
[4;36;1mSQL (0.9ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2181
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2182
|
+
FROM sqlite_master
|
2183
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2184
|
+
[0m
|
2185
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2186
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2187
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2188
|
+
FROM sqlite_master
|
2189
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2190
|
+
[0m
|
2191
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2192
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2193
|
+
|
2194
|
+
|
2195
|
+
Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:21) [GET]
|
2196
|
+
Completed in 11ms (View: 0, DB: 3) | 200 OK [http://test.host/markdown]
|
2197
|
+
|
2198
|
+
|
2199
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2200
|
+
Completed in 163ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2201
|
+
|
2202
|
+
|
2203
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2204
|
+
Parameters: {"locale"=>"ru"}
|
2205
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2206
|
+
|
2207
|
+
|
2208
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2209
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2210
|
+
|
2211
|
+
|
2212
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2213
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2214
|
+
|
2215
|
+
|
2216
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2217
|
+
Parameters: {"locale"=>"en"}
|
2218
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2219
|
+
|
2220
|
+
|
2221
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2222
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2223
|
+
|
2224
|
+
|
2225
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2226
|
+
Parameters: {"locale"=>"en"}
|
2227
|
+
Rendering test/helpers
|
2228
|
+
Completed in 76ms (View: 10, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2229
|
+
|
2230
|
+
|
2231
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2232
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2233
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2234
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2235
|
+
FROM sqlite_master
|
2236
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2237
|
+
[0m
|
2238
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2239
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2240
|
+
FROM sqlite_master
|
2241
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2242
|
+
[0m
|
2243
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2244
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2245
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2246
|
+
FROM sqlite_master
|
2247
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2248
|
+
[0m
|
2249
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2250
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2251
|
+
|
2252
|
+
|
2253
|
+
Processing TestController#markdown (for 0.0.0.0 at 2010-02-23 01:25:33) [GET]
|
2254
|
+
|
2255
|
+
|
2256
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:06) [GET]
|
2257
|
+
Completed in 80ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2258
|
+
|
2259
|
+
|
2260
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:06) [GET]
|
2261
|
+
Parameters: {"locale"=>"ru"}
|
2262
|
+
Completed in 13ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2263
|
+
|
2264
|
+
|
2265
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:06) [GET]
|
2266
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2267
|
+
|
2268
|
+
|
2269
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
|
2270
|
+
Completed in 19ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2271
|
+
|
2272
|
+
|
2273
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
|
2274
|
+
Parameters: {"locale"=>"en"}
|
2275
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2276
|
+
|
2277
|
+
|
2278
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
|
2279
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2280
|
+
|
2281
|
+
|
2282
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
|
2283
|
+
Parameters: {"locale"=>"en"}
|
2284
|
+
Rendering test/helpers
|
2285
|
+
Completed in 44ms (View: 33, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2286
|
+
|
2287
|
+
|
2288
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
|
2289
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2290
|
+
|
2291
|
+
|
2292
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:42:07) [GET]
|
2293
|
+
Parameters: {"locale"=>"en"}
|
2294
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2295
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2296
|
+
FROM sqlite_master
|
2297
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2298
|
+
[0m
|
2299
|
+
[4;36;1mSQL (17.2ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2300
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2301
|
+
FROM sqlite_master
|
2302
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2303
|
+
[0m
|
2304
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2305
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2306
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2307
|
+
FROM sqlite_master
|
2308
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2309
|
+
[0m
|
2310
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2311
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2312
|
+
|
2313
|
+
|
2314
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2315
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2316
|
+
|
2317
|
+
|
2318
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2319
|
+
Parameters: {"locale"=>"ru"}
|
2320
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2321
|
+
|
2322
|
+
|
2323
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2324
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2325
|
+
|
2326
|
+
|
2327
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2328
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2329
|
+
|
2330
|
+
|
2331
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2332
|
+
Parameters: {"locale"=>"en"}
|
2333
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2334
|
+
|
2335
|
+
|
2336
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2337
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2338
|
+
|
2339
|
+
|
2340
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2341
|
+
Parameters: {"locale"=>"en"}
|
2342
|
+
Rendering test/helpers
|
2343
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2344
|
+
|
2345
|
+
|
2346
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2347
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2348
|
+
|
2349
|
+
|
2350
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:42:44) [GET]
|
2351
|
+
Parameters: {"locale"=>"en"}
|
2352
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2353
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2354
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2355
|
+
FROM sqlite_master
|
2356
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2357
|
+
[0m
|
2358
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2359
|
+
[4;35;1mSQL (0.3ms)[0m [0m SELECT name
|
2360
|
+
FROM sqlite_master
|
2361
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2362
|
+
[0m
|
2363
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2364
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2365
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2366
|
+
FROM sqlite_master
|
2367
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2368
|
+
[0m
|
2369
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2370
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2371
|
+
|
2372
|
+
|
2373
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2374
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2375
|
+
|
2376
|
+
|
2377
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2378
|
+
Parameters: {"locale"=>"ru"}
|
2379
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2380
|
+
|
2381
|
+
|
2382
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2383
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2384
|
+
|
2385
|
+
|
2386
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2387
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2388
|
+
|
2389
|
+
|
2390
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2391
|
+
Parameters: {"locale"=>"en"}
|
2392
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2393
|
+
|
2394
|
+
|
2395
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2396
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2397
|
+
|
2398
|
+
|
2399
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2400
|
+
Parameters: {"locale"=>"en"}
|
2401
|
+
Rendering test/helpers
|
2402
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2403
|
+
|
2404
|
+
|
2405
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2406
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2407
|
+
|
2408
|
+
|
2409
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:44:04) [GET]
|
2410
|
+
Parameters: {"locale"=>"en"}
|
2411
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2412
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2413
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2414
|
+
FROM sqlite_master
|
2415
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2416
|
+
[0m
|
2417
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2418
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2419
|
+
FROM sqlite_master
|
2420
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2421
|
+
[0m
|
2422
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2423
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2424
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2425
|
+
FROM sqlite_master
|
2426
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2427
|
+
[0m
|
2428
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2429
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2430
|
+
|
2431
|
+
|
2432
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:25) [GET]
|
2433
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2434
|
+
|
2435
|
+
|
2436
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:25) [GET]
|
2437
|
+
Parameters: {"locale"=>"ru"}
|
2438
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2439
|
+
|
2440
|
+
|
2441
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2442
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2443
|
+
|
2444
|
+
|
2445
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2446
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2447
|
+
|
2448
|
+
|
2449
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2450
|
+
Parameters: {"locale"=>"en"}
|
2451
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2452
|
+
|
2453
|
+
|
2454
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2455
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2456
|
+
|
2457
|
+
|
2458
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2459
|
+
Parameters: {"locale"=>"en"}
|
2460
|
+
Rendering test/helpers
|
2461
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2462
|
+
|
2463
|
+
|
2464
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2465
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2466
|
+
|
2467
|
+
|
2468
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:44:26) [GET]
|
2469
|
+
Parameters: {"locale"=>"en"}
|
2470
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2471
|
+
[4;36;1mSQL (0.4ms)[0m [0;1mselect sqlite_version(*)[0m
|
2472
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2473
|
+
FROM sqlite_master
|
2474
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2475
|
+
[0m
|
2476
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2477
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2478
|
+
FROM sqlite_master
|
2479
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2480
|
+
[0m
|
2481
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2482
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2483
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2484
|
+
FROM sqlite_master
|
2485
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2486
|
+
[0m
|
2487
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2488
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2489
|
+
|
2490
|
+
|
2491
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:42) [GET]
|
2492
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2493
|
+
|
2494
|
+
|
2495
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:42) [GET]
|
2496
|
+
Parameters: {"locale"=>"ru"}
|
2497
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2498
|
+
|
2499
|
+
|
2500
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2501
|
+
Completed in 34ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2502
|
+
|
2503
|
+
|
2504
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2505
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2506
|
+
|
2507
|
+
|
2508
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2509
|
+
Parameters: {"locale"=>"en"}
|
2510
|
+
Completed in 14ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2511
|
+
|
2512
|
+
|
2513
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2514
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2515
|
+
|
2516
|
+
|
2517
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2518
|
+
Parameters: {"locale"=>"en"}
|
2519
|
+
Rendering test/helpers
|
2520
|
+
Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2521
|
+
|
2522
|
+
|
2523
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2524
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2525
|
+
|
2526
|
+
|
2527
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:44:43) [GET]
|
2528
|
+
Parameters: {"locale"=>"en"}
|
2529
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2530
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2531
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2532
|
+
FROM sqlite_master
|
2533
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2534
|
+
[0m
|
2535
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2536
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2537
|
+
FROM sqlite_master
|
2538
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2539
|
+
[0m
|
2540
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2541
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2542
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2543
|
+
FROM sqlite_master
|
2544
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2545
|
+
[0m
|
2546
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2547
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2548
|
+
|
2549
|
+
|
2550
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2551
|
+
Completed in 22ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2552
|
+
|
2553
|
+
|
2554
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2555
|
+
Parameters: {"locale"=>"ru"}
|
2556
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2557
|
+
|
2558
|
+
|
2559
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2560
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2561
|
+
|
2562
|
+
|
2563
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2564
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2565
|
+
|
2566
|
+
|
2567
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2568
|
+
Parameters: {"locale"=>"en"}
|
2569
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2570
|
+
|
2571
|
+
|
2572
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2573
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2574
|
+
|
2575
|
+
|
2576
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2577
|
+
Parameters: {"locale"=>"en"}
|
2578
|
+
Rendering test/helpers
|
2579
|
+
|
2580
|
+
|
2581
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2582
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2583
|
+
|
2584
|
+
|
2585
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:53:24) [GET]
|
2586
|
+
Parameters: {"locale"=>"en"}
|
2587
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2588
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2589
|
+
FROM sqlite_master
|
2590
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2591
|
+
[0m
|
2592
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2593
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2594
|
+
FROM sqlite_master
|
2595
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2596
|
+
[0m
|
2597
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2598
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2599
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2600
|
+
FROM sqlite_master
|
2601
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2602
|
+
[0m
|
2603
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2604
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2605
|
+
|
2606
|
+
|
2607
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2608
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2609
|
+
|
2610
|
+
|
2611
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2612
|
+
Parameters: {"locale"=>"ru"}
|
2613
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2614
|
+
|
2615
|
+
|
2616
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2617
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2618
|
+
|
2619
|
+
|
2620
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2621
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2622
|
+
|
2623
|
+
|
2624
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2625
|
+
Parameters: {"locale"=>"en"}
|
2626
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2627
|
+
|
2628
|
+
|
2629
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2630
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2631
|
+
|
2632
|
+
|
2633
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2634
|
+
Parameters: {"locale"=>"en"}
|
2635
|
+
Rendering test/helpers
|
2636
|
+
Completed in 20ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2637
|
+
|
2638
|
+
|
2639
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2640
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2641
|
+
|
2642
|
+
|
2643
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:53:45) [GET]
|
2644
|
+
Parameters: {"locale"=>"en"}
|
2645
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2646
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2647
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
2648
|
+
FROM sqlite_master
|
2649
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2650
|
+
[0m
|
2651
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2652
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2653
|
+
FROM sqlite_master
|
2654
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2655
|
+
[0m
|
2656
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2657
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2658
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2659
|
+
FROM sqlite_master
|
2660
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2661
|
+
[0m
|
2662
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2663
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2664
|
+
|
2665
|
+
|
2666
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2667
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2668
|
+
|
2669
|
+
|
2670
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2671
|
+
Parameters: {"locale"=>"ru"}
|
2672
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2673
|
+
|
2674
|
+
|
2675
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2676
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2677
|
+
|
2678
|
+
|
2679
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2680
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2681
|
+
|
2682
|
+
|
2683
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2684
|
+
Parameters: {"locale"=>"en"}
|
2685
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2686
|
+
|
2687
|
+
|
2688
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2689
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2690
|
+
|
2691
|
+
|
2692
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2693
|
+
Parameters: {"locale"=>"en"}
|
2694
|
+
Rendering test/helpers
|
2695
|
+
|
2696
|
+
|
2697
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2698
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2699
|
+
|
2700
|
+
|
2701
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:54:08) [GET]
|
2702
|
+
Parameters: {"locale"=>"en"}
|
2703
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2704
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2705
|
+
FROM sqlite_master
|
2706
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2707
|
+
[0m
|
2708
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2709
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2710
|
+
FROM sqlite_master
|
2711
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2712
|
+
[0m
|
2713
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2714
|
+
[4;35;1mSQL (0.5ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2715
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2716
|
+
FROM sqlite_master
|
2717
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2718
|
+
[0m
|
2719
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2720
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2721
|
+
|
2722
|
+
|
2723
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
|
2724
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2725
|
+
|
2726
|
+
|
2727
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
|
2728
|
+
Parameters: {"locale"=>"ru"}
|
2729
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2730
|
+
|
2731
|
+
|
2732
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
|
2733
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2734
|
+
|
2735
|
+
|
2736
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
|
2737
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2738
|
+
|
2739
|
+
|
2740
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
|
2741
|
+
Parameters: {"locale"=>"en"}
|
2742
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2743
|
+
|
2744
|
+
|
2745
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:54:27) [GET]
|
2746
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2747
|
+
|
2748
|
+
|
2749
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:54:28) [GET]
|
2750
|
+
Parameters: {"locale"=>"en"}
|
2751
|
+
Rendering test/helpers
|
2752
|
+
|
2753
|
+
|
2754
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:54:28) [GET]
|
2755
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2756
|
+
|
2757
|
+
|
2758
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:54:28) [GET]
|
2759
|
+
Parameters: {"locale"=>"en"}
|
2760
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2761
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2762
|
+
FROM sqlite_master
|
2763
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2764
|
+
[0m
|
2765
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2766
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2767
|
+
FROM sqlite_master
|
2768
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2769
|
+
[0m
|
2770
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2771
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2772
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2773
|
+
FROM sqlite_master
|
2774
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2775
|
+
[0m
|
2776
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2777
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2778
|
+
|
2779
|
+
|
2780
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2781
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2782
|
+
|
2783
|
+
|
2784
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2785
|
+
Parameters: {"locale"=>"ru"}
|
2786
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2787
|
+
|
2788
|
+
|
2789
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2790
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2791
|
+
|
2792
|
+
|
2793
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2794
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2795
|
+
|
2796
|
+
|
2797
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2798
|
+
Parameters: {"locale"=>"en"}
|
2799
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2800
|
+
|
2801
|
+
|
2802
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2803
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2804
|
+
|
2805
|
+
|
2806
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2807
|
+
Parameters: {"locale"=>"en"}
|
2808
|
+
Rendering test/helpers
|
2809
|
+
Completed in 19ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2810
|
+
|
2811
|
+
|
2812
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2813
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2814
|
+
|
2815
|
+
|
2816
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:54:41) [GET]
|
2817
|
+
Parameters: {"locale"=>"en"}
|
2818
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2819
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2820
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
2821
|
+
FROM sqlite_master
|
2822
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2823
|
+
[0m
|
2824
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2825
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2826
|
+
FROM sqlite_master
|
2827
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2828
|
+
[0m
|
2829
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2830
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2831
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2832
|
+
FROM sqlite_master
|
2833
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2834
|
+
[0m
|
2835
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2836
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2837
|
+
|
2838
|
+
|
2839
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2840
|
+
Completed in 20ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2841
|
+
|
2842
|
+
|
2843
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2844
|
+
Parameters: {"locale"=>"ru"}
|
2845
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2846
|
+
|
2847
|
+
|
2848
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2849
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2850
|
+
|
2851
|
+
|
2852
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2853
|
+
Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2854
|
+
|
2855
|
+
|
2856
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2857
|
+
Parameters: {"locale"=>"en"}
|
2858
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2859
|
+
|
2860
|
+
|
2861
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2862
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2863
|
+
|
2864
|
+
|
2865
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2866
|
+
Parameters: {"locale"=>"en"}
|
2867
|
+
Rendering test/helpers
|
2868
|
+
Completed in 25ms (View: 9, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2869
|
+
|
2870
|
+
|
2871
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2872
|
+
Completed in 8ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2873
|
+
|
2874
|
+
|
2875
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-24 20:55:02) [GET]
|
2876
|
+
Parameters: {"locale"=>"en"}
|
2877
|
+
Completed in 16ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2878
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2879
|
+
[4;35;1mSQL (0.5ms)[0m [0m SELECT name
|
2880
|
+
FROM sqlite_master
|
2881
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2882
|
+
[0m
|
2883
|
+
[4;36;1mSQL (0.7ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2884
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2885
|
+
FROM sqlite_master
|
2886
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2887
|
+
[0m
|
2888
|
+
[4;36;1mSQL (0.2ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2889
|
+
[4;35;1mSQL (0.3ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2890
|
+
[4;36;1mSQL (0.2ms)[0m [0;1m SELECT name
|
2891
|
+
FROM sqlite_master
|
2892
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2893
|
+
[0m
|
2894
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2895
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|
2896
|
+
|
2897
|
+
|
2898
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2899
|
+
Completed in 24ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2900
|
+
|
2901
|
+
|
2902
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2903
|
+
Parameters: {"locale"=>"ru"}
|
2904
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/ru/locales]
|
2905
|
+
|
2906
|
+
|
2907
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2908
|
+
Completed in 12ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2909
|
+
|
2910
|
+
|
2911
|
+
Processing TestController#locales (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2912
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/locales]
|
2913
|
+
|
2914
|
+
|
2915
|
+
Processing TestController#translations (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2916
|
+
Parameters: {"locale"=>"en"}
|
2917
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/translations]
|
2918
|
+
|
2919
|
+
|
2920
|
+
Processing TestController#available (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2921
|
+
Completed in 9ms (View: 0, DB: 0) | 200 OK [http://test.host/available]
|
2922
|
+
|
2923
|
+
|
2924
|
+
Processing TestController#helpers (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2925
|
+
Parameters: {"locale"=>"en"}
|
2926
|
+
Rendering test/helpers
|
2927
|
+
Completed in 64ms (View: 54, DB: 0) | 200 OK [http://test.host/en/helpers]
|
2928
|
+
|
2929
|
+
|
2930
|
+
Processing TestController#untranslated (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2931
|
+
Completed in 10ms (View: 0, DB: 0) | 200 OK [http://test.host/untranslated]
|
2932
|
+
|
2933
|
+
|
2934
|
+
Processing TestController#controller (for 0.0.0.0 at 2010-02-26 00:11:07) [GET]
|
2935
|
+
Parameters: {"locale"=>"en"}
|
2936
|
+
Completed in 11ms (View: 0, DB: 0) | 200 OK [http://test.host/en/controller]
|
2937
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mselect sqlite_version(*)[0m
|
2938
|
+
[4;35;1mSQL (0.4ms)[0m [0m SELECT name
|
2939
|
+
FROM sqlite_master
|
2940
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2941
|
+
[0m
|
2942
|
+
[4;36;1mSQL (0.8ms)[0m [0;1mCREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title_en" varchar(255), "title_ru" varchar(255)) [0m
|
2943
|
+
[4;35;1mSQL (0.2ms)[0m [0m SELECT name
|
2944
|
+
FROM sqlite_master
|
2945
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2946
|
+
[0m
|
2947
|
+
[4;36;1mSQL (0.3ms)[0m [0;1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2948
|
+
[4;35;1mSQL (0.4ms)[0m [0mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2949
|
+
[4;36;1mSQL (0.3ms)[0m [0;1m SELECT name
|
2950
|
+
FROM sqlite_master
|
2951
|
+
WHERE type = 'table' AND NOT name = 'sqlite_sequence'
|
2952
|
+
[0m
|
2953
|
+
[4;35;1mSQL (0.1ms)[0m [0mSELECT version FROM "schema_migrations"[0m
|
2954
|
+
[4;36;1mSQL (0.1ms)[0m [0;1mINSERT INTO "schema_migrations" (version) VALUES ('20091218130034')[0m
|