lina 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa958e90d0c63e66915b3c828544a31668277469
4
- data.tar.gz: c951fb86cd65c8c1df28e41ab9f34a4707b066fc
3
+ metadata.gz: 6deb333b056302fccd83124d4554e7e3aefbaab2
4
+ data.tar.gz: 2efb3deb3d3f5e2ed6ee7ad28281ac6755c2f6a5
5
5
  SHA512:
6
- metadata.gz: 03466179c4285f09047850548947bd2330ff40a1443abcb930736ba8218aae366f42d73bee38719ce71ab6fb17e42d7d3db6d9b959ae05626193390214d5c1c6
7
- data.tar.gz: 0d3b4ed2283eac79dd6a6f7eef2cf4b1535eb053ca7338150ae4a03a0be037212698b30f0af38db067d4fd44ec3b09165e8156389dc34993469f494d82e2935e
6
+ metadata.gz: 89147a8188f9fb9e4224ad3a23fa381f15329ac07fa5cce37de946205c75e27ff1ef953ffd8bfeb59119df283fbb9893713f4f361b48b8265069cd66660a8b2b
7
+ data.tar.gz: c554b18d53b20705770b81912b1607c36c3863d9763cc4321862592b7b947301d6785f563458c044a729d00ca39db72e92e52dcfa882ce8d45cb4109061677de
data/README.md CHANGED
@@ -42,8 +42,6 @@ ps: 目前仅支持 `Rails 4.1`, `Rails4.2`, 如果你有更低版本的支持
42
42
 
43
43
  Rails 新手 Lina 使用说明: [Rails 新手?( TODO )](https://github.com/windy/lina/wiki)
44
44
 
45
- 目前 Lina 最新版 0.0.2 已经基本完善.
46
-
47
45
  ## 使用方法
48
46
 
49
47
  ### 自动 APIDOC
@@ -92,7 +92,15 @@ app.directive('jsonSchema', [ 'RecursionHelper', function(RecursionHelper){
92
92
  }
93
93
 
94
94
  $scope.hasMoreInfo = function(value){
95
- return value.type !== 'array'
95
+ return (! $scope.valueIsArray(value)) && (! $scope.valueIsObject(value));
96
+ }
97
+
98
+ $scope.valueIsArray = function(value){
99
+ return value.type === 'array';
100
+ }
101
+
102
+ $scope.valueIsObject = function(value){
103
+ return !! value.properties;
96
104
  }
97
105
 
98
106
  // translate { '$ref': '#/definitions/xx' } to real hash
@@ -68,13 +68,21 @@
68
68
  </td>
69
69
  <td>{{ value.type }}</td>
70
70
  <td class='more-info' ng-if='hasMoreInfo(value)'>{{ moreInfo(value) }}</td>
71
- <td class='more-info-array' ng-if='! hasMoreInfo(value)'>
71
+ <td class='more-info-array' ng-if='valueIsArray(value)'>
72
72
  <div>
73
73
  Array Items:
74
74
  </div>
75
75
  <div class="sub-json-schema">
76
76
  <json-schema schema='value.items'></json-schema>
77
77
  </div>
78
+ </td>
79
+ <td class='more-info-object' ng-if='valueIsObject(value)'>
80
+ <div>
81
+ Object Item:
82
+ </div>
83
+ <div class="sub-json-schema">
84
+ <json-schema schema='value'></json-schema>
85
+ </div>
78
86
  </td>
79
87
  <td class='description'>{{ value.description }}</td>
80
88
  </tr>
@@ -104,6 +104,7 @@
104
104
  font-size: 16px;
105
105
  padding-bottom: 0;
106
106
  margin-bottom: 0;
107
+ background: #E8F4FF;
107
108
  }
108
109
 
109
110
  .table > thead > tr > th {
@@ -1,3 +1,3 @@
1
1
  module Lina
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
@@ -0,0 +1,24 @@
1
+ class NestedObjectsController < Lina::ApplicationController
2
+ # def index
3
+ define_action :index, {
4
+ name: 'index',
5
+ description: '',
6
+ params: {
7
+ type: 'object',
8
+ properties: {
9
+ object: {
10
+ type: 'object',
11
+ properties: {
12
+ name: {
13
+ type: 'string',
14
+ }
15
+ }
16
+ }
17
+ }
18
+ },
19
+ return: {
20
+ }
21
+ } do
22
+ # write code here, It's the same as before
23
+ end
24
+ end
@@ -0,0 +1,2 @@
1
+ json.name 'NestedObjects#index'
2
+ json.path 'Find me in app/views/nested_objects/index.json.jbuilder'
@@ -6,6 +6,8 @@ Rails.application.routes.draw do
6
6
 
7
7
  mount Lina::Engine => '/lina'
8
8
 
9
+ resources :nested_objects, only: [:index]
10
+
9
11
  resources :arrays, only: [:index] do
10
12
  collection do
11
13
  get :string
@@ -48336,3 +48336,1002 @@ Completed 200 OK in 40ms (Views: 5.7ms | ActiveRecord: 0.0ms)
48336
48336
 
48337
48337
 
48338
48338
  Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-09 08:07:18 +0800
48339
+
48340
+
48341
+ Started GET "/" for 127.0.0.1 at 2015-03-26 12:04:57 +0800
48342
+ Processing by PostsController#index as HTML
48343
+ Completed 200 OK in 2ms (Views: 0.1ms | ActiveRecord: 0.0ms)
48344
+
48345
+
48346
+ Started GET "/apidoc" for 127.0.0.1 at 2015-03-26 12:05:02 +0800
48347
+
48348
+ ActionController::RoutingError (No route matches [GET] "/apidoc"):
48349
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
48350
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
48351
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
48352
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
48353
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
48354
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
48355
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
48356
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
48357
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
48358
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
48359
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
48360
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
48361
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
48362
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
48363
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
48364
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
48365
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
48366
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
48367
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
48368
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
48369
+ /Users/yafeilee/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
48370
+ /Users/yafeilee/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
48371
+ /Users/yafeilee/.rvm/rubies/ruby-2.1.5/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
48372
+
48373
+
48374
+ Rendered /Users/yafeilee/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
48375
+ Rendered /Users/yafeilee/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
48376
+ Rendered /Users/yafeilee/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms)
48377
+ Rendered /Users/yafeilee/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms)
48378
+ Rendered /Users/yafeilee/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.7ms)
48379
+ Rendered /Users/yafeilee/.rvm/gems/ruby-2.1.5/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (54.2ms)
48380
+
48381
+
48382
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48383
+ Processing by Lina::ApidocController#index as HTML
48384
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (7.9ms)
48385
+ Completed 200 OK in 388ms (Views: 212.3ms | ActiveRecord: 0.0ms)
48386
+
48387
+
48388
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48389
+
48390
+
48391
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48392
+
48393
+
48394
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48395
+
48396
+
48397
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48398
+
48399
+
48400
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48401
+
48402
+
48403
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48404
+
48405
+
48406
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48407
+
48408
+
48409
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48410
+
48411
+
48412
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48413
+
48414
+
48415
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48416
+
48417
+
48418
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48419
+
48420
+
48421
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48422
+
48423
+
48424
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48425
+
48426
+
48427
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48428
+
48429
+
48430
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48431
+
48432
+
48433
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:06 +0800
48434
+
48435
+
48436
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48437
+ Processing by Lina::ApidocController#index as HTML
48438
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.5ms)
48439
+ Completed 200 OK in 78ms (Views: 58.3ms | ActiveRecord: 0.0ms)
48440
+
48441
+
48442
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48443
+
48444
+
48445
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48446
+
48447
+
48448
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48449
+
48450
+
48451
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48452
+
48453
+
48454
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48455
+
48456
+
48457
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48458
+
48459
+
48460
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48461
+
48462
+
48463
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48464
+
48465
+
48466
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48467
+
48468
+
48469
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48470
+
48471
+
48472
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48473
+
48474
+
48475
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48476
+
48477
+
48478
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48479
+
48480
+
48481
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48482
+
48483
+
48484
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:05:08 +0800
48485
+ Processing by Lina::ApidocController#index as JSON
48486
+ Completed 200 OK in 24ms (Views: 1.9ms | ActiveRecord: 0.0ms)
48487
+
48488
+
48489
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48490
+ Processing by Lina::ApidocController#index as HTML
48491
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.5ms)
48492
+ Completed 200 OK in 205ms (Views: 185.6ms | ActiveRecord: 0.0ms)
48493
+
48494
+
48495
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48496
+
48497
+
48498
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48499
+
48500
+
48501
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48502
+
48503
+
48504
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48505
+
48506
+
48507
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48508
+
48509
+
48510
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48511
+
48512
+
48513
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48514
+
48515
+
48516
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48517
+
48518
+
48519
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48520
+
48521
+
48522
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48523
+
48524
+
48525
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48526
+
48527
+
48528
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48529
+
48530
+
48531
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48532
+
48533
+
48534
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48535
+
48536
+
48537
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:12:30 +0800
48538
+ Processing by Lina::ApidocController#index as JSON
48539
+ Completed 200 OK in 28ms (Views: 4.0ms | ActiveRecord: 0.0ms)
48540
+
48541
+
48542
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48543
+ Processing by Lina::ApidocController#index as HTML
48544
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.4ms)
48545
+ Completed 200 OK in 90ms (Views: 75.8ms | ActiveRecord: 0.0ms)
48546
+
48547
+
48548
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48549
+
48550
+
48551
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48552
+
48553
+
48554
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48555
+
48556
+
48557
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48558
+
48559
+
48560
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48561
+
48562
+
48563
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48564
+
48565
+
48566
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48567
+
48568
+
48569
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48570
+
48571
+
48572
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48573
+
48574
+
48575
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48576
+
48577
+
48578
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48579
+
48580
+
48581
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48582
+
48583
+
48584
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48585
+
48586
+
48587
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48588
+ Processing by Lina::ApidocController#index as JSON
48589
+ Completed 200 OK in 30ms (Views: 2.7ms | ActiveRecord: 0.0ms)
48590
+
48591
+
48592
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:13:41 +0800
48593
+
48594
+
48595
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:15:26 +0800
48596
+
48597
+
48598
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48599
+ Processing by Lina::ApidocController#index as HTML
48600
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.4ms)
48601
+ Completed 200 OK in 197ms (Views: 182.9ms | ActiveRecord: 0.0ms)
48602
+
48603
+
48604
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48605
+
48606
+
48607
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48608
+
48609
+
48610
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48611
+
48612
+
48613
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48614
+
48615
+
48616
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48617
+
48618
+
48619
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48620
+
48621
+
48622
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48623
+
48624
+
48625
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48626
+
48627
+
48628
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48629
+
48630
+
48631
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48632
+
48633
+
48634
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48635
+
48636
+
48637
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48638
+
48639
+
48640
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:16:07 +0800
48641
+
48642
+
48643
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:16:08 +0800
48644
+
48645
+
48646
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:16:08 +0800
48647
+ Processing by Lina::ApidocController#index as JSON
48648
+ Completed 200 OK in 51ms (Views: 6.0ms | ActiveRecord: 0.0ms)
48649
+
48650
+
48651
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:16:54 +0800
48652
+ Processing by Lina::ApidocController#index as HTML
48653
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (1.3ms)
48654
+ Completed 200 OK in 157ms (Views: 137.2ms | ActiveRecord: 0.0ms)
48655
+
48656
+
48657
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48658
+
48659
+
48660
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48661
+
48662
+
48663
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48664
+
48665
+
48666
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48667
+
48668
+
48669
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48670
+
48671
+
48672
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48673
+
48674
+
48675
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48676
+
48677
+
48678
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48679
+
48680
+
48681
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48682
+
48683
+
48684
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48685
+
48686
+
48687
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48688
+
48689
+
48690
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48691
+
48692
+
48693
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48694
+
48695
+
48696
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48697
+
48698
+
48699
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:16:55 +0800
48700
+ Processing by Lina::ApidocController#index as JSON
48701
+ Completed 200 OK in 37ms (Views: 2.5ms | ActiveRecord: 0.0ms)
48702
+
48703
+
48704
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:17:59 +0800
48705
+ Processing by Lina::ApidocController#index as HTML
48706
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.5ms)
48707
+ Completed 200 OK in 67ms (Views: 51.1ms | ActiveRecord: 0.0ms)
48708
+
48709
+
48710
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48711
+
48712
+
48713
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48714
+
48715
+
48716
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48717
+
48718
+
48719
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48720
+
48721
+
48722
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48723
+
48724
+
48725
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48726
+
48727
+
48728
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48729
+
48730
+
48731
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48732
+
48733
+
48734
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48735
+
48736
+
48737
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48738
+
48739
+
48740
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48741
+
48742
+
48743
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48744
+
48745
+
48746
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48747
+
48748
+
48749
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48750
+ Processing by Lina::ApidocController#index as JSON
48751
+ Completed 200 OK in 28ms (Views: 3.8ms | ActiveRecord: 0.0ms)
48752
+
48753
+
48754
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:18:00 +0800
48755
+
48756
+
48757
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48758
+ Processing by Lina::ApidocController#index as HTML
48759
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.5ms)
48760
+ Completed 200 OK in 182ms (Views: 150.4ms | ActiveRecord: 0.0ms)
48761
+
48762
+
48763
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48764
+
48765
+
48766
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48767
+
48768
+
48769
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48770
+
48771
+
48772
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48773
+
48774
+
48775
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48776
+
48777
+
48778
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48779
+
48780
+
48781
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48782
+
48783
+
48784
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48785
+
48786
+
48787
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48788
+
48789
+
48790
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48791
+
48792
+
48793
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48794
+
48795
+
48796
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:20:25 +0800
48797
+
48798
+
48799
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:20:26 +0800
48800
+
48801
+
48802
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:20:26 +0800
48803
+
48804
+
48805
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:20:26 +0800
48806
+ Processing by Lina::ApidocController#index as JSON
48807
+ Completed 200 OK in 61ms (Views: 7.1ms | ActiveRecord: 0.0ms)
48808
+
48809
+
48810
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48811
+ Processing by Lina::ApidocController#index as HTML
48812
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.6ms)
48813
+ Completed 200 OK in 173ms (Views: 144.7ms | ActiveRecord: 0.0ms)
48814
+
48815
+
48816
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48817
+
48818
+
48819
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48820
+
48821
+
48822
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48823
+
48824
+
48825
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48826
+
48827
+
48828
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48829
+
48830
+
48831
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48832
+
48833
+
48834
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48835
+
48836
+
48837
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48838
+
48839
+
48840
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48841
+
48842
+
48843
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48844
+
48845
+
48846
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48847
+
48848
+
48849
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:21:02 +0800
48850
+
48851
+
48852
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:21:03 +0800
48853
+
48854
+
48855
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:21:03 +0800
48856
+
48857
+
48858
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:21:03 +0800
48859
+ Processing by Lina::ApidocController#index as JSON
48860
+ Completed 200 OK in 52ms (Views: 8.4ms | ActiveRecord: 0.0ms)
48861
+
48862
+
48863
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48864
+ Processing by Lina::ApidocController#index as HTML
48865
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.5ms)
48866
+ Completed 200 OK in 185ms (Views: 151.2ms | ActiveRecord: 0.0ms)
48867
+
48868
+
48869
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48870
+
48871
+
48872
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48873
+
48874
+
48875
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48876
+
48877
+
48878
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48879
+
48880
+
48881
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48882
+
48883
+
48884
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48885
+
48886
+
48887
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48888
+
48889
+
48890
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48891
+
48892
+
48893
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48894
+
48895
+
48896
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48897
+
48898
+
48899
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48900
+
48901
+
48902
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:22:10 +0800
48903
+
48904
+
48905
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:22:11 +0800
48906
+
48907
+
48908
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:22:11 +0800
48909
+
48910
+
48911
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:22:11 +0800
48912
+ Processing by Lina::ApidocController#index as JSON
48913
+ Completed 200 OK in 40ms (Views: 3.4ms | ActiveRecord: 0.0ms)
48914
+
48915
+
48916
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:25:17 +0800
48917
+ Processing by Lina::ApidocController#index as HTML
48918
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.4ms)
48919
+ Completed 200 OK in 273ms (Views: 247.9ms | ActiveRecord: 0.0ms)
48920
+
48921
+
48922
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48923
+
48924
+
48925
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48926
+
48927
+
48928
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48929
+
48930
+
48931
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48932
+
48933
+
48934
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48935
+
48936
+
48937
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48938
+
48939
+
48940
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48941
+
48942
+
48943
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48944
+
48945
+
48946
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48947
+
48948
+
48949
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48950
+
48951
+
48952
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48953
+
48954
+
48955
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48956
+
48957
+
48958
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:25:18 +0800
48959
+
48960
+
48961
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:25:19 +0800
48962
+
48963
+
48964
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:25:19 +0800
48965
+ Processing by Lina::ApidocController#index as JSON
48966
+ Completed 200 OK in 32ms (Views: 2.7ms | ActiveRecord: 0.0ms)
48967
+
48968
+
48969
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48970
+ Processing by Lina::ApidocController#index as HTML
48971
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.3ms)
48972
+ Completed 200 OK in 145ms (Views: 132.1ms | ActiveRecord: 0.0ms)
48973
+
48974
+
48975
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48976
+
48977
+
48978
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48979
+
48980
+
48981
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48982
+
48983
+
48984
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48985
+
48986
+
48987
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48988
+
48989
+
48990
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48991
+
48992
+
48993
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48994
+
48995
+
48996
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
48997
+
48998
+
48999
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
49000
+
49001
+
49002
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
49003
+
49004
+
49005
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
49006
+
49007
+
49008
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:11 +0800
49009
+
49010
+
49011
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:26:12 +0800
49012
+
49013
+
49014
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:26:12 +0800
49015
+
49016
+
49017
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:26:12 +0800
49018
+ Processing by Lina::ApidocController#index as JSON
49019
+ Completed 200 OK in 51ms (Views: 14.5ms | ActiveRecord: 0.0ms)
49020
+
49021
+
49022
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49023
+ Processing by Lina::ApidocController#index as HTML
49024
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.4ms)
49025
+ Completed 200 OK in 114ms (Views: 98.7ms | ActiveRecord: 0.0ms)
49026
+
49027
+
49028
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49029
+
49030
+
49031
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49032
+
49033
+
49034
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49035
+
49036
+
49037
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49038
+
49039
+
49040
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49041
+
49042
+
49043
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49044
+
49045
+
49046
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49047
+
49048
+
49049
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49050
+
49051
+
49052
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49053
+
49054
+
49055
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49056
+
49057
+
49058
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49059
+
49060
+
49061
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:21 +0800
49062
+
49063
+
49064
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:26:22 +0800
49065
+
49066
+
49067
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:26:22 +0800
49068
+ Processing by Lina::ApidocController#index as JSON
49069
+ Completed 200 OK in 38ms (Views: 4.4ms | ActiveRecord: 0.0ms)
49070
+
49071
+
49072
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:26:22 +0800
49073
+
49074
+
49075
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:26:32 +0800
49076
+ Processing by Lina::ApidocController#index as HTML
49077
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.4ms)
49078
+ Completed 200 OK in 110ms (Views: 93.3ms | ActiveRecord: 0.0ms)
49079
+
49080
+
49081
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49082
+
49083
+
49084
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49085
+
49086
+
49087
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49088
+
49089
+
49090
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49091
+
49092
+
49093
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49094
+
49095
+
49096
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49097
+
49098
+
49099
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49100
+
49101
+
49102
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49103
+
49104
+
49105
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49106
+
49107
+
49108
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49109
+
49110
+
49111
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49112
+
49113
+
49114
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49115
+
49116
+
49117
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49118
+
49119
+
49120
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49121
+
49122
+
49123
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:26:33 +0800
49124
+ Processing by Lina::ApidocController#index as JSON
49125
+ Completed 200 OK in 33ms (Views: 3.4ms | ActiveRecord: 0.0ms)
49126
+
49127
+
49128
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49129
+ Processing by Lina::ApidocController#index as HTML
49130
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.8ms)
49131
+ Completed 200 OK in 130ms (Views: 115.7ms | ActiveRecord: 0.0ms)
49132
+
49133
+
49134
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49135
+
49136
+
49137
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49138
+
49139
+
49140
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49141
+
49142
+
49143
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49144
+
49145
+
49146
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49147
+
49148
+
49149
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49150
+
49151
+
49152
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49153
+
49154
+
49155
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49156
+
49157
+
49158
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49159
+
49160
+
49161
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49162
+
49163
+
49164
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49165
+
49166
+
49167
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49168
+
49169
+
49170
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49171
+
49172
+
49173
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49174
+
49175
+
49176
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:27:13 +0800
49177
+ Processing by Lina::ApidocController#index as JSON
49178
+ Completed 200 OK in 39ms (Views: 4.3ms | ActiveRecord: 0.0ms)
49179
+
49180
+
49181
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:52:53 +0800
49182
+ Processing by Lina::ApidocController#index as HTML
49183
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (3.5ms)
49184
+ Completed 200 OK in 2460ms (Views: 2419.3ms | ActiveRecord: 0.0ms)
49185
+
49186
+
49187
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49188
+
49189
+
49190
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49191
+
49192
+
49193
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49194
+
49195
+
49196
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49197
+
49198
+
49199
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49200
+
49201
+
49202
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49203
+
49204
+
49205
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49206
+
49207
+
49208
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49209
+
49210
+
49211
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49212
+
49213
+
49214
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49215
+
49216
+
49217
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49218
+
49219
+
49220
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49221
+
49222
+
49223
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49224
+
49225
+
49226
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49227
+
49228
+
49229
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:52:56 +0800
49230
+ Processing by Lina::ApidocController#index as JSON
49231
+ Completed 200 OK in 106ms (Views: 3.0ms | ActiveRecord: 0.0ms)
49232
+
49233
+
49234
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:53:10 +0800
49235
+ Processing by Lina::ApidocController#index as HTML
49236
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.3ms)
49237
+ Completed 200 OK in 160ms (Views: 142.8ms | ActiveRecord: 0.0ms)
49238
+
49239
+
49240
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49241
+
49242
+
49243
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49244
+
49245
+
49246
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49247
+
49248
+
49249
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49250
+
49251
+
49252
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49253
+
49254
+
49255
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49256
+
49257
+
49258
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49259
+
49260
+
49261
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49262
+
49263
+
49264
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49265
+
49266
+
49267
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49268
+
49269
+
49270
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49271
+
49272
+
49273
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49274
+
49275
+
49276
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49277
+
49278
+
49279
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49280
+
49281
+
49282
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:53:11 +0800
49283
+ Processing by Lina::ApidocController#index as JSON
49284
+ Completed 200 OK in 31ms (Views: 3.0ms | ActiveRecord: 0.0ms)
49285
+
49286
+
49287
+ Started GET "/lina" for 127.0.0.1 at 2015-03-26 12:53:34 +0800
49288
+ Processing by Lina::ApidocController#index as HTML
49289
+ Rendered /Users/yafeilee/workspace/lina/app/views/lina/apidoc/index.html.erb within layouts/lina/application (0.4ms)
49290
+ Completed 200 OK in 96ms (Views: 79.1ms | ActiveRecord: 0.0ms)
49291
+
49292
+
49293
+ Started GET "/assets/lina/application.css?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49294
+
49295
+
49296
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49297
+
49298
+
49299
+ Started GET "/assets/angular.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49300
+
49301
+
49302
+ Started GET "/assets/underscore.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49303
+
49304
+
49305
+ Started GET "/assets/angular-resource.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49306
+
49307
+
49308
+ Started GET "/assets/angular-route.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49309
+
49310
+
49311
+ Started GET "/assets/lina/application.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49312
+
49313
+
49314
+ Started GET "/assets/lina/abn_tree_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49315
+
49316
+
49317
+ Started GET "/assets/angular-animate.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49318
+
49319
+
49320
+ Started GET "/assets/lina/apidoc_controller.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49321
+
49322
+
49323
+ Started GET "/assets/angular-sanitize.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49324
+
49325
+
49326
+ Started GET "/assets/lina/json_parse_directive.js?body=1" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49327
+
49328
+
49329
+ Started GET "/assets/bootstrap/glyphicons-halflings-regular.woff2" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49330
+
49331
+
49332
+ Started GET "/assets/templates/lina/schema.html" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49333
+
49334
+
49335
+ Started GET "/lina/data" for 127.0.0.1 at 2015-03-26 12:53:35 +0800
49336
+ Processing by Lina::ApidocController#index as JSON
49337
+ Completed 200 OK in 29ms (Views: 2.4ms | ActiveRecord: 0.0ms)