inetmgr 0.6.0 → 0.7.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.
- data/Gemfile +2 -0
- data/RELEASE-NOTES.rdoc +5 -1
- data/inetmgr.gemspec +4 -1
- data/lib/inetmgr/configuration.rb +24 -21
- data/lib/inetmgr/iis_configuration.rb +18 -8
- data/lib/inetmgr/iis_object.rb +6 -3
- data/lib/inetmgr/iis_object/application.rb +5 -3
- data/lib/inetmgr/iis_object/application_pool.rb +5 -3
- data/lib/inetmgr/iis_object/auto_start_provider.rb +3 -1
- data/lib/inetmgr/iis_object/binding_information.rb +2 -0
- data/lib/inetmgr/iis_object/periodic_restart.rb +6 -3
- data/lib/inetmgr/iis_object/process_model.rb +21 -18
- data/lib/inetmgr/iis_object/recycling.rb +8 -5
- data/lib/inetmgr/iis_object/site.rb +3 -1
- data/lib/inetmgr/iis_object/site_limit.rb +10 -7
- data/lib/inetmgr/iis_object/site_logfile.rb +4 -1
- data/lib/inetmgr/iis_object/virtual_directory.rb +3 -1
- data/lib/inetmgr/iis_object_collection.rb +7 -4
- data/lib/inetmgr/site_configuration.rb +37 -34
- data/lib/string.rb +4 -4
- data/spec/application_pool_spec.rb +1 -1
- data/spec/bingin_information_spec.rb +21 -21
- data/spec/site_app_settings_spec.rb +3 -3
- data/spec/site_configuration_spec.rb +1 -1
- data/spec/site_connection_strings_spec.rb +1 -1
- data/spec/site_spec.rb +16 -4
- data/spec/site_validation_settings_spec.rb +1 -1
- data/spec/spec_env.rb +1 -5
- data/spec/string_spec.rb +16 -16
- data/test/print_iis_config.rb +0 -4
- metadata +53 -89
- data/doc/Application.html +0 -177
- data/doc/ApplicationPool.html +0 -177
- data/doc/AutoStartProvider.html +0 -177
- data/doc/BindingInformation.html +0 -349
- data/doc/Configuration.html +0 -283
- data/doc/IisConfiguration.html +0 -383
- data/doc/IisObject.html +0 -484
- data/doc/IisObjectCollection.html +0 -534
- data/doc/Inetmgr.html +0 -179
- data/doc/Inetmgr/InetmgrTask.html +0 -338
- data/doc/Object.html +0 -254
- data/doc/PeriodicRestart.html +0 -177
- data/doc/ProcessModel.html +0 -192
- data/doc/README_rdoc.html +0 -114
- data/doc/RSpecExtensions.html +0 -257
- data/doc/Recycling.html +0 -177
- data/doc/Site.html +0 -228
- data/doc/SiteConfiguration.html +0 -269
- data/doc/SiteLimit.html +0 -177
- data/doc/VirtualDirectory.html +0 -177
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +0 -166
- data/doc/js/darkfish.js +0 -116
- data/doc/js/jquery.js +0 -32
- data/doc/js/quicksearch.js +0 -114
- data/doc/js/thickbox-compressed.js +0 -10
- data/doc/rdoc.css +0 -706
data/lib/string.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
class String
|
2
|
-
def to_camel_case
|
3
|
-
self.gsub(/_(.)/) { $1.upcase }
|
4
|
-
end
|
1
|
+
class String
|
2
|
+
def to_camel_case
|
3
|
+
self.gsub(/_(.)/) { $1.upcase }
|
4
|
+
end
|
5
5
|
end
|
@@ -3,7 +3,7 @@ require 'spec_env'
|
|
3
3
|
describe "When adding a new application pool" do
|
4
4
|
|
5
5
|
before(:all) do
|
6
|
-
@pools = IisConfiguration.new.get_application_pools
|
6
|
+
@pools = Inetmgr::IisConfiguration.new.get_application_pools
|
7
7
|
@before_count = @pools.size
|
8
8
|
@pool = @pools.add do |p|
|
9
9
|
p.name = "tralala"
|
@@ -1,21 +1,21 @@
|
|
1
|
-
require 'spec_env'
|
2
|
-
|
3
|
-
describe "When adding an SSL certificate" do
|
4
|
-
|
5
|
-
before(:all) do
|
6
|
-
configure false do |cfg|
|
7
|
-
@binding = cfg.get_sites[0].bindings[0]
|
8
|
-
@binding.add_ssl_certificate "e2564766bad7ebec8cf6899caa2a27c6391c4f19", "MY"
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
it "the cert hash should be set" do
|
13
|
-
@binding.certificateHash.downcase.should == "e2564766bad7ebec8cf6899caa2a27c6391c4f19"
|
14
|
-
end
|
15
|
-
|
16
|
-
it "the cert store name should be set" do
|
17
|
-
@binding.certificateStoreName.should == "MY"
|
18
|
-
end
|
19
|
-
|
20
|
-
end
|
21
|
-
|
1
|
+
require 'spec_env'
|
2
|
+
|
3
|
+
describe "When adding an SSL certificate" do
|
4
|
+
|
5
|
+
before(:all) do
|
6
|
+
configure false do |cfg|
|
7
|
+
@binding = cfg.get_sites[0].bindings[0]
|
8
|
+
@binding.add_ssl_certificate "e2564766bad7ebec8cf6899caa2a27c6391c4f19", "MY"
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
it "the cert hash should be set" do
|
13
|
+
@binding.certificateHash.downcase.should == "e2564766bad7ebec8cf6899caa2a27c6391c4f19"
|
14
|
+
end
|
15
|
+
|
16
|
+
it "the cert store name should be set" do
|
17
|
+
@binding.certificateStoreName.should == "MY"
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
|
@@ -3,7 +3,7 @@ require './spec_env.rb'
|
|
3
3
|
describe "When getting a sites connection strings" do
|
4
4
|
|
5
5
|
before(:all) do
|
6
|
-
iis_cfg = IisConfiguration.new
|
6
|
+
iis_cfg = Inetmgr::IisConfiguration.new
|
7
7
|
site = iis_cfg.get_sites.find { |s| s.name= 'thuis.jolena.be' }
|
8
8
|
site.configure do |site_cfg|
|
9
9
|
@app_settings = site_cfg.get_connection_strings
|
@@ -19,7 +19,7 @@ end
|
|
19
19
|
describe "When changing an app setting" do
|
20
20
|
|
21
21
|
before(:all) do
|
22
|
-
@iis_cfg = IisConfiguration.new
|
22
|
+
@iis_cfg = Inetmgr::IisConfiguration.new
|
23
23
|
site = @iis_cfg.get_sites.find { |s| s.name= 'thuis.jolena.be' }
|
24
24
|
site.configure do |site_cfg|
|
25
25
|
@previous = site_cfg.get_app_settings[0].value
|
@@ -40,7 +40,7 @@ end
|
|
40
40
|
describe "When adding an app setting" do
|
41
41
|
|
42
42
|
before(:all) do
|
43
|
-
@iis_cfg = IisConfiguration.new
|
43
|
+
@iis_cfg = Inetmgr::IisConfiguration.new
|
44
44
|
site = @iis_cfg.get_sites.find { |s| s.name= 'thuis.jolena.be' }
|
45
45
|
site.configure do |site_cfg|
|
46
46
|
@previous = site_cfg.get_app_settings.size
|
@@ -3,7 +3,7 @@ require './spec_env.rb'
|
|
3
3
|
describe "When getting a sites connection strings" do
|
4
4
|
|
5
5
|
before(:all) do
|
6
|
-
iis_cfg = IisConfiguration.new
|
6
|
+
iis_cfg = Inetmgr::IisConfiguration.new
|
7
7
|
site = iis_cfg.get_sites.find { |s| s.name= 'thuis.jolena.be' }
|
8
8
|
site.configure do |site_cfg|
|
9
9
|
@validation_settings = site_cfg.get_validation_settings
|
@@ -3,7 +3,7 @@ require './spec_env.rb'
|
|
3
3
|
describe "When getting a sites app settings" do
|
4
4
|
|
5
5
|
before(:all) do
|
6
|
-
iis_cfg = IisConfiguration.new
|
6
|
+
iis_cfg = Inetmgr::IisConfiguration.new
|
7
7
|
site = iis_cfg.get_sites.find { |s| s.name= 'thuis.jolena.be' }
|
8
8
|
site.configure do |site_cfg|
|
9
9
|
@connection_strings = site_cfg.get_connection_strings
|
data/spec/site_spec.rb
CHANGED
@@ -27,8 +27,20 @@ describe "When adding a new site" do
|
|
27
27
|
@site.should_not be_nil
|
28
28
|
end
|
29
29
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
context "When the site ids in IIS are not in ascending order" do
|
31
|
+
before(:all) do
|
32
|
+
@site2 = @sites.add { |s| s.name = generate_random_name }
|
33
|
+
@sites.remove(@sites.find_index { |site| site.id == @site.id })
|
34
|
+
end
|
35
|
+
|
36
|
+
it "the new site id should be one higher then the highest existing site id" do
|
37
|
+
ids = []
|
38
|
+
@sites.each { |s| ids << s.id }
|
39
|
+
max_id = ids.max
|
40
|
+
|
41
|
+
@site3 = @sites.add { |s| s.name = generate_random_name }
|
42
|
+
|
43
|
+
@site3.id.should == max_id + 1
|
44
|
+
end
|
45
|
+
end
|
34
46
|
end
|
@@ -3,7 +3,7 @@ require './spec_env.rb'
|
|
3
3
|
describe "When getting a sites connection strings" do
|
4
4
|
|
5
5
|
before(:all) do
|
6
|
-
iis_cfg = IisConfiguration.new
|
6
|
+
iis_cfg = Inetmgr::IisConfiguration.new
|
7
7
|
site = iis_cfg.get_sites.find { |s| s.name= 'thuis.jolena.be' }
|
8
8
|
site.configure do |site_cfg|
|
9
9
|
@validation_settings = site_cfg.get_validation_settings
|
data/spec/spec_env.rb
CHANGED
@@ -4,21 +4,17 @@ require 'uuid'
|
|
4
4
|
require File.expand_path(File.join(File.dirname(__FILE__), "../lib/inetmgr"))
|
5
5
|
|
6
6
|
module RSpecExtensions
|
7
|
-
|
8
7
|
def configure(apply_changes = true)
|
9
|
-
cfg = IisConfiguration.new
|
8
|
+
cfg = Inetmgr::IisConfiguration.new
|
10
9
|
yield cfg
|
11
10
|
cfg.apply_changes if apply_changes
|
12
11
|
end
|
13
12
|
|
14
13
|
def generate_random_name
|
15
|
-
# workaround because IronRuby does not implement File.flock (yet)
|
16
|
-
return System::Guid.NewGuid.to_s if RUBY_ENGINE == "ironruby"
|
17
14
|
UUID.generate(:compact).to_s
|
18
15
|
end
|
19
16
|
|
20
17
|
end
|
21
|
-
|
22
18
|
RSpec::Runner.configure do |config|
|
23
19
|
config.include RSpecExtensions
|
24
20
|
end
|
data/spec/string_spec.rb
CHANGED
@@ -1,16 +1,16 @@
|
|
1
|
-
|
2
|
-
require File.join(File.expand_path(File.dirname(__FILE__)), '../lib/string.rb')
|
3
|
-
|
4
|
-
describe "When converting underscored symbols to camel case" do
|
5
|
-
|
6
|
-
before(:each) do
|
7
|
-
@values = ['foo_bar']
|
8
|
-
@results = []
|
9
|
-
@values.each {|v| @results << v.to_camel_case }
|
10
|
-
end
|
11
|
-
|
12
|
-
it "all samples shoud be converted ok" do
|
13
|
-
@results[0].should == 'fooBar'
|
14
|
-
end
|
15
|
-
end
|
16
|
-
|
1
|
+
|
2
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), '../lib/string.rb')
|
3
|
+
|
4
|
+
describe "When converting underscored symbols to camel case" do
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
@values = ['foo_bar']
|
8
|
+
@results = []
|
9
|
+
@values.each {|v| @results << v.to_camel_case }
|
10
|
+
end
|
11
|
+
|
12
|
+
it "all samples shoud be converted ok" do
|
13
|
+
@results[0].should == 'fooBar'
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
data/test/print_iis_config.rb
CHANGED
@@ -51,10 +51,6 @@ sites.each do |s|
|
|
51
51
|
end
|
52
52
|
puts "----------------------------"
|
53
53
|
|
54
|
-
puts "log_file.directory: #{s.log_file.directory}"
|
55
|
-
puts "log file period: #{s.log_file.period}"
|
56
|
-
puts "log file format: #{s.log_file.format}"
|
57
|
-
puts "log file file flags: #{s.log_file.log_ext_file_flags}"
|
58
54
|
end
|
59
55
|
|
60
56
|
|
metadata
CHANGED
@@ -1,79 +1,56 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: inetmgr
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 6
|
8
|
-
- 0
|
9
|
-
version: 0.6.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.7.0
|
5
|
+
prerelease:
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
7
|
+
authors:
|
12
8
|
- Gino Heyman
|
13
9
|
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
12
|
+
date: 2013-02-15 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: uuid
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: rspec
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ! '>='
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ! '>='
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0'
|
46
|
+
description: inetmgr allows you to inspect/configure IIS configuration sections and
|
47
|
+
elements.
|
22
48
|
email: gino.heyman@gmail.com
|
23
49
|
executables: []
|
24
|
-
|
25
50
|
extensions: []
|
26
|
-
|
27
51
|
extra_rdoc_files: []
|
28
|
-
|
29
|
-
|
30
|
-
- doc/Application.html
|
31
|
-
- doc/ApplicationPool.html
|
32
|
-
- doc/AutoStartProvider.html
|
33
|
-
- doc/BindingInformation.html
|
34
|
-
- doc/Configuration.html
|
35
|
-
- doc/IisConfiguration.html
|
36
|
-
- doc/IisObject.html
|
37
|
-
- doc/IisObjectCollection.html
|
38
|
-
- doc/images/brick.png
|
39
|
-
- doc/images/brick_link.png
|
40
|
-
- doc/images/bug.png
|
41
|
-
- doc/images/bullet_black.png
|
42
|
-
- doc/images/bullet_toggle_minus.png
|
43
|
-
- doc/images/bullet_toggle_plus.png
|
44
|
-
- doc/images/date.png
|
45
|
-
- doc/images/find.png
|
46
|
-
- doc/images/loadingAnimation.gif
|
47
|
-
- doc/images/macFFBgHack.png
|
48
|
-
- doc/images/package.png
|
49
|
-
- doc/images/page_green.png
|
50
|
-
- doc/images/page_white_text.png
|
51
|
-
- doc/images/page_white_width.png
|
52
|
-
- doc/images/plugin.png
|
53
|
-
- doc/images/ruby.png
|
54
|
-
- doc/images/tag_green.png
|
55
|
-
- doc/images/wrench.png
|
56
|
-
- doc/images/wrench_orange.png
|
57
|
-
- doc/images/zoom.png
|
58
|
-
- doc/index.html
|
59
|
-
- doc/Inetmgr/InetmgrTask.html
|
60
|
-
- doc/Inetmgr.html
|
61
|
-
- doc/js/darkfish.js
|
62
|
-
- doc/js/jquery.js
|
63
|
-
- doc/js/quicksearch.js
|
64
|
-
- doc/js/thickbox-compressed.js
|
65
|
-
- doc/Object.html
|
66
|
-
- doc/PeriodicRestart.html
|
67
|
-
- doc/ProcessModel.html
|
68
|
-
- doc/rdoc.css
|
69
|
-
- doc/README_rdoc.html
|
70
|
-
- doc/Recycling.html
|
71
|
-
- doc/RSpecExtensions.html
|
72
|
-
- doc/Site.html
|
73
|
-
- doc/SiteConfiguration.html
|
74
|
-
- doc/SiteLimit.html
|
75
|
-
- doc/VirtualDirectory.html
|
76
|
-
- inetmgr-0.6.0.gem
|
52
|
+
files:
|
53
|
+
- Gemfile
|
77
54
|
- inetmgr.gemspec
|
78
55
|
- lib/inetmgr/configuration.rb
|
79
56
|
- lib/inetmgr/iis_configuration.rb
|
@@ -112,41 +89,28 @@ files:
|
|
112
89
|
- test/create_site.rb
|
113
90
|
- test/print_iis_config.rb
|
114
91
|
- test/rakefile.rb
|
115
|
-
has_rdoc: true
|
116
92
|
homepage: http://typesafe.be/inetmgr/
|
117
93
|
licenses: []
|
118
|
-
|
119
94
|
post_install_message:
|
120
95
|
rdoc_options: []
|
121
|
-
|
122
|
-
require_paths:
|
96
|
+
require_paths:
|
123
97
|
- lib
|
124
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
98
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
125
99
|
none: false
|
126
|
-
requirements:
|
127
|
-
- -
|
128
|
-
- !ruby/object:Gem::Version
|
129
|
-
segments:
|
130
|
-
- 1
|
131
|
-
- 9
|
132
|
-
- 2
|
100
|
+
requirements:
|
101
|
+
- - ! '>='
|
102
|
+
- !ruby/object:Gem::Version
|
133
103
|
version: 1.9.2
|
134
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
104
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
135
105
|
none: false
|
136
|
-
requirements:
|
137
|
-
- -
|
138
|
-
- !ruby/object:Gem::Version
|
139
|
-
segments:
|
140
|
-
- 1
|
141
|
-
- 3
|
142
|
-
- 6
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
143
109
|
version: 1.3.6
|
144
110
|
requirements: []
|
145
|
-
|
146
111
|
rubyforge_project:
|
147
|
-
rubygems_version: 1.
|
112
|
+
rubygems_version: 1.8.23
|
148
113
|
signing_key:
|
149
114
|
specification_version: 3
|
150
115
|
summary: A library for managing IIS configuration settings.
|
151
116
|
test_files: []
|
152
|
-
|
data/doc/Application.html
DELETED
@@ -1,177 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="IBM437"?>
|
2
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
3
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
4
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
5
|
-
<head>
|
6
|
-
<meta content="text/html; charset=IBM437" http-equiv="Content-Type" />
|
7
|
-
|
8
|
-
<title>Class: Application</title>
|
9
|
-
|
10
|
-
<link rel="stylesheet" href="./rdoc.css" type="text/css" media="screen" />
|
11
|
-
|
12
|
-
<script src="./js/jquery.js" type="text/javascript"
|
13
|
-
charset="utf-8"></script>
|
14
|
-
<script src="./js/thickbox-compressed.js" type="text/javascript"
|
15
|
-
charset="utf-8"></script>
|
16
|
-
<script src="./js/quicksearch.js" type="text/javascript"
|
17
|
-
charset="utf-8"></script>
|
18
|
-
<script src="./js/darkfish.js" type="text/javascript"
|
19
|
-
charset="utf-8"></script>
|
20
|
-
|
21
|
-
</head>
|
22
|
-
<body class="class">
|
23
|
-
|
24
|
-
<div id="metadata">
|
25
|
-
<div id="home-metadata">
|
26
|
-
<div id="home-section" class="section">
|
27
|
-
<h3 class="section-header">
|
28
|
-
<a href="./index.html">Home</a>
|
29
|
-
<a href="./index.html#classes">Classes</a>
|
30
|
-
<a href="./index.html#methods">Methods</a>
|
31
|
-
</h3>
|
32
|
-
</div>
|
33
|
-
</div>
|
34
|
-
|
35
|
-
<div id="file-metadata">
|
36
|
-
<div id="file-list-section" class="section">
|
37
|
-
<h3 class="section-header">In Files</h3>
|
38
|
-
<div class="section-body">
|
39
|
-
<ul>
|
40
|
-
|
41
|
-
<li><a href="./lib/inetmgr/iis_object/application_rb.html?TB_iframe=true&height=550&width=785"
|
42
|
-
class="thickbox" title="lib/inetmgr/iis_object/application.rb">lib/inetmgr/iis_object/application.rb</a></li>
|
43
|
-
|
44
|
-
</ul>
|
45
|
-
</div>
|
46
|
-
</div>
|
47
|
-
|
48
|
-
|
49
|
-
</div>
|
50
|
-
|
51
|
-
<div id="class-metadata">
|
52
|
-
|
53
|
-
<!-- Parent Class -->
|
54
|
-
|
55
|
-
<div id="parent-class-section" class="section">
|
56
|
-
<h3 class="section-header">Parent</h3>
|
57
|
-
|
58
|
-
<p class="link"><a href="IisObject.html">IisObject</a></p>
|
59
|
-
|
60
|
-
</div>
|
61
|
-
|
62
|
-
|
63
|
-
<!-- Namespace Contents -->
|
64
|
-
|
65
|
-
|
66
|
-
<!-- Method Quickref -->
|
67
|
-
|
68
|
-
|
69
|
-
<!-- Included Modules -->
|
70
|
-
|
71
|
-
</div>
|
72
|
-
|
73
|
-
<div id="project-metadata">
|
74
|
-
|
75
|
-
|
76
|
-
<div id="fileindex-section" class="section project-section">
|
77
|
-
<h3 class="section-header">Files</h3>
|
78
|
-
<ul>
|
79
|
-
|
80
|
-
<li class="file"><a href="./README_rdoc.html">README.rdoc</a></li>
|
81
|
-
|
82
|
-
<li class="file"><a href="./RELEASE-NOTES_rdoc.html">RELEASE-NOTES.rdoc</a></li>
|
83
|
-
|
84
|
-
<li class="file"><a href="./nbproject/private/rake-d_txt.html">rake-d.txt</a></li>
|
85
|
-
|
86
|
-
</ul>
|
87
|
-
</div>
|
88
|
-
|
89
|
-
|
90
|
-
<div id="classindex-section" class="section project-section">
|
91
|
-
<h3 class="section-header">Class/Module Index
|
92
|
-
<span class="search-toggle"><img src="./images/find.png"
|
93
|
-
height="16" width="16" alt="[+]"
|
94
|
-
title="show/hide quicksearch" /></span></h3>
|
95
|
-
<form action="#" method="get" accept-charset="utf-8" class="initially-hidden">
|
96
|
-
<fieldset>
|
97
|
-
<legend>Quicksearch</legend>
|
98
|
-
<input type="text" name="quicksearch" value=""
|
99
|
-
class="quicksearch-field" />
|
100
|
-
</fieldset>
|
101
|
-
</form>
|
102
|
-
|
103
|
-
<ul class="link-list">
|
104
|
-
|
105
|
-
<li><a href="./Inetmgr.html">Inetmgr</a></li>
|
106
|
-
|
107
|
-
<li><a href="./Inetmgr/InetmgrTask.html">Inetmgr::InetmgrTask</a></li>
|
108
|
-
|
109
|
-
<li><a href="./Application.html">Application</a></li>
|
110
|
-
|
111
|
-
<li><a href="./ApplicationPool.html">ApplicationPool</a></li>
|
112
|
-
|
113
|
-
<li><a href="./AutoStartProvider.html">AutoStartProvider</a></li>
|
114
|
-
|
115
|
-
<li><a href="./BindingInformation.html">BindingInformation</a></li>
|
116
|
-
|
117
|
-
<li><a href="./Configuration.html">Configuration</a></li>
|
118
|
-
|
119
|
-
<li><a href="./IisConfiguration.html">IisConfiguration</a></li>
|
120
|
-
|
121
|
-
<li><a href="./IisObject.html">IisObject</a></li>
|
122
|
-
|
123
|
-
<li><a href="./IisObjectCollection.html">IisObjectCollection</a></li>
|
124
|
-
|
125
|
-
<li><a href="./Object.html">Object</a></li>
|
126
|
-
|
127
|
-
<li><a href="./PeriodicRestart.html">PeriodicRestart</a></li>
|
128
|
-
|
129
|
-
<li><a href="./ProcessModel.html">ProcessModel</a></li>
|
130
|
-
|
131
|
-
<li><a href="./RSpecExtensions.html">RSpecExtensions</a></li>
|
132
|
-
|
133
|
-
<li><a href="./Recycling.html">Recycling</a></li>
|
134
|
-
|
135
|
-
<li><a href="./Site.html">Site</a></li>
|
136
|
-
|
137
|
-
<li><a href="./SiteConfiguration.html">SiteConfiguration</a></li>
|
138
|
-
|
139
|
-
<li><a href="./SiteLimit.html">SiteLimit</a></li>
|
140
|
-
|
141
|
-
<li><a href="./VirtualDirectory.html">VirtualDirectory</a></li>
|
142
|
-
|
143
|
-
</ul>
|
144
|
-
<div id="no-class-search-results" style="display: none;">No matching classes.</div>
|
145
|
-
</div>
|
146
|
-
|
147
|
-
|
148
|
-
</div>
|
149
|
-
</div>
|
150
|
-
|
151
|
-
<div id="documentation">
|
152
|
-
<h1 class="class">Application</h1>
|
153
|
-
|
154
|
-
<div id="description">
|
155
|
-
|
156
|
-
</div>
|
157
|
-
|
158
|
-
<!-- Constants -->
|
159
|
-
|
160
|
-
|
161
|
-
<!-- Attributes -->
|
162
|
-
|
163
|
-
|
164
|
-
<!-- Methods -->
|
165
|
-
|
166
|
-
|
167
|
-
</div>
|
168
|
-
|
169
|
-
<div id="validator-badges">
|
170
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
171
|
-
<p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish
|
172
|
-
Rdoc Generator</a> 2</small>.</p>
|
173
|
-
</div>
|
174
|
-
|
175
|
-
</body>
|
176
|
-
</html>
|
177
|
-
|