inetmgr 0.4.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.
Files changed (90) hide show
  1. data/README.rdoc +159 -0
  2. data/RELEASE-NOTES.rdoc +35 -0
  3. data/doc/Application.html +177 -0
  4. data/doc/ApplicationPool.html +177 -0
  5. data/doc/AutoStartProvider.html +177 -0
  6. data/doc/BindingInformation.html +349 -0
  7. data/doc/Configuration.html +283 -0
  8. data/doc/IisConfiguration.html +383 -0
  9. data/doc/IisObject.html +484 -0
  10. data/doc/IisObjectCollection.html +534 -0
  11. data/doc/Inetmgr.html +179 -0
  12. data/doc/Inetmgr/InetmgrTask.html +338 -0
  13. data/doc/Object.html +254 -0
  14. data/doc/PeriodicRestart.html +177 -0
  15. data/doc/ProcessModel.html +192 -0
  16. data/doc/README_rdoc.html +114 -0
  17. data/doc/RSpecExtensions.html +257 -0
  18. data/doc/Recycling.html +177 -0
  19. data/doc/Site.html +228 -0
  20. data/doc/SiteConfiguration.html +269 -0
  21. data/doc/SiteLimit.html +177 -0
  22. data/doc/VirtualDirectory.html +177 -0
  23. data/doc/images/brick.png +0 -0
  24. data/doc/images/brick_link.png +0 -0
  25. data/doc/images/bug.png +0 -0
  26. data/doc/images/bullet_black.png +0 -0
  27. data/doc/images/bullet_toggle_minus.png +0 -0
  28. data/doc/images/bullet_toggle_plus.png +0 -0
  29. data/doc/images/date.png +0 -0
  30. data/doc/images/find.png +0 -0
  31. data/doc/images/loadingAnimation.gif +0 -0
  32. data/doc/images/macFFBgHack.png +0 -0
  33. data/doc/images/package.png +0 -0
  34. data/doc/images/page_green.png +0 -0
  35. data/doc/images/page_white_text.png +0 -0
  36. data/doc/images/page_white_width.png +0 -0
  37. data/doc/images/plugin.png +0 -0
  38. data/doc/images/ruby.png +0 -0
  39. data/doc/images/tag_green.png +0 -0
  40. data/doc/images/wrench.png +0 -0
  41. data/doc/images/wrench_orange.png +0 -0
  42. data/doc/images/zoom.png +0 -0
  43. data/doc/index.html +166 -0
  44. data/doc/js/darkfish.js +116 -0
  45. data/doc/js/jquery.js +32 -0
  46. data/doc/js/quicksearch.js +114 -0
  47. data/doc/js/thickbox-compressed.js +10 -0
  48. data/doc/rdoc.css +706 -0
  49. data/inetmgr.gemspec +21 -0
  50. data/lib/inetmgr.rb +30 -0
  51. data/lib/inetmgr/configuration.rb +23 -0
  52. data/lib/inetmgr/iis_configuration.rb +36 -0
  53. data/lib/inetmgr/iis_object.rb +85 -0
  54. data/lib/inetmgr/iis_object/application.rb +11 -0
  55. data/lib/inetmgr/iis_object/application_pool.rb +19 -0
  56. data/lib/inetmgr/iis_object/auto_start_provider.rb +3 -0
  57. data/lib/inetmgr/iis_object/binding_information.rb +26 -0
  58. data/lib/inetmgr/iis_object/periodic_restart.rb +3 -0
  59. data/lib/inetmgr/iis_object/process_model.rb +18 -0
  60. data/lib/inetmgr/iis_object/recycling.rb +5 -0
  61. data/lib/inetmgr/iis_object/site.rb +24 -0
  62. data/lib/inetmgr/iis_object/site_limit.rb +7 -0
  63. data/lib/inetmgr/iis_object/virtual_directory.rb +5 -0
  64. data/lib/inetmgr/iis_object_collection.rb +51 -0
  65. data/lib/inetmgr/site_configuration.rb +34 -0
  66. data/lib/rake/inetmgrtask.rb +74 -0
  67. data/lib/string.rb +5 -0
  68. data/nbproject/private/config.properties +0 -0
  69. data/nbproject/private/private.properties +4 -0
  70. data/nbproject/private/private.xml +4 -0
  71. data/nbproject/private/rake-d.txt +2 -0
  72. data/nbproject/project.properties +10 -0
  73. data/nbproject/project.xml +16 -0
  74. data/spec/application_pool_spec.rb +120 -0
  75. data/spec/application_spec.rb +38 -0
  76. data/spec/auto_start_provider_spec.rb +25 -0
  77. data/spec/bingin_information_spec.rb +21 -0
  78. data/spec/iis_configuration_spec.rb +35 -0
  79. data/spec/site_app_settings_spec.rb +61 -0
  80. data/spec/site_configuration_spec.rb +24 -0
  81. data/spec/site_connection_strings_spec.rb +17 -0
  82. data/spec/site_spec.rb +34 -0
  83. data/spec/site_validation_settings_spec.rb +18 -0
  84. data/spec/spec_env.rb +22 -0
  85. data/spec/string_spec.rb +16 -0
  86. data/spec/virtual_directory_spec.rb +1 -0
  87. data/test/create_site.rb +26 -0
  88. data/test/print_iis_config.rb +56 -0
  89. data/test/rakefile.rb +27 -0
  90. metadata +156 -0
@@ -0,0 +1,159 @@
1
+ = About inetmgr
2
+
3
+ inetmgr is primarily a library that helps automate the configuration of IIS (7+).
4
+ It is built on top of the standard IIS configuration API (http://www.iis.net/ConfigReference)
5
+ but provides a more elegant, ruby-like interface which, typically, can be used
6
+ from your rake tasks.
7
+
8
+ The inetmgr library lets you inspect add/remove and alter various IIS objects
9
+ like sites, application pools, bindings, virtual directories, etc.
10
+
11
+ == How to install
12
+
13
+ Get the gem:
14
+
15
+ gem install inetmgr
16
+
17
+ That should do the trick. Another option would be forking the source from the
18
+ github repository:
19
+
20
+ git clone git@github.com:typesafe/inetmgr.git inetmgr
21
+
22
+ == How to use
23
+
24
+ *_Notes_*: inetmgr requires a Windows machine (well, duh) with IIS7+ and depends
25
+ on WIN32OLE (obviously), which should be available by default. Inetmgr has only
26
+ been tested with Ruby version 1.9.2 (on a Windows 7 box).
27
+
28
+ === Create a new site
29
+
30
+ The following code creates a new web site with an http and https binding. Note
31
+ the use of the +configure+ method to ensure the changes get committed.
32
+
33
+ require 'inetmgr'
34
+
35
+ IisConfiguration.configure do |cfg|
36
+ cfg.get_sites.add do |site|
37
+ site.name = "Contoso"
38
+ site.auto_start = true
39
+ site.bindings.add do |b|
40
+ b.protocol = "http"
41
+ b.binding_information = "*:80:www.******.be"
42
+ end
43
+
44
+ site.bindings.add do |b|
45
+ b.protocol = "https"
46
+ b.binding_information = "*:443:"
47
+ b.add_ssl_certificate "e2564766bad7ebec8cf6899caa2a27c6391c4f19", "MY"
48
+ end
49
+
50
+ site.applications.add do |app|
51
+ app.path = "/"
52
+ app.virtual_directories.add do |dir|
53
+ dir.path = "/"
54
+ dir.physical_path = "D:\\sites\\www.******.be"
55
+ end
56
+ end
57
+ end
58
+ end
59
+
60
+ === Print the currently configured pools
61
+
62
+ This code sample print the currently configured pools. Note the use of a newed
63
+ configuration instance (since were not applying any changes).
64
+
65
+ require 'inetmgr'
66
+ cfg = IisConfiguration.new
67
+ pools = cfg.get_application_pools
68
+
69
+ pools.each do |p|
70
+ puts "\r\nPOOL: #{p.name}"
71
+ puts "----"
72
+ puts " - auto_start:\t #{p.auto_start}"
73
+ puts " - always_running:\t #{p.always_running}"
74
+ puts " - CLRConfigFile:\t #{p.CLRConfigFile}" # not yet mapped
75
+ puts " - enable_32bit:\t #{p.enable_32bit}"
76
+ puts " - enableConfigurationOverride:\t #{p.enableConfigurationOverride}" # not yet mapped
77
+ puts " - classic_pipeline:\t #{p.classic_pipeline}"
78
+ puts " - runtime_version:\t #{p.runtime_version}"
79
+ puts " - passAnonymousToken:\t #{p.passAnonymousToken}"
80
+
81
+ puts "\r\n - process_model:"
82
+ puts " - identity_type: #{p.process_model.identity_type}"
83
+ puts " - idleTimeout: #{p.process_model.idleTimeout}"
84
+ puts " - logon_type: #{p.process_model.logon_type}"
85
+ puts " - user_name '#{p.process_model.user_name}'"
86
+ puts " - password '#{p.process_model.password.gsub(/./, '*')}'"
87
+ puts " - load_user_profile: #{p.process_model.load_user_profile}"
88
+
89
+ puts "\r\n - recycling:"
90
+ puts " - logEventOnRecycle: #{p.recycling.logEventOnRecycle}"
91
+ puts " - periodic_restart.schedulecount: #{p.recycling.periodic_restart.schedule.size}"
92
+ puts "----------------------------"
93
+ end
94
+
95
+ The output of the above code would be something like the following:
96
+
97
+ POOL: static.******.be
98
+ ----
99
+ - auto_start: false
100
+ - always_running: false
101
+ - CLRConfigFile:
102
+ - enable_32bit: false
103
+ - enableConfigurationOverride: true
104
+ - classic_pipeline: false
105
+ - runtime_version:
106
+ - passAnonymousToken: true
107
+
108
+ - process_model:
109
+ - identity_type: application_pool_identity
110
+ - idleTimeout: 12000000000
111
+ - logon_type: batch
112
+ - user_name ''
113
+ - password ''
114
+ - load_user_profile: false
115
+
116
+ - recycling:
117
+ - logEventOnRecycle: 137
118
+ - periodic_restart.schedulecount: 0
119
+ ----------------------------
120
+
121
+ POOL: www.******.be
122
+ ----
123
+ - auto_start: false
124
+ - always_running: true
125
+ - CLRConfigFile:
126
+ - enable_32bit: false
127
+ - enableConfigurationOverride: true
128
+ - classic_pipeline: false
129
+ - runtime_version: v4.0
130
+ - passAnonymousToken: true
131
+
132
+ - process_model:
133
+ - identity_type: specific_user
134
+ - idleTimeout: 12000000000
135
+ - logon_type: batch
136
+ - user_name 'gino'
137
+ - password '*********'
138
+ - load_user_profile: false
139
+
140
+ - recycling:
141
+ - logEventOnRecycle: 137
142
+ - periodic_restart.schedulecount: 0
143
+ ----------------------------
144
+
145
+ == License
146
+
147
+ Copyright (c) 2010 Gino Heyman.
148
+
149
+ Licensed under the Apache License, Version 2.0 (the "License");
150
+ you may not use this file except in compliance with the License.
151
+ You may obtain a copy of the License at
152
+
153
+ http://www.apache.org/licenses/LICENSE-2.0
154
+
155
+ Unless required by applicable law or agreed to in writing, software
156
+ distributed under the License is distributed on an "AS IS" BASIS,
157
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
158
+ See the License for the specific language governing permissions and
159
+ limitations under the License.
@@ -0,0 +1,35 @@
1
+ = inetmgr Release Notes
2
+
3
+ == Latest Version (0.3.0)
4
+
5
+ - more property mappings for ApplicationPool & Site.
6
+ - Added support for site-level configuration (only appSettings, for now).
7
+
8
+ == Previous Versions
9
+
10
+ === 0.2.1
11
+
12
+ - Added static configure method to IisConfiguratin to support atomic changes:
13
+
14
+ IisConfiguration.configure do |cfg|
15
+ #use cfg param to configure
16
+ end
17
+
18
+ - Added some RDoc
19
+ - Added application_pool prop to Application (alias for applicationPool)
20
+ - Added logon_type prop to ProcessModel (alias for logonType)
21
+ - Added physical_path to VirtualDirectory (alias for physicalPath)
22
+ - Extended SSL support to BindingInformation
23
+
24
+ === 0.2.0
25
+
26
+ Initial version with support for configuring the following IIS/Machine level objects:
27
+
28
+ - ApplicationPool
29
+ - Application
30
+ - AutoStartProvider
31
+ - Site
32
+ - ProcessModel
33
+ - PeriodicRestart
34
+ - Recycling
35
+
@@ -0,0 +1,177 @@
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&amp;height=550&amp;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
+
@@ -0,0 +1,177 @@
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: ApplicationPool</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_pool_rb.html?TB_iframe=true&amp;height=550&amp;width=785"
42
+ class="thickbox" title="lib/inetmgr/iis_object/application_pool.rb">lib/inetmgr/iis_object/application_pool.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">ApplicationPool</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
+