collection-json-browser 0.0.4 → 0.0.5
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/app/assets/javascripts/collection_json_browser/angular/controllers/api_controller.js +17 -10
- data/app/assets/stylesheets/collection_json_browser/application.css +4 -0
- data/app/views/collection_json_browser/home/index.html +13 -1
- data/lib/collection-json-browser/version.rb +1 -1
- data/test/dummy/log/development.log +1557 -0
- data/test/dummy/public/scenarios.js +5 -0
- data/test/dummy/tmp/cache/assets/C77/210/sprockets%2Fd4518653b2d017e8840a10fa16518e38 +0 -0
- data/test/dummy/tmp/cache/assets/C9A/610/sprockets%2F0f1cbc34ef00944528423628d2014e0d +0 -0
- data/test/dummy/tmp/cache/assets/CC8/CC0/sprockets%2F77ac1342b1ae62c0123f399257a703aa +0 -0
- data/test/dummy/tmp/cache/assets/CE5/DB0/sprockets%2F53d6d5203c9d6c96693655151fea1bf3 +0 -0
- data/test/dummy/tmp/cache/assets/D01/390/sprockets%2F152365a6c64bdbf13d80c22762c0f48b +0 -0
- data/test/dummy/tmp/cache/assets/D36/2C0/sprockets%2F343af4c882e0d8b2701408ea6c3e7ac5 +0 -0
- data/test/dummy/tmp/cache/assets/D36/D00/sprockets%2F3a43e8f11605c939cbb04aec364ba775 +0 -0
- data/test/dummy/tmp/cache/assets/D58/C00/sprockets%2F7bd61bb28f7ce577f679872a7cc4a477 +0 -0
- data/test/dummy/tmp/cache/assets/D69/960/sprockets%2F68d11bd13c04d8959dabbf7680c37b1a +0 -0
- data/test/dummy/tmp/cache/assets/D74/650/sprockets%2F5c448233c8ef782e60adda4b8f572b6b +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/javascripts/test/e2e/scenarios.js +5 -0
- metadata +10 -3
@@ -1,9 +1,11 @@
|
|
1
1
|
'use strict';
|
2
2
|
|
3
3
|
function ApiController($scope, $http, $location) {
|
4
|
-
$scope.
|
4
|
+
$scope.rootUrl = '/api'
|
5
|
+
|
6
|
+
$scope.goTo = function(url, fromRel) {
|
5
7
|
$scope.fromRel = fromRel
|
6
|
-
$location.
|
8
|
+
$location.url(url)
|
7
9
|
}
|
8
10
|
|
9
11
|
$scope.submit = function() {
|
@@ -11,18 +13,20 @@ function ApiController($scope, $http, $location) {
|
|
11
13
|
}
|
12
14
|
|
13
15
|
$scope.$watch(function() {
|
14
|
-
return $location.
|
15
|
-
}, function(
|
16
|
-
if(
|
17
|
-
|
16
|
+
return $location.url()
|
17
|
+
}, function(url, oldUrl) {
|
18
|
+
if(url !== oldUrl) {
|
19
|
+
get(url)
|
20
|
+
}
|
21
|
+
})
|
18
22
|
|
19
|
-
get(
|
23
|
+
get($scope.rootUrl)
|
20
24
|
|
21
25
|
// helpers
|
22
26
|
|
23
|
-
function get(
|
27
|
+
function get(url) {
|
24
28
|
$scope.loading = true
|
25
|
-
$http.get(
|
29
|
+
$http.get(url).success(responseHandler).error(function(){ $scope.loading = false })
|
26
30
|
}
|
27
31
|
|
28
32
|
function post() {
|
@@ -51,7 +55,10 @@ function ApiController($scope, $http, $location) {
|
|
51
55
|
$scope.status = status
|
52
56
|
$scope.loading = false
|
53
57
|
|
54
|
-
$
|
58
|
+
var collectionHref = $scope.collection.href
|
59
|
+
if(collectionHref !== $location.path() && collectionHref.match(/^http/) === null) {
|
60
|
+
$location.url(collectionHref)
|
61
|
+
}
|
55
62
|
}
|
56
63
|
}
|
57
64
|
|
@@ -4,7 +4,19 @@
|
|
4
4
|
<img src="/assets/collection-json-browser/loading-spinner.gif" />
|
5
5
|
</div>
|
6
6
|
|
7
|
-
<div class="
|
7
|
+
<div class="navbar navbar-inverse navbar-fixed-top">
|
8
|
+
<div class="navbar-inner">
|
9
|
+
<div class="nav-collapse collapse">
|
10
|
+
<ul class="nav">
|
11
|
+
<li class="">
|
12
|
+
<a href="" ng-click="goTo(rootUrl)">Home</a>
|
13
|
+
</li>
|
14
|
+
</ul>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
</div>
|
18
|
+
|
19
|
+
<div class="container-fluid main">
|
8
20
|
<div class="row-fluid">
|
9
21
|
<div class="span6">
|
10
22
|
<h2>Path</h2>
|
@@ -64097,3 +64097,1560 @@ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
|
64097
64097
|
|
64098
64098
|
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-18 23:38:35 +0800
|
64099
64099
|
Served asset /cat.gif - 304 Not Modified (0ms)
|
64100
|
+
Connecting to database specified by database.yml
|
64101
|
+
|
64102
|
+
|
64103
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64104
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64105
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (2.0ms)
|
64106
|
+
Compiled collection_json_browser/angular/controllers/api_controller.js (0ms) (pid 90369)
|
64107
|
+
Compiled collection_json_browser/application.js (1ms) (pid 90369)
|
64108
|
+
Compiled collection_json_browser/application.css (0ms) (pid 90369)
|
64109
|
+
Completed 200 OK in 47ms (Views: 47.1ms | ActiveRecord: 0.0ms)
|
64110
|
+
|
64111
|
+
|
64112
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64113
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (7ms)
|
64114
|
+
|
64115
|
+
|
64116
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64117
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (2ms)
|
64118
|
+
|
64119
|
+
|
64120
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64121
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (2ms)
|
64122
|
+
|
64123
|
+
|
64124
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64125
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 200 OK (1ms)
|
64126
|
+
|
64127
|
+
|
64128
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64129
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (3ms)
|
64130
|
+
|
64131
|
+
|
64132
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64133
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (3ms)
|
64134
|
+
|
64135
|
+
|
64136
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64137
|
+
Processing by Api::ApplicationController#index as JSON
|
64138
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
64139
|
+
|
64140
|
+
|
64141
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64142
|
+
Processing by Api::ApplicationController#index as JSON
|
64143
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
64144
|
+
|
64145
|
+
|
64146
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64147
|
+
Served asset /cat.gif - 200 OK (1ms)
|
64148
|
+
|
64149
|
+
|
64150
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64151
|
+
Processing by Api::PostsController#index as JSON
|
64152
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
64153
|
+
|
64154
|
+
|
64155
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64156
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64157
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
64158
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
64159
|
+
|
64160
|
+
|
64161
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64162
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64163
|
+
|
64164
|
+
|
64165
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64166
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64167
|
+
|
64168
|
+
|
64169
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64170
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64171
|
+
|
64172
|
+
|
64173
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64174
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64175
|
+
|
64176
|
+
|
64177
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64178
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64179
|
+
|
64180
|
+
|
64181
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64182
|
+
Processing by Api::ApplicationController#index as JSON
|
64183
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
64184
|
+
|
64185
|
+
|
64186
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64187
|
+
Processing by Api::ApplicationController#index as JSON
|
64188
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
64189
|
+
|
64190
|
+
|
64191
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64192
|
+
Processing by Api::PostsController#index as JSON
|
64193
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64194
|
+
|
64195
|
+
|
64196
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64197
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64198
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
64199
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
64200
|
+
|
64201
|
+
|
64202
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64203
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64204
|
+
|
64205
|
+
|
64206
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64207
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64208
|
+
|
64209
|
+
|
64210
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64211
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64212
|
+
|
64213
|
+
|
64214
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64215
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64216
|
+
|
64217
|
+
|
64218
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64219
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64220
|
+
|
64221
|
+
|
64222
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64223
|
+
Processing by Api::ApplicationController#index as JSON
|
64224
|
+
Completed 200 OK in 24ms (Views: 23.3ms | ActiveRecord: 0.0ms)
|
64225
|
+
|
64226
|
+
|
64227
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:47 +0800
|
64228
|
+
Processing by Api::ApplicationController#index as JSON
|
64229
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
64230
|
+
|
64231
|
+
|
64232
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64233
|
+
Processing by Api::PostsController#index as JSON
|
64234
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
64235
|
+
|
64236
|
+
|
64237
|
+
Started POST "/api/posts" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64238
|
+
Processing by Api::PostsController#create as JSON
|
64239
|
+
Parameters: {"title"=>"ruby", "content"=>"ruby", "category"=>"ruby", "post"=>{}}
|
64240
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64241
|
+
|
64242
|
+
|
64243
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64244
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64245
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
64246
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
64247
|
+
|
64248
|
+
|
64249
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64250
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64251
|
+
|
64252
|
+
|
64253
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64254
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64255
|
+
|
64256
|
+
|
64257
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64258
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64259
|
+
|
64260
|
+
|
64261
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64262
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64263
|
+
|
64264
|
+
|
64265
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64266
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64267
|
+
|
64268
|
+
|
64269
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64270
|
+
Processing by Api::ApplicationController#index as JSON
|
64271
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
64272
|
+
|
64273
|
+
|
64274
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64275
|
+
Processing by Api::ApplicationController#index as JSON
|
64276
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
64277
|
+
|
64278
|
+
|
64279
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64280
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64281
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
64282
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
64283
|
+
|
64284
|
+
|
64285
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64286
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64287
|
+
|
64288
|
+
|
64289
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64290
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64291
|
+
|
64292
|
+
|
64293
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64294
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64295
|
+
|
64296
|
+
|
64297
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64298
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64299
|
+
|
64300
|
+
|
64301
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64302
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64303
|
+
|
64304
|
+
|
64305
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64306
|
+
Processing by Api::ApplicationController#index as JSON
|
64307
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
64308
|
+
|
64309
|
+
|
64310
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64311
|
+
Processing by Api::ApplicationController#index as JSON
|
64312
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
64313
|
+
|
64314
|
+
|
64315
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64316
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64317
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
64318
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
64319
|
+
|
64320
|
+
|
64321
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64322
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64323
|
+
|
64324
|
+
|
64325
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64326
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64327
|
+
|
64328
|
+
|
64329
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64330
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64331
|
+
|
64332
|
+
|
64333
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64334
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64335
|
+
|
64336
|
+
|
64337
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64338
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64339
|
+
|
64340
|
+
|
64341
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64342
|
+
Processing by Api::ApplicationController#index as JSON
|
64343
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
64344
|
+
|
64345
|
+
|
64346
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-24 23:59:48 +0800
|
64347
|
+
Processing by Api::ApplicationController#index as JSON
|
64348
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
64349
|
+
|
64350
|
+
|
64351
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64352
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64353
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.6ms)
|
64354
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
64355
|
+
|
64356
|
+
|
64357
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64358
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64359
|
+
|
64360
|
+
|
64361
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64362
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64363
|
+
|
64364
|
+
|
64365
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64366
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64367
|
+
|
64368
|
+
|
64369
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64370
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64371
|
+
|
64372
|
+
|
64373
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64374
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64375
|
+
|
64376
|
+
|
64377
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64378
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64379
|
+
|
64380
|
+
|
64381
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64382
|
+
Processing by Api::ApplicationController#index as JSON
|
64383
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
64384
|
+
|
64385
|
+
|
64386
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64387
|
+
Processing by Api::ApplicationController#index as JSON
|
64388
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
64389
|
+
|
64390
|
+
|
64391
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:06:14 +0800
|
64392
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64393
|
+
|
64394
|
+
|
64395
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:06:17 +0800
|
64396
|
+
Processing by CollectionJsonBrowser::HomeController#index as JSON
|
64397
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html (0.6ms)
|
64398
|
+
Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
64399
|
+
|
64400
|
+
|
64401
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64402
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64403
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.6ms)
|
64404
|
+
Compiled collection_json_browser/angular/controllers/api_controller.js (0ms) (pid 90369)
|
64405
|
+
Compiled collection_json_browser/application.js (1ms) (pid 90369)
|
64406
|
+
Completed 200 OK in 35ms (Views: 35.0ms | ActiveRecord: 0.0ms)
|
64407
|
+
|
64408
|
+
|
64409
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64410
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64411
|
+
|
64412
|
+
|
64413
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64414
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64415
|
+
|
64416
|
+
|
64417
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64418
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64419
|
+
|
64420
|
+
|
64421
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64422
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 200 OK (1ms)
|
64423
|
+
|
64424
|
+
|
64425
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64426
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (5ms)
|
64427
|
+
|
64428
|
+
|
64429
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64430
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64431
|
+
|
64432
|
+
|
64433
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64434
|
+
Processing by Api::ApplicationController#index as JSON
|
64435
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
64436
|
+
|
64437
|
+
|
64438
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64439
|
+
Processing by Api::ApplicationController#index as JSON
|
64440
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
64441
|
+
|
64442
|
+
|
64443
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:07:43 +0800
|
64444
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64445
|
+
|
64446
|
+
|
64447
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:07:48 +0800
|
64448
|
+
Processing by Api::PostsController#index as JSON
|
64449
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64450
|
+
|
64451
|
+
|
64452
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:07:50 +0800
|
64453
|
+
Processing by Api::ApplicationController#index as JSON
|
64454
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
64455
|
+
|
64456
|
+
|
64457
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:07:50 +0800
|
64458
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64459
|
+
|
64460
|
+
|
64461
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:07:52 +0800
|
64462
|
+
Processing by Api::PostsController#index as JSON
|
64463
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
64464
|
+
|
64465
|
+
|
64466
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:07:54 +0800
|
64467
|
+
Processing by Api::ApplicationController#index as JSON
|
64468
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
64469
|
+
|
64470
|
+
|
64471
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:07:54 +0800
|
64472
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64473
|
+
|
64474
|
+
|
64475
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:07:55 +0800
|
64476
|
+
Processing by Api::PostsController#index as JSON
|
64477
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
64478
|
+
|
64479
|
+
|
64480
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:07:57 +0800
|
64481
|
+
Processing by Api::ApplicationController#index as JSON
|
64482
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
64483
|
+
|
64484
|
+
|
64485
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:07:57 +0800
|
64486
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64487
|
+
|
64488
|
+
|
64489
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64490
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64491
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.6ms)
|
64492
|
+
Completed 200 OK in 7ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
64493
|
+
|
64494
|
+
|
64495
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64496
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64497
|
+
|
64498
|
+
|
64499
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64500
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64501
|
+
|
64502
|
+
|
64503
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64504
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64505
|
+
|
64506
|
+
|
64507
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64508
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64509
|
+
|
64510
|
+
|
64511
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64512
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64513
|
+
|
64514
|
+
|
64515
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64516
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64517
|
+
|
64518
|
+
|
64519
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64520
|
+
Processing by Api::ApplicationController#index as JSON
|
64521
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
64522
|
+
|
64523
|
+
|
64524
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:09:47 +0800
|
64525
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64526
|
+
|
64527
|
+
|
64528
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:09:48 +0800
|
64529
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64530
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.3ms)
|
64531
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
64532
|
+
|
64533
|
+
|
64534
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:09:48 +0800
|
64535
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64536
|
+
|
64537
|
+
|
64538
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:09:48 +0800
|
64539
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64540
|
+
|
64541
|
+
|
64542
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:09:48 +0800
|
64543
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64544
|
+
|
64545
|
+
|
64546
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:09:49 +0800
|
64547
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64548
|
+
|
64549
|
+
|
64550
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:09:49 +0800
|
64551
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64552
|
+
|
64553
|
+
|
64554
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:09:49 +0800
|
64555
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64556
|
+
|
64557
|
+
|
64558
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:09:49 +0800
|
64559
|
+
Processing by Api::ApplicationController#index as JSON
|
64560
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
64561
|
+
|
64562
|
+
|
64563
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:09:49 +0800
|
64564
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64565
|
+
|
64566
|
+
|
64567
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64568
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64569
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.7ms)
|
64570
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
64571
|
+
|
64572
|
+
|
64573
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64574
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64575
|
+
|
64576
|
+
|
64577
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64578
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64579
|
+
|
64580
|
+
|
64581
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64582
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64583
|
+
|
64584
|
+
|
64585
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64586
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64587
|
+
|
64588
|
+
|
64589
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64590
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64591
|
+
|
64592
|
+
|
64593
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64594
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64595
|
+
|
64596
|
+
|
64597
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64598
|
+
Processing by Api::ApplicationController#index as JSON
|
64599
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
64600
|
+
|
64601
|
+
|
64602
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:10:23 +0800
|
64603
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64604
|
+
|
64605
|
+
|
64606
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:11:02 +0800
|
64607
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64608
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.4ms)
|
64609
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
64610
|
+
|
64611
|
+
|
64612
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64613
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64614
|
+
|
64615
|
+
|
64616
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64617
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64618
|
+
|
64619
|
+
|
64620
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64621
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64622
|
+
|
64623
|
+
|
64624
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64625
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64626
|
+
|
64627
|
+
|
64628
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64629
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64630
|
+
|
64631
|
+
|
64632
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64633
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64634
|
+
|
64635
|
+
|
64636
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64637
|
+
Processing by Api::ApplicationController#index as JSON
|
64638
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
64639
|
+
|
64640
|
+
|
64641
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:11:03 +0800
|
64642
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64643
|
+
|
64644
|
+
|
64645
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64646
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64647
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.7ms)
|
64648
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
64649
|
+
|
64650
|
+
|
64651
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64652
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64653
|
+
|
64654
|
+
|
64655
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64656
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64657
|
+
|
64658
|
+
|
64659
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64660
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64661
|
+
|
64662
|
+
|
64663
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64664
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64665
|
+
|
64666
|
+
|
64667
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64668
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64669
|
+
|
64670
|
+
|
64671
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64672
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64673
|
+
|
64674
|
+
|
64675
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64676
|
+
Processing by Api::ApplicationController#index as JSON
|
64677
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
64678
|
+
|
64679
|
+
|
64680
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:11:14 +0800
|
64681
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64682
|
+
|
64683
|
+
|
64684
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64685
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64686
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.4ms)
|
64687
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
64688
|
+
|
64689
|
+
|
64690
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64691
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64692
|
+
|
64693
|
+
|
64694
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64695
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64696
|
+
|
64697
|
+
|
64698
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64699
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64700
|
+
|
64701
|
+
|
64702
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64703
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64704
|
+
|
64705
|
+
|
64706
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64707
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64708
|
+
|
64709
|
+
|
64710
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64711
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64712
|
+
|
64713
|
+
|
64714
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64715
|
+
Processing by Api::ApplicationController#index as JSON
|
64716
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
64717
|
+
|
64718
|
+
|
64719
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:11:20 +0800
|
64720
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64721
|
+
|
64722
|
+
|
64723
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64724
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64725
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.5ms)
|
64726
|
+
Completed 200 OK in 5ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
64727
|
+
|
64728
|
+
|
64729
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64730
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64731
|
+
|
64732
|
+
|
64733
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64734
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64735
|
+
|
64736
|
+
|
64737
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64738
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64739
|
+
|
64740
|
+
|
64741
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64742
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64743
|
+
|
64744
|
+
|
64745
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64746
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64747
|
+
|
64748
|
+
|
64749
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64750
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64751
|
+
|
64752
|
+
|
64753
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64754
|
+
Processing by Api::ApplicationController#index as JSON
|
64755
|
+
Completed 200 OK in 28ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
64756
|
+
|
64757
|
+
|
64758
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:11:31 +0800
|
64759
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64760
|
+
|
64761
|
+
|
64762
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64763
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64764
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.7ms)
|
64765
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
64766
|
+
|
64767
|
+
|
64768
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64769
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64770
|
+
|
64771
|
+
|
64772
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64773
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64774
|
+
|
64775
|
+
|
64776
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64777
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64778
|
+
|
64779
|
+
|
64780
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64781
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64782
|
+
|
64783
|
+
|
64784
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64785
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64786
|
+
|
64787
|
+
|
64788
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64789
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64790
|
+
|
64791
|
+
|
64792
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64793
|
+
Processing by Api::ApplicationController#index as JSON
|
64794
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
64795
|
+
|
64796
|
+
|
64797
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:07 +0800
|
64798
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64799
|
+
|
64800
|
+
|
64801
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:13:17 +0800
|
64802
|
+
Processing by Api::PostsController#index as JSON
|
64803
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
64804
|
+
|
64805
|
+
|
64806
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:18 +0800
|
64807
|
+
Processing by Api::ApplicationController#index as JSON
|
64808
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
64809
|
+
|
64810
|
+
|
64811
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:18 +0800
|
64812
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64813
|
+
|
64814
|
+
|
64815
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:13:21 +0800
|
64816
|
+
Processing by Api::PostsController#index as JSON
|
64817
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
64818
|
+
|
64819
|
+
|
64820
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:22 +0800
|
64821
|
+
Processing by Api::ApplicationController#index as JSON
|
64822
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
64823
|
+
|
64824
|
+
|
64825
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:22 +0800
|
64826
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64827
|
+
|
64828
|
+
|
64829
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:13:25 +0800
|
64830
|
+
Processing by Api::PostsController#index as JSON
|
64831
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
64832
|
+
|
64833
|
+
|
64834
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:26 +0800
|
64835
|
+
Processing by Api::ApplicationController#index as JSON
|
64836
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
64837
|
+
|
64838
|
+
|
64839
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:26 +0800
|
64840
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64841
|
+
|
64842
|
+
|
64843
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64844
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64845
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.7ms)
|
64846
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
64847
|
+
|
64848
|
+
|
64849
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64850
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64851
|
+
|
64852
|
+
|
64853
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64854
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64855
|
+
|
64856
|
+
|
64857
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64858
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64859
|
+
|
64860
|
+
|
64861
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64862
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64863
|
+
|
64864
|
+
|
64865
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64866
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64867
|
+
|
64868
|
+
|
64869
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64870
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64871
|
+
|
64872
|
+
|
64873
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64874
|
+
Processing by Api::ApplicationController#index as JSON
|
64875
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
64876
|
+
|
64877
|
+
|
64878
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:43 +0800
|
64879
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64880
|
+
|
64881
|
+
|
64882
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64883
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64884
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.4ms)
|
64885
|
+
Completed 200 OK in 30ms (Views: 29.4ms | ActiveRecord: 0.0ms)
|
64886
|
+
|
64887
|
+
|
64888
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64889
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64890
|
+
|
64891
|
+
|
64892
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64893
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64894
|
+
|
64895
|
+
|
64896
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64897
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64898
|
+
|
64899
|
+
|
64900
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64901
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64902
|
+
|
64903
|
+
|
64904
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64905
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64906
|
+
|
64907
|
+
|
64908
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64909
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64910
|
+
|
64911
|
+
|
64912
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64913
|
+
Processing by Api::ApplicationController#index as JSON
|
64914
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
64915
|
+
|
64916
|
+
|
64917
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:51 +0800
|
64918
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64919
|
+
|
64920
|
+
|
64921
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64922
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64923
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.5ms)
|
64924
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
64925
|
+
|
64926
|
+
|
64927
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64928
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64929
|
+
|
64930
|
+
|
64931
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64932
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64933
|
+
|
64934
|
+
|
64935
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64936
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64937
|
+
|
64938
|
+
|
64939
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64940
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64941
|
+
|
64942
|
+
|
64943
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64944
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64945
|
+
|
64946
|
+
|
64947
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64948
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64949
|
+
|
64950
|
+
|
64951
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64952
|
+
Processing by Api::ApplicationController#index as JSON
|
64953
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
64954
|
+
|
64955
|
+
|
64956
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:13:57 +0800
|
64957
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64958
|
+
|
64959
|
+
|
64960
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64961
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
64962
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.5ms)
|
64963
|
+
Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
64964
|
+
|
64965
|
+
|
64966
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64967
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
64968
|
+
|
64969
|
+
|
64970
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64971
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
64972
|
+
|
64973
|
+
|
64974
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64975
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
64976
|
+
|
64977
|
+
|
64978
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64979
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
64980
|
+
|
64981
|
+
|
64982
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64983
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
64984
|
+
|
64985
|
+
|
64986
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64987
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
64988
|
+
|
64989
|
+
|
64990
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64991
|
+
Processing by Api::ApplicationController#index as JSON
|
64992
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
64993
|
+
|
64994
|
+
|
64995
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:14:24 +0800
|
64996
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
64997
|
+
|
64998
|
+
|
64999
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65000
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65001
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.7ms)
|
65002
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
65003
|
+
|
65004
|
+
|
65005
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65006
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65007
|
+
|
65008
|
+
|
65009
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65010
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65011
|
+
|
65012
|
+
|
65013
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65014
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
65015
|
+
|
65016
|
+
|
65017
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65018
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65019
|
+
|
65020
|
+
|
65021
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65022
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65023
|
+
|
65024
|
+
|
65025
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65026
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65027
|
+
|
65028
|
+
|
65029
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65030
|
+
Processing by Api::ApplicationController#index as JSON
|
65031
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
65032
|
+
|
65033
|
+
|
65034
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:14:51 +0800
|
65035
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
65036
|
+
|
65037
|
+
|
65038
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65039
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65040
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.1ms)
|
65041
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
65042
|
+
|
65043
|
+
|
65044
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65045
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65046
|
+
|
65047
|
+
|
65048
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65049
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65050
|
+
|
65051
|
+
|
65052
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65053
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
65054
|
+
|
65055
|
+
|
65056
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65057
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65058
|
+
|
65059
|
+
|
65060
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65061
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65062
|
+
|
65063
|
+
|
65064
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65065
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65066
|
+
|
65067
|
+
|
65068
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65069
|
+
Processing by Api::ApplicationController#index as JSON
|
65070
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
65071
|
+
|
65072
|
+
|
65073
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:14:52 +0800
|
65074
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
65075
|
+
|
65076
|
+
|
65077
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:16:53 +0800
|
65078
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65079
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.7ms)
|
65080
|
+
Compiled collection_json_browser/application.css (0ms) (pid 90369)
|
65081
|
+
Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
|
65082
|
+
|
65083
|
+
|
65084
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65085
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65086
|
+
|
65087
|
+
|
65088
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65089
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65090
|
+
|
65091
|
+
|
65092
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65093
|
+
Served asset /collection_json_browser/application.css - 200 OK (35ms)
|
65094
|
+
|
65095
|
+
|
65096
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65097
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65098
|
+
|
65099
|
+
|
65100
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65101
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 304 Not Modified (0ms)
|
65102
|
+
|
65103
|
+
|
65104
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65105
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65106
|
+
|
65107
|
+
|
65108
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65109
|
+
Processing by Api::ApplicationController#index as JSON
|
65110
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
65111
|
+
|
65112
|
+
|
65113
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:16:54 +0800
|
65114
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
65115
|
+
|
65116
|
+
|
65117
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:16:59 +0800
|
65118
|
+
Processing by Api::PostsController#index as JSON
|
65119
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
65120
|
+
|
65121
|
+
|
65122
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:17:02 +0800
|
65123
|
+
Processing by Api::ApplicationController#index as JSON
|
65124
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
65125
|
+
|
65126
|
+
|
65127
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:17:02 +0800
|
65128
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
65129
|
+
|
65130
|
+
|
65131
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:17:06 +0800
|
65132
|
+
Processing by Api::PostsController#index as JSON
|
65133
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
65134
|
+
|
65135
|
+
|
65136
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:17:07 +0800
|
65137
|
+
Processing by Api::ApplicationController#index as JSON
|
65138
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
65139
|
+
|
65140
|
+
|
65141
|
+
Started GET "/assets/cat.gif" for 127.0.0.1 at 2013-07-25 00:17:07 +0800
|
65142
|
+
Served asset /cat.gif - 304 Not Modified (0ms)
|
65143
|
+
|
65144
|
+
|
65145
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65146
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65147
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65148
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
65149
|
+
|
65150
|
+
|
65151
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65152
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65153
|
+
|
65154
|
+
|
65155
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65156
|
+
Served asset /collection_json_browser/application.css - 200 OK (0ms)
|
65157
|
+
|
65158
|
+
|
65159
|
+
Started GET "/assets/collection_json_browser/angular/controllers/api_controller.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65160
|
+
Served asset /collection_json_browser/angular/controllers/api_controller.js - 200 OK (0ms)
|
65161
|
+
|
65162
|
+
|
65163
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65164
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65165
|
+
|
65166
|
+
|
65167
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65168
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65169
|
+
|
65170
|
+
|
65171
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65172
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65173
|
+
|
65174
|
+
|
65175
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65176
|
+
Processing by Api::ApplicationController#index as JSON
|
65177
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
65178
|
+
|
65179
|
+
|
65180
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65181
|
+
Processing by Api::ApplicationController#index as JSON
|
65182
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
65183
|
+
|
65184
|
+
|
65185
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65186
|
+
Processing by Api::PostsController#index as JSON
|
65187
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
65188
|
+
|
65189
|
+
|
65190
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65191
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65192
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65193
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
65194
|
+
|
65195
|
+
|
65196
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65197
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65198
|
+
|
65199
|
+
|
65200
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65201
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65202
|
+
|
65203
|
+
|
65204
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65205
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65206
|
+
|
65207
|
+
|
65208
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65209
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65210
|
+
|
65211
|
+
|
65212
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65213
|
+
Processing by Api::ApplicationController#index as JSON
|
65214
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
65215
|
+
|
65216
|
+
|
65217
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65218
|
+
Processing by Api::ApplicationController#index as JSON
|
65219
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
65220
|
+
|
65221
|
+
|
65222
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:07 +0800
|
65223
|
+
Processing by Api::PostsController#index as JSON
|
65224
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
65225
|
+
|
65226
|
+
|
65227
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65228
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65229
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65230
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
65231
|
+
|
65232
|
+
|
65233
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65234
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65235
|
+
|
65236
|
+
|
65237
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65238
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65239
|
+
|
65240
|
+
|
65241
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65242
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65243
|
+
|
65244
|
+
|
65245
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65246
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65247
|
+
|
65248
|
+
|
65249
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65250
|
+
Processing by Api::ApplicationController#index as JSON
|
65251
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
65252
|
+
|
65253
|
+
|
65254
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65255
|
+
Processing by Api::ApplicationController#index as JSON
|
65256
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
65257
|
+
|
65258
|
+
|
65259
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65260
|
+
Processing by Api::PostsController#index as JSON
|
65261
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
65262
|
+
|
65263
|
+
|
65264
|
+
Started POST "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65265
|
+
Processing by Api::PostsController#create as JSON
|
65266
|
+
Parameters: {"title"=>"ruby", "content"=>"ruby", "category"=>"ruby", "post"=>{}}
|
65267
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
65268
|
+
|
65269
|
+
|
65270
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65271
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65272
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65273
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
65274
|
+
|
65275
|
+
|
65276
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65277
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65278
|
+
|
65279
|
+
|
65280
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65281
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65282
|
+
|
65283
|
+
|
65284
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65285
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65286
|
+
|
65287
|
+
|
65288
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65289
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65290
|
+
|
65291
|
+
|
65292
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65293
|
+
Processing by Api::ApplicationController#index as JSON
|
65294
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
65295
|
+
|
65296
|
+
|
65297
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65298
|
+
Processing by Api::ApplicationController#index as JSON
|
65299
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
65300
|
+
|
65301
|
+
|
65302
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65303
|
+
Processing by Api::PostsController#index as JSON
|
65304
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
65305
|
+
|
65306
|
+
|
65307
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65308
|
+
Processing by Api::ApplicationController#index as JSON
|
65309
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
65310
|
+
|
65311
|
+
|
65312
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65313
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65314
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65315
|
+
Completed 200 OK in 21ms (Views: 20.5ms | ActiveRecord: 0.0ms)
|
65316
|
+
|
65317
|
+
|
65318
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65319
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65320
|
+
|
65321
|
+
|
65322
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65323
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65324
|
+
|
65325
|
+
|
65326
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65327
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65328
|
+
|
65329
|
+
|
65330
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65331
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65332
|
+
|
65333
|
+
|
65334
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65335
|
+
Processing by Api::ApplicationController#index as JSON
|
65336
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
65337
|
+
|
65338
|
+
|
65339
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65340
|
+
Processing by Api::ApplicationController#index as JSON
|
65341
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
65342
|
+
|
65343
|
+
|
65344
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65345
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65346
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65347
|
+
Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
65348
|
+
|
65349
|
+
|
65350
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65351
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65352
|
+
|
65353
|
+
|
65354
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65355
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65356
|
+
|
65357
|
+
|
65358
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65359
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65360
|
+
|
65361
|
+
|
65362
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:08 +0800
|
65363
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65364
|
+
|
65365
|
+
|
65366
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:09 +0800
|
65367
|
+
Processing by Api::ApplicationController#index as JSON
|
65368
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
65369
|
+
|
65370
|
+
|
65371
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:09 +0800
|
65372
|
+
Processing by Api::ApplicationController#index as JSON
|
65373
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
65374
|
+
|
65375
|
+
|
65376
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65377
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65378
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65379
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
65380
|
+
|
65381
|
+
|
65382
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65383
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65384
|
+
|
65385
|
+
|
65386
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65387
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65388
|
+
|
65389
|
+
|
65390
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65391
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65392
|
+
|
65393
|
+
|
65394
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65395
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65396
|
+
|
65397
|
+
|
65398
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65399
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65400
|
+
|
65401
|
+
|
65402
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65403
|
+
Processing by Api::ApplicationController#index as JSON
|
65404
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
65405
|
+
|
65406
|
+
|
65407
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65408
|
+
Processing by Api::ApplicationController#index as JSON
|
65409
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
65410
|
+
|
65411
|
+
|
65412
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65413
|
+
Processing by Api::PostsController#index as JSON
|
65414
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
65415
|
+
|
65416
|
+
|
65417
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65418
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65419
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65420
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
65421
|
+
|
65422
|
+
|
65423
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65424
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65425
|
+
|
65426
|
+
|
65427
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65428
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65429
|
+
|
65430
|
+
|
65431
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65432
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65433
|
+
|
65434
|
+
|
65435
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65436
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65437
|
+
|
65438
|
+
|
65439
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65440
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65441
|
+
|
65442
|
+
|
65443
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65444
|
+
Processing by Api::ApplicationController#index as JSON
|
65445
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
65446
|
+
|
65447
|
+
|
65448
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65449
|
+
Processing by Api::ApplicationController#index as JSON
|
65450
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
65451
|
+
|
65452
|
+
|
65453
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65454
|
+
Processing by Api::PostsController#index as JSON
|
65455
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
65456
|
+
|
65457
|
+
|
65458
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65459
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65460
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65461
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
65462
|
+
|
65463
|
+
|
65464
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65465
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65466
|
+
|
65467
|
+
|
65468
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65469
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65470
|
+
|
65471
|
+
|
65472
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65473
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65474
|
+
|
65475
|
+
|
65476
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65477
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65478
|
+
|
65479
|
+
|
65480
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65481
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65482
|
+
|
65483
|
+
|
65484
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65485
|
+
Processing by Api::ApplicationController#index as JSON
|
65486
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
65487
|
+
|
65488
|
+
|
65489
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65490
|
+
Processing by Api::ApplicationController#index as JSON
|
65491
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
65492
|
+
|
65493
|
+
|
65494
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65495
|
+
Processing by Api::PostsController#index as JSON
|
65496
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
65497
|
+
|
65498
|
+
|
65499
|
+
Started POST "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65500
|
+
Processing by Api::PostsController#create as JSON
|
65501
|
+
Parameters: {"title"=>"ruby", "content"=>"ruby", "category"=>"ruby", "post"=>{}}
|
65502
|
+
Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
65503
|
+
|
65504
|
+
|
65505
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:33 +0800
|
65506
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65507
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65508
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
65509
|
+
|
65510
|
+
|
65511
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65512
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65513
|
+
|
65514
|
+
|
65515
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65516
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65517
|
+
|
65518
|
+
|
65519
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65520
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65521
|
+
|
65522
|
+
|
65523
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65524
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65525
|
+
|
65526
|
+
|
65527
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65528
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65529
|
+
|
65530
|
+
|
65531
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65532
|
+
Processing by Api::ApplicationController#index as JSON
|
65533
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
65534
|
+
|
65535
|
+
|
65536
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65537
|
+
Processing by Api::ApplicationController#index as JSON
|
65538
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
65539
|
+
|
65540
|
+
|
65541
|
+
Started GET "/api/posts" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65542
|
+
Processing by Api::PostsController#index as JSON
|
65543
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
65544
|
+
|
65545
|
+
|
65546
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65547
|
+
Processing by Api::ApplicationController#index as JSON
|
65548
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
65549
|
+
|
65550
|
+
|
65551
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65552
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65553
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65554
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
65555
|
+
|
65556
|
+
|
65557
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65558
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65559
|
+
|
65560
|
+
|
65561
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65562
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65563
|
+
|
65564
|
+
|
65565
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65566
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65567
|
+
|
65568
|
+
|
65569
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65570
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65571
|
+
|
65572
|
+
|
65573
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65574
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65575
|
+
|
65576
|
+
|
65577
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65578
|
+
Processing by Api::ApplicationController#index as JSON
|
65579
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
65580
|
+
|
65581
|
+
|
65582
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65583
|
+
Processing by Api::ApplicationController#index as JSON
|
65584
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
65585
|
+
|
65586
|
+
|
65587
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65588
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65589
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65590
|
+
Completed 200 OK in 3ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
65591
|
+
|
65592
|
+
|
65593
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65594
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65595
|
+
|
65596
|
+
|
65597
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65598
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65599
|
+
|
65600
|
+
|
65601
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65602
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65603
|
+
|
65604
|
+
|
65605
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65606
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65607
|
+
|
65608
|
+
|
65609
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65610
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65611
|
+
|
65612
|
+
|
65613
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65614
|
+
Processing by Api::ApplicationController#index as JSON
|
65615
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
65616
|
+
|
65617
|
+
|
65618
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65619
|
+
Processing by Api::ApplicationController#index as JSON
|
65620
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
65621
|
+
|
65622
|
+
|
65623
|
+
Started GET "/doc" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65624
|
+
Processing by CollectionJsonBrowser::HomeController#index as HTML
|
65625
|
+
Rendered /Users/weilu/workspace/collection-json-browser/app/views/collection_json_browser/home/index.html within layouts/collection_json_browser/application (0.0ms)
|
65626
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
65627
|
+
|
65628
|
+
|
65629
|
+
Started GET "/assets/collection_json_browser/bootstrap.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65630
|
+
Served asset /collection_json_browser/bootstrap.css - 304 Not Modified (0ms)
|
65631
|
+
|
65632
|
+
|
65633
|
+
Started GET "/assets/collection_json_browser/application.css?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65634
|
+
Served asset /collection_json_browser/application.css - 304 Not Modified (0ms)
|
65635
|
+
|
65636
|
+
|
65637
|
+
Started GET "/assets/collection_json_browser/angular.min.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65638
|
+
Served asset /collection_json_browser/angular.min.js - 304 Not Modified (0ms)
|
65639
|
+
|
65640
|
+
|
65641
|
+
Started GET "/assets/collection_json_browser/application.js?body=1" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65642
|
+
Served asset /collection_json_browser/application.js - 304 Not Modified (0ms)
|
65643
|
+
|
65644
|
+
|
65645
|
+
Started GET "/assets/collection-json-browser/loading-spinner.gif" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65646
|
+
Served asset /collection-json-browser/loading-spinner.gif - 304 Not Modified (0ms)
|
65647
|
+
|
65648
|
+
|
65649
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65650
|
+
Processing by Api::ApplicationController#index as JSON
|
65651
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
65652
|
+
|
65653
|
+
|
65654
|
+
Started GET "/api" for 127.0.0.1 at 2013-07-25 00:20:34 +0800
|
65655
|
+
Processing by Api::ApplicationController#index as JSON
|
65656
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|