jquery-iframe_auto_resize 0.0.1 → 0.0.2
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/README.rdoc +6 -0
- data/app/assets/javascripts/jquery.iframe_auto_resize.js.coffee +64 -18
- data/lib/jquery-iframe_auto_resize/version.rb +2 -1
- data/test/dummy/app/views/static/container.html.haml +4 -2
- data/test/dummy/app/views/static/iframe.html.haml +2 -2
- data/test/dummy/log/development.log +2530 -0
- data/test/dummy/tmp/cache/assets/C83/200/sprockets%2F9f17e19443d1498ad1ff448310126e53 +0 -0
- data/test/dummy/tmp/cache/assets/D02/1D0/sprockets%2F56536bb3e46ab1f153ba27f0640e57b5 +0 -0
- data/test/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- metadata +6 -4
data/README.rdoc
CHANGED
@@ -10,24 +10,59 @@ $.fn.iframeAutoResize = (spec) ->
|
|
10
10
|
else if options.debug == true
|
11
11
|
alert(message)
|
12
12
|
|
13
|
+
oldHeight = 0
|
14
|
+
|
13
15
|
options = $.extend({
|
14
16
|
interval: 0,
|
17
|
+
|
15
18
|
minHeight: 0,
|
16
19
|
maxHeight: 0,
|
17
20
|
heightOffset: 0,
|
21
|
+
|
22
|
+
animationSpeed: 500, #in px / s
|
23
|
+
maxAnimationTime: 1000, #in ms
|
18
24
|
# minWidth: 0,
|
19
25
|
# maxWidth: 0,
|
20
26
|
# widthOffset: 0,
|
21
27
|
callback: (newHeight) -> {},
|
22
28
|
debug: false
|
23
29
|
}, spec);
|
24
|
-
|
25
30
|
debug(options)
|
26
31
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
32
|
+
|
33
|
+
animateIframe = (iframe, newHeight) ->
|
34
|
+
#iframe.style.height = newHeight + 'px';
|
35
|
+
difference = newHeight - oldHeight
|
36
|
+
time = options.maxAnimationTime
|
37
|
+
if options.animationSpeed != 0
|
38
|
+
time = Math.abs(difference) / options.animationSpeed * 1000
|
39
|
+
time = options.maxAnimationTime if time > options.maxAnimationTime
|
40
|
+
$(iframe).stop().animate({'height': newHeight},time, 'linear')
|
41
|
+
|
42
|
+
# shrinkIframe = (iframe, newHeight, difference) ->
|
43
|
+
# time = options.maxAnimationTime
|
44
|
+
# if options.shrinkSpeed != 0
|
45
|
+
# time = Math.abs(difference) / options.shrinkSpeed * 1000
|
46
|
+
# time = options.maxAnimationTime if time > options.maxAnimationTime
|
47
|
+
|
48
|
+
# if options.shrinkDelay > 0
|
49
|
+
# $(iframe).delay(options.shrinkDelay).stop().animate({'height': newHeight},time, 'linear')
|
50
|
+
# else
|
51
|
+
# $(iframe).stop().animate({'height': newHeight},time, 'linear')
|
52
|
+
|
53
|
+
|
54
|
+
# expandIframe = (iframe, newHeight, difference) ->
|
55
|
+
# time = options.maxAnimationTime
|
56
|
+
# if options.expandSpeed != 0
|
57
|
+
# time = Math.abs(difference) / options.expandSpeed * 1000
|
58
|
+
# time = options.maxAnimationTime if time > options.maxAnimationTime
|
59
|
+
# $(iframe).stop().animate({'height': newHeight},time, 'linear')
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
computeHeight = (body) ->
|
64
|
+
if body.length > 0
|
65
|
+
newHeight = body[0].offsetHeight + options.heightOffset
|
31
66
|
else
|
32
67
|
newHeight = options.heightOffset
|
33
68
|
#newHeight = $body[0].clientHeight + options.heightOffset
|
@@ -37,23 +72,34 @@ $.fn.iframeAutoResize = (spec) ->
|
|
37
72
|
newHeight = options.minHeight + options.heightOffset;
|
38
73
|
if (newHeight > options.maxHeight && options.maxHeight != 0)
|
39
74
|
newHeight = options.maxHeight + options.heightOffset;
|
40
|
-
|
41
|
-
|
75
|
+
return newHeight
|
76
|
+
|
77
|
+
|
78
|
+
resizeHeight = (iframe) ->
|
79
|
+
$body = $(iframe).contents().find('body')
|
80
|
+
newHeight = computeHeight($body)
|
81
|
+
|
82
|
+
if newHeight != oldHeight
|
83
|
+
animateIframe(iframe, newHeight)
|
84
|
+
oldHeight = newHeight
|
85
|
+
|
42
86
|
|
87
|
+
init = () =>
|
88
|
+
$(this).each ->
|
89
|
+
iframe = this
|
90
|
+
delayedResize = ->
|
91
|
+
resizeHeight(iframe)
|
43
92
|
|
44
|
-
|
45
|
-
|
46
|
-
delayedResize = ->
|
47
|
-
resizeHeight(iframe)
|
93
|
+
source = $(this).attr('src')
|
94
|
+
$(this).attr('src', '')
|
48
95
|
|
49
|
-
|
50
|
-
|
96
|
+
$(this).load ->
|
97
|
+
resizeHeight(this)
|
51
98
|
|
52
|
-
|
53
|
-
resizeHeight(this)
|
99
|
+
$(this).attr('src', source)
|
54
100
|
|
55
|
-
|
101
|
+
if options.interval != 0
|
102
|
+
setInterval(delayedResize, options.interval)
|
56
103
|
|
57
|
-
|
58
|
-
setInterval(delayedResize, options.interval)
|
104
|
+
init()
|
59
105
|
|
@@ -23,10 +23,12 @@
|
|
23
23
|
:javascript
|
24
24
|
$(document).ready(function () {
|
25
25
|
$('iframe').iframeAutoResize({
|
26
|
-
interval:
|
26
|
+
interval: 500,
|
27
27
|
debug: false,
|
28
28
|
heightOffset: 0,
|
29
|
-
minHeight: 0
|
29
|
+
minHeight: 0,
|
30
|
+
animationSpeed: 500,
|
31
|
+
maxAnimationTime: 1000
|
30
32
|
});
|
31
33
|
});
|
32
34
|
|
@@ -15,10 +15,10 @@
|
|
15
15
|
$(document).ready(function(){
|
16
16
|
function randomSize(){
|
17
17
|
$("body *").each(function(){
|
18
|
-
var randomnumber=Math.floor(Math.random()*
|
18
|
+
var randomnumber=Math.floor(Math.random()*300)
|
19
19
|
$(this).height(randomnumber+"px");
|
20
20
|
});
|
21
|
-
setTimeout(randomSize,
|
21
|
+
setTimeout(randomSize, 2000);
|
22
22
|
}
|
23
23
|
|
24
24
|
$("*").each(function(){
|
@@ -17212,3 +17212,2533 @@ Started GET "/" for 127.0.0.1 at Mon Sep 05 21:55:02 +0200 2011
|
|
17212
17212
|
Processing by StaticController#container as */*
|
17213
17213
|
Rendered static/container.html.haml within layouts/application (3.9ms)
|
17214
17214
|
Completed 200 OK in 16ms (Views: 15.9ms | ActiveRecord: 0.0ms)
|
17215
|
+
|
17216
|
+
|
17217
|
+
Started GET "/" for 127.0.0.1 at Tue Sep 06 09:33:00 +0200 2011
|
17218
|
+
Processing by StaticController#container as HTML
|
17219
|
+
Rendered static/container.html.haml within layouts/application (5.0ms)
|
17220
|
+
Completed 200 OK in 489ms (Views: 489.1ms | ActiveRecord: 0.0ms)
|
17221
|
+
|
17222
|
+
|
17223
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17224
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17225
|
+
|
17226
|
+
|
17227
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17228
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
17229
|
+
|
17230
|
+
|
17231
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17232
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
17233
|
+
|
17234
|
+
|
17235
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17236
|
+
Served asset /static.css - 304 Not Modified (3ms)
|
17237
|
+
|
17238
|
+
|
17239
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17240
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
17241
|
+
|
17242
|
+
|
17243
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17244
|
+
Served asset /static.js - 304 Not Modified (1ms)
|
17245
|
+
|
17246
|
+
|
17247
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17248
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (2ms)
|
17249
|
+
|
17250
|
+
|
17251
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Tue Sep 06 09:33:03 +0200 2011
|
17252
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17253
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (3.3ms)
|
17254
|
+
Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
|
17255
|
+
|
17256
|
+
|
17257
|
+
Started GET "/static/iframe" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17258
|
+
Processing by StaticController#iframe as HTML
|
17259
|
+
Rendered static/iframe.html.haml within layouts/application (2.2ms)
|
17260
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
17261
|
+
|
17262
|
+
|
17263
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17264
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17265
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
17266
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
17267
|
+
|
17268
|
+
|
17269
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17270
|
+
Served asset /application.css - 304 Not Modified (4ms)
|
17271
|
+
|
17272
|
+
|
17273
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17274
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17275
|
+
|
17276
|
+
|
17277
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17278
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17279
|
+
|
17280
|
+
|
17281
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17282
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17283
|
+
|
17284
|
+
|
17285
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17286
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17287
|
+
|
17288
|
+
|
17289
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17290
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17291
|
+
|
17292
|
+
|
17293
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17294
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
17295
|
+
|
17296
|
+
|
17297
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17298
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17299
|
+
|
17300
|
+
|
17301
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17302
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17303
|
+
|
17304
|
+
|
17305
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17306
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17307
|
+
|
17308
|
+
|
17309
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Tue Sep 06 09:33:04 +0200 2011
|
17310
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
17311
|
+
|
17312
|
+
|
17313
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17314
|
+
Processing by StaticController#container as HTML
|
17315
|
+
Rendered static/container.html.haml within layouts/application (4.6ms)
|
17316
|
+
Completed 200 OK in 77ms (Views: 76.9ms | ActiveRecord: 0.0ms)
|
17317
|
+
|
17318
|
+
|
17319
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17320
|
+
Served asset /application.css - 200 OK (1ms)
|
17321
|
+
|
17322
|
+
|
17323
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17324
|
+
Served asset /application.js - 200 OK (31ms)
|
17325
|
+
|
17326
|
+
|
17327
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17328
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (2ms)
|
17329
|
+
|
17330
|
+
|
17331
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17332
|
+
Served asset /jquery_ujs.js - 304 Not Modified (39ms)
|
17333
|
+
|
17334
|
+
|
17335
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17336
|
+
Served asset /jquery.js - 304 Not Modified (49ms)
|
17337
|
+
|
17338
|
+
|
17339
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17340
|
+
Served asset /static.css - 304 Not Modified (1ms)
|
17341
|
+
|
17342
|
+
|
17343
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17344
|
+
Served asset /static.js - 304 Not Modified (1ms)
|
17345
|
+
|
17346
|
+
|
17347
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17348
|
+
Processing by StaticController#iframe as HTML
|
17349
|
+
Rendered static/iframe.html.haml within layouts/application (2.2ms)
|
17350
|
+
Completed 200 OK in 36ms (Views: 34.8ms | ActiveRecord: 0.0ms)
|
17351
|
+
|
17352
|
+
|
17353
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:06:51 +0200 2011
|
17354
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17355
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (6.9ms)
|
17356
|
+
Completed 200 OK in 45ms (Views: 44.0ms | ActiveRecord: 0.0ms)
|
17357
|
+
|
17358
|
+
|
17359
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17360
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17361
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17362
|
+
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
17363
|
+
|
17364
|
+
|
17365
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17366
|
+
Processing by StaticController#iframe as HTML
|
17367
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17368
|
+
Completed 200 OK in 11ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
17369
|
+
|
17370
|
+
|
17371
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17372
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17373
|
+
|
17374
|
+
|
17375
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17376
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17377
|
+
|
17378
|
+
|
17379
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17380
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17381
|
+
|
17382
|
+
|
17383
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17384
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17385
|
+
|
17386
|
+
|
17387
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17388
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17389
|
+
|
17390
|
+
|
17391
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17392
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17393
|
+
|
17394
|
+
|
17395
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17396
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17397
|
+
|
17398
|
+
|
17399
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:06:52 +0200 2011
|
17400
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17401
|
+
|
17402
|
+
|
17403
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:10:01 +0200 2011
|
17404
|
+
Processing by StaticController#container as */*
|
17405
|
+
Rendered static/container.html.haml within layouts/application (3.9ms)
|
17406
|
+
Compiled jquery.iframe_auto_resize.js (288ms) (pid 11396)
|
17407
|
+
Compiled application.js (18ms) (pid 11396)
|
17408
|
+
Completed 200 OK in 359ms (Views: 358.5ms | ActiveRecord: 0.0ms)
|
17409
|
+
|
17410
|
+
|
17411
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:12:16 +0200 2011
|
17412
|
+
Processing by StaticController#container as HTML
|
17413
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
17414
|
+
Compiled jquery.iframe_auto_resize.js (146ms) (pid 11396)
|
17415
|
+
Compiled application.js (6ms) (pid 11396)
|
17416
|
+
Completed 200 OK in 178ms (Views: 177.3ms | ActiveRecord: 0.0ms)
|
17417
|
+
|
17418
|
+
|
17419
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17420
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17421
|
+
|
17422
|
+
|
17423
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17424
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (4ms)
|
17425
|
+
|
17426
|
+
|
17427
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17428
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17429
|
+
|
17430
|
+
|
17431
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17432
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
17433
|
+
|
17434
|
+
|
17435
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17436
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17437
|
+
|
17438
|
+
|
17439
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17440
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17441
|
+
|
17442
|
+
|
17443
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17444
|
+
Served asset /application.js - 200 OK (30ms)
|
17445
|
+
|
17446
|
+
|
17447
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17448
|
+
Processing by StaticController#iframe as HTML
|
17449
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17450
|
+
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
|
17451
|
+
|
17452
|
+
|
17453
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17454
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17455
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17456
|
+
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
|
17457
|
+
|
17458
|
+
|
17459
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17460
|
+
Processing by StaticController#iframe as HTML
|
17461
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
17462
|
+
Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.0ms)
|
17463
|
+
|
17464
|
+
|
17465
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17466
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17467
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17468
|
+
Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
|
17469
|
+
|
17470
|
+
|
17471
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17472
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17473
|
+
|
17474
|
+
|
17475
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17476
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17477
|
+
|
17478
|
+
|
17479
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17480
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17481
|
+
|
17482
|
+
|
17483
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17484
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (3ms)
|
17485
|
+
|
17486
|
+
|
17487
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17488
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17489
|
+
|
17490
|
+
|
17491
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17492
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17493
|
+
|
17494
|
+
|
17495
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17496
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
17497
|
+
|
17498
|
+
|
17499
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17500
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17501
|
+
|
17502
|
+
|
17503
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17504
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17505
|
+
|
17506
|
+
|
17507
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:12:17 +0200 2011
|
17508
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17509
|
+
|
17510
|
+
|
17511
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17512
|
+
Processing by StaticController#container as HTML
|
17513
|
+
Rendered static/container.html.haml within layouts/application (6.8ms)
|
17514
|
+
Compiled jquery.iframe_auto_resize.js (145ms) (pid 11396)
|
17515
|
+
Compiled application.js (7ms) (pid 11396)
|
17516
|
+
Completed 200 OK in 190ms (Views: 188.9ms | ActiveRecord: 0.0ms)
|
17517
|
+
|
17518
|
+
|
17519
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17520
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17521
|
+
|
17522
|
+
|
17523
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17524
|
+
Served asset /jquery.js - 304 Not Modified (11ms)
|
17525
|
+
|
17526
|
+
|
17527
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17528
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17529
|
+
|
17530
|
+
|
17531
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17532
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (4ms)
|
17533
|
+
|
17534
|
+
|
17535
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17536
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17537
|
+
|
17538
|
+
|
17539
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17540
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17541
|
+
|
17542
|
+
|
17543
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17544
|
+
Served asset /application.js - 200 OK (8ms)
|
17545
|
+
|
17546
|
+
|
17547
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17548
|
+
Processing by StaticController#iframe as HTML
|
17549
|
+
Rendered static/iframe.html.haml within layouts/application (2.3ms)
|
17550
|
+
Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
|
17551
|
+
|
17552
|
+
|
17553
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17554
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17555
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17556
|
+
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
17557
|
+
|
17558
|
+
|
17559
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17560
|
+
Processing by StaticController#iframe as HTML
|
17561
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17562
|
+
Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
|
17563
|
+
|
17564
|
+
|
17565
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17566
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17567
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17568
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
17569
|
+
|
17570
|
+
|
17571
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17572
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17573
|
+
|
17574
|
+
|
17575
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17576
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17577
|
+
|
17578
|
+
|
17579
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17580
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
17581
|
+
|
17582
|
+
|
17583
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17584
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17585
|
+
|
17586
|
+
|
17587
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17588
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17589
|
+
|
17590
|
+
|
17591
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17592
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17593
|
+
|
17594
|
+
|
17595
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:40 +0200 2011
|
17596
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
17597
|
+
|
17598
|
+
|
17599
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:41 +0200 2011
|
17600
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17601
|
+
|
17602
|
+
|
17603
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:41 +0200 2011
|
17604
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17605
|
+
|
17606
|
+
|
17607
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:41 +0200 2011
|
17608
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17609
|
+
|
17610
|
+
|
17611
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:13:41 +0200 2011
|
17612
|
+
Served asset /application.js - 304 Not Modified (59ms)
|
17613
|
+
|
17614
|
+
|
17615
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17616
|
+
Processing by StaticController#container as HTML
|
17617
|
+
Rendered static/container.html.haml within layouts/application (5.5ms)
|
17618
|
+
Compiled jquery.iframe_auto_resize.js (169ms) (pid 11396)
|
17619
|
+
Compiled application.js (8ms) (pid 11396)
|
17620
|
+
Completed 200 OK in 217ms (Views: 216.3ms | ActiveRecord: 0.0ms)
|
17621
|
+
|
17622
|
+
|
17623
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17624
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17625
|
+
|
17626
|
+
|
17627
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17628
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17629
|
+
|
17630
|
+
|
17631
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17632
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (4ms)
|
17633
|
+
|
17634
|
+
|
17635
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17636
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17637
|
+
|
17638
|
+
|
17639
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17640
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17641
|
+
|
17642
|
+
|
17643
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17644
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17645
|
+
|
17646
|
+
|
17647
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17648
|
+
Served asset /application.js - 200 OK (8ms)
|
17649
|
+
|
17650
|
+
|
17651
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17652
|
+
Processing by StaticController#iframe as HTML
|
17653
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17654
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
17655
|
+
|
17656
|
+
|
17657
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17658
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17659
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17660
|
+
Completed 200 OK in 14ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
17661
|
+
|
17662
|
+
|
17663
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:14:06 +0200 2011
|
17664
|
+
Processing by StaticController#iframe as HTML
|
17665
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17666
|
+
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
17667
|
+
|
17668
|
+
|
17669
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17670
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17671
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17672
|
+
Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
17673
|
+
|
17674
|
+
|
17675
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17676
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17677
|
+
|
17678
|
+
|
17679
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17680
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17681
|
+
|
17682
|
+
|
17683
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17684
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17685
|
+
|
17686
|
+
|
17687
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17688
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17689
|
+
|
17690
|
+
|
17691
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17692
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17693
|
+
|
17694
|
+
|
17695
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17696
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17697
|
+
|
17698
|
+
|
17699
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17700
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
17701
|
+
|
17702
|
+
|
17703
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17704
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17705
|
+
|
17706
|
+
|
17707
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17708
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17709
|
+
|
17710
|
+
|
17711
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17712
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17713
|
+
|
17714
|
+
|
17715
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:14:07 +0200 2011
|
17716
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
17717
|
+
|
17718
|
+
|
17719
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:15:01 +0200 2011
|
17720
|
+
Processing by StaticController#container as */*
|
17721
|
+
Rendered static/container.html.haml within layouts/application (5.1ms)
|
17722
|
+
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
17723
|
+
|
17724
|
+
|
17725
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17726
|
+
Processing by StaticController#container as HTML
|
17727
|
+
Rendered static/container.html.haml within layouts/application (1.1ms)
|
17728
|
+
Compiled jquery.iframe_auto_resize.js (148ms) (pid 11396)
|
17729
|
+
Compiled application.js (7ms) (pid 11396)
|
17730
|
+
Completed 200 OK in 186ms (Views: 185.1ms | ActiveRecord: 0.0ms)
|
17731
|
+
|
17732
|
+
|
17733
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17734
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17735
|
+
|
17736
|
+
|
17737
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17738
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
17739
|
+
|
17740
|
+
|
17741
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17742
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17743
|
+
|
17744
|
+
|
17745
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17746
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17747
|
+
|
17748
|
+
|
17749
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17750
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (5ms)
|
17751
|
+
|
17752
|
+
|
17753
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17754
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17755
|
+
|
17756
|
+
|
17757
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17758
|
+
Served asset /application.js - 200 OK (10ms)
|
17759
|
+
|
17760
|
+
|
17761
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17762
|
+
Processing by StaticController#iframe as HTML
|
17763
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17764
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
17765
|
+
|
17766
|
+
|
17767
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17768
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17769
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17770
|
+
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
|
17771
|
+
|
17772
|
+
|
17773
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17774
|
+
Processing by StaticController#iframe as HTML
|
17775
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
17776
|
+
Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
17777
|
+
|
17778
|
+
|
17779
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17780
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17781
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17782
|
+
Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
17783
|
+
|
17784
|
+
|
17785
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17786
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17787
|
+
|
17788
|
+
|
17789
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17790
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
17791
|
+
|
17792
|
+
|
17793
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17794
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17795
|
+
|
17796
|
+
|
17797
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17798
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17799
|
+
|
17800
|
+
|
17801
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17802
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17803
|
+
|
17804
|
+
|
17805
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17806
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17807
|
+
|
17808
|
+
|
17809
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:15:49 +0200 2011
|
17810
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
17811
|
+
|
17812
|
+
|
17813
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:16:46 +0200 2011
|
17814
|
+
Processing by StaticController#container as HTML
|
17815
|
+
Rendered static/container.html.haml within layouts/application (1.1ms)
|
17816
|
+
Compiled jquery.iframe_auto_resize.js (175ms) (pid 11396)
|
17817
|
+
Compiled application.js (12ms) (pid 11396)
|
17818
|
+
Completed 200 OK in 230ms (Views: 229.3ms | ActiveRecord: 0.0ms)
|
17819
|
+
|
17820
|
+
|
17821
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17822
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17823
|
+
|
17824
|
+
|
17825
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17826
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
17827
|
+
|
17828
|
+
|
17829
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17830
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
17831
|
+
|
17832
|
+
|
17833
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17834
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17835
|
+
|
17836
|
+
|
17837
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17838
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17839
|
+
|
17840
|
+
|
17841
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17842
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (3ms)
|
17843
|
+
|
17844
|
+
|
17845
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17846
|
+
Served asset /application.js - 200 OK (67ms)
|
17847
|
+
|
17848
|
+
|
17849
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17850
|
+
Processing by StaticController#iframe as HTML
|
17851
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17852
|
+
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
17853
|
+
|
17854
|
+
|
17855
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17856
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17857
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17858
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
17859
|
+
|
17860
|
+
|
17861
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17862
|
+
Processing by StaticController#iframe as HTML
|
17863
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17864
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
17865
|
+
|
17866
|
+
|
17867
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17868
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17869
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17870
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
17871
|
+
|
17872
|
+
|
17873
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17874
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17875
|
+
|
17876
|
+
|
17877
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17878
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
17879
|
+
|
17880
|
+
|
17881
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17882
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17883
|
+
|
17884
|
+
|
17885
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17886
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17887
|
+
|
17888
|
+
|
17889
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17890
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17891
|
+
|
17892
|
+
|
17893
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17894
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17895
|
+
|
17896
|
+
|
17897
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17898
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
17899
|
+
|
17900
|
+
|
17901
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17902
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17903
|
+
|
17904
|
+
|
17905
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17906
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
17907
|
+
|
17908
|
+
|
17909
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17910
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17911
|
+
|
17912
|
+
|
17913
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:16:47 +0200 2011
|
17914
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
17915
|
+
|
17916
|
+
|
17917
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:20:02 +0200 2011
|
17918
|
+
Processing by StaticController#container as */*
|
17919
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
17920
|
+
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
|
17921
|
+
|
17922
|
+
|
17923
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:25:01 +0200 2011
|
17924
|
+
Processing by StaticController#container as */*
|
17925
|
+
Rendered static/container.html.haml within layouts/application (1.1ms)
|
17926
|
+
Compiled jquery.iframe_auto_resize.js (146ms) (pid 11396)
|
17927
|
+
Compiled application.js (7ms) (pid 11396)
|
17928
|
+
Completed 200 OK in 186ms (Views: 186.0ms | ActiveRecord: 0.0ms)
|
17929
|
+
|
17930
|
+
|
17931
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:25:04 +0200 2011
|
17932
|
+
Processing by StaticController#container as HTML
|
17933
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
17934
|
+
Completed 200 OK in 67ms (Views: 66.6ms | ActiveRecord: 0.0ms)
|
17935
|
+
|
17936
|
+
|
17937
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17938
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17939
|
+
|
17940
|
+
|
17941
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17942
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
17943
|
+
|
17944
|
+
|
17945
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17946
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
17947
|
+
|
17948
|
+
|
17949
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17950
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17951
|
+
|
17952
|
+
|
17953
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17954
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (5ms)
|
17955
|
+
|
17956
|
+
|
17957
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17958
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17959
|
+
|
17960
|
+
|
17961
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17962
|
+
Served asset /application.js - 200 OK (8ms)
|
17963
|
+
|
17964
|
+
|
17965
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17966
|
+
Processing by StaticController#iframe as HTML
|
17967
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
17968
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
17969
|
+
|
17970
|
+
|
17971
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17972
|
+
Processing by StaticController#iframe_with_margin as HTML
|
17973
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
17974
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
17975
|
+
|
17976
|
+
|
17977
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17978
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
17979
|
+
|
17980
|
+
|
17981
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17982
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
17983
|
+
|
17984
|
+
|
17985
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17986
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17987
|
+
|
17988
|
+
|
17989
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17990
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
17991
|
+
|
17992
|
+
|
17993
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17994
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
17995
|
+
|
17996
|
+
|
17997
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
17998
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
17999
|
+
|
18000
|
+
|
18001
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:05 +0200 2011
|
18002
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18003
|
+
|
18004
|
+
|
18005
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18006
|
+
Processing by StaticController#container as HTML
|
18007
|
+
Rendered static/container.html.haml within layouts/application (1.2ms)
|
18008
|
+
Compiled jquery.iframe_auto_resize.js (203ms) (pid 11396)
|
18009
|
+
Compiled application.js (8ms) (pid 11396)
|
18010
|
+
Completed 200 OK in 241ms (Views: 240.9ms | ActiveRecord: 0.0ms)
|
18011
|
+
|
18012
|
+
|
18013
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18014
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18015
|
+
|
18016
|
+
|
18017
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18018
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
18019
|
+
|
18020
|
+
|
18021
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18022
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18023
|
+
|
18024
|
+
|
18025
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18026
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (6ms)
|
18027
|
+
|
18028
|
+
|
18029
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18030
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18031
|
+
|
18032
|
+
|
18033
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18034
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18035
|
+
|
18036
|
+
|
18037
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18038
|
+
Served asset /application.js - 200 OK (7ms)
|
18039
|
+
|
18040
|
+
|
18041
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18042
|
+
Processing by StaticController#iframe as HTML
|
18043
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
18044
|
+
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
18045
|
+
|
18046
|
+
|
18047
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18048
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18049
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18050
|
+
Completed 200 OK in 14ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
18051
|
+
|
18052
|
+
|
18053
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18054
|
+
Processing by StaticController#iframe as HTML
|
18055
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18056
|
+
Completed 200 OK in 13ms (Views: 12.9ms | ActiveRecord: 0.0ms)
|
18057
|
+
|
18058
|
+
|
18059
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18060
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18061
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
18062
|
+
Completed 200 OK in 16ms (Views: 14.8ms | ActiveRecord: 0.0ms)
|
18063
|
+
|
18064
|
+
|
18065
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18066
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18067
|
+
|
18068
|
+
|
18069
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:25:20 +0200 2011
|
18070
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18071
|
+
|
18072
|
+
|
18073
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:21 +0200 2011
|
18074
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
18075
|
+
|
18076
|
+
|
18077
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:21 +0200 2011
|
18078
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18079
|
+
|
18080
|
+
|
18081
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:21 +0200 2011
|
18082
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18083
|
+
|
18084
|
+
|
18085
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:21 +0200 2011
|
18086
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18087
|
+
|
18088
|
+
|
18089
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:25:21 +0200 2011
|
18090
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18091
|
+
|
18092
|
+
|
18093
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:27:25 +0200 2011
|
18094
|
+
Processing by StaticController#container as HTML
|
18095
|
+
Rendered static/container.html.haml within layouts/application (0.7ms)
|
18096
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
18097
|
+
|
18098
|
+
|
18099
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:27:32 +0200 2011
|
18100
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18101
|
+
|
18102
|
+
|
18103
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18104
|
+
Processing by StaticController#container as HTML
|
18105
|
+
Rendered static/container.html.haml within layouts/application (1.3ms)
|
18106
|
+
Compiled jquery.iframe_auto_resize.js (235ms) (pid 11396)
|
18107
|
+
Compiled application.js (9ms) (pid 11396)
|
18108
|
+
Completed 200 OK in 277ms (Views: 276.5ms | ActiveRecord: 0.0ms)
|
18109
|
+
|
18110
|
+
|
18111
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18112
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18113
|
+
|
18114
|
+
|
18115
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18116
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18117
|
+
|
18118
|
+
|
18119
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18120
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18121
|
+
|
18122
|
+
|
18123
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18124
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
18125
|
+
|
18126
|
+
|
18127
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18128
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18129
|
+
|
18130
|
+
|
18131
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18132
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (6ms)
|
18133
|
+
|
18134
|
+
|
18135
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18136
|
+
Served asset /application.js - 200 OK (10ms)
|
18137
|
+
|
18138
|
+
|
18139
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18140
|
+
Processing by StaticController#iframe as HTML
|
18141
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18142
|
+
Completed 200 OK in 22ms (Views: 21.1ms | ActiveRecord: 0.0ms)
|
18143
|
+
|
18144
|
+
|
18145
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18146
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18147
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
18148
|
+
Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
|
18149
|
+
|
18150
|
+
|
18151
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18152
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18153
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18154
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
18155
|
+
|
18156
|
+
|
18157
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18158
|
+
Processing by StaticController#iframe as HTML
|
18159
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18160
|
+
Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
18161
|
+
|
18162
|
+
|
18163
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18164
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18165
|
+
|
18166
|
+
|
18167
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18168
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18169
|
+
|
18170
|
+
|
18171
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18172
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
18173
|
+
|
18174
|
+
|
18175
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18176
|
+
Served asset /jquery.js - 304 Not Modified (8ms)
|
18177
|
+
|
18178
|
+
|
18179
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18180
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18181
|
+
|
18182
|
+
|
18183
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18184
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18185
|
+
|
18186
|
+
|
18187
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:20 +0200 2011
|
18188
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18189
|
+
|
18190
|
+
|
18191
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:21 +0200 2011
|
18192
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18193
|
+
|
18194
|
+
|
18195
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:21 +0200 2011
|
18196
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18197
|
+
|
18198
|
+
|
18199
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:21 +0200 2011
|
18200
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18201
|
+
|
18202
|
+
|
18203
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:29:21 +0200 2011
|
18204
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18205
|
+
|
18206
|
+
|
18207
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:30:01 +0200 2011
|
18208
|
+
Processing by StaticController#container as */*
|
18209
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
18210
|
+
Compiled jquery.iframe_auto_resize.js (205ms) (pid 11396)
|
18211
|
+
Compiled application.js (7ms) (pid 11396)
|
18212
|
+
Completed 200 OK in 243ms (Views: 243.1ms | ActiveRecord: 0.0ms)
|
18213
|
+
|
18214
|
+
|
18215
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18216
|
+
Processing by StaticController#container as HTML
|
18217
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
18218
|
+
Compiled jquery.iframe_auto_resize.js (164ms) (pid 11396)
|
18219
|
+
Compiled application.js (8ms) (pid 11396)
|
18220
|
+
Completed 200 OK in 266ms (Views: 265.5ms | ActiveRecord: 0.0ms)
|
18221
|
+
|
18222
|
+
|
18223
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18224
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
18225
|
+
|
18226
|
+
|
18227
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18228
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18229
|
+
|
18230
|
+
|
18231
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18232
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18233
|
+
|
18234
|
+
|
18235
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18236
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (9ms)
|
18237
|
+
|
18238
|
+
|
18239
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18240
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18241
|
+
|
18242
|
+
|
18243
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18244
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18245
|
+
|
18246
|
+
|
18247
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18248
|
+
Served asset /application.js - 200 OK (8ms)
|
18249
|
+
|
18250
|
+
|
18251
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18252
|
+
Processing by StaticController#iframe as HTML
|
18253
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
18254
|
+
Completed 200 OK in 82ms (Views: 81.2ms | ActiveRecord: 0.0ms)
|
18255
|
+
|
18256
|
+
|
18257
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18258
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18259
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
18260
|
+
Completed 200 OK in 25ms (Views: 24.0ms | ActiveRecord: 0.0ms)
|
18261
|
+
|
18262
|
+
|
18263
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18264
|
+
Processing by StaticController#iframe as HTML
|
18265
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
18266
|
+
Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
|
18267
|
+
|
18268
|
+
|
18269
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18270
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18271
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18272
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
18273
|
+
|
18274
|
+
|
18275
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:30:35 +0200 2011
|
18276
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18277
|
+
|
18278
|
+
|
18279
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18280
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
18281
|
+
|
18282
|
+
|
18283
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18284
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
18285
|
+
|
18286
|
+
|
18287
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18288
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18289
|
+
|
18290
|
+
|
18291
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18292
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18293
|
+
|
18294
|
+
|
18295
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18296
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18297
|
+
|
18298
|
+
|
18299
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18300
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
18301
|
+
|
18302
|
+
|
18303
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18304
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18305
|
+
|
18306
|
+
|
18307
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18308
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18309
|
+
|
18310
|
+
|
18311
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18312
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18313
|
+
|
18314
|
+
|
18315
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:30:36 +0200 2011
|
18316
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
18317
|
+
|
18318
|
+
|
18319
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:33:43 +0200 2011
|
18320
|
+
Processing by StaticController#container as HTML
|
18321
|
+
Rendered static/container.html.haml within layouts/application (1.3ms)
|
18322
|
+
Compiled jquery.iframe_auto_resize.js (224ms) (pid 11396)
|
18323
|
+
Compiled application.js (8ms) (pid 11396)
|
18324
|
+
Completed 200 OK in 266ms (Views: 265.3ms | ActiveRecord: 0.0ms)
|
18325
|
+
|
18326
|
+
|
18327
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18328
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18329
|
+
|
18330
|
+
|
18331
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18332
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18333
|
+
|
18334
|
+
|
18335
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18336
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (9ms)
|
18337
|
+
|
18338
|
+
|
18339
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18340
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18341
|
+
|
18342
|
+
|
18343
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18344
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
18345
|
+
|
18346
|
+
|
18347
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18348
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18349
|
+
|
18350
|
+
|
18351
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18352
|
+
Served asset /application.js - 200 OK (10ms)
|
18353
|
+
|
18354
|
+
|
18355
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18356
|
+
Processing by StaticController#iframe as HTML
|
18357
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18358
|
+
Completed 200 OK in 24ms (Views: 22.7ms | ActiveRecord: 0.0ms)
|
18359
|
+
|
18360
|
+
|
18361
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18362
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18363
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18364
|
+
Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
18365
|
+
|
18366
|
+
|
18367
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18368
|
+
Processing by StaticController#iframe as HTML
|
18369
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
18370
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
18371
|
+
|
18372
|
+
|
18373
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18374
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18375
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18376
|
+
Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.0ms)
|
18377
|
+
|
18378
|
+
|
18379
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18380
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18381
|
+
|
18382
|
+
|
18383
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18384
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18385
|
+
|
18386
|
+
|
18387
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18388
|
+
Served asset /jquery.js - 304 Not Modified (13ms)
|
18389
|
+
|
18390
|
+
|
18391
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18392
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18393
|
+
|
18394
|
+
|
18395
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18396
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18397
|
+
|
18398
|
+
|
18399
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18400
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18401
|
+
|
18402
|
+
|
18403
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:33:44 +0200 2011
|
18404
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18405
|
+
|
18406
|
+
|
18407
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:35:02 +0200 2011
|
18408
|
+
Processing by StaticController#container as */*
|
18409
|
+
Rendered static/container.html.haml within layouts/application (0.7ms)
|
18410
|
+
Compiled jquery.iframe_auto_resize.js (146ms) (pid 11396)
|
18411
|
+
Compiled application.js (8ms) (pid 11396)
|
18412
|
+
Completed 200 OK in 247ms (Views: 246.7ms | ActiveRecord: 0.0ms)
|
18413
|
+
|
18414
|
+
|
18415
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:40:01 +0200 2011
|
18416
|
+
Processing by StaticController#container as */*
|
18417
|
+
Rendered static/container.html.haml within layouts/application (0.9ms)
|
18418
|
+
Compiled jquery.iframe_auto_resize.js (195ms) (pid 11396)
|
18419
|
+
Compiled application.js (8ms) (pid 11396)
|
18420
|
+
Completed 200 OK in 234ms (Views: 233.2ms | ActiveRecord: 0.0ms)
|
18421
|
+
|
18422
|
+
|
18423
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18424
|
+
Processing by StaticController#container as HTML
|
18425
|
+
Rendered static/container.html.haml within layouts/application (5.9ms)
|
18426
|
+
Completed 200 OK in 36ms (Views: 35.2ms | ActiveRecord: 0.0ms)
|
18427
|
+
|
18428
|
+
|
18429
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18430
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
18431
|
+
|
18432
|
+
|
18433
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18434
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18435
|
+
|
18436
|
+
|
18437
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18438
|
+
Served asset /static.css - 304 Not Modified (3ms)
|
18439
|
+
|
18440
|
+
|
18441
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18442
|
+
Served asset /static.js - 304 Not Modified (2ms)
|
18443
|
+
|
18444
|
+
|
18445
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18446
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
18447
|
+
|
18448
|
+
|
18449
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18450
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (5ms)
|
18451
|
+
|
18452
|
+
|
18453
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18454
|
+
Served asset /application.js - 200 OK (9ms)
|
18455
|
+
|
18456
|
+
|
18457
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18458
|
+
Processing by StaticController#iframe as HTML
|
18459
|
+
Rendered static/iframe.html.haml within layouts/application (2.5ms)
|
18460
|
+
Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
|
18461
|
+
|
18462
|
+
|
18463
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18464
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18465
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (2.3ms)
|
18466
|
+
Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
|
18467
|
+
|
18468
|
+
|
18469
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:55:01 +0200 2011
|
18470
|
+
Processing by StaticController#iframe as HTML
|
18471
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18472
|
+
Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
|
18473
|
+
|
18474
|
+
|
18475
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18476
|
+
Processing by StaticController#container as */*
|
18477
|
+
Rendered static/container.html.haml within layouts/application (8.3ms)
|
18478
|
+
Completed 200 OK in 34ms (Views: 33.5ms | ActiveRecord: 0.0ms)
|
18479
|
+
|
18480
|
+
|
18481
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18482
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18483
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18484
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
18485
|
+
|
18486
|
+
|
18487
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18488
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18489
|
+
|
18490
|
+
|
18491
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18492
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18493
|
+
|
18494
|
+
|
18495
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18496
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
18497
|
+
|
18498
|
+
|
18499
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18500
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18501
|
+
|
18502
|
+
|
18503
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18504
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18505
|
+
|
18506
|
+
|
18507
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18508
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18509
|
+
|
18510
|
+
|
18511
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:55:02 +0200 2011
|
18512
|
+
Served asset /application.js - 304 Not Modified (3ms)
|
18513
|
+
|
18514
|
+
|
18515
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:58:05 +0200 2011
|
18516
|
+
Processing by StaticController#container as HTML
|
18517
|
+
Rendered static/container.html.haml within layouts/application (1.4ms)
|
18518
|
+
Compiled jquery.iframe_auto_resize.js (245ms) (pid 12256)
|
18519
|
+
Compiled application.js (9ms) (pid 12256)
|
18520
|
+
Completed 200 OK in 290ms (Views: 290.0ms | ActiveRecord: 0.0ms)
|
18521
|
+
|
18522
|
+
|
18523
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18524
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18525
|
+
|
18526
|
+
|
18527
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18528
|
+
Served asset /jquery.js - 304 Not Modified (10ms)
|
18529
|
+
|
18530
|
+
|
18531
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18532
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18533
|
+
|
18534
|
+
|
18535
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18536
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18537
|
+
|
18538
|
+
|
18539
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18540
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (6ms)
|
18541
|
+
|
18542
|
+
|
18543
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18544
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18545
|
+
|
18546
|
+
|
18547
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18548
|
+
Served asset /application.js - 200 OK (11ms)
|
18549
|
+
|
18550
|
+
|
18551
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18552
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18553
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18554
|
+
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
18555
|
+
|
18556
|
+
|
18557
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18558
|
+
Processing by StaticController#iframe as HTML
|
18559
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18560
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
18561
|
+
|
18562
|
+
|
18563
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18564
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18565
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18566
|
+
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
18567
|
+
|
18568
|
+
|
18569
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18570
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18571
|
+
|
18572
|
+
|
18573
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18574
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18575
|
+
|
18576
|
+
|
18577
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18578
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
18579
|
+
|
18580
|
+
|
18581
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18582
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18583
|
+
|
18584
|
+
|
18585
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18586
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18587
|
+
|
18588
|
+
|
18589
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18590
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18591
|
+
|
18592
|
+
|
18593
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 18:58:06 +0200 2011
|
18594
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18595
|
+
|
18596
|
+
|
18597
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 18:59:59 +0200 2011
|
18598
|
+
Processing by StaticController#container as HTML
|
18599
|
+
Rendered static/container.html.haml within layouts/application (1.1ms)
|
18600
|
+
Compiled jquery.iframe_auto_resize.js (209ms) (pid 12256)
|
18601
|
+
Compiled application.js (8ms) (pid 12256)
|
18602
|
+
Completed 200 OK in 248ms (Views: 247.2ms | ActiveRecord: 0.0ms)
|
18603
|
+
|
18604
|
+
|
18605
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18606
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18607
|
+
|
18608
|
+
|
18609
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18610
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18611
|
+
|
18612
|
+
|
18613
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18614
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
18615
|
+
|
18616
|
+
|
18617
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18618
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (8ms)
|
18619
|
+
|
18620
|
+
|
18621
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18622
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18623
|
+
|
18624
|
+
|
18625
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18626
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18627
|
+
|
18628
|
+
|
18629
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18630
|
+
Served asset /application.js - 200 OK (11ms)
|
18631
|
+
|
18632
|
+
|
18633
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18634
|
+
Processing by StaticController#iframe as HTML
|
18635
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18636
|
+
Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
|
18637
|
+
|
18638
|
+
|
18639
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18640
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18641
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18642
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
18643
|
+
|
18644
|
+
|
18645
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18646
|
+
Processing by StaticController#iframe as HTML
|
18647
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18648
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
18649
|
+
|
18650
|
+
|
18651
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18652
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18653
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
18654
|
+
Completed 200 OK in 16ms (Views: 14.9ms | ActiveRecord: 0.0ms)
|
18655
|
+
|
18656
|
+
|
18657
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18658
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18659
|
+
|
18660
|
+
|
18661
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18662
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18663
|
+
|
18664
|
+
|
18665
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18666
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
18667
|
+
|
18668
|
+
|
18669
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18670
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18671
|
+
|
18672
|
+
|
18673
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18674
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18675
|
+
|
18676
|
+
|
18677
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18678
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18679
|
+
|
18680
|
+
|
18681
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:00 +0200 2011
|
18682
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18683
|
+
|
18684
|
+
|
18685
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:01 +0200 2011
|
18686
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18687
|
+
|
18688
|
+
|
18689
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:01 +0200 2011
|
18690
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18691
|
+
|
18692
|
+
|
18693
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:01 +0200 2011
|
18694
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18695
|
+
|
18696
|
+
|
18697
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:01 +0200 2011
|
18698
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18699
|
+
|
18700
|
+
|
18701
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:00:01 +0200 2011
|
18702
|
+
Processing by StaticController#container as */*
|
18703
|
+
Rendered static/container.html.haml within layouts/application (63.1ms)
|
18704
|
+
Completed 200 OK in 79ms (Views: 78.6ms | ActiveRecord: 0.0ms)
|
18705
|
+
|
18706
|
+
|
18707
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:00:19 +0200 2011
|
18708
|
+
Processing by StaticController#container as HTML
|
18709
|
+
Rendered static/container.html.haml within layouts/application (1.1ms)
|
18710
|
+
Compiled jquery.iframe_auto_resize.js (184ms) (pid 12256)
|
18711
|
+
Compiled application.js (9ms) (pid 12256)
|
18712
|
+
Completed 200 OK in 287ms (Views: 286.0ms | ActiveRecord: 0.0ms)
|
18713
|
+
|
18714
|
+
|
18715
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18716
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18717
|
+
|
18718
|
+
|
18719
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18720
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
18721
|
+
|
18722
|
+
|
18723
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18724
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (8ms)
|
18725
|
+
|
18726
|
+
|
18727
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18728
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18729
|
+
|
18730
|
+
|
18731
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18732
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18733
|
+
|
18734
|
+
|
18735
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18736
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18737
|
+
|
18738
|
+
|
18739
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18740
|
+
Served asset /application.js - 200 OK (11ms)
|
18741
|
+
|
18742
|
+
|
18743
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18744
|
+
Processing by StaticController#iframe as HTML
|
18745
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
18746
|
+
Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.0ms)
|
18747
|
+
|
18748
|
+
|
18749
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18750
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18751
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18752
|
+
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
18753
|
+
|
18754
|
+
|
18755
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18756
|
+
Processing by StaticController#iframe as HTML
|
18757
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18758
|
+
Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.0ms)
|
18759
|
+
|
18760
|
+
|
18761
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18762
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18763
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18764
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
18765
|
+
|
18766
|
+
|
18767
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18768
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18769
|
+
|
18770
|
+
|
18771
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18772
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18773
|
+
|
18774
|
+
|
18775
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18776
|
+
Served asset /jquery.js - 304 Not Modified (15ms)
|
18777
|
+
|
18778
|
+
|
18779
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18780
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18781
|
+
|
18782
|
+
|
18783
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18784
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18785
|
+
|
18786
|
+
|
18787
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18788
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18789
|
+
|
18790
|
+
|
18791
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:00:20 +0200 2011
|
18792
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18793
|
+
|
18794
|
+
|
18795
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:02:36 +0200 2011
|
18796
|
+
Processing by StaticController#container as HTML
|
18797
|
+
Rendered static/container.html.haml within layouts/application (1.2ms)
|
18798
|
+
Compiled jquery.iframe_auto_resize.js (255ms) (pid 12256)
|
18799
|
+
Compiled application.js (9ms) (pid 12256)
|
18800
|
+
Completed 200 OK in 300ms (Views: 299.0ms | ActiveRecord: 0.0ms)
|
18801
|
+
|
18802
|
+
|
18803
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18804
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18805
|
+
|
18806
|
+
|
18807
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18808
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18809
|
+
|
18810
|
+
|
18811
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18812
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
18813
|
+
|
18814
|
+
|
18815
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18816
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18817
|
+
|
18818
|
+
|
18819
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18820
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18821
|
+
|
18822
|
+
|
18823
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18824
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (5ms)
|
18825
|
+
|
18826
|
+
|
18827
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18828
|
+
Served asset /application.js - 200 OK (10ms)
|
18829
|
+
|
18830
|
+
|
18831
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18832
|
+
Processing by StaticController#iframe as HTML
|
18833
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
18834
|
+
Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.0ms)
|
18835
|
+
|
18836
|
+
|
18837
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18838
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18839
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18840
|
+
Completed 200 OK in 17ms (Views: 16.3ms | ActiveRecord: 0.0ms)
|
18841
|
+
|
18842
|
+
|
18843
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18844
|
+
Processing by StaticController#iframe as HTML
|
18845
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18846
|
+
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
18847
|
+
|
18848
|
+
|
18849
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18850
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18851
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
18852
|
+
Completed 200 OK in 93ms (Views: 91.7ms | ActiveRecord: 0.0ms)
|
18853
|
+
|
18854
|
+
|
18855
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18856
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18857
|
+
|
18858
|
+
|
18859
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18860
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18861
|
+
|
18862
|
+
|
18863
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18864
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
18865
|
+
|
18866
|
+
|
18867
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18868
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18869
|
+
|
18870
|
+
|
18871
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18872
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18873
|
+
|
18874
|
+
|
18875
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18876
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18877
|
+
|
18878
|
+
|
18879
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:02:37 +0200 2011
|
18880
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18881
|
+
|
18882
|
+
|
18883
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18884
|
+
Processing by StaticController#container as HTML
|
18885
|
+
Rendered static/container.html.haml within layouts/application (1.3ms)
|
18886
|
+
Compiled jquery.iframe_auto_resize.js (180ms) (pid 12256)
|
18887
|
+
Compiled application.js (8ms) (pid 12256)
|
18888
|
+
Completed 200 OK in 273ms (Views: 272.6ms | ActiveRecord: 0.0ms)
|
18889
|
+
|
18890
|
+
|
18891
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18892
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18893
|
+
|
18894
|
+
|
18895
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18896
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18897
|
+
|
18898
|
+
|
18899
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18900
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
18901
|
+
|
18902
|
+
|
18903
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18904
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18905
|
+
|
18906
|
+
|
18907
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18908
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18909
|
+
|
18910
|
+
|
18911
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18912
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (6ms)
|
18913
|
+
|
18914
|
+
|
18915
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18916
|
+
Served asset /application.js - 200 OK (10ms)
|
18917
|
+
|
18918
|
+
|
18919
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:03:21 +0200 2011
|
18920
|
+
Processing by StaticController#iframe as HTML
|
18921
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
18922
|
+
Completed 200 OK in 18ms (Views: 16.6ms | ActiveRecord: 0.0ms)
|
18923
|
+
|
18924
|
+
|
18925
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18926
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18927
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18928
|
+
Completed 200 OK in 16ms (Views: 15.2ms | ActiveRecord: 0.0ms)
|
18929
|
+
|
18930
|
+
|
18931
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18932
|
+
Processing by StaticController#iframe as HTML
|
18933
|
+
Rendered static/iframe.html.haml within layouts/application (0.3ms)
|
18934
|
+
Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms)
|
18935
|
+
|
18936
|
+
|
18937
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18938
|
+
Processing by StaticController#iframe_with_margin as HTML
|
18939
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
18940
|
+
Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
18941
|
+
|
18942
|
+
|
18943
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18944
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18945
|
+
|
18946
|
+
|
18947
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18948
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
18949
|
+
|
18950
|
+
|
18951
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18952
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
18953
|
+
|
18954
|
+
|
18955
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18956
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
18957
|
+
|
18958
|
+
|
18959
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18960
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18961
|
+
|
18962
|
+
|
18963
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18964
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18965
|
+
|
18966
|
+
|
18967
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18968
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18969
|
+
|
18970
|
+
|
18971
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18972
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
18973
|
+
|
18974
|
+
|
18975
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18976
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
18977
|
+
|
18978
|
+
|
18979
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18980
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
18981
|
+
|
18982
|
+
|
18983
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:03:22 +0200 2011
|
18984
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
18985
|
+
|
18986
|
+
|
18987
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:04:12 +0200 2011
|
18988
|
+
Processing by StaticController#container as HTML
|
18989
|
+
Rendered static/container.html.haml within layouts/application (1.3ms)
|
18990
|
+
Compiled jquery.iframe_auto_resize.js (239ms) (pid 12256)
|
18991
|
+
Compiled application.js (11ms) (pid 12256)
|
18992
|
+
Completed 200 OK in 300ms (Views: 299.7ms | ActiveRecord: 0.0ms)
|
18993
|
+
|
18994
|
+
|
18995
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
18996
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
18997
|
+
|
18998
|
+
|
18999
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19000
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
19001
|
+
|
19002
|
+
|
19003
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19004
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19005
|
+
|
19006
|
+
|
19007
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19008
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19009
|
+
|
19010
|
+
|
19011
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19012
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19013
|
+
|
19014
|
+
|
19015
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19016
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (6ms)
|
19017
|
+
|
19018
|
+
|
19019
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19020
|
+
Served asset /application.js - 200 OK (8ms)
|
19021
|
+
|
19022
|
+
|
19023
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19024
|
+
Processing by StaticController#iframe as HTML
|
19025
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19026
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
19027
|
+
|
19028
|
+
|
19029
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19030
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19031
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19032
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
19033
|
+
|
19034
|
+
|
19035
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19036
|
+
Processing by StaticController#iframe as HTML
|
19037
|
+
Rendered static/iframe.html.haml within layouts/application (0.2ms)
|
19038
|
+
Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
|
19039
|
+
|
19040
|
+
|
19041
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19042
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19043
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19044
|
+
Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
19045
|
+
|
19046
|
+
|
19047
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19048
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19049
|
+
|
19050
|
+
|
19051
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19052
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19053
|
+
|
19054
|
+
|
19055
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19056
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
19057
|
+
|
19058
|
+
|
19059
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19060
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
19061
|
+
|
19062
|
+
|
19063
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19064
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19065
|
+
|
19066
|
+
|
19067
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19068
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19069
|
+
|
19070
|
+
|
19071
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19072
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19073
|
+
|
19074
|
+
|
19075
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:13 +0200 2011
|
19076
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19077
|
+
|
19078
|
+
|
19079
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:14 +0200 2011
|
19080
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19081
|
+
|
19082
|
+
|
19083
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:14 +0200 2011
|
19084
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19085
|
+
|
19086
|
+
|
19087
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:04:14 +0200 2011
|
19088
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
19089
|
+
|
19090
|
+
|
19091
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:05:02 +0200 2011
|
19092
|
+
Processing by StaticController#container as */*
|
19093
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
19094
|
+
Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
|
19095
|
+
|
19096
|
+
|
19097
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19098
|
+
Processing by StaticController#container as HTML
|
19099
|
+
Rendered static/container.html.haml within layouts/application (1.6ms)
|
19100
|
+
Compiled jquery.iframe_auto_resize.js (200ms) (pid 12256)
|
19101
|
+
Compiled application.js (9ms) (pid 12256)
|
19102
|
+
Completed 200 OK in 325ms (Views: 324.6ms | ActiveRecord: 0.0ms)
|
19103
|
+
|
19104
|
+
|
19105
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19106
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19107
|
+
|
19108
|
+
|
19109
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19110
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
19111
|
+
|
19112
|
+
|
19113
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19114
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19115
|
+
|
19116
|
+
|
19117
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19118
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19119
|
+
|
19120
|
+
|
19121
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19122
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (5ms)
|
19123
|
+
|
19124
|
+
|
19125
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19126
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19127
|
+
|
19128
|
+
|
19129
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19130
|
+
Served asset /application.js - 200 OK (11ms)
|
19131
|
+
|
19132
|
+
|
19133
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19134
|
+
Processing by StaticController#iframe as HTML
|
19135
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19136
|
+
Completed 200 OK in 14ms (Views: 13.3ms | ActiveRecord: 0.0ms)
|
19137
|
+
|
19138
|
+
|
19139
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19140
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19141
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.3ms)
|
19142
|
+
Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms)
|
19143
|
+
|
19144
|
+
|
19145
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19146
|
+
Processing by StaticController#iframe as HTML
|
19147
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19148
|
+
Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
19149
|
+
|
19150
|
+
|
19151
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19152
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19153
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19154
|
+
Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.0ms)
|
19155
|
+
|
19156
|
+
|
19157
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19158
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19159
|
+
|
19160
|
+
|
19161
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19162
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19163
|
+
|
19164
|
+
|
19165
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19166
|
+
Served asset /jquery.js - 304 Not Modified (11ms)
|
19167
|
+
|
19168
|
+
|
19169
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19170
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19171
|
+
|
19172
|
+
|
19173
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19174
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19175
|
+
|
19176
|
+
|
19177
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19178
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19179
|
+
|
19180
|
+
|
19181
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:05:41 +0200 2011
|
19182
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19183
|
+
|
19184
|
+
|
19185
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:06:12 +0200 2011
|
19186
|
+
Processing by StaticController#container as HTML
|
19187
|
+
Rendered static/container.html.haml within layouts/application (0.8ms)
|
19188
|
+
Compiled jquery.iframe_auto_resize.js (259ms) (pid 12256)
|
19189
|
+
Compiled application.js (13ms) (pid 12256)
|
19190
|
+
Completed 200 OK in 305ms (Views: 304.8ms | ActiveRecord: 0.0ms)
|
19191
|
+
|
19192
|
+
|
19193
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19194
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19195
|
+
|
19196
|
+
|
19197
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19198
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19199
|
+
|
19200
|
+
|
19201
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19202
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
19203
|
+
|
19204
|
+
|
19205
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19206
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19207
|
+
|
19208
|
+
|
19209
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19210
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (5ms)
|
19211
|
+
|
19212
|
+
|
19213
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19214
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19215
|
+
|
19216
|
+
|
19217
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19218
|
+
Served asset /application.js - 200 OK (16ms)
|
19219
|
+
|
19220
|
+
|
19221
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19222
|
+
Processing by StaticController#iframe as HTML
|
19223
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19224
|
+
Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
19225
|
+
|
19226
|
+
|
19227
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19228
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19229
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
19230
|
+
Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
|
19231
|
+
|
19232
|
+
|
19233
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19234
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19235
|
+
|
19236
|
+
|
19237
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19238
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19239
|
+
|
19240
|
+
|
19241
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19242
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19243
|
+
|
19244
|
+
|
19245
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19246
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19247
|
+
|
19248
|
+
|
19249
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19250
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19251
|
+
|
19252
|
+
|
19253
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19254
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
19255
|
+
|
19256
|
+
|
19257
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19258
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19259
|
+
|
19260
|
+
|
19261
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19262
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19263
|
+
|
19264
|
+
|
19265
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19266
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19267
|
+
|
19268
|
+
|
19269
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19270
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19271
|
+
|
19272
|
+
|
19273
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:13 +0200 2011
|
19274
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19275
|
+
|
19276
|
+
|
19277
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:06:47 +0200 2011
|
19278
|
+
Processing by StaticController#container as HTML
|
19279
|
+
Rendered static/container.html.haml within layouts/application (76.3ms)
|
19280
|
+
Completed 200 OK in 92ms (Views: 90.5ms | ActiveRecord: 0.0ms)
|
19281
|
+
|
19282
|
+
|
19283
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19284
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19285
|
+
|
19286
|
+
|
19287
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19288
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
19289
|
+
|
19290
|
+
|
19291
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19292
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
19293
|
+
|
19294
|
+
|
19295
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19296
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19297
|
+
|
19298
|
+
|
19299
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19300
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19301
|
+
|
19302
|
+
|
19303
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19304
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19305
|
+
|
19306
|
+
|
19307
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19308
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19309
|
+
|
19310
|
+
|
19311
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19312
|
+
Processing by StaticController#iframe as HTML
|
19313
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19314
|
+
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
19315
|
+
|
19316
|
+
|
19317
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19318
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19319
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19320
|
+
Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms)
|
19321
|
+
|
19322
|
+
|
19323
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19324
|
+
Processing by StaticController#iframe as HTML
|
19325
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19326
|
+
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
19327
|
+
|
19328
|
+
|
19329
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19330
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19331
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
19332
|
+
Completed 200 OK in 17ms (Views: 15.8ms | ActiveRecord: 0.0ms)
|
19333
|
+
|
19334
|
+
|
19335
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19336
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19337
|
+
|
19338
|
+
|
19339
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19340
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19341
|
+
|
19342
|
+
|
19343
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19344
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
19345
|
+
|
19346
|
+
|
19347
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19348
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19349
|
+
|
19350
|
+
|
19351
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19352
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19353
|
+
|
19354
|
+
|
19355
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19356
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19357
|
+
|
19358
|
+
|
19359
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:06:48 +0200 2011
|
19360
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19361
|
+
|
19362
|
+
|
19363
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19364
|
+
Processing by StaticController#container as HTML
|
19365
|
+
Rendered static/container.html.haml within layouts/application (6.5ms)
|
19366
|
+
Compiled jquery.iframe_auto_resize.js (243ms) (pid 12256)
|
19367
|
+
Compiled application.js (9ms) (pid 12256)
|
19368
|
+
Completed 200 OK in 299ms (Views: 298.3ms | ActiveRecord: 0.0ms)
|
19369
|
+
|
19370
|
+
|
19371
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19372
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19373
|
+
|
19374
|
+
|
19375
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19376
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19377
|
+
|
19378
|
+
|
19379
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19380
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
19381
|
+
|
19382
|
+
|
19383
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19384
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19385
|
+
|
19386
|
+
|
19387
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19388
|
+
Served asset /jquery.iframe_auto_resize.js - 200 OK (7ms)
|
19389
|
+
|
19390
|
+
|
19391
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19392
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19393
|
+
|
19394
|
+
|
19395
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19396
|
+
Served asset /application.js - 200 OK (11ms)
|
19397
|
+
|
19398
|
+
|
19399
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19400
|
+
Processing by StaticController#iframe as HTML
|
19401
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19402
|
+
Completed 200 OK in 25ms (Views: 23.7ms | ActiveRecord: 0.0ms)
|
19403
|
+
|
19404
|
+
|
19405
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19406
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19407
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19408
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
19409
|
+
|
19410
|
+
|
19411
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19412
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19413
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
19414
|
+
Completed 200 OK in 28ms (Views: 27.2ms | ActiveRecord: 0.0ms)
|
19415
|
+
|
19416
|
+
|
19417
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:09:57 +0200 2011
|
19418
|
+
Processing by StaticController#iframe as HTML
|
19419
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19420
|
+
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
19421
|
+
|
19422
|
+
|
19423
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19424
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19425
|
+
|
19426
|
+
|
19427
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19428
|
+
Served asset /jquery.js - 304 Not Modified (11ms)
|
19429
|
+
|
19430
|
+
|
19431
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19432
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19433
|
+
|
19434
|
+
|
19435
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19436
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19437
|
+
|
19438
|
+
|
19439
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19440
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19441
|
+
|
19442
|
+
|
19443
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19444
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19445
|
+
|
19446
|
+
|
19447
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19448
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19449
|
+
|
19450
|
+
|
19451
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19452
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19453
|
+
|
19454
|
+
|
19455
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19456
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19457
|
+
|
19458
|
+
|
19459
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19460
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19461
|
+
|
19462
|
+
|
19463
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:09:58 +0200 2011
|
19464
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19465
|
+
|
19466
|
+
|
19467
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:10:01 +0200 2011
|
19468
|
+
Processing by StaticController#container as */*
|
19469
|
+
Rendered static/container.html.haml within layouts/application (6.2ms)
|
19470
|
+
Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
19471
|
+
|
19472
|
+
|
19473
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19474
|
+
Processing by StaticController#container as HTML
|
19475
|
+
Rendered static/container.html.haml within layouts/application (6.5ms)
|
19476
|
+
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
|
19477
|
+
|
19478
|
+
|
19479
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19480
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19481
|
+
|
19482
|
+
|
19483
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19484
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
19485
|
+
|
19486
|
+
|
19487
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19488
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19489
|
+
|
19490
|
+
|
19491
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19492
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19493
|
+
|
19494
|
+
|
19495
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19496
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19497
|
+
|
19498
|
+
|
19499
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19500
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19501
|
+
|
19502
|
+
|
19503
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19504
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19505
|
+
|
19506
|
+
|
19507
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19508
|
+
Processing by StaticController#iframe as HTML
|
19509
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19510
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
19511
|
+
|
19512
|
+
|
19513
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19514
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19515
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.3ms)
|
19516
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
19517
|
+
|
19518
|
+
|
19519
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19520
|
+
Processing by StaticController#iframe as HTML
|
19521
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19522
|
+
Completed 200 OK in 16ms (Views: 15.3ms | ActiveRecord: 0.0ms)
|
19523
|
+
|
19524
|
+
|
19525
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19526
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19527
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19528
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
19529
|
+
|
19530
|
+
|
19531
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19532
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19533
|
+
|
19534
|
+
|
19535
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19536
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19537
|
+
|
19538
|
+
|
19539
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19540
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19541
|
+
|
19542
|
+
|
19543
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19544
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
19545
|
+
|
19546
|
+
|
19547
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19548
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19549
|
+
|
19550
|
+
|
19551
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19552
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19553
|
+
|
19554
|
+
|
19555
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19556
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
19557
|
+
|
19558
|
+
|
19559
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19560
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19561
|
+
|
19562
|
+
|
19563
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19564
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19565
|
+
|
19566
|
+
|
19567
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19568
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19569
|
+
|
19570
|
+
|
19571
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:14 +0200 2011
|
19572
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
19573
|
+
|
19574
|
+
|
19575
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19576
|
+
Processing by StaticController#container as HTML
|
19577
|
+
Rendered static/container.html.haml within layouts/application (5.1ms)
|
19578
|
+
Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
|
19579
|
+
|
19580
|
+
|
19581
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19582
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19583
|
+
|
19584
|
+
|
19585
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19586
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19587
|
+
|
19588
|
+
|
19589
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19590
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
19591
|
+
|
19592
|
+
|
19593
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19594
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19595
|
+
|
19596
|
+
|
19597
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19598
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19599
|
+
|
19600
|
+
|
19601
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19602
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19603
|
+
|
19604
|
+
|
19605
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19606
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19607
|
+
|
19608
|
+
|
19609
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19610
|
+
Processing by StaticController#iframe as HTML
|
19611
|
+
Rendered static/iframe.html.haml within layouts/application (0.4ms)
|
19612
|
+
Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
19613
|
+
|
19614
|
+
|
19615
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19616
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19617
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
19618
|
+
Completed 200 OK in 30ms (Views: 29.8ms | ActiveRecord: 0.0ms)
|
19619
|
+
|
19620
|
+
|
19621
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19622
|
+
Processing by StaticController#iframe as HTML
|
19623
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19624
|
+
Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
|
19625
|
+
|
19626
|
+
|
19627
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19628
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19629
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.1ms)
|
19630
|
+
Completed 200 OK in 22ms (Views: 20.4ms | ActiveRecord: 0.0ms)
|
19631
|
+
|
19632
|
+
|
19633
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19634
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19635
|
+
|
19636
|
+
|
19637
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19638
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19639
|
+
|
19640
|
+
|
19641
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19642
|
+
Served asset /jquery.js - 304 Not Modified (7ms)
|
19643
|
+
|
19644
|
+
|
19645
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19646
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19647
|
+
|
19648
|
+
|
19649
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19650
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19651
|
+
|
19652
|
+
|
19653
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19654
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19655
|
+
|
19656
|
+
|
19657
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:36 +0200 2011
|
19658
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19659
|
+
|
19660
|
+
|
19661
|
+
Started GET "/" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19662
|
+
Processing by StaticController#container as HTML
|
19663
|
+
Rendered static/container.html.haml within layouts/application (4.9ms)
|
19664
|
+
Completed 200 OK in 24ms (Views: 23.1ms | ActiveRecord: 0.0ms)
|
19665
|
+
|
19666
|
+
|
19667
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19668
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19669
|
+
|
19670
|
+
|
19671
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19672
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19673
|
+
|
19674
|
+
|
19675
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19676
|
+
Served asset /jquery.js - 304 Not Modified (5ms)
|
19677
|
+
|
19678
|
+
|
19679
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19680
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19681
|
+
|
19682
|
+
|
19683
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19684
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19685
|
+
|
19686
|
+
|
19687
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19688
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
19689
|
+
|
19690
|
+
|
19691
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19692
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
19693
|
+
|
19694
|
+
|
19695
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19696
|
+
Processing by StaticController#iframe as HTML
|
19697
|
+
Rendered static/iframe.html.haml within layouts/application (0.4ms)
|
19698
|
+
Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
|
19699
|
+
|
19700
|
+
|
19701
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19702
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19703
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
19704
|
+
Completed 200 OK in 24ms (Views: 22.4ms | ActiveRecord: 0.0ms)
|
19705
|
+
|
19706
|
+
|
19707
|
+
Started GET "/static/iframe_with_margin" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19708
|
+
Processing by StaticController#iframe_with_margin as HTML
|
19709
|
+
Rendered static/iframe_with_margin.html.haml within layouts/application (0.2ms)
|
19710
|
+
Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.0ms)
|
19711
|
+
|
19712
|
+
|
19713
|
+
Started GET "/static/iframe" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19714
|
+
Processing by StaticController#iframe as HTML
|
19715
|
+
Rendered static/iframe.html.haml within layouts/application (0.1ms)
|
19716
|
+
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
19717
|
+
|
19718
|
+
|
19719
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19720
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
19721
|
+
|
19722
|
+
|
19723
|
+
Started GET "/assets/static.css?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19724
|
+
Served asset /static.css - 304 Not Modified (0ms)
|
19725
|
+
|
19726
|
+
|
19727
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19728
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
19729
|
+
|
19730
|
+
|
19731
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19732
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
19733
|
+
|
19734
|
+
|
19735
|
+
Started GET "/assets/jquery.iframe_auto_resize.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19736
|
+
Served asset /jquery.iframe_auto_resize.js - 304 Not Modified (0ms)
|
19737
|
+
|
19738
|
+
|
19739
|
+
Started GET "/assets/static.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19740
|
+
Served asset /static.js - 304 Not Modified (0ms)
|
19741
|
+
|
19742
|
+
|
19743
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Thu Sep 08 19:10:47 +0200 2011
|
19744
|
+
Served asset /application.js - 304 Not Modified (2ms)
|