merb-core 0.9.4 → 0.9.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. data/Rakefile +22 -13
  2. data/lib/merb-core/bootloader.rb +3 -2
  3. data/lib/merb-core/config.rb +1 -1
  4. data/lib/merb-core/constants.rb +3 -1
  5. data/lib/merb-core/controller/abstract_controller.rb +25 -39
  6. data/lib/merb-core/controller/exceptions.rb +14 -16
  7. data/lib/merb-core/controller/merb_controller.rb +2 -2
  8. data/lib/merb-core/controller/mime.rb +2 -1
  9. data/lib/merb-core/controller/mixins/render.rb +12 -0
  10. data/lib/merb-core/controller/mixins/responder.rb +31 -7
  11. data/lib/merb-core/core_ext/hash.rb +7 -0
  12. data/lib/merb-core/core_ext/kernel.rb +31 -34
  13. data/lib/merb-core/core_ext.rb +1 -0
  14. data/lib/merb-core/dispatch/default_exception/default_exception.rb +3 -3
  15. data/lib/merb-core/dispatch/dispatcher.rb +128 -135
  16. data/lib/merb-core/dispatch/request.rb +11 -11
  17. data/lib/merb-core/dispatch/router/behavior.rb +6 -6
  18. data/lib/merb-core/dispatch/router.rb +5 -5
  19. data/lib/merb-core/logger.rb +203 -202
  20. data/lib/merb-core/rack/application.rb +19 -5
  21. data/lib/merb-core/rack/middleware/conditional_get.rb +23 -0
  22. data/lib/merb-core/rack/middleware/content_length.rb +18 -0
  23. data/lib/merb-core/rack/middleware/tracer.rb +20 -0
  24. data/lib/merb-core/rack/middleware.rb +1 -7
  25. data/lib/merb-core/rack.rb +19 -16
  26. data/lib/merb-core/test/matchers/route_matchers.rb +1 -0
  27. data/lib/merb-core/test/matchers/view_matchers.rb +36 -0
  28. data/lib/merb-core/test/run_specs.rb +2 -1
  29. data/lib/merb-core/version.rb +1 -1
  30. data/lib/merb-core.rb +39 -33
  31. data/spec/private/config/merb_spec.rb +34 -0
  32. data/spec/private/dispatch/fixture/log/merb_test.log +372 -0
  33. data/spec/private/router/fixture/log/merb_test.log +42 -0
  34. data/spec/public/abstract_controller/controllers/filters.rb +50 -1
  35. data/spec/public/abstract_controller/filter_spec.rb +25 -0
  36. data/spec/public/controller/base_spec.rb +41 -1
  37. data/spec/public/controller/controllers/base.rb +16 -0
  38. data/spec/public/controller/controllers/views/merb/test/fixtures/controllers/class_provides/index.html.erb +1 -1
  39. data/spec/public/controller/dispatcher_spec.rb +24 -25
  40. data/spec/public/controller/responder_spec.rb +6 -0
  41. data/spec/public/core_ext/kernel_spec.rb +79 -0
  42. data/spec/public/directory_structure/directory/log/merb_test.log +245 -0
  43. data/spec/public/rack/conditinal_get_middleware_spec.rb +139 -0
  44. data/spec/public/rack/rack_middleware_spec.rb +99 -0
  45. data/spec/public/rack/shared_example_groups.rb +35 -0
  46. data/spec/public/reloading/directory/log/merb_test.log +40 -0
  47. data/spec/public/request/request_spec.rb +0 -5
  48. data/spec/public/router/fixture/log/merb_test.log +348 -0
  49. data/spec/public/test/route_matchers_spec.rb +4 -0
  50. data/spec/spec_helper.rb +7 -1
  51. metadata +42 -5
  52. data/spec/private/plugins/plugin_spec.rb +0 -166
data/lib/merb-core.rb CHANGED
@@ -172,7 +172,7 @@ module Merb
172
172
  # "**/*.rb".
173
173
  def push_path(type, path, file_glob = "**/*.rb")
174
174
  enforce!(type => Symbol)
175
- load_paths[type] = [Pathname.new(path), file_glob]
175
+ load_paths[type] = [path, file_glob]
176
176
  end
177
177
 
178
178
  # Removes given types of application components
@@ -217,15 +217,13 @@ module Merb
217
217
  # ==== Returns
218
218
  # String:: The Merb root path.
219
219
  def root
220
- app_root = @root || Merb::Config[:merb_root] || Dir.pwd
221
-
222
- Pathname.new(app_root)
220
+ @root || Merb::Config[:merb_root] || File.expand_path(Dir.pwd)
223
221
  end
224
222
 
225
223
  # ==== Parameters
226
224
  # value<String>:: Path to the root directory.
227
225
  def root=(value)
228
- @root = Pathname.new(value)
226
+ @root = value
229
227
  end
230
228
 
231
229
  # ==== Parameters
@@ -243,7 +241,7 @@ module Merb
243
241
  #---
244
242
  # @public
245
243
  def root_path(*path)
246
- Pathname.new(File.join(root, *path))
244
+ File.join(root, *path)
247
245
  end
248
246
 
249
247
  # Logger settings
@@ -268,18 +266,16 @@ module Merb
268
266
  # ==== Returns
269
267
  # String:: Path to directory that contains the log file.
270
268
  def log_path
271
- path = case Merb::Config[:log_file]
269
+ case Merb::Config[:log_file]
272
270
  when String then File.dirname(Merb::Config[:log_file])
273
271
  else Merb.root_path("log")
274
272
  end
275
-
276
- Pathname.new(path)
277
273
  end
278
274
 
279
275
  # ==== Returns
280
276
  # String:: The path of root directory of the Merb framework.
281
277
  def framework_root
282
- @framework_root ||= Pathname(File.dirname(__FILE__))
278
+ @framework_root ||= File.dirname(__FILE__)
283
279
  end
284
280
 
285
281
  # ==== Returns
@@ -317,35 +313,45 @@ module Merb
317
313
  end
318
314
 
319
315
  # Set up default variables under Merb
320
- attr_accessor :generator_scope, :klass_hashes, :orm_generator_scope, :test_framework_generator_scope
316
+ attr_accessor :klass_hashes, :orm, :test_framework, :template_engine
321
317
 
322
- # Returns registered ORM generators as symbols,
323
- # for instance, :datamapper.
318
+ # Returns the default ORM for this application. For instance, :datamapper.
324
319
  #
325
320
  # ==== Returns
326
- # <Array(Symbol>:: registered ORM generators.
321
+ # <Symbol>:: default ORM.
322
+ def orm
323
+ @orm ||= :none
324
+ end
325
+
326
+ # @deprecated
327
327
  def orm_generator_scope
328
- @orm_generator_scope ||= :merb_default
328
+ Merb.logger.warn!("WARNING: Merb.orm_generator_scope is deprecated")
329
+ return :merb_default if Merb.orm == :none
330
+ Merb.orm
329
331
  end
330
332
 
331
- # Returns registered test framework generators.
333
+ # Returns the default test framework for this application. For instance :rspec.
332
334
  #
333
335
  # ==== Returns
334
- # <Array(Symbol>:: registred test framework generators.
336
+ # <Symbol>:: default test framework.
337
+ def test_framework
338
+ @test_framework ||= :rspec
339
+ end
340
+
341
+ # @deprecated
335
342
  def test_framework_generator_scope
336
- @test_framework_generator_scope ||= :rspec
343
+ Merb.logger.warn!("WARNING: Merb.test_framework_generator_scope is deprecated")
344
+ Merb.test_framework
337
345
  end
338
-
339
- # Returns all registered generators plus Merb generator.
346
+
347
+ # Returns the default template engine for this application. For instance :haml.
340
348
  #
341
349
  # ==== Returns
342
- # <Array(Symbol>::
343
- # all registered generators, inc. needed by Merb itself.
344
- def generator_scope
345
- [:merb, orm_generator_scope, test_framework_generator_scope]
350
+ # <Symbol>:: default template engine.
351
+ def template_engine
352
+ @template_engine ||= :erb
346
353
  end
347
354
 
348
-
349
355
  Merb.klass_hashes = []
350
356
 
351
357
  attr_reader :registered_session_types
@@ -556,7 +562,7 @@ module Merb
556
562
  # Recommended way to find out what paths Rakefiles
557
563
  # are loaded from.
558
564
  def rakefiles
559
- @rakefiles ||= ['merb-core' / 'test' / 'tasks' / 'spectasks']
565
+ @rakefiles ||= ['merb-core/test/tasks/spectasks']
560
566
  end
561
567
 
562
568
  # === Returns
@@ -575,7 +581,7 @@ module Merb
575
581
  # ==== Notes
576
582
  # Recommended way to add Rakefiles load path for plugins authors.
577
583
  def add_rakefiles(*rakefiles)
578
- @rakefiles ||= ['merb-core' / 'test' / 'tasks' / 'spectasks']
584
+ @rakefiles ||= ['merb-core/test/tasks/spectasks']
579
585
  @rakefiles += rakefiles
580
586
  end
581
587
 
@@ -592,12 +598,12 @@ module Merb
592
598
  end
593
599
  end
594
600
 
595
- require 'merb-core' / 'autoload'
596
- require 'merb-core' / 'server'
597
- require 'merb-core' / 'gem_ext/erubis'
598
- require 'merb-core' / 'logger'
599
- require 'merb-core' / 'version'
600
- require 'merb-core' / 'controller/mime'
601
+ require 'merb-core/autoload'
602
+ require 'merb-core/server'
603
+ require 'merb-core/gem_ext/erubis'
604
+ require 'merb-core/logger'
605
+ require 'merb-core/version'
606
+ require 'merb-core/controller/mime'
601
607
 
602
608
  # Set the environment if it hasn't already been set.
603
609
  Merb.environment ||= ENV['MERB_ENV'] || Merb::Config[:environment] || (Merb.testing? ? 'test' : 'development')
@@ -0,0 +1,34 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ describe Merb, '#orm' do
4
+ it "it should be :none by default" do
5
+ Merb.orm.should == :none
6
+ end
7
+
8
+ it "should be changeable" do
9
+ Merb.orm = :datamapper
10
+ Merb.orm.should == :datamapper
11
+ end
12
+ end
13
+
14
+ describe Merb, '#test_framework' do
15
+ it "it should be :rspec by default" do
16
+ Merb.test_framework.should == :rspec
17
+ end
18
+
19
+ it "should be changeable" do
20
+ Merb.test_framework = :test_unit
21
+ Merb.test_framework.should == :test_unit
22
+ end
23
+ end
24
+
25
+ describe Merb, '#template_engine' do
26
+ it "it should be :erb by default" do
27
+ Merb.template_engine.should == :erb
28
+ end
29
+
30
+ it "should be changeable" do
31
+ Merb.template_engine = :haml
32
+ Merb.template_engine.should == :haml
33
+ end
34
+ end
@@ -7428,3 +7428,375 @@ Restarting Worker Thread
7428
7428
  ~ Started request handling: Wed Aug 13 06:09:34 +0300 2008
7429
7429
  ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7430
7430
  ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.001321, :action_time=>0.001073, :after_filters_time=>9.0e-06}
7431
+ ~ Loaded TEST Environment...
7432
+ ~ Compiling routes...
7433
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7434
+ ~ Started request handling: Thu Aug 14 07:39:52 +0300 2008
7435
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7436
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.005121, :action_time=>0.004846, :after_filters_time=>1.9e-05}
7437
+ ~ Started request handling: Thu Aug 14 07:39:52 +0300 2008
7438
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7439
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000842, :action_time=>0.000607, :after_filters_time=>7.0e-06}
7440
+ ~ Loaded TEST Environment...
7441
+ ~ Compiling routes...
7442
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7443
+ ~ Started request handling: Thu Aug 14 13:26:53 +0300 2008
7444
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7445
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.002906, :action_time=>0.002623, :after_filters_time=>2.2e-05}
7446
+ ~ Started request handling: Thu Aug 14 13:26:53 +0300 2008
7447
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7448
+ ~ {:before_filters_time=>9.0e-06, :dispatch_time=>0.00089, :action_time=>0.000641, :after_filters_time=>8.0e-06}
7449
+ ~ Loaded TEST Environment...
7450
+ ~ Compiling routes...
7451
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7452
+ ~ Started request handling: Thu Aug 14 13:28:32 +0300 2008
7453
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7454
+ ~ {:before_filters_time=>4.7e-05, :dispatch_time=>0.001731, :action_time=>0.001466, :after_filters_time=>1.7e-05}
7455
+ ~ Started request handling: Thu Aug 14 13:28:32 +0300 2008
7456
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7457
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000716, :action_time=>0.000538, :after_filters_time=>7.0e-06}
7458
+ ~ Loaded TEST Environment...
7459
+ ~ Compiling routes...
7460
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7461
+ ~ Started request handling: Thu Aug 14 20:12:59 +0300 2008
7462
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7463
+ ~ {:dispatch_time=>0.001759, :action_time=>0.001503, :after_filters_time=>1.6e-05, :before_filters_time=>1.9e-05}
7464
+ ~ Started request handling: Thu Aug 14 20:12:59 +0300 2008
7465
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7466
+ ~ {:dispatch_time=>0.000703, :action_time=>0.000525, :after_filters_time=>7.0e-06, :before_filters_time=>5.0e-06}
7467
+ ~ Loaded TEST Environment...
7468
+ ~ Compiling routes...
7469
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7470
+ ~ Started request handling: Fri Aug 15 10:36:25 +0300 2008
7471
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7472
+ ~ {:after_filters_time=>1.7e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001871, :action_time=>0.001581}
7473
+ ~ Started request handling: Fri Aug 15 10:36:25 +0300 2008
7474
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7475
+ ~ {:after_filters_time=>8.0e-06, :before_filters_time=>9.0e-05, :dispatch_time=>0.005066, :action_time=>0.00285}
7476
+ ~ Loaded TEST Environment...
7477
+ ~ Compiling routes...
7478
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7479
+ ~ Started request handling: Fri Aug 15 10:41:15 +0300 2008
7480
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7481
+ ~ {:after_filters_time=>2.3e-05, :before_filters_time=>1.6e-05, :dispatch_time=>0.001715, :action_time=>0.001435}
7482
+ ~ Started request handling: Fri Aug 15 10:41:15 +0300 2008
7483
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7484
+ ~ {:after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000724, :action_time=>0.000547}
7485
+ ~ Loaded TEST Environment...
7486
+ ~ Compiling routes...
7487
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7488
+ ~ Started request handling: Fri Aug 15 11:38:12 +0300 2008
7489
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7490
+ ~ {:before_filters_time=>2.1e-05, :dispatch_time=>0.015339, :action_time=>0.015034, :after_filters_time=>1.9e-05}
7491
+ ~ Started request handling: Fri Aug 15 11:38:12 +0300 2008
7492
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7493
+ ~ {:before_filters_time=>9.0e-06, :dispatch_time=>0.000715, :action_time=>0.000422, :after_filters_time=>8.0e-06}
7494
+ ~ Loaded TEST Environment...
7495
+ ~ Compiling routes...
7496
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7497
+ ~ Started request handling: Fri Aug 15 11:39:29 +0300 2008
7498
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7499
+ ~ {:before_filters_time=>2.0e-05, :dispatch_time=>0.004966, :action_time=>0.004636, :after_filters_time=>1.8e-05}
7500
+ ~ Started request handling: Fri Aug 15 11:39:29 +0300 2008
7501
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7502
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000887, :action_time=>0.000592, :after_filters_time=>8.0e-06}
7503
+ ~ Loaded TEST Environment...
7504
+ ~ Compiling routes...
7505
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7506
+ ~ Started request handling: Fri Aug 15 11:43:05 +0300 2008
7507
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7508
+ ~ {:after_filters_time=>2.1e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.004053, :action_time=>0.003749}
7509
+ ~ Started request handling: Fri Aug 15 11:43:05 +0300 2008
7510
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7511
+ ~ {:after_filters_time=>5.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000773, :action_time=>0.000546}
7512
+ ~ Loaded TEST Environment...
7513
+ ~ Compiling routes...
7514
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7515
+ ~ Started request handling: Fri Aug 15 11:45:34 +0300 2008
7516
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7517
+ ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.8e-05, :dispatch_time=>0.001818, :action_time=>0.001524}
7518
+ ~ Started request handling: Fri Aug 15 11:45:34 +0300 2008
7519
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7520
+ ~ {:after_filters_time=>1.0e-05, :before_filters_time=>1.1e-05, :dispatch_time=>0.001338, :action_time=>0.000867}
7521
+ ~ Loaded TEST Environment...
7522
+ ~ Compiling routes...
7523
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7524
+ ~ Started request handling: Fri Aug 15 11:50:01 +0300 2008
7525
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7526
+ ~ {:after_filters_time=>1.9e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.002109, :action_time=>0.001802}
7527
+ ~ Started request handling: Fri Aug 15 11:50:01 +0300 2008
7528
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7529
+ ~ {:after_filters_time=>7.0e-06, :before_filters_time=>4.9e-05, :dispatch_time=>0.003142, :action_time=>0.001318}
7530
+ ~ Loaded TEST Environment...
7531
+ ~ Compiling routes...
7532
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7533
+ ~ Started request handling: Fri Aug 15 11:58:56 +0300 2008
7534
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7535
+ ~ {:before_filters_time=>1.7e-05, :dispatch_time=>0.00147, :action_time=>0.001184, :after_filters_time=>1.7e-05}
7536
+ ~ Started request handling: Fri Aug 15 11:58:56 +0300 2008
7537
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7538
+ ~ {:before_filters_time=>5.0e-06, :dispatch_time=>0.000477, :action_time=>0.000287, :after_filters_time=>7.0e-06}
7539
+ ~ Loaded TEST Environment...
7540
+ ~ Compiling routes...
7541
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7542
+ ~ Started request handling: Fri Aug 15 12:00:59 +0300 2008
7543
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7544
+ ~ {:before_filters_time=>1.7e-05, :dispatch_time=>0.001478, :action_time=>0.001197, :after_filters_time=>1.7e-05}
7545
+ ~ Started request handling: Fri Aug 15 12:00:59 +0300 2008
7546
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7547
+ ~ {:before_filters_time=>6.0e-06, :dispatch_time=>0.000479, :action_time=>0.000288, :after_filters_time=>7.0e-06}
7548
+ ~ Loaded TEST Environment...
7549
+ ~ Compiling routes...
7550
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7551
+ ~ Started request handling: Fri Aug 15 14:18:30 +0300 2008
7552
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7553
+ ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001757, :action_time=>0.001469}
7554
+ ~ Started request handling: Fri Aug 15 14:18:30 +0300 2008
7555
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7556
+ ~ {:after_filters_time=>7.0e-06, :before_filters_time=>6.0e-06, :dispatch_time=>0.000711, :action_time=>0.000521}
7557
+ ~ Loaded TEST Environment...
7558
+ ~ Compiling routes...
7559
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7560
+ ~ Started request handling: Fri Aug 15 14:28:22 +0300 2008
7561
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7562
+ ~ {:after_filters_time=>1.6e-05, :before_filters_time=>1.7e-05, :dispatch_time=>0.001671, :action_time=>0.001396}
7563
+ ~ Started request handling: Fri Aug 15 14:28:22 +0300 2008
7564
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7565
+ ~ {:after_filters_time=>7.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000986, :action_time=>0.000667}
7566
+ ~ Loaded TEST Environment...
7567
+ ~ Compiling routes...
7568
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7569
+ ~ Started request handling: Fri Aug 15 14:30:13 +0300 2008
7570
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7571
+ ~ {:after_filters_time=>1.9e-05, :before_filters_time=>1.9e-05, :dispatch_time=>0.001987, :action_time=>0.001679}
7572
+ ~ Started request handling: Fri Aug 15 14:30:13 +0300 2008
7573
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7574
+ ~ {:after_filters_time=>7.0e-06, :before_filters_time=>7.0e-06, :dispatch_time=>0.000925, :action_time=>0.000684}
7575
+ ~ Loaded TEST Environment...
7576
+ ~ Compiling routes...
7577
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7578
+ ~ Started request handling: Fri Aug 15 14:37:57 +0300 2008
7579
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7580
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.001612, :action_time=>0.001335, :after_filters_time=>1.7e-05}
7581
+ ~ Started request handling: Fri Aug 15 14:37:57 +0300 2008
7582
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7583
+ ~ {:before_filters_time=>6.0e-06, :dispatch_time=>0.000467, :action_time=>0.000276, :after_filters_time=>7.0e-06}
7584
+ ~ Loaded TEST Environment...
7585
+ ~ Compiling routes...
7586
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7587
+ ~ Started request handling: Fri Aug 15 14:50:33 +0300 2008
7588
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7589
+ ~ {:before_filters_time=>1.7e-05, :dispatch_time=>0.00141, :action_time=>0.001143, :after_filters_time=>1.6e-05}
7590
+ ~ Started request handling: Fri Aug 15 14:50:33 +0300 2008
7591
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7592
+ ~ {:before_filters_time=>6.0e-06, :dispatch_time=>0.000455, :action_time=>0.000272, :after_filters_time=>6.0e-06}
7593
+ ~ Loaded TEST Environment...
7594
+ ~ Compiling routes...
7595
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7596
+ ~ Started request handling: Fri Aug 15 14:51:45 +0300 2008
7597
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7598
+ ~ {:before_filters_time=>2.1e-05, :dispatch_time=>0.001555, :action_time=>0.001258, :after_filters_time=>2.1e-05}
7599
+ ~ Started request handling: Fri Aug 15 14:51:45 +0300 2008
7600
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7601
+ ~ {:before_filters_time=>9.0e-06, :dispatch_time=>0.00081, :action_time=>0.000327, :after_filters_time=>1.0e-05}
7602
+ ~ Loaded TEST Environment...
7603
+ ~ Compiling routes...
7604
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7605
+ ~ Started request handling: Fri Aug 15 15:06:44 +0300 2008
7606
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7607
+ ~ {:before_filters_time=>1.7e-05, :dispatch_time=>0.001549, :action_time=>0.00126, :after_filters_time=>2.1e-05}
7608
+ ~ Started request handling: Fri Aug 15 15:06:44 +0300 2008
7609
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7610
+ ~ {:before_filters_time=>6.0e-06, :dispatch_time=>0.000723, :action_time=>0.000521, :after_filters_time=>7.0e-06}
7611
+ ~ Loaded TEST Environment...
7612
+ ~ Compiling routes...
7613
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7614
+ ~ Started request handling: Fri Aug 15 20:26:52 +0300 2008
7615
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7616
+ ~ {:before_filters_time=>2.4e-05, :dispatch_time=>0.006077, :action_time=>0.005744, :after_filters_time=>2.1e-05}
7617
+ ~ Started request handling: Fri Aug 15 20:26:52 +0300 2008
7618
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7619
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000668, :action_time=>0.000399, :after_filters_time=>8.0e-06}
7620
+ ~ Loaded TEST Environment...
7621
+ ~ Compiling routes...
7622
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7623
+ ~ Started request handling: Fri Aug 22 02:58:39 +0300 2008
7624
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7625
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001879, :action_time=>0.001534, :after_filters_time=>1.6e-05}
7626
+ ~ Started request handling: Fri Aug 22 02:58:39 +0300 2008
7627
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7628
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000485, :action_time=>0.000303, :after_filters_time=>7.0e-06}
7629
+ ~ Loaded TEST Environment...
7630
+ ~ Compiling routes...
7631
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7632
+ ~ Loaded TEST Environment...
7633
+ ~ Compiling routes...
7634
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7635
+ ~ Started request handling: Fri Aug 22 03:42:21 +0300 2008
7636
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7637
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.001461, :action_time=>0.001174, :after_filters_time=>1.6e-05}
7638
+ ~ Started request handling: Fri Aug 22 03:42:21 +0300 2008
7639
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7640
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000491, :action_time=>0.000305, :after_filters_time=>7.0e-06}
7641
+ ~ Loaded TEST Environment...
7642
+ ~ Compiling routes...
7643
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7644
+ ~ Started request handling: Fri Aug 22 04:08:24 +0300 2008
7645
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7646
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.001425, :action_time=>0.001171, :after_filters_time=>1.6e-05}
7647
+ ~ Started request handling: Fri Aug 22 04:08:24 +0300 2008
7648
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7649
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000477, :action_time=>0.0003, :after_filters_time=>7.0e-06}
7650
+ ~ Loaded TEST Environment...
7651
+ ~ Compiling routes...
7652
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7653
+ ~ Started request handling: Fri Aug 22 21:27:19 +0300 2008
7654
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7655
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.001463, :action_time=>0.00119, :after_filters_time=>1.7e-05}
7656
+ ~ Started request handling: Fri Aug 22 21:27:19 +0300 2008
7657
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7658
+ ~ {:before_filters_time=>1.7e-05, :dispatch_time=>0.0005, :action_time=>0.000304, :after_filters_time=>6.0e-06}
7659
+ ~ Loaded TEST Environment...
7660
+ ~ Compiling routes...
7661
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7662
+ ~ Started request handling: Fri Aug 22 22:05:25 +0300 2008
7663
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7664
+ ~ {:before_filters_time=>2.1e-05, :dispatch_time=>0.001723, :action_time=>0.001395, :after_filters_time=>1.8e-05}
7665
+ ~ Started request handling: Fri Aug 22 22:05:25 +0300 2008
7666
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7667
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000615, :action_time=>0.000367, :after_filters_time=>8.0e-06}
7668
+ ~ Loaded TEST Environment...
7669
+ ~ Compiling routes...
7670
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7671
+ ~ Started request handling: Sat Aug 23 09:26:05 +0300 2008
7672
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7673
+ ~ {:before_filters_time=>2.0e-05, :dispatch_time=>0.001757, :action_time=>0.001435, :after_filters_time=>1.7e-05}
7674
+ ~ Started request handling: Sat Aug 23 09:26:05 +0300 2008
7675
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7676
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.000594, :action_time=>0.000358, :after_filters_time=>7.0e-06}
7677
+ ~ Loaded TEST Environment...
7678
+ ~ Compiling routes...
7679
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7680
+ ~ Started request handling: Sat Aug 23 09:28:04 +0300 2008
7681
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7682
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001532, :action_time=>0.001253, :after_filters_time=>1.7e-05}
7683
+ ~ Started request handling: Sat Aug 23 09:28:04 +0300 2008
7684
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7685
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000519, :action_time=>0.000314, :after_filters_time=>7.0e-06}
7686
+ ~ Loaded TEST Environment...
7687
+ ~ Compiling routes...
7688
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7689
+ ~ Started request handling: Sat Aug 23 09:29:58 +0300 2008
7690
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7691
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001676, :action_time=>0.001392, :after_filters_time=>1.7e-05}
7692
+ ~ Started request handling: Sat Aug 23 09:29:58 +0300 2008
7693
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7694
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000498, :action_time=>0.0003, :after_filters_time=>6.0e-06}
7695
+ ~ Loaded TEST Environment...
7696
+ ~ Compiling routes...
7697
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7698
+ ~ Started request handling: Sat Aug 23 09:35:40 +0300 2008
7699
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7700
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.001422, :action_time=>0.001159, :after_filters_time=>1.7e-05}
7701
+ ~ Started request handling: Sat Aug 23 09:35:40 +0300 2008
7702
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7703
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.00047, :action_time=>0.000292, :after_filters_time=>6.0e-06}
7704
+ ~ Loaded TEST Environment...
7705
+ ~ Compiling routes...
7706
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7707
+ ~ Started request handling: Sat Aug 23 09:37:51 +0300 2008
7708
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7709
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001431, :action_time=>0.00117, :after_filters_time=>1.6e-05}
7710
+ ~ Started request handling: Sat Aug 23 09:37:51 +0300 2008
7711
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7712
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000593, :action_time=>0.000306, :after_filters_time=>7.0e-06}
7713
+ ~ Loaded TEST Environment...
7714
+ ~ Compiling routes...
7715
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7716
+ ~ Started request handling: Sat Aug 23 11:08:49 +0300 2008
7717
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7718
+ ~ {:before_filters_time=>2.3e-05, :dispatch_time=>0.001855, :action_time=>0.001527, :after_filters_time=>1.8e-05}
7719
+ ~ Started request handling: Sat Aug 23 11:08:49 +0300 2008
7720
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7721
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000523, :action_time=>0.000321, :after_filters_time=>6.0e-06}
7722
+ ~ Loaded TEST Environment...
7723
+ ~ Compiling routes...
7724
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7725
+ ~ Started request handling: Sat Aug 23 12:11:18 +0300 2008
7726
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7727
+ ~ {:before_filters_time=>2.1e-05, :dispatch_time=>0.001758, :action_time=>0.001453, :after_filters_time=>1.9e-05}
7728
+ ~ Started request handling: Sat Aug 23 12:11:18 +0300 2008
7729
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7730
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000585, :action_time=>0.000353, :after_filters_time=>7.0e-06}
7731
+ ~ Loaded TEST Environment...
7732
+ ~ Compiling routes...
7733
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7734
+ ~ Started request handling: Sat Aug 23 12:37:57 +0300 2008
7735
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7736
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001504, :action_time=>0.001193, :after_filters_time=>1.6e-05}
7737
+ ~ Started request handling: Sat Aug 23 12:37:57 +0300 2008
7738
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7739
+ ~ {:before_filters_time=>8.0e-06, :dispatch_time=>0.000478, :action_time=>0.000297, :after_filters_time=>6.0e-06}
7740
+ ~ Loaded TEST Environment...
7741
+ ~ Compiling routes...
7742
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7743
+ ~ Started request handling: Sat Aug 23 12:40:20 +0300 2008
7744
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7745
+ ~ {:before_filters_time=>2.0e-05, :dispatch_time=>0.011551, :action_time=>0.011272, :after_filters_time=>2.9e-05}
7746
+ ~ Started request handling: Sat Aug 23 12:40:20 +0300 2008
7747
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7748
+ ~ {:before_filters_time=>9.0e-06, :dispatch_time=>0.000589, :action_time=>0.000349, :after_filters_time=>6.0e-06}
7749
+ ~ Loaded TEST Environment...
7750
+ ~ Compiling routes...
7751
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7752
+ ~ Started request handling: Sat Aug 23 12:41:13 +0300 2008
7753
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7754
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001857, :action_time=>0.001594, :after_filters_time=>1.7e-05}
7755
+ ~ Started request handling: Sat Aug 23 12:41:13 +0300 2008
7756
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7757
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000489, :action_time=>0.000296, :after_filters_time=>6.0e-06}
7758
+ ~ Loaded TEST Environment...
7759
+ ~ Compiling routes...
7760
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7761
+ ~ Started request handling: Sat Aug 23 18:26:32 +0300 2008
7762
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7763
+ ~ {:before_filters_time=>1.8e-05, :dispatch_time=>0.001446, :action_time=>0.001191, :after_filters_time=>1.6e-05}
7764
+ ~ Started request handling: Sat Aug 23 18:26:32 +0300 2008
7765
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7766
+ ~ {:before_filters_time=>6.0e-06, :dispatch_time=>0.000478, :action_time=>0.000291, :after_filters_time=>6.0e-06}
7767
+ ~ Loaded TEST Environment...
7768
+ ~ Compiling routes...
7769
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7770
+ ~ Started request handling: Sat Aug 23 18:36:01 +0300 2008
7771
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7772
+ ~ {:before_filters_time=>1.9e-05, :dispatch_time=>0.001528, :action_time=>0.001269, :after_filters_time=>1.6e-05}
7773
+ ~ Started request handling: Sat Aug 23 18:36:01 +0300 2008
7774
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7775
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000485, :action_time=>0.000296, :after_filters_time=>6.0e-06}
7776
+ ~ Loaded TEST Environment...
7777
+ ~ Compiling routes...
7778
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7779
+ ~ Started request handling: Sat Aug 23 18:45:15 +0300 2008
7780
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7781
+ ~ {:before_filters_time=>2.0e-05, :dispatch_time=>0.001801, :action_time=>0.001473, :after_filters_time=>1.8e-05}
7782
+ ~ Started request handling: Sat Aug 23 18:45:15 +0300 2008
7783
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7784
+ ~ {:before_filters_time=>7.0e-06, :dispatch_time=>0.000912, :action_time=>0.0007, :after_filters_time=>7.0e-06}
7785
+ ~ Loaded TEST Environment...
7786
+ ~ Compiling routes...
7787
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7788
+ ~ Started request handling: Sat Aug 23 21:11:50 +0300 2008
7789
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7790
+ ~ {:before_filters_time=>1.8e-05, :action_time=>0.001186, :dispatch_time=>0.001441, :after_filters_time=>1.6e-05}
7791
+ ~ Started request handling: Sat Aug 23 21:11:50 +0300 2008
7792
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7793
+ ~ {:before_filters_time=>6.0e-06, :action_time=>0.000295, :dispatch_time=>0.000478, :after_filters_time=>5.0e-06}
7794
+ ~ Loaded TEST Environment...
7795
+ ~ Compiling routes...
7796
+ ~ Using 'share-nothing' cookie sessions (4kb limit per client)
7797
+ ~ Started request handling: Tue Aug 26 00:08:09 +0300 2008
7798
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7799
+ ~ {:before_filters_time=>5.8e-05, :action_time=>0.025007, :dispatch_time=>0.02528, :after_filters_time=>3.7e-05}
7800
+ ~ Started request handling: Tue Aug 26 00:08:09 +0300 2008
7801
+ ~ Params: {"format"=>nil, "action"=>"bar", "id"=>"54", "controller"=>"foo"}
7802
+ ~ {:before_filters_time=>1.0e-05, :action_time=>0.000585, :dispatch_time=>0.000916, :after_filters_time=>9.0e-06}
@@ -1691,3 +1691,45 @@ Restarting Worker Thread
1691
1691
  ~ Not Using Sessions
1692
1692
  ~ Not Using Sessions
1693
1693
  ~ Not Using Sessions
1694
+ ~ Not Using Sessions
1695
+ ~ Not Using Sessions
1696
+ ~ Not Using Sessions
1697
+ ~ Not Using Sessions
1698
+ ~ Not Using Sessions
1699
+ ~ Not Using Sessions
1700
+ ~ Not Using Sessions
1701
+ ~ Not Using Sessions
1702
+ ~ Not Using Sessions
1703
+ ~ Not Using Sessions
1704
+ ~ Not Using Sessions
1705
+ ~ Not Using Sessions
1706
+ ~ Not Using Sessions
1707
+ ~ Not Using Sessions
1708
+ ~ Not Using Sessions
1709
+ ~ Not Using Sessions
1710
+ ~ Not Using Sessions
1711
+ ~ Not Using Sessions
1712
+ ~ Not Using Sessions
1713
+ ~ Not Using Sessions
1714
+ ~ Not Using Sessions
1715
+ ~ Not Using Sessions
1716
+ ~ Not Using Sessions
1717
+ ~ Not Using Sessions
1718
+ ~ Not Using Sessions
1719
+ ~ Not Using Sessions
1720
+ ~ Not Using Sessions
1721
+ ~ Not Using Sessions
1722
+ ~ Not Using Sessions
1723
+ ~ Not Using Sessions
1724
+ ~ Not Using Sessions
1725
+ ~ Not Using Sessions
1726
+ ~ Not Using Sessions
1727
+ ~ Not Using Sessions
1728
+ ~ Not Using Sessions
1729
+ ~ Not Using Sessions
1730
+ ~ Not Using Sessions
1731
+ ~ Not Using Sessions
1732
+ ~ Not Using Sessions
1733
+ ~ Not Using Sessions
1734
+ ~ Not Using Sessions
1735
+ ~ Not Using Sessions