web-console 0.1.0 → 0.2.0
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.
Potentially problematic release.
This version of web-console might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.markdown +15 -2
- data/lib/web_console/engine.rb +4 -2
- data/lib/web_console/repl/irb.rb +2 -1
- data/lib/web_console/version.rb +1 -1
- data/test/dummy/config/application.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +413 -0
- data/test/dummy/log/test.log +17253 -0
- data/test/web_console/repl/irb_test.rb +51 -0
- metadata +2 -4
- data/test/dummy/tmp/pids/server.pid +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7c31916fb10ef8b583a70d3141c172793331d3ed
|
4
|
+
data.tar.gz: dcb00392ebef0d0391909d4ca01eb92f4209b81b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9eb28821381e718ee8fb44ea2d2006034733a02a32aa54423e542621e611ead93d2f371b4c5b4b66929013f7a1e246946156040ef25d3a7d164a04d5e8f28756
|
7
|
+
data.tar.gz: c2c897d34c8c6359fa38d524c7263e7385590a093b868f4b10d9850b0482eea79f672bb6fddd9b9c7f26f392fb8254db9e2f411dcc103b539024f84f0cc2c974
|
data/README.markdown
CHANGED
@@ -10,8 +10,8 @@ server.
|
|
10
10
|
|
11
11
|
This is where _Web Console_ comes to the rescue. It gives you the same
|
12
12
|
`rails console` experience, right in the browser. It's not just a tool that
|
13
|
-
let's you evaluate Ruby code, there are a lot of those. It's your IRB
|
14
|
-
the way you configured it.
|
13
|
+
let's you evaluate Ruby code, there are a lot of those. It's your `IRB`
|
14
|
+
session, the way you configured it.
|
15
15
|
|
16
16
|

|
17
17
|
|
@@ -87,6 +87,11 @@ Again, note that this network doesn't allow `127.0.0.1`. If you want to access
|
|
87
87
|
the console, you have to do so from it's external IP or add `127.0.0.1` to the
|
88
88
|
mix.
|
89
89
|
|
90
|
+
### config.web_console.prevent_irbrc_execution
|
91
|
+
|
92
|
+
By default, the `IRB` adapter will execute the contents of the user's `.irbrc`.
|
93
|
+
Set this option to `false` if you would like to prevent that.
|
94
|
+
|
90
95
|
### config.web_console.default_mount_path
|
91
96
|
|
92
97
|
By default, the console will be mounted on `/console`.
|
@@ -104,6 +109,13 @@ end
|
|
104
109
|
|
105
110
|
Restart your server and you are done!
|
106
111
|
|
112
|
+
Pry Support
|
113
|
+
-----------
|
114
|
+
|
115
|
+
If you prefer `Pry` over `IRB`, we have you covered! We support it through the
|
116
|
+
[web-console-pry] project. Visit it's [home page][web-console-pry] for
|
117
|
+
instructions.
|
118
|
+
|
107
119
|
Test Drive
|
108
120
|
----------
|
109
121
|
|
@@ -118,4 +130,5 @@ the git root directory.
|
|
118
130
|
docker build -t gsamokovarov/web-console . && docker run -i -t !#:3
|
119
131
|
```
|
120
132
|
|
133
|
+
[web-console-pry]: https://github.com/gsamokovarov/web-console-pry
|
121
134
|
[Docker]: http://www.docker.io/
|
data/lib/web_console/engine.rb
CHANGED
@@ -7,8 +7,10 @@ module WebConsole
|
|
7
7
|
isolate_namespace WebConsole
|
8
8
|
|
9
9
|
config.web_console = ActiveSupport::OrderedOptions.new
|
10
|
-
|
11
|
-
config.web_console.
|
10
|
+
|
11
|
+
config.web_console.default_mount_path = '/console'
|
12
|
+
config.web_console.whitelisted_ips = '127.0.0.1'
|
13
|
+
config.web_console.prevent_irbrc_execution = false
|
12
14
|
|
13
15
|
initializer 'web_console.add_default_route' do |app|
|
14
16
|
# While we don't need the route in the test environment, we define it
|
data/lib/web_console/repl/irb.rb
CHANGED
@@ -43,6 +43,7 @@ module WebConsole
|
|
43
43
|
private
|
44
44
|
def initialize_irb_session!(ap_path = nil)
|
45
45
|
::IRB.init_config(ap_path)
|
46
|
+
::IRB.run_config unless Engine.config.web_console.prevent_irbrc_execution
|
46
47
|
end
|
47
48
|
|
48
49
|
def finalize_irb_session!
|
@@ -55,7 +56,7 @@ module WebConsole
|
|
55
56
|
require 'rails/console/helpers'
|
56
57
|
|
57
58
|
# Include all of the rails console helpers in the IRB session.
|
58
|
-
::IRB::ExtendCommandBundle.send
|
59
|
+
::IRB::ExtendCommandBundle.send(:include, Rails::ConsoleMethods)
|
59
60
|
end
|
60
61
|
end
|
61
62
|
end
|
data/lib/web_console/version.rb
CHANGED
@@ -9,7 +9,7 @@ module Dummy
|
|
9
9
|
class Application < Rails::Application
|
10
10
|
# When the Dummy application is ran in a docker container, the local
|
11
11
|
# computer address is in the 172.16.0.0/12 range. Have it whitelisted.
|
12
|
-
config.web_console.whitelisted_ips = %w(
|
12
|
+
config.web_console.whitelisted_ips = %w( 127.0.0.1 172.16.0.0/12 )
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -26589,3 +26589,416 @@ Started GET "/assets/web_console/application.js?body=1" for 192.168.1.100 at 201
|
|
26589
26589
|
|
26590
26590
|
|
26591
26591
|
Started GET "/assets/jquery.console.js?body=1" for 192.168.1.100 at 2013-07-30 17:38:07 +0300
|
26592
|
+
|
26593
|
+
|
26594
|
+
Started GET "/console" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26595
|
+
Processing by WebConsole::ConsoleSessionsController#index as HTML
|
26596
|
+
Rendered /home/udf/Development/web-console/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (4.2ms)
|
26597
|
+
Completed 200 OK in 126ms (Views: 119.8ms | ActiveRecord: 0.0ms)
|
26598
|
+
|
26599
|
+
|
26600
|
+
Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26601
|
+
|
26602
|
+
|
26603
|
+
Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26604
|
+
|
26605
|
+
|
26606
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26607
|
+
|
26608
|
+
|
26609
|
+
Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26610
|
+
|
26611
|
+
|
26612
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26613
|
+
|
26614
|
+
|
26615
|
+
Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26616
|
+
|
26617
|
+
|
26618
|
+
Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-30 22:39:46 +0300
|
26619
|
+
|
26620
|
+
|
26621
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:39:58 +0300
|
26622
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26623
|
+
Parameters: {"input"=>"ApplicationController", "id"=>"1"}
|
26624
|
+
Unpermitted parameters: id
|
26625
|
+
Completed 200 OK in 10ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26626
|
+
|
26627
|
+
|
26628
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:11 +0300
|
26629
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26630
|
+
Parameters: {"input"=>"class Pesho", "id"=>"1"}
|
26631
|
+
Unpermitted parameters: id
|
26632
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26633
|
+
|
26634
|
+
|
26635
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:18 +0300
|
26636
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26637
|
+
Parameters: {"input"=>" def teodora_is_the_best", "id"=>"1"}
|
26638
|
+
Unpermitted parameters: id
|
26639
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26640
|
+
|
26641
|
+
|
26642
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:25 +0300
|
26643
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26644
|
+
Parameters: {"input"=>" print \"Teodora is the best!\"", "id"=>"1"}
|
26645
|
+
Unpermitted parameters: id
|
26646
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26647
|
+
|
26648
|
+
|
26649
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:26 +0300
|
26650
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26651
|
+
Parameters: {"input"=>" end", "id"=>"1"}
|
26652
|
+
Unpermitted parameters: id
|
26653
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26654
|
+
|
26655
|
+
|
26656
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:27 +0300
|
26657
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26658
|
+
Parameters: {"input"=>"end", "id"=>"1"}
|
26659
|
+
Unpermitted parameters: id
|
26660
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
26661
|
+
|
26662
|
+
|
26663
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:38 +0300
|
26664
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26665
|
+
Parameters: {"input"=>"Pesho.new.teodora_is_the_best", "id"=>"1"}
|
26666
|
+
Unpermitted parameters: id
|
26667
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26668
|
+
|
26669
|
+
|
26670
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:42 +0300
|
26671
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26672
|
+
Parameters: {"input"=>"Pesho.new.teodora_is_the_best", "id"=>"1"}
|
26673
|
+
Unpermitted parameters: id
|
26674
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26675
|
+
|
26676
|
+
|
26677
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:47 +0300
|
26678
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26679
|
+
Parameters: {"input"=>"Genadi = Pesho", "id"=>"1"}
|
26680
|
+
Unpermitted parameters: id
|
26681
|
+
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
26682
|
+
|
26683
|
+
|
26684
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:50 +0300
|
26685
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26686
|
+
Parameters: {"input"=>"Pesho.new.teodora_is_the_best", "id"=>"1"}
|
26687
|
+
Unpermitted parameters: id
|
26688
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26689
|
+
|
26690
|
+
|
26691
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:40:56 +0300
|
26692
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26693
|
+
Parameters: {"input"=>"Genadi.new.teodora_is_the_best", "id"=>"1"}
|
26694
|
+
Unpermitted parameters: id
|
26695
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26696
|
+
|
26697
|
+
|
26698
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:08 +0300
|
26699
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26700
|
+
Parameters: {"input"=>"class Genadi", "id"=>"1"}
|
26701
|
+
Unpermitted parameters: id
|
26702
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26703
|
+
|
26704
|
+
|
26705
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:14 +0300
|
26706
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26707
|
+
Parameters: {"input"=>" def teodora_is_the_best", "id"=>"1"}
|
26708
|
+
Unpermitted parameters: id
|
26709
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26710
|
+
|
26711
|
+
|
26712
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:20 +0300
|
26713
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26714
|
+
Parameters: {"input"=>" puts \"Teodora is the best\"", "id"=>"1"}
|
26715
|
+
Unpermitted parameters: id
|
26716
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26717
|
+
|
26718
|
+
|
26719
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:22 +0300
|
26720
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26721
|
+
Parameters: {"input"=>" end", "id"=>"1"}
|
26722
|
+
Unpermitted parameters: id
|
26723
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26724
|
+
|
26725
|
+
|
26726
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:23 +0300
|
26727
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26728
|
+
Parameters: {"input"=>"end", "id"=>"1"}
|
26729
|
+
Unpermitted parameters: id
|
26730
|
+
Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
26731
|
+
|
26732
|
+
|
26733
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:26 +0300
|
26734
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26735
|
+
Parameters: {"input"=>"Genadi.new.teodora_is_the_best", "id"=>"1"}
|
26736
|
+
Unpermitted parameters: id
|
26737
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26738
|
+
|
26739
|
+
|
26740
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:44 +0300
|
26741
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26742
|
+
Parameters: {"input"=>"ConsoleSessions", "id"=>"1"}
|
26743
|
+
Unpermitted parameters: id
|
26744
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26745
|
+
|
26746
|
+
|
26747
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:50 +0300
|
26748
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26749
|
+
Parameters: {"input"=>"WebConsole:::ConsoleSessions", "id"=>"1"}
|
26750
|
+
Unpermitted parameters: id
|
26751
|
+
Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26752
|
+
|
26753
|
+
|
26754
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:53 +0300
|
26755
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26756
|
+
Parameters: {"input"=>"WebConsole::ConsoleSessions", "id"=>"1"}
|
26757
|
+
Unpermitted parameters: id
|
26758
|
+
Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26759
|
+
|
26760
|
+
|
26761
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:41:55 +0300
|
26762
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26763
|
+
Parameters: {"input"=>"WebConsole::ConsoleSession", "id"=>"1"}
|
26764
|
+
Unpermitted parameters: id
|
26765
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26766
|
+
|
26767
|
+
|
26768
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:02 +0300
|
26769
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26770
|
+
Parameters: {"input"=>"WebConsole::ConsoleSession::INMEMORY_STORAGE", "id"=>"1"}
|
26771
|
+
Unpermitted parameters: id
|
26772
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26773
|
+
|
26774
|
+
|
26775
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:05 +0300
|
26776
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26777
|
+
Parameters: {"input"=>"require 'pprint'", "id"=>"1"}
|
26778
|
+
Unpermitted parameters: id
|
26779
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26780
|
+
|
26781
|
+
|
26782
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:10 +0300
|
26783
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26784
|
+
Parameters: {"input"=>"require 'prettypprint'", "id"=>"1"}
|
26785
|
+
Unpermitted parameters: id
|
26786
|
+
Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
26787
|
+
|
26788
|
+
|
26789
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:14 +0300
|
26790
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26791
|
+
Parameters: {"input"=>"require 'prettyprint'", "id"=>"1"}
|
26792
|
+
Unpermitted parameters: id
|
26793
|
+
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
26794
|
+
|
26795
|
+
|
26796
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:20 +0300
|
26797
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26798
|
+
Parameters: {"input"=>"Object.methos", "id"=>"1"}
|
26799
|
+
Unpermitted parameters: id
|
26800
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26801
|
+
|
26802
|
+
|
26803
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:22 +0300
|
26804
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26805
|
+
Parameters: {"input"=>"Object.methods", "id"=>"1"}
|
26806
|
+
Unpermitted parameters: id
|
26807
|
+
Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26808
|
+
|
26809
|
+
|
26810
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:25 +0300
|
26811
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26812
|
+
Parameters: {"input"=>"Object.methods.sort", "id"=>"1"}
|
26813
|
+
Unpermitted parameters: id
|
26814
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26815
|
+
|
26816
|
+
|
26817
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:42 +0300
|
26818
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26819
|
+
Parameters: {"input"=>"Kernel.methods.sort", "id"=>"1"}
|
26820
|
+
Unpermitted parameters: id
|
26821
|
+
Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
26822
|
+
|
26823
|
+
|
26824
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:42:56 +0300
|
26825
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26826
|
+
Parameters: {"input"=>"pp", "id"=>"1"}
|
26827
|
+
Unpermitted parameters: id
|
26828
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26829
|
+
|
26830
|
+
|
26831
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:43:32 +0300
|
26832
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26833
|
+
Parameters: {"input"=>"require 'pp'", "id"=>"1"}
|
26834
|
+
Unpermitted parameters: id
|
26835
|
+
Completed 200 OK in 9ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
26836
|
+
|
26837
|
+
|
26838
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 22:43:39 +0300
|
26839
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26840
|
+
Parameters: {"input"=>"pp WebConsole::ConsoleSession::INMEMORY_STORAGE", "id"=>"1"}
|
26841
|
+
Unpermitted parameters: id
|
26842
|
+
Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
26843
|
+
|
26844
|
+
|
26845
|
+
Started GET "/console" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26846
|
+
Processing by WebConsole::ConsoleSessionsController#index as HTML
|
26847
|
+
Rendered /home/udf/Development/web-console/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.6ms)
|
26848
|
+
Completed 200 OK in 65ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
26849
|
+
|
26850
|
+
|
26851
|
+
Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26852
|
+
|
26853
|
+
|
26854
|
+
Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26855
|
+
|
26856
|
+
|
26857
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26858
|
+
|
26859
|
+
|
26860
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26861
|
+
|
26862
|
+
|
26863
|
+
Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26864
|
+
|
26865
|
+
|
26866
|
+
Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26867
|
+
|
26868
|
+
|
26869
|
+
Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:05 +0300
|
26870
|
+
|
26871
|
+
|
26872
|
+
Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-30 22:44:09 +0300
|
26873
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26874
|
+
Parameters: {"input"=>"pp", "id"=>"2"}
|
26875
|
+
Unpermitted parameters: id
|
26876
|
+
Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
26877
|
+
|
26878
|
+
|
26879
|
+
Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-30 22:44:22 +0300
|
26880
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26881
|
+
Parameters: {"input"=>"pp WebConsole::ConsoleSession::INMEMORY_STORAGE", "id"=>"2"}
|
26882
|
+
Unpermitted parameters: id
|
26883
|
+
Completed 200 OK in 8ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
26884
|
+
|
26885
|
+
|
26886
|
+
Started GET "/console" for 127.0.0.1 at 2013-07-30 22:44:28 +0300
|
26887
|
+
Processing by WebConsole::ConsoleSessionsController#index as HTML
|
26888
|
+
Rendered /home/udf/Development/web-console/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.9ms)
|
26889
|
+
Completed 200 OK in 14ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
26890
|
+
|
26891
|
+
|
26892
|
+
Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26893
|
+
|
26894
|
+
|
26895
|
+
Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26896
|
+
|
26897
|
+
|
26898
|
+
Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26899
|
+
|
26900
|
+
|
26901
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26902
|
+
|
26903
|
+
|
26904
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26905
|
+
|
26906
|
+
|
26907
|
+
Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26908
|
+
|
26909
|
+
|
26910
|
+
Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-30 22:44:29 +0300
|
26911
|
+
|
26912
|
+
|
26913
|
+
Started GET "/" for 127.0.0.1 at 2013-07-31 15:28:58 +0300
|
26914
|
+
Processing by Rails::WelcomeController#index as HTML
|
26915
|
+
Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (14.1ms)
|
26916
|
+
Completed 200 OK in 84ms (Views: 83.6ms | ActiveRecord: 0.0ms)
|
26917
|
+
|
26918
|
+
|
26919
|
+
Started GET "/console" for 127.0.0.1 at 2013-07-31 15:29:04 +0300
|
26920
|
+
Processing by WebConsole::ConsoleSessionsController#index as HTML
|
26921
|
+
Rendered /home/udf/Development/web-console/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (31.7ms)
|
26922
|
+
Completed 200 OK in 1121ms (Views: 1033.5ms | ActiveRecord: 0.0ms)
|
26923
|
+
|
26924
|
+
|
26925
|
+
Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26926
|
+
|
26927
|
+
|
26928
|
+
Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26929
|
+
|
26930
|
+
|
26931
|
+
Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26932
|
+
|
26933
|
+
|
26934
|
+
Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26935
|
+
|
26936
|
+
|
26937
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26938
|
+
|
26939
|
+
|
26940
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26941
|
+
|
26942
|
+
|
26943
|
+
Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-31 15:29:05 +0300
|
26944
|
+
|
26945
|
+
|
26946
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-31 15:30:23 +0300
|
26947
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26948
|
+
Parameters: {"input"=>"class A", "id"=>"1"}
|
26949
|
+
Unpermitted parameters: id
|
26950
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26951
|
+
|
26952
|
+
|
26953
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-31 15:30:24 +0300
|
26954
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26955
|
+
Parameters: {"input"=>"end", "id"=>"1"}
|
26956
|
+
Unpermitted parameters: id
|
26957
|
+
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
26958
|
+
|
26959
|
+
|
26960
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-31 15:30:26 +0300
|
26961
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26962
|
+
Parameters: {"input"=>"class B", "id"=>"1"}
|
26963
|
+
Unpermitted parameters: id
|
26964
|
+
Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26965
|
+
|
26966
|
+
|
26967
|
+
Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-31 15:30:28 +0300
|
26968
|
+
Processing by WebConsole::ConsoleSessionsController#update as JSON
|
26969
|
+
Parameters: {"input"=>" end", "id"=>"1"}
|
26970
|
+
Unpermitted parameters: id
|
26971
|
+
Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
26972
|
+
|
26973
|
+
|
26974
|
+
Started GET "/" for 127.0.0.1 at 2013-08-01 17:55:50 +0300
|
26975
|
+
Processing by Rails::WelcomeController#index as HTML
|
26976
|
+
Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/railties-4.0.0/lib/rails/templates/rails/welcome/index.html.erb (1.8ms)
|
26977
|
+
Completed 200 OK in 30ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
26978
|
+
|
26979
|
+
|
26980
|
+
Started GET "/console" for 127.0.0.1 at 2013-08-01 17:55:55 +0300
|
26981
|
+
Processing by WebConsole::ConsoleSessionsController#index as HTML
|
26982
|
+
Rendered /home/udf/Development/web-console/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (2.0ms)
|
26983
|
+
Completed 200 OK in 774ms (Views: 767.3ms | ActiveRecord: 0.0ms)
|
26984
|
+
|
26985
|
+
|
26986
|
+
Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|
26987
|
+
|
26988
|
+
|
26989
|
+
Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|
26990
|
+
|
26991
|
+
|
26992
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|
26993
|
+
|
26994
|
+
|
26995
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|
26996
|
+
|
26997
|
+
|
26998
|
+
Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|
26999
|
+
|
27000
|
+
|
27001
|
+
Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|
27002
|
+
|
27003
|
+
|
27004
|
+
Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-08-01 17:55:56 +0300
|