flexite 0.0.11 → 0.0.12
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.
- checksums.yaml +4 -4
- data/app/controllers/flexite/configs_controller.rb +1 -1
- data/app/helpers/flexite/application_helper.rb +1 -0
- data/app/models/flexite/diff.rb +5 -1
- data/app/services/flexite/diff/token.rb +1 -1
- data/lib/flexite/version.rb +1 -1
- data/test/dummy/log/development.log +321 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11326bdb94ef7622d24cdf587a10549df48e5254
|
|
4
|
+
data.tar.gz: 96dd1225de3dae207abb1f623c3ec6f583e0bd03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8addb6fc95a342ddd7c47c13aba784b768d951c72b2bc9568f0e9e1802b2d4a5b0bdd3a032f95da8b774dbb78f282a9e73371e685501bd0febe8b72f9202d8e1
|
|
7
|
+
data.tar.gz: dd29306cb7b7fe41f764e811b63f99f4c7719c985fa292488c3b6ab5462025316c6ebb4d9f925f197091a87164e5e2e9033e8404a00e2e5e49152bdd055a171d
|
|
@@ -6,7 +6,7 @@ module Flexite
|
|
|
6
6
|
|
|
7
7
|
def index
|
|
8
8
|
@configs = Config.tree_view(params[:config_id])
|
|
9
|
-
@cache_key = "#{controller_name}/#{action_name}.#{request.format.symbol}
|
|
9
|
+
@cache_key = "#{controller_name}/#{action_name}.#{request.format.symbol}/#{Config.roots.maximum(:updated_at)&.to_s(:number)}"
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
def new
|
data/app/models/flexite/diff.rb
CHANGED
|
@@ -19,11 +19,15 @@ module Flexite
|
|
|
19
19
|
req = Net::HTTP::Post.new(uri, headers)
|
|
20
20
|
req.body = data.to_json
|
|
21
21
|
|
|
22
|
-
response = Net::HTTP.start(uri.
|
|
22
|
+
response = Net::HTTP.start(uri.host, uri.port, use_ssl: ssl?(uri)) do |http|
|
|
23
23
|
http.request(req)
|
|
24
24
|
end
|
|
25
25
|
# TODO: add check/validation of response status and etc....
|
|
26
26
|
JSON.parse(response.body, symbolize_names: true)
|
|
27
27
|
end
|
|
28
|
+
|
|
29
|
+
def ssl?(uri)
|
|
30
|
+
uri.scheme.to_sym == :https
|
|
31
|
+
end
|
|
28
32
|
end
|
|
29
33
|
end
|
data/lib/flexite/version.rb
CHANGED
|
@@ -766285,3 +766285,324 @@ Processing by Flexite::DiffsController#push as JS
|
|
|
766285
766285
|
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_show_flash.js.haml (0.5ms)
|
|
766286
766286
|
Rendered /home/rusakovich/code/flexite/app/views/flexite/diffs/push.js.haml (1.4ms)
|
|
766287
766287
|
Completed 200 OK in 74.3ms (Views: 3.0ms | ActiveRecord: 1.1ms)
|
|
766288
|
+
Connecting to database specified by database.yml
|
|
766289
|
+
Connecting to database specified by database.yml
|
|
766290
|
+
|
|
766291
|
+
|
|
766292
|
+
Started GET "/" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766293
|
+
Connecting to database specified by database.yml
|
|
766294
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
766295
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (3.0ms)
|
|
766296
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.9ms)
|
|
766297
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (1.8ms)
|
|
766298
|
+
Completed 200 OK in 23.1ms (Views: 23.0ms | ActiveRecord: 0.0ms)
|
|
766299
|
+
|
|
766300
|
+
|
|
766301
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766302
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (4ms)
|
|
766303
|
+
|
|
766304
|
+
|
|
766305
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766306
|
+
Served asset /flexite/application.css - 304 Not Modified (3ms)
|
|
766307
|
+
|
|
766308
|
+
|
|
766309
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766310
|
+
Served asset /flexite/tree.css - 304 Not Modified (1ms)
|
|
766311
|
+
|
|
766312
|
+
|
|
766313
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766314
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (1ms)
|
|
766315
|
+
|
|
766316
|
+
|
|
766317
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766318
|
+
Served asset /jquery_ujs.js - 200 OK (1ms)
|
|
766319
|
+
|
|
766320
|
+
|
|
766321
|
+
Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766322
|
+
Served asset /jquery.min.js - 200 OK (1ms)
|
|
766323
|
+
|
|
766324
|
+
|
|
766325
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766326
|
+
Served asset /flexite/common.js - 304 Not Modified (1ms)
|
|
766327
|
+
|
|
766328
|
+
|
|
766329
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766330
|
+
Served asset /flexite/bootstrap.min.js - 200 OK (1ms)
|
|
766331
|
+
|
|
766332
|
+
|
|
766333
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766334
|
+
Served asset /flexite/treeview.js - 200 OK (1ms)
|
|
766335
|
+
|
|
766336
|
+
|
|
766337
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766338
|
+
Served asset /flexite/tree.js - 200 OK (1ms)
|
|
766339
|
+
|
|
766340
|
+
|
|
766341
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766342
|
+
Served asset /flexite/application.js - 200 OK (4ms)
|
|
766343
|
+
|
|
766344
|
+
|
|
766345
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766346
|
+
Served asset /flexite/tree.js - 304 Not Modified (4ms)
|
|
766347
|
+
|
|
766348
|
+
|
|
766349
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766350
|
+
Served asset /flexite/application.js - 304 Not Modified (0ms)
|
|
766351
|
+
|
|
766352
|
+
|
|
766353
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766354
|
+
Served asset /flexite/treeview.js - 304 Not Modified (0ms)
|
|
766355
|
+
|
|
766356
|
+
|
|
766357
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766358
|
+
Served asset /flexite/bootstrap.min.js - 304 Not Modified (0ms)
|
|
766359
|
+
|
|
766360
|
+
|
|
766361
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-16 15:30:41 +0300
|
|
766362
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
766363
|
+
[1m[36m (0.5ms)[0m [1mSELECT MAX("flexite_configs"."updated_at") AS maximum_updated_at, flexite_configs.id AS flexite_configs_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
766364
|
+
[1m[35m (0.3ms)[0m SELECT MAX("flexite_configs"."updated_at") AS max_id FROM "flexite_configs" WHERE "flexite_configs"."config_id" IS NULL
|
|
766365
|
+
[1m[36mFlexite::Config Load (0.6ms)[0m [1mSELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id[0m
|
|
766366
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (18.0ms)
|
|
766367
|
+
Completed 200 OK in 119027.9ms (Views: 20.4ms | ActiveRecord: 3.9ms)
|
|
766368
|
+
|
|
766369
|
+
|
|
766370
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-16 15:32:40 +0300
|
|
766371
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (2ms)
|
|
766372
|
+
|
|
766373
|
+
|
|
766374
|
+
Started GET "/" for 127.0.0.1 at 2018-07-16 15:32:48 +0300
|
|
766375
|
+
Connecting to database specified by database.yml
|
|
766376
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
766377
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (3.0ms)
|
|
766378
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.8ms)
|
|
766379
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (1.5ms)
|
|
766380
|
+
Completed 200 OK in 20.8ms (Views: 20.6ms | ActiveRecord: 0.0ms)
|
|
766381
|
+
|
|
766382
|
+
|
|
766383
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:32:48 +0300
|
|
766384
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (1ms)
|
|
766385
|
+
|
|
766386
|
+
|
|
766387
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:32:48 +0300
|
|
766388
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (1ms)
|
|
766389
|
+
|
|
766390
|
+
|
|
766391
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-16 15:32:48 +0300
|
|
766392
|
+
Served asset /flexite/tree.css - 304 Not Modified (1ms)
|
|
766393
|
+
|
|
766394
|
+
|
|
766395
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-16 15:32:48 +0300
|
|
766396
|
+
Served asset /flexite/common.js - 304 Not Modified (1ms)
|
|
766397
|
+
|
|
766398
|
+
|
|
766399
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-16 15:32:48 +0300
|
|
766400
|
+
Served asset /flexite/application.css - 304 Not Modified (3ms)
|
|
766401
|
+
|
|
766402
|
+
|
|
766403
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-16 15:32:49 +0300
|
|
766404
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
766405
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("flexite_configs"."updated_at") AS max_id FROM "flexite_configs" WHERE "flexite_configs"."config_id" IS NULL[0m
|
|
766406
|
+
[1m[35mFlexite::Config Load (0.2ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id
|
|
766407
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (11.8ms)
|
|
766408
|
+
Completed 200 OK in 37.8ms (Views: 13.2ms | ActiveRecord: 2.3ms)
|
|
766409
|
+
|
|
766410
|
+
|
|
766411
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-16 15:32:49 +0300
|
|
766412
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (1ms)
|
|
766413
|
+
|
|
766414
|
+
|
|
766415
|
+
Started GET "/configs/1/configs.json" for 127.0.0.1 at 2018-07-16 15:32:57 +0300
|
|
766416
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
766417
|
+
Parameters: {"config_id"=>"1"}
|
|
766418
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("flexite_configs"."updated_at") AS max_id FROM "flexite_configs" WHERE "flexite_configs"."config_id" IS NULL[0m
|
|
766419
|
+
[1m[35mFlexite::Config Load (0.7ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 1 GROUP BY flexite_configs.id
|
|
766420
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (4.2ms)
|
|
766421
|
+
Completed 200 OK in 8.5ms (Views: 6.0ms | ActiveRecord: 0.9ms)
|
|
766422
|
+
|
|
766423
|
+
|
|
766424
|
+
Started GET "/configs/2/configs.json" for 127.0.0.1 at 2018-07-16 15:32:58 +0300
|
|
766425
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
766426
|
+
Parameters: {"config_id"=>"2"}
|
|
766427
|
+
[1m[36m (0.3ms)[0m [1mSELECT MAX("flexite_configs"."updated_at") AS max_id FROM "flexite_configs" WHERE "flexite_configs"."config_id" IS NULL[0m
|
|
766428
|
+
[1m[35mFlexite::Config Load (3.3ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" = 2 GROUP BY flexite_configs.id
|
|
766429
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (98.1ms)
|
|
766430
|
+
Completed 200 OK in 102.1ms (Views: 97.1ms | ActiveRecord: 3.5ms)
|
|
766431
|
+
|
|
766432
|
+
|
|
766433
|
+
Started GET "/entries/711/edit.js" for 127.0.0.1 at 2018-07-16 15:32:59 +0300
|
|
766434
|
+
Processing by Flexite::EntriesController#edit as JS
|
|
766435
|
+
Parameters: {"id"=>"711"}
|
|
766436
|
+
[1m[36mFlexite::Entry Load (0.3ms)[0m [1mSELECT "flexite_entries".* FROM "flexite_entries" WHERE "flexite_entries"."id" = ? LIMIT 1[0m [["id", "711"]]
|
|
766437
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/types/_str_entry.html.haml (3.7ms)
|
|
766438
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/_form.html.haml (21.9ms)
|
|
766439
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/entries/edit.js.haml (23.2ms)
|
|
766440
|
+
Completed 200 OK in 42.0ms (Views: 24.3ms | ActiveRecord: 0.9ms)
|
|
766441
|
+
Connecting to database specified by database.yml
|
|
766442
|
+
Connecting to database specified by database.yml
|
|
766443
|
+
Connecting to database specified by database.yml
|
|
766444
|
+
Connecting to database specified by database.yml
|
|
766445
|
+
Connecting to database specified by database.yml
|
|
766446
|
+
|
|
766447
|
+
|
|
766448
|
+
Started GET "/" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766449
|
+
Connecting to database specified by database.yml
|
|
766450
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
766451
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (3.6ms)
|
|
766452
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (0.9ms)
|
|
766453
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (2.2ms)
|
|
766454
|
+
Completed 200 OK in 27.0ms (Views: 26.8ms | ActiveRecord: 0.0ms)
|
|
766455
|
+
|
|
766456
|
+
|
|
766457
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766458
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (1ms)
|
|
766459
|
+
|
|
766460
|
+
|
|
766461
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766462
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (1ms)
|
|
766463
|
+
|
|
766464
|
+
|
|
766465
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766466
|
+
Served asset /flexite/tree.css - 304 Not Modified (7ms)
|
|
766467
|
+
|
|
766468
|
+
|
|
766469
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766470
|
+
Served asset /flexite/application.css - 304 Not Modified (2ms)
|
|
766471
|
+
|
|
766472
|
+
|
|
766473
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766474
|
+
Served asset /flexite/common.js - 304 Not Modified (1ms)
|
|
766475
|
+
|
|
766476
|
+
|
|
766477
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766478
|
+
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
|
766479
|
+
|
|
766480
|
+
|
|
766481
|
+
Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766482
|
+
Served asset /jquery.min.js - 304 Not Modified (1ms)
|
|
766483
|
+
|
|
766484
|
+
|
|
766485
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766486
|
+
Served asset /flexite/bootstrap.min.js - 304 Not Modified (1ms)
|
|
766487
|
+
|
|
766488
|
+
|
|
766489
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766490
|
+
Served asset /flexite/treeview.js - 304 Not Modified (1ms)
|
|
766491
|
+
|
|
766492
|
+
|
|
766493
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766494
|
+
Served asset /flexite/tree.js - 304 Not Modified (1ms)
|
|
766495
|
+
|
|
766496
|
+
|
|
766497
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766498
|
+
Served asset /flexite/application.js - 304 Not Modified (13ms)
|
|
766499
|
+
|
|
766500
|
+
|
|
766501
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766502
|
+
Served asset /flexite/treeview.js - 304 Not Modified (0ms)
|
|
766503
|
+
|
|
766504
|
+
|
|
766505
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766506
|
+
Served asset /flexite/tree.js - 304 Not Modified (0ms)
|
|
766507
|
+
|
|
766508
|
+
|
|
766509
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766510
|
+
Served asset /flexite/bootstrap.min.js - 304 Not Modified (0ms)
|
|
766511
|
+
|
|
766512
|
+
|
|
766513
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766514
|
+
Served asset /flexite/application.js - 304 Not Modified (1ms)
|
|
766515
|
+
|
|
766516
|
+
|
|
766517
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766518
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
766519
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("flexite_configs"."updated_at") AS max_id FROM "flexite_configs" WHERE "flexite_configs"."config_id" IS NULL[0m
|
|
766520
|
+
[1m[35mFlexite::Config Load (0.3ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id
|
|
766521
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (10.4ms)
|
|
766522
|
+
Completed 200 OK in 34.7ms (Views: 11.0ms | ActiveRecord: 1.9ms)
|
|
766523
|
+
|
|
766524
|
+
|
|
766525
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-16 15:40:40 +0300
|
|
766526
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (0ms)
|
|
766527
|
+
|
|
766528
|
+
|
|
766529
|
+
Started GET "/" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766530
|
+
Connecting to database specified by database.yml
|
|
766531
|
+
Processing by Flexite::ApplicationController#index as HTML
|
|
766532
|
+
[["Dummy1", "http://localhost:8000"]]
|
|
766533
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/application/index.html.haml within layouts/flexite/application (4.2ms)
|
|
766534
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_messages.html.haml (1.2ms)
|
|
766535
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/shared/_popup.html.haml (2.0ms)
|
|
766536
|
+
Completed 200 OK in 26.1ms (Views: 25.9ms | ActiveRecord: 0.0ms)
|
|
766537
|
+
|
|
766538
|
+
|
|
766539
|
+
Started GET "/assets/flexite/bootstrap.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766540
|
+
Served asset /flexite/bootstrap.min.css - 304 Not Modified (1ms)
|
|
766541
|
+
|
|
766542
|
+
|
|
766543
|
+
Started GET "/assets/flexite/bootstrap-treeview.min.css?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766544
|
+
Served asset /flexite/bootstrap-treeview.min.css - 304 Not Modified (1ms)
|
|
766545
|
+
|
|
766546
|
+
|
|
766547
|
+
Started GET "/assets/flexite/application.css?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766548
|
+
Served asset /flexite/application.css - 304 Not Modified (3ms)
|
|
766549
|
+
|
|
766550
|
+
|
|
766551
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766552
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
766553
|
+
|
|
766554
|
+
|
|
766555
|
+
Started GET "/assets/flexite/tree.css?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766556
|
+
Served asset /flexite/tree.css - 304 Not Modified (1ms)
|
|
766557
|
+
|
|
766558
|
+
|
|
766559
|
+
Started GET "/assets/jquery.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766560
|
+
Served asset /jquery.min.js - 304 Not Modified (1ms)
|
|
766561
|
+
|
|
766562
|
+
|
|
766563
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766564
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
766565
|
+
|
|
766566
|
+
|
|
766567
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766568
|
+
Served asset /flexite/treeview.js - 304 Not Modified (1ms)
|
|
766569
|
+
|
|
766570
|
+
|
|
766571
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766572
|
+
Served asset /flexite/bootstrap.min.js - 304 Not Modified (1ms)
|
|
766573
|
+
|
|
766574
|
+
|
|
766575
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766576
|
+
Served asset /flexite/tree.js - 304 Not Modified (0ms)
|
|
766577
|
+
|
|
766578
|
+
|
|
766579
|
+
Started GET "/assets/flexite/bootstrap.min.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766580
|
+
Served asset /flexite/bootstrap.min.js - 304 Not Modified (0ms)
|
|
766581
|
+
|
|
766582
|
+
|
|
766583
|
+
Started GET "/assets/flexite/common.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766584
|
+
Served asset /flexite/common.js - 304 Not Modified (0ms)
|
|
766585
|
+
|
|
766586
|
+
|
|
766587
|
+
Started GET "/assets/flexite/treeview.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766588
|
+
Served asset /flexite/treeview.js - 304 Not Modified (0ms)
|
|
766589
|
+
|
|
766590
|
+
|
|
766591
|
+
Started GET "/assets/flexite/tree.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766592
|
+
Served asset /flexite/tree.js - 304 Not Modified (0ms)
|
|
766593
|
+
|
|
766594
|
+
|
|
766595
|
+
Started GET "/assets/flexite/application.js?body=1" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766596
|
+
Served asset /flexite/application.js - 304 Not Modified (5ms)
|
|
766597
|
+
|
|
766598
|
+
|
|
766599
|
+
Started GET "/configs.json" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766600
|
+
Processing by Flexite::ConfigsController#index as JSON
|
|
766601
|
+
[1m[36m (0.1ms)[0m [1mSELECT MAX("flexite_configs"."updated_at") AS max_id FROM "flexite_configs" WHERE "flexite_configs"."config_id" IS NULL[0m
|
|
766602
|
+
[1m[35mFlexite::Config Load (0.1ms)[0m SELECT flexite_configs.id, flexite_configs.selectable, flexite_configs.description, flexite_configs.name, flexite_configs.updated_at, COUNT(configs_flexite_configs.id) AS nodes_count, flexite_entries.id AS entry_id FROM "flexite_configs" LEFT JOIN flexite_configs AS configs_flexite_configs ON configs_flexite_configs.config_id = flexite_configs.id LEFT JOIN flexite_entries ON flexite_entries.parent_id = flexite_configs.id AND flexite_entries.parent_type = 'Flexite::Config' WHERE "flexite_configs"."config_id" IS NULL GROUP BY flexite_configs.id
|
|
766603
|
+
Rendered /home/rusakovich/code/flexite/app/views/flexite/configs/index.json.erb (7.2ms)
|
|
766604
|
+
Completed 200 OK in 31.9ms (Views: 8.0ms | ActiveRecord: 0.9ms)
|
|
766605
|
+
|
|
766606
|
+
|
|
766607
|
+
Started GET "/assets/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2018-07-16 15:44:38 +0300
|
|
766608
|
+
Served asset /glyphicons-halflings-regular.woff2 - 304 Not Modified (1ms)
|