poolparty 1.2.2 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1244) hide show
  1. data/README.rdoc +202 -0
  2. data/Rakefile +5 -19
  3. data/VERSION.yml +2 -2
  4. data/bin/cloud +49 -47
  5. data/bin/cloud-bootstrap +21 -22
  6. data/bin/cloud-compile +33 -0
  7. data/bin/cloud-configure +25 -33
  8. data/bin/cloud-console +33 -9
  9. data/bin/cloud-contract +31 -11
  10. data/bin/cloud-expand +30 -18
  11. data/bin/cloud-list +41 -15
  12. data/bin/cloud-osxcopy +21 -12
  13. data/bin/cloud-show +31 -21
  14. data/bin/cloud-ssh +20 -15
  15. data/bin/cloud-start +40 -20
  16. data/bin/cloud-terminate +28 -21
  17. data/bin/cloud-thrift +77 -0
  18. data/bin/cloud-verify +36 -28
  19. data/bin/install-poolparty +11 -207
  20. data/config/jeweler.rb +11 -13
  21. data/examples/basic.rb +19 -9
  22. data/examples/custom_bootstrap.sh +7 -0
  23. data/examples/eucalyptus.rb +63 -0
  24. data/examples/eucalyptus_test_run.sh +31 -0
  25. data/examples/knock.sh +27 -0
  26. data/examples/monitored_cloud.rb +22 -0
  27. data/examples/simple.rb +17 -0
  28. data/examples/ssh_garden.rb +21 -0
  29. data/examples/thrift/erlang/Emakefile +5 -0
  30. data/examples/thrift/erlang/Makefile +26 -0
  31. data/examples/thrift/erlang/deps/thrift/COPYING +24 -0
  32. data/examples/thrift/erlang/deps/thrift/LICENSE +24 -0
  33. data/examples/thrift/erlang/deps/thrift/Makefile +18 -0
  34. data/examples/thrift/erlang/deps/thrift/README +31 -0
  35. data/examples/thrift/erlang/deps/thrift/build/beamver +59 -0
  36. data/examples/thrift/erlang/deps/thrift/build/buildtargets.mk +14 -0
  37. data/examples/thrift/erlang/deps/thrift/build/colors.mk +24 -0
  38. data/examples/thrift/erlang/deps/thrift/build/docs.mk +12 -0
  39. data/examples/thrift/erlang/deps/thrift/build/mime.types +98 -0
  40. data/examples/thrift/erlang/deps/thrift/build/otp.mk +146 -0
  41. data/examples/thrift/erlang/deps/thrift/build/otp_subdir.mk +85 -0
  42. data/examples/thrift/erlang/deps/thrift/build/raw_test.mk +29 -0
  43. data/examples/thrift/erlang/deps/thrift/ebin/thrift.app +44 -0
  44. data/examples/thrift/erlang/deps/thrift/ebin/thrift.appup +1 -0
  45. data/examples/thrift/erlang/deps/thrift/include/thrift_constants.hrl +40 -0
  46. data/examples/thrift/erlang/deps/thrift/include/thrift_protocol.hrl +12 -0
  47. data/examples/thrift/erlang/deps/thrift/src/Makefile +116 -0
  48. data/examples/thrift/erlang/deps/thrift/src/test_handler.erl +7 -0
  49. data/examples/thrift/erlang/deps/thrift/src/test_service.erl +10 -0
  50. data/examples/thrift/erlang/deps/thrift/src/thrift.app.src +44 -0
  51. data/examples/thrift/erlang/deps/thrift/src/thrift.appup.src +1 -0
  52. data/examples/thrift/erlang/deps/thrift/src/thrift_app.erl +55 -0
  53. data/examples/thrift/erlang/deps/thrift/src/thrift_base64_transport.erl +45 -0
  54. data/examples/thrift/erlang/deps/thrift/src/thrift_binary_protocol.erl +318 -0
  55. data/examples/thrift/erlang/deps/thrift/src/thrift_buffered_transport.erl +168 -0
  56. data/examples/thrift/erlang/deps/thrift/src/thrift_client.erl +328 -0
  57. data/examples/thrift/erlang/deps/thrift/src/thrift_disk_log_transport.erl +106 -0
  58. data/examples/thrift/erlang/deps/thrift/src/thrift_file_transport.erl +69 -0
  59. data/examples/thrift/erlang/deps/thrift/src/thrift_framed_transport.erl +196 -0
  60. data/examples/thrift/erlang/deps/thrift/src/thrift_http_transport.erl +169 -0
  61. data/examples/thrift/erlang/deps/thrift/src/thrift_processor.erl +174 -0
  62. data/examples/thrift/erlang/deps/thrift/src/thrift_protocol.erl +326 -0
  63. data/examples/thrift/erlang/deps/thrift/src/thrift_server.erl +171 -0
  64. data/examples/thrift/erlang/deps/thrift/src/thrift_service.erl +6 -0
  65. data/examples/thrift/erlang/deps/thrift/src/thrift_socket_server.erl +245 -0
  66. data/examples/thrift/erlang/deps/thrift/src/thrift_socket_transport.erl +100 -0
  67. data/examples/thrift/erlang/deps/thrift/src/thrift_sup.erl +53 -0
  68. data/examples/thrift/erlang/deps/thrift/src/thrift_transport.erl +38 -0
  69. data/examples/thrift/erlang/deps/thrift/vsn.mk +1 -0
  70. data/examples/thrift/erlang/include/commandInterface_thrift.hrl +5 -0
  71. data/examples/thrift/erlang/include/poolparty_constants.hrl +9 -0
  72. data/examples/thrift/erlang/include/poolparty_types.hrl +8 -0
  73. data/examples/thrift/erlang/src/commandInterface_thrift.erl +29 -0
  74. data/examples/thrift/erlang/src/poolparty_types.erl +30 -0
  75. data/examples/thrift/erlang/src/thrift_example.erl +32 -0
  76. data/examples/thrift/thrift_example.py +28 -0
  77. data/examples/thrift/thrift_example.rb +36 -0
  78. data/lib/cloud_providers/cloud_provider.rb +85 -0
  79. data/lib/cloud_providers/cloud_provider_instance.rb +274 -0
  80. data/lib/cloud_providers/connections.rb +99 -0
  81. data/lib/cloud_providers/ec2/ec2.rb +197 -0
  82. data/lib/cloud_providers/ec2/ec2_helpers.rb +45 -0
  83. data/lib/cloud_providers/ec2/ec2_instance.rb +120 -0
  84. data/lib/cloud_providers/ec2/ec2_response.rb +79 -0
  85. data/lib/cloud_providers/ssh/ssh.rb +68 -0
  86. data/lib/cloud_providers/ssh/ssh_instance.rb +41 -0
  87. data/lib/cloud_providers/vmware/vmware.rb +127 -0
  88. data/lib/cloud_providers/vmware/vmware_instance.rb +56 -0
  89. data/lib/cloud_providers.rb +19 -0
  90. data/lib/core/array.rb +54 -0
  91. data/lib/core/hash.rb +80 -0
  92. data/lib/core/integer.rb +11 -0
  93. data/lib/core/module.rb +14 -0
  94. data/lib/core/object.rb +92 -0
  95. data/lib/core/proc.rb +55 -0
  96. data/lib/core/string.rb +150 -0
  97. data/lib/core/symbol.rb +29 -0
  98. data/lib/core/time.rb +62 -0
  99. data/lib/dependency_resolver.rb +11 -0
  100. data/lib/dependency_resolvers/base.rb +122 -0
  101. data/lib/dependency_resolvers/chef/resources/chef_attributes_file.rb +51 -0
  102. data/lib/dependency_resolvers/chef/resources/chef_recipe.rb +51 -0
  103. data/lib/dependency_resolvers/chef/resources/http_request.rb +39 -0
  104. data/lib/dependency_resolvers/chef/resources/remote_directory.rb +54 -0
  105. data/lib/dependency_resolvers/chef/resources/remote_file.rb +69 -0
  106. data/lib/dependency_resolvers/chef/resources/route.rb +52 -0
  107. data/lib/dependency_resolvers/chef/resources/script.rb +62 -0
  108. data/lib/dependency_resolvers/chef.rb +237 -0
  109. data/lib/dependency_resolvers/proxy_object.rb +90 -0
  110. data/lib/keypair.rb +93 -0
  111. data/lib/mixins/askable.rb +154 -0
  112. data/lib/mixins/callbacks.rb +56 -0
  113. data/lib/mixins/delayed.rb +65 -0
  114. data/lib/mixins/pinger.rb +31 -0
  115. data/lib/mixins/printing.rb +35 -0
  116. data/lib/mixins/searchable_paths.rb +87 -0
  117. data/lib/poolparty/base.rb +232 -0
  118. data/lib/poolparty/cloud.rb +246 -0
  119. data/lib/poolparty/default.rb +32 -0
  120. data/lib/poolparty/dsl_base.rb +36 -0
  121. data/lib/poolparty/installer.rb +107 -0
  122. data/lib/poolparty/installers/ec2.rb +30 -0
  123. data/lib/poolparty/installers/vmware.rb +149 -0
  124. data/lib/poolparty/monitor.rb +61 -0
  125. data/lib/poolparty/plugin.rb +12 -0
  126. data/lib/poolparty/plugins/apache.rb +204 -0
  127. data/lib/poolparty/plugins/apache2/apache2.conf.erb +630 -0
  128. data/lib/poolparty/plugins/apache2/base.conf.erb +171 -0
  129. data/lib/poolparty/plugins/apache2/default-site.conf.erb +41 -0
  130. data/lib/poolparty/plugins/apache2/passenger_site.rb +83 -0
  131. data/lib/poolparty/plugins/apache2/php5.rb +41 -0
  132. data/lib/poolparty/plugins/apache2/virtual_host.rb +59 -0
  133. data/lib/poolparty/plugins/git/git_repository.rb +83 -0
  134. data/lib/poolparty/plugins/git.rb +12 -60
  135. data/lib/poolparty/plugins/rails/app.rb +29 -0
  136. data/lib/poolparty/plugins/rails.rb +25 -0
  137. data/lib/poolparty/pool.rb +154 -0
  138. data/lib/poolparty/pool_party_error.rb +19 -0
  139. data/lib/poolparty/pool_party_log.rb +47 -0
  140. data/lib/poolparty/resource.rb +279 -0
  141. data/lib/poolparty/resources/conditional.rb +65 -0
  142. data/lib/poolparty/resources/cron.rb +33 -20
  143. data/lib/poolparty/resources/directory.rb +28 -14
  144. data/lib/poolparty/resources/exec.rb +35 -21
  145. data/lib/poolparty/resources/file.rb +39 -31
  146. data/lib/poolparty/resources/gem_package.rb +55 -0
  147. data/lib/poolparty/resources/group.rb +46 -0
  148. data/lib/poolparty/resources/line.rb +50 -0
  149. data/lib/poolparty/resources/link.rb +49 -0
  150. data/lib/poolparty/resources/mount.rb +23 -11
  151. data/lib/poolparty/resources/package.rb +25 -11
  152. data/lib/poolparty/resources/service.rb +29 -12
  153. data/lib/poolparty/resources/user.rb +56 -6
  154. data/lib/poolparty/resources/variable.rb +29 -3
  155. data/lib/poolparty.rb +52 -126
  156. data/lib/proto/command_interface_handler.rb +31 -0
  157. data/lib/proto/gen-erl/commandInterface_thrift.erl +29 -0
  158. data/lib/proto/gen-erl/commandInterface_thrift.hrl +5 -0
  159. data/lib/proto/gen-erl/poolparty_constants.hrl +9 -0
  160. data/lib/proto/gen-erl/poolparty_types.erl +30 -0
  161. data/lib/proto/gen-erl/poolparty_types.hrl +8 -0
  162. data/lib/proto/gen-py/cloudthrift/CommandInterface-remote +79 -0
  163. data/lib/proto/gen-py/cloudthrift/CommandInterface.py +251 -0
  164. data/lib/proto/gen-py/cloudthrift/CommandInterface.pyc +0 -0
  165. data/lib/proto/gen-py/cloudthrift/__init__.py +1 -0
  166. data/lib/proto/gen-py/cloudthrift/__init__.pyc +0 -0
  167. data/lib/proto/gen-py/cloudthrift/constants.py +9 -0
  168. data/lib/proto/gen-py/cloudthrift/constants.pyc +0 -0
  169. data/lib/proto/gen-py/cloudthrift/ttypes.py +160 -0
  170. data/lib/proto/gen-py/cloudthrift/ttypes.pyc +0 -0
  171. data/lib/proto/gen-py/thrift/TSCons.py +33 -0
  172. data/lib/proto/gen-py/thrift/Thrift.py +123 -0
  173. data/lib/proto/gen-py/thrift/Thrift.pyc +0 -0
  174. data/lib/proto/gen-py/thrift/__init__.py +20 -0
  175. data/lib/proto/gen-py/thrift/__init__.pyc +0 -0
  176. data/lib/proto/gen-py/thrift/protocol/TBinaryProtocol.py +259 -0
  177. data/lib/proto/gen-py/thrift/protocol/TBinaryProtocol.pyc +0 -0
  178. data/lib/proto/gen-py/thrift/protocol/TProtocol.py +205 -0
  179. data/lib/proto/gen-py/thrift/protocol/TProtocol.pyc +0 -0
  180. data/lib/proto/gen-py/thrift/protocol/__init__.py +20 -0
  181. data/lib/proto/gen-py/thrift/protocol/__init__.pyc +0 -0
  182. data/lib/proto/gen-py/thrift/protocol/fastbinary.c +1203 -0
  183. data/lib/proto/gen-py/thrift/server/THttpServer.py +63 -0
  184. data/lib/proto/gen-py/thrift/server/TNonblockingServer.py +309 -0
  185. data/lib/proto/gen-py/thrift/server/TServer.py +270 -0
  186. data/lib/proto/gen-py/thrift/server/__init__.py +20 -0
  187. data/lib/proto/gen-py/thrift/transport/THttpClient.py +100 -0
  188. data/lib/proto/gen-py/thrift/transport/TSocket.py +149 -0
  189. data/lib/proto/gen-py/thrift/transport/TSocket.pyc +0 -0
  190. data/lib/proto/gen-py/thrift/transport/TTransport.py +326 -0
  191. data/lib/proto/gen-py/thrift/transport/TTransport.pyc +0 -0
  192. data/lib/proto/gen-py/thrift/transport/TTwisted.py +181 -0
  193. data/lib/proto/gen-py/thrift/transport/__init__.py +20 -0
  194. data/lib/proto/gen-py/thrift/transport/__init__.pyc +0 -0
  195. data/lib/proto/gen-rb/command_interface.rb +84 -0
  196. data/lib/proto/gen-rb/poolparty_constants.rb +10 -0
  197. data/lib/proto/gen-rb/poolparty_types.rb +45 -0
  198. data/lib/proto/poolparty.thrift +17 -0
  199. data/lib/provision/bootstrap_scripts/build_centos.sh +70 -0
  200. data/lib/provision/bootstrap_scripts/build_ubuntu.sh +75 -0
  201. data/lib/provision/bootstrap_scripts/determine_os.sh +21 -0
  202. data/lib/provision/bootstrapper.rb +44 -0
  203. data/lib/provision/configure_scripts/configure_centos.erb +7 -0
  204. data/lib/provision/configure_scripts/configure_ubuntu.erb +7 -0
  205. data/tasks/development.rake +6 -6
  206. data/tasks/poolparty.rake +41 -1
  207. data/tasks/test.rake +40 -0
  208. data/test/fixtures/bad_perms_test_key +27 -0
  209. data/test/fixtures/chef/recipes/sudo/attributes/sudoers.rb +30 -0
  210. data/test/fixtures/chef/recipes/sudo/recipes/default.rb +33 -0
  211. data/test/fixtures/chef/recipes/sudo/templates/default/sudoers.erb +22 -0
  212. data/test/fixtures/clouds/fake_clouds.rb +9 -0
  213. data/test/fixtures/clouds/simple_cloud.rb +13 -0
  214. data/test/fixtures/clouds/ssh_cloud.rb +11 -0
  215. data/test/fixtures/clouds/vmware_cloud.rb +16 -0
  216. data/test/fixtures/ec2/ec2-describe-instances_response_body.xml +70 -0
  217. data/test/fixtures/ec2/ec2-run-instances_response_body.xml +35 -0
  218. data/test/fixtures/ec2/ec2-terminate-instances_response_body.xml +16 -0
  219. data/test/fixtures/keys/test_key +27 -0
  220. data/test/fixtures/keys/test_pub_key +8 -0
  221. data/test/fixtures/resources/fake_plugin.rb +19 -0
  222. data/test/fixtures/resources/fake_resource.rb +18 -0
  223. data/test/fixtures/resources/random_proc_file.rb +7 -0
  224. data/test/fixtures/templates/apache_conf.erb +2 -0
  225. data/test/lib/cloud_providers/cloud_provider_instance_test.rb +68 -0
  226. data/test/lib/cloud_providers/cloud_provider_test.rb +25 -0
  227. data/test/lib/cloud_providers/connections_test.rb +71 -0
  228. data/test/lib/cloud_providers/ec2/ec2_helpers_test.rb +29 -0
  229. data/test/lib/cloud_providers/ec2/ec2_instance_test.rb +59 -0
  230. data/test/lib/cloud_providers/ec2/ec2_response_test.rb +41 -0
  231. data/test/lib/cloud_providers/ec2/ec2_test.rb +116 -0
  232. data/test/lib/cloud_providers/ssh/ssh_test.rb +61 -0
  233. data/test/lib/cloud_providers/vmware/vmware_test.rb +46 -0
  234. data/test/lib/core/array_test.rb +53 -0
  235. data/test/lib/core/hash_test.rb +41 -0
  236. data/test/lib/core/integer_test.rb +19 -0
  237. data/test/lib/core/module_test.rb +38 -0
  238. data/test/lib/core/object_test.rb +57 -0
  239. data/test/lib/core/proc_test.rb +26 -0
  240. data/test/lib/core/string_test.rb +73 -0
  241. data/test/lib/core/symbol_test.rb +26 -0
  242. data/test/lib/core/time_test.rb +51 -0
  243. data/test/lib/dependency_resolvers/base_test.rb +42 -0
  244. data/test/lib/dependency_resolvers/chef/resources/chef_recipe_test.rb +21 -0
  245. data/test/lib/dependency_resolvers/chef/resources/http_request_test.rb +29 -0
  246. data/test/lib/dependency_resolvers/chef/resources/remote_directory_test.rb +45 -0
  247. data/test/lib/dependency_resolvers/chef/resources/remote_file_test.rb +36 -0
  248. data/test/lib/dependency_resolvers/chef/resources/route_test.rb +37 -0
  249. data/test/lib/dependency_resolvers/chef/resources/script_test.rb +49 -0
  250. data/test/lib/dependency_resolvers/chef_test.rb +144 -0
  251. data/test/lib/dependency_resolvers/proxy_object_test.rb +75 -0
  252. data/test/lib/mixins/callbacks_test.rb +48 -0
  253. data/test/lib/mixins/delayed_test.rb +50 -0
  254. data/test/lib/mixins/searchable_paths_test.rb +83 -0
  255. data/test/lib/poolparty/base_test.rb +34 -0
  256. data/test/lib/poolparty/cloud_test.rb +139 -0
  257. data/test/lib/poolparty/default_test.rb +17 -0
  258. data/test/lib/poolparty/dsl_base_test.rb +30 -0
  259. data/test/lib/poolparty/installers/vmware_installer_test.rb +16 -0
  260. data/test/lib/poolparty/keypair_test.rb +42 -0
  261. data/test/lib/poolparty/monitor_test.rb +30 -0
  262. data/test/lib/poolparty/plugins/apache2/php5_test.rb +26 -0
  263. data/test/lib/poolparty/plugins/apache2/virtual_host_test.rb +28 -0
  264. data/test/lib/poolparty/plugins/apache_test.rb +35 -0
  265. data/test/lib/poolparty/pool_party_error_test.rb +20 -0
  266. data/test/lib/poolparty/pool_party_log_test.rb +17 -0
  267. data/test/lib/poolparty/pool_test.rb +26 -0
  268. data/test/lib/poolparty/resource_test.rb +145 -0
  269. data/test/lib/poolparty/resources/conditional_test.rb +49 -0
  270. data/test/lib/poolparty/resources/cron_test.rb +31 -0
  271. data/test/lib/poolparty/resources/directory_test.rb +21 -0
  272. data/test/lib/poolparty/resources/exec_test.rb +62 -0
  273. data/test/lib/poolparty/resources/file_test.rb +38 -0
  274. data/test/lib/poolparty/resources/group_test.rb +21 -0
  275. data/test/lib/poolparty/resources/line_test.rb +20 -0
  276. data/test/lib/poolparty/resources/link_test.rb +27 -0
  277. data/test/lib/poolparty/resources/mount_test.rb +32 -0
  278. data/test/lib/poolparty/resources/package_test.rb +28 -0
  279. data/test/lib/poolparty/resources/service_test.rb +31 -0
  280. data/test/lib/poolparty/resources/user_test.rb +33 -0
  281. data/test/lib/poolparty/resources/variable_test.rb +20 -0
  282. data/test/lib/provision/base_test.rb +16 -0
  283. data/test/lib/provision/bootstrapper_test.rb +44 -0
  284. data/test/test_helper.rb +25 -3
  285. data/test/test_methods.rb +72 -0
  286. data/vendor/gems/colors/README.rdoc +52 -0
  287. data/vendor/gems/colors/Rakefile +56 -0
  288. data/vendor/gems/colors/VERSION.yml +4 -0
  289. data/vendor/gems/colors/colors.gemspec +29 -0
  290. data/vendor/gems/colors/lib/colors.rb +45 -0
  291. data/vendor/gems/colors/test/colors_test.rb +26 -0
  292. data/vendor/gems/colors/test/test_helper.rb +10 -0
  293. data/vendor/gems/context/History.txt +10 -0
  294. data/vendor/gems/context/License.txt +20 -0
  295. data/vendor/gems/context/Manifest.txt +26 -0
  296. data/vendor/gems/context/PostInstall.txt +0 -0
  297. data/vendor/gems/context/README.rdoc +158 -0
  298. data/vendor/gems/context/Rakefile +4 -0
  299. data/vendor/gems/context/config/hoe.rb +73 -0
  300. data/vendor/gems/context/config/requirements.rb +15 -0
  301. data/vendor/gems/context/context.gemspec +44 -0
  302. data/vendor/gems/context/countloc.rb +65 -0
  303. data/vendor/gems/context/coverage/-Library-Ruby-Gems-1_8-gems-rcov-0_8_1_2_0-lib-rcov_rb.html +1598 -0
  304. data/vendor/gems/context/coverage/index.html +441 -0
  305. data/vendor/gems/context/coverage/lib-context-context_rb.html +669 -0
  306. data/vendor/gems/context/coverage/lib-context-core_ext-string_rb.html +627 -0
  307. data/vendor/gems/context/coverage/lib-context-lifecycle_rb.html +683 -0
  308. data/vendor/gems/context/coverage/lib-context-shared_behavior_rb.html +708 -0
  309. data/vendor/gems/context/coverage/lib-context-suite_rb.html +649 -0
  310. data/vendor/gems/context/coverage/lib-context-test_rb.html +637 -0
  311. data/vendor/gems/context/coverage/lib-context-version_rb.html +619 -0
  312. data/vendor/gems/context/coverage/lib-context_rb.html +623 -0
  313. data/vendor/gems/context/lib/context/context.rb +64 -0
  314. data/vendor/gems/context/lib/context/core_ext/rails_hacks.rb +10 -0
  315. data/vendor/gems/context/lib/context/core_ext/string.rb +17 -0
  316. data/vendor/gems/context/lib/context/lifecycle.rb +103 -0
  317. data/vendor/gems/context/lib/context/shared_behavior.rb +98 -0
  318. data/vendor/gems/context/lib/context/suite.rb +39 -0
  319. data/vendor/gems/context/lib/context/test.rb +37 -0
  320. data/vendor/gems/context/lib/context/version.rb +9 -0
  321. data/vendor/gems/context/lib/context.rb +19 -0
  322. data/vendor/gems/context/test/test_context.rb +57 -0
  323. data/vendor/gems/context/test/test_core_ext.rb +21 -0
  324. data/vendor/gems/context/test/test_helper.rb +2 -0
  325. data/vendor/gems/context/test/test_lifecycle.rb +224 -0
  326. data/vendor/gems/context/test/test_nested_lifecycle.rb +44 -0
  327. data/vendor/gems/context/test/test_shared.rb +116 -0
  328. data/vendor/gems/context/test/test_test.rb +23 -0
  329. data/vendor/gems/daemons/LICENSE +29 -0
  330. data/vendor/gems/daemons/README +223 -0
  331. data/vendor/gems/daemons/Rakefile +84 -0
  332. data/vendor/gems/daemons/Releases +126 -0
  333. data/vendor/gems/daemons/TODO +6 -0
  334. data/vendor/gems/daemons/examples/call/call.rb +56 -0
  335. data/vendor/gems/daemons/examples/call/call_monitor.rb +55 -0
  336. data/vendor/gems/daemons/examples/daemonize/daemonize.rb +20 -0
  337. data/vendor/gems/daemons/examples/run/ctrl_crash.rb +17 -0
  338. data/vendor/gems/daemons/examples/run/ctrl_exec.rb +16 -0
  339. data/vendor/gems/daemons/examples/run/ctrl_exit.rb +15 -0
  340. data/vendor/gems/daemons/examples/run/ctrl_keep_pid_files.rb +17 -0
  341. data/vendor/gems/daemons/examples/run/ctrl_monitor.rb +16 -0
  342. data/vendor/gems/daemons/examples/run/ctrl_multiple.rb +16 -0
  343. data/vendor/gems/daemons/examples/run/ctrl_normal.rb +12 -0
  344. data/vendor/gems/daemons/examples/run/ctrl_ontop.rb +16 -0
  345. data/vendor/gems/daemons/examples/run/ctrl_optionparser.rb +43 -0
  346. data/vendor/gems/daemons/examples/run/ctrl_proc.rb +25 -0
  347. data/vendor/gems/daemons/examples/run/ctrl_proc.rb.output +101 -0
  348. data/vendor/gems/daemons/examples/run/ctrl_proc_multiple.rb +22 -0
  349. data/vendor/gems/daemons/examples/run/ctrl_proc_multiple.rb.output +2 -0
  350. data/vendor/gems/daemons/examples/run/ctrl_proc_simple.rb +17 -0
  351. data/vendor/gems/daemons/examples/run/myserver.rb +12 -0
  352. data/vendor/gems/daemons/examples/run/myserver_crashing.rb +14 -0
  353. data/vendor/gems/daemons/examples/run/myserver_crashing.rb.output +30 -0
  354. data/vendor/gems/daemons/examples/run/myserver_exiting.rb +8 -0
  355. data/vendor/gems/daemons/lib/daemons/application.rb +372 -0
  356. data/vendor/gems/daemons/lib/daemons/application_group.rb +152 -0
  357. data/vendor/gems/daemons/lib/daemons/cmdline.rb +117 -0
  358. data/vendor/gems/daemons/lib/daemons/controller.rb +134 -0
  359. data/vendor/gems/daemons/lib/daemons/daemonize.rb +263 -0
  360. data/vendor/gems/daemons/lib/daemons/exceptions.rb +28 -0
  361. data/vendor/gems/daemons/lib/daemons/monitor.rb +127 -0
  362. data/vendor/gems/daemons/lib/daemons/pid.rb +101 -0
  363. data/vendor/gems/daemons/lib/daemons/pidfile.rb +111 -0
  364. data/vendor/gems/daemons/lib/daemons/pidmem.rb +10 -0
  365. data/vendor/gems/daemons/lib/daemons.rb +283 -0
  366. data/vendor/gems/daemons/setup.rb +1360 -0
  367. data/vendor/gems/dslify/LICENSE +20 -0
  368. data/vendor/gems/dslify/README.rdoc +33 -0
  369. data/vendor/gems/dslify/Rakefile +56 -56
  370. data/vendor/gems/dslify/VERSION.yml +4 -0
  371. data/vendor/gems/dslify/dslify.gemspec +9 -20
  372. data/vendor/gems/dslify/lib/dslify.rb +79 -5
  373. data/vendor/gems/dslify/test/dslify_test.rb +283 -0
  374. data/vendor/gems/dslify/test/test_helper.rb +7 -0
  375. data/vendor/gems/fakeweb/CHANGELOG +163 -0
  376. data/vendor/gems/fakeweb/LICENSE.txt +281 -0
  377. data/vendor/gems/fakeweb/README.rdoc +193 -0
  378. data/vendor/gems/fakeweb/Rakefile +76 -0
  379. data/vendor/gems/fakeweb/fakeweb.gemspec +21 -0
  380. data/vendor/gems/fakeweb/lib/fake_web/ext/net_http.rb +71 -0
  381. data/vendor/gems/fakeweb/lib/fake_web/registry.rb +103 -0
  382. data/vendor/gems/fakeweb/lib/fake_web/responder.rb +113 -0
  383. data/vendor/gems/fakeweb/lib/fake_web/response.rb +10 -0
  384. data/vendor/gems/fakeweb/lib/fake_web/stub_socket.rb +15 -0
  385. data/vendor/gems/fakeweb/lib/fake_web/utility.rb +22 -0
  386. data/vendor/gems/fakeweb/lib/fake_web.rb +172 -0
  387. data/vendor/gems/fakeweb/lib/fakeweb.rb +2 -0
  388. data/vendor/gems/fakeweb/test/fixtures/google_response_from_curl +12 -0
  389. data/vendor/gems/fakeweb/test/fixtures/google_response_with_transfer_encoding +17 -0
  390. data/vendor/gems/fakeweb/test/fixtures/google_response_without_transfer_encoding +11 -0
  391. data/vendor/gems/fakeweb/test/fixtures/test_example.txt +1 -0
  392. data/vendor/gems/fakeweb/test/fixtures/test_txt_file +3 -0
  393. data/vendor/gems/fakeweb/test/test_allow_net_connect.rb +85 -0
  394. data/vendor/gems/fakeweb/test/test_deprecations.rb +54 -0
  395. data/vendor/gems/fakeweb/test/test_fake_authentication.rb +92 -0
  396. data/vendor/gems/fakeweb/test/test_fake_web.rb +518 -0
  397. data/vendor/gems/fakeweb/test/test_fake_web_open_uri.rb +58 -0
  398. data/vendor/gems/fakeweb/test/test_helper.rb +74 -0
  399. data/vendor/gems/fakeweb/test/test_missing_open_uri.rb +25 -0
  400. data/vendor/gems/fakeweb/test/test_precedence.rb +51 -0
  401. data/vendor/gems/fakeweb/test/test_query_string.rb +45 -0
  402. data/vendor/gems/fakeweb/test/test_regexes.rb +103 -0
  403. data/vendor/gems/fakeweb/test/test_response_headers.rb +73 -0
  404. data/vendor/gems/fakeweb/test/test_trailing_slashes.rb +53 -0
  405. data/vendor/gems/fakeweb/test/test_utility.rb +70 -0
  406. data/vendor/gems/git-style-binaries/README.markdown +280 -0
  407. data/vendor/gems/git-style-binaries/Rakefile +64 -0
  408. data/vendor/gems/git-style-binaries/VERSION.yml +4 -0
  409. data/vendor/gems/git-style-binaries/doc/EXAMPLES +1 -0
  410. data/vendor/gems/git-style-binaries/doc/gsb-screencast.png +0 -0
  411. data/vendor/gems/git-style-binaries/doc/poolparty-binaries.screenplay +412 -0
  412. data/vendor/gems/git-style-binaries/git-style-binaries.gemspec +78 -0
  413. data/vendor/gems/git-style-binaries/lib/ext/colorize.rb +198 -0
  414. data/vendor/gems/git-style-binaries/lib/ext/core.rb +16 -0
  415. data/vendor/gems/git-style-binaries/lib/git-style-binary/autorunner.rb +21 -0
  416. data/vendor/gems/git-style-binaries/lib/git-style-binary/command.rb +204 -0
  417. data/vendor/gems/git-style-binaries/lib/git-style-binary/commands/help.rb +32 -0
  418. data/vendor/gems/git-style-binaries/lib/git-style-binary/helpers/name_resolver.rb +78 -0
  419. data/vendor/gems/git-style-binaries/lib/git-style-binary/helpers/pager.rb +37 -0
  420. data/vendor/gems/git-style-binaries/lib/git-style-binary/parser.rb +223 -0
  421. data/vendor/gems/git-style-binaries/lib/git-style-binary.rb +88 -0
  422. data/vendor/gems/git-style-binaries/test/fixtures/flickr +4 -0
  423. data/vendor/gems/git-style-binaries/test/fixtures/flickr-download +17 -0
  424. data/vendor/gems/git-style-binaries/test/fixtures/wordpress +42 -0
  425. data/vendor/gems/git-style-binaries/test/fixtures/wordpress-categories +18 -0
  426. data/vendor/gems/git-style-binaries/test/fixtures/wordpress-list +18 -0
  427. data/vendor/gems/git-style-binaries/test/fixtures/wordpress-post +26 -0
  428. data/vendor/gems/git-style-binaries/test/git-style-binary/command_test.rb +17 -0
  429. data/vendor/gems/git-style-binaries/test/git_style_binary_test.rb +21 -0
  430. data/vendor/gems/git-style-binaries/test/running_binaries_test.rb +224 -0
  431. data/vendor/gems/git-style-binaries/test/shoulda_macros/matching_stdio.rb +13 -0
  432. data/vendor/gems/git-style-binaries/test/test_helper.rb +28 -0
  433. data/vendor/gems/gratr/Grater.xcf +0 -0
  434. data/vendor/gems/gratr/README +335 -0
  435. data/vendor/gems/gratr/Rakefile +220 -0
  436. data/vendor/gems/gratr/examples/graph_self.rb +54 -0
  437. data/vendor/gems/gratr/examples/module_graph.jpg +0 -0
  438. data/vendor/gems/gratr/examples/module_graph.rb +12 -0
  439. data/vendor/gems/gratr/examples/self_graph.dot +117 -0
  440. data/vendor/gems/gratr/examples/self_graph.jpg +0 -0
  441. data/vendor/gems/gratr/examples/visualize.dot +58 -0
  442. data/vendor/gems/gratr/examples/visualize.jpg +0 -0
  443. data/vendor/gems/gratr/examples/visualize.rb +11 -0
  444. data/vendor/gems/gratr/install.rb +49 -0
  445. data/vendor/gems/gratr/lib/gratr/adjacency_graph.rb +230 -0
  446. data/vendor/gems/gratr/lib/gratr/base.rb +34 -0
  447. data/vendor/gems/gratr/lib/gratr/biconnected.rb +116 -0
  448. data/vendor/gems/gratr/lib/gratr/chinese_postman.rb +123 -0
  449. data/vendor/gems/gratr/lib/gratr/common.rb +73 -0
  450. data/vendor/gems/gratr/lib/gratr/comparability.rb +92 -0
  451. data/vendor/gems/gratr/lib/gratr/digraph.rb +115 -0
  452. data/vendor/gems/gratr/lib/gratr/digraph_distance.rb +185 -0
  453. data/vendor/gems/gratr/lib/gratr/dot.rb +95 -0
  454. data/vendor/gems/gratr/lib/gratr/edge.rb +145 -0
  455. data/vendor/gems/gratr/lib/gratr/graph.rb +315 -0
  456. data/vendor/gems/gratr/lib/gratr/graph_api.rb +82 -0
  457. data/vendor/gems/gratr/lib/gratr/import.rb +44 -0
  458. data/vendor/gems/gratr/lib/gratr/labels.rb +103 -0
  459. data/vendor/gems/gratr/lib/gratr/maximum_flow.rb +107 -0
  460. data/vendor/gems/gratr/lib/gratr/rdot.rb +332 -0
  461. data/vendor/gems/gratr/lib/gratr/search.rb +422 -0
  462. data/vendor/gems/gratr/lib/gratr/strong_components.rb +127 -0
  463. data/vendor/gems/gratr/lib/gratr/undirected_graph.rb +153 -0
  464. data/vendor/gems/gratr/lib/gratr.rb +42 -0
  465. data/vendor/gems/gratr/lib/priority-queue/benchmark/dijkstra.rb +171 -0
  466. data/vendor/gems/gratr/lib/priority-queue/compare_comments.rb +49 -0
  467. data/vendor/gems/gratr/lib/priority-queue/ext/priority_queue/CPriorityQueue/extconf.rb +2 -0
  468. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/c_priority_queue.rb +1 -0
  469. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/poor_priority_queue.rb +46 -0
  470. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue/ruby_priority_queue.rb +525 -0
  471. data/vendor/gems/gratr/lib/priority-queue/lib/priority_queue.rb +14 -0
  472. data/vendor/gems/gratr/lib/priority-queue/setup.rb +1551 -0
  473. data/vendor/gems/gratr/lib/priority-queue/test/priority_queue_test.rb +371 -0
  474. data/vendor/gems/gratr/tests/TestBiconnected.rb +53 -0
  475. data/vendor/gems/gratr/tests/TestChinesePostman.rb +53 -0
  476. data/vendor/gems/gratr/tests/TestComplement.rb +54 -0
  477. data/vendor/gems/gratr/tests/TestDigraph.rb +333 -0
  478. data/vendor/gems/gratr/tests/TestDigraphDistance.rb +138 -0
  479. data/vendor/gems/gratr/tests/TestDot.rb +75 -0
  480. data/vendor/gems/gratr/tests/TestEdge.rb +171 -0
  481. data/vendor/gems/gratr/tests/TestInspection.rb +57 -0
  482. data/vendor/gems/gratr/tests/TestMultiEdge.rb +57 -0
  483. data/vendor/gems/gratr/tests/TestNeighborhood.rb +64 -0
  484. data/vendor/gems/gratr/tests/TestProperties.rb +160 -0
  485. data/vendor/gems/gratr/tests/TestSearch.rb +277 -0
  486. data/vendor/gems/gratr/tests/TestStrongComponents.rb +85 -0
  487. data/vendor/gems/gratr/tests/TestTriagulated.rb +137 -0
  488. data/vendor/gems/gratr/tests/TestUndirectedGraph.rb +219 -0
  489. data/vendor/gems/json/CHANGES +93 -0
  490. data/vendor/gems/json/GPL +340 -0
  491. data/vendor/gems/json/README +78 -0
  492. data/vendor/gems/json/RUBY +58 -0
  493. data/vendor/gems/json/Rakefile +309 -0
  494. data/vendor/gems/json/TODO +1 -0
  495. data/vendor/gems/json/VERSION +1 -0
  496. data/vendor/gems/json/benchmarks/benchmark.txt +133 -0
  497. data/vendor/gems/json/benchmarks/benchmark_generator.rb +48 -0
  498. data/vendor/gems/json/benchmarks/benchmark_parser.rb +26 -0
  499. data/vendor/gems/json/benchmarks/benchmark_rails.rb +26 -0
  500. data/vendor/gems/json/bin/edit_json.rb +10 -0
  501. data/vendor/gems/json/bin/prettify_json.rb +76 -0
  502. data/vendor/gems/json/data/example.json +1 -0
  503. data/vendor/gems/json/data/index.html +38 -0
  504. data/vendor/gems/json/data/prototype.js +4184 -0
  505. data/vendor/gems/json/ext/json/ext/generator/extconf.rb +9 -0
  506. data/vendor/gems/json/ext/json/ext/generator/generator.c +885 -0
  507. data/vendor/gems/json/ext/json/ext/generator/unicode.c +182 -0
  508. data/vendor/gems/json/ext/json/ext/generator/unicode.h +53 -0
  509. data/vendor/gems/json/ext/json/ext/parser/Makefile +181 -0
  510. data/vendor/gems/json/ext/json/ext/parser/extconf.rb +9 -0
  511. data/vendor/gems/json/ext/json/ext/parser/gem_make.out +14 -0
  512. data/vendor/gems/json/ext/json/ext/parser/parser.c +1769 -0
  513. data/vendor/gems/json/ext/json/ext/parser/parser.rl +637 -0
  514. data/vendor/gems/json/ext/json/ext/parser/unicode.c +154 -0
  515. data/vendor/gems/json/ext/json/ext/parser/unicode.h +58 -0
  516. data/vendor/gems/json/ext/json/ext/parser/unicode.o +0 -0
  517. data/vendor/gems/json/install.rb +26 -0
  518. data/vendor/gems/json/lib/json/Array.xpm +21 -0
  519. data/vendor/gems/json/lib/json/FalseClass.xpm +21 -0
  520. data/vendor/gems/json/lib/json/Hash.xpm +21 -0
  521. data/vendor/gems/json/lib/json/Key.xpm +73 -0
  522. data/vendor/gems/json/lib/json/NilClass.xpm +21 -0
  523. data/vendor/gems/json/lib/json/Numeric.xpm +28 -0
  524. data/vendor/gems/json/lib/json/String.xpm +96 -0
  525. data/vendor/gems/json/lib/json/TrueClass.xpm +21 -0
  526. data/vendor/gems/json/lib/json/add/core.rb +135 -0
  527. data/vendor/gems/json/lib/json/add/rails.rb +58 -0
  528. data/vendor/gems/json/lib/json/common.rb +354 -0
  529. data/vendor/gems/json/lib/json/editor.rb +1362 -0
  530. data/vendor/gems/json/lib/json/ext.rb +13 -0
  531. data/vendor/gems/json/lib/json/json.xpm +1499 -0
  532. data/vendor/gems/json/lib/json/pure/generator.rb +394 -0
  533. data/vendor/gems/json/lib/json/pure/parser.rb +259 -0
  534. data/vendor/gems/json/lib/json/pure.rb +75 -0
  535. data/vendor/gems/json/lib/json/version.rb +9 -0
  536. data/vendor/gems/json/lib/json.rb +235 -0
  537. data/vendor/gems/json/tests/fixtures/fail1.json +1 -0
  538. data/vendor/gems/json/tests/fixtures/fail10.json +1 -0
  539. data/vendor/gems/json/tests/fixtures/fail11.json +1 -0
  540. data/vendor/gems/json/tests/fixtures/fail12.json +1 -0
  541. data/vendor/gems/json/tests/fixtures/fail13.json +1 -0
  542. data/vendor/gems/json/tests/fixtures/fail14.json +1 -0
  543. data/vendor/gems/json/tests/fixtures/fail18.json +1 -0
  544. data/vendor/gems/json/tests/fixtures/fail19.json +1 -0
  545. data/vendor/gems/json/tests/fixtures/fail2.json +1 -0
  546. data/vendor/gems/json/tests/fixtures/fail20.json +1 -0
  547. data/vendor/gems/json/tests/fixtures/fail21.json +1 -0
  548. data/vendor/gems/json/tests/fixtures/fail22.json +1 -0
  549. data/vendor/gems/json/tests/fixtures/fail23.json +1 -0
  550. data/vendor/gems/json/tests/fixtures/fail24.json +1 -0
  551. data/vendor/gems/json/tests/fixtures/fail25.json +1 -0
  552. data/vendor/gems/json/tests/fixtures/fail27.json +2 -0
  553. data/vendor/gems/json/tests/fixtures/fail28.json +2 -0
  554. data/vendor/gems/json/tests/fixtures/fail3.json +1 -0
  555. data/vendor/gems/json/tests/fixtures/fail4.json +1 -0
  556. data/vendor/gems/json/tests/fixtures/fail5.json +1 -0
  557. data/vendor/gems/json/tests/fixtures/fail6.json +1 -0
  558. data/vendor/gems/json/tests/fixtures/fail7.json +1 -0
  559. data/vendor/gems/json/tests/fixtures/fail8.json +1 -0
  560. data/vendor/gems/json/tests/fixtures/fail9.json +1 -0
  561. data/vendor/gems/json/tests/fixtures/pass1.json +56 -0
  562. data/vendor/gems/json/tests/fixtures/pass15.json +1 -0
  563. data/vendor/gems/json/tests/fixtures/pass16.json +1 -0
  564. data/vendor/gems/json/tests/fixtures/pass17.json +1 -0
  565. data/vendor/gems/json/tests/fixtures/pass2.json +1 -0
  566. data/vendor/gems/json/tests/fixtures/pass26.json +1 -0
  567. data/vendor/gems/json/tests/fixtures/pass3.json +6 -0
  568. data/vendor/gems/json/tests/runner.rb +25 -0
  569. data/vendor/gems/json/tests/test_json.rb +293 -0
  570. data/vendor/gems/json/tests/test_json_addition.rb +161 -0
  571. data/vendor/gems/json/tests/test_json_fixtures.rb +30 -0
  572. data/vendor/gems/json/tests/test_json_generate.rb +100 -0
  573. data/vendor/gems/json/tests/test_json_rails.rb +118 -0
  574. data/vendor/gems/json/tests/test_json_unicode.rb +61 -0
  575. data/vendor/gems/json/tools/fuzz.rb +140 -0
  576. data/vendor/gems/json/tools/server.rb +62 -0
  577. data/vendor/gems/parenting/Rakefile +17 -1
  578. data/vendor/gems/parenting/lib/parenting/parenting.rb +24 -8
  579. data/vendor/gems/right_aws/History.txt +246 -0
  580. data/vendor/gems/right_aws/Manifest.txt +34 -0
  581. data/vendor/gems/right_aws/README.txt +166 -0
  582. data/vendor/gems/right_aws/Rakefile +112 -0
  583. data/vendor/gems/right_aws/lib/acf/right_acf_interface.rb +379 -0
  584. data/vendor/gems/right_aws/lib/awsbase/benchmark_fix.rb +39 -0
  585. data/vendor/gems/right_aws/lib/awsbase/right_awsbase.rb +797 -0
  586. data/vendor/gems/right_aws/lib/awsbase/support.rb +111 -0
  587. data/vendor/gems/right_aws/lib/ec2/right_ec2.rb +1737 -0
  588. data/vendor/gems/right_aws/lib/right_aws.rb +69 -0
  589. data/vendor/gems/right_aws/lib/s3/right_s3.rb +1094 -0
  590. data/vendor/gems/right_aws/lib/s3/right_s3_interface.rb +1175 -0
  591. data/vendor/gems/right_aws/lib/sdb/active_sdb.rb +930 -0
  592. data/vendor/gems/right_aws/lib/sdb/right_sdb_interface.rb +698 -0
  593. data/vendor/gems/right_aws/lib/sqs/right_sqs.rb +388 -0
  594. data/vendor/gems/right_aws/lib/sqs/right_sqs_gen2.rb +286 -0
  595. data/vendor/gems/right_aws/lib/sqs/right_sqs_gen2_interface.rb +444 -0
  596. data/vendor/gems/right_aws/lib/sqs/right_sqs_interface.rb +596 -0
  597. data/vendor/gems/right_aws/test/acf/test_helper.rb +2 -0
  598. data/vendor/gems/right_aws/test/acf/test_right_acf.rb +146 -0
  599. data/vendor/gems/right_aws/test/ec2/test_helper.rb +2 -0
  600. data/vendor/gems/right_aws/test/ec2/test_right_ec2.rb +108 -0
  601. data/vendor/gems/right_aws/test/http_connection.rb +87 -0
  602. data/vendor/gems/right_aws/test/s3/test_helper.rb +2 -0
  603. data/vendor/gems/right_aws/test/s3/test_right_s3.rb +419 -0
  604. data/vendor/gems/right_aws/test/s3/test_right_s3_stubbed.rb +95 -0
  605. data/vendor/gems/right_aws/test/sdb/test_active_sdb.rb +299 -0
  606. data/vendor/gems/right_aws/test/sdb/test_helper.rb +3 -0
  607. data/vendor/gems/right_aws/test/sdb/test_right_sdb.rb +247 -0
  608. data/vendor/gems/right_aws/test/sqs/test_helper.rb +2 -0
  609. data/vendor/gems/right_aws/test/sqs/test_right_sqs.rb +291 -0
  610. data/vendor/gems/right_aws/test/sqs/test_right_sqs_gen2.rb +209 -0
  611. data/vendor/gems/right_aws/test/test_credentials.rb +37 -0
  612. data/vendor/gems/right_aws/test/ts_right_aws.rb +14 -0
  613. data/vendor/gems/right_http_connection/History.txt +59 -0
  614. data/vendor/gems/right_http_connection/Manifest.txt +7 -0
  615. data/vendor/gems/right_http_connection/README.txt +54 -0
  616. data/vendor/gems/right_http_connection/Rakefile +103 -0
  617. data/vendor/gems/right_http_connection/lib/net_fix.rb +160 -0
  618. data/vendor/gems/right_http_connection/lib/right_http_connection.rb +442 -0
  619. data/vendor/gems/right_http_connection/right_http_connection.gemspec +31 -0
  620. data/vendor/gems/right_http_connection/setup.rb +1585 -0
  621. data/vendor/gems/shoulda/CONTRIBUTION_GUIDELINES.rdoc +10 -0
  622. data/vendor/gems/shoulda/MIT-LICENSE +22 -0
  623. data/vendor/gems/shoulda/README.rdoc +171 -0
  624. data/vendor/gems/shoulda/Rakefile +72 -0
  625. data/vendor/gems/shoulda/bin/convert_to_should_syntax +42 -0
  626. data/vendor/gems/shoulda/init.rb +1 -0
  627. data/vendor/gems/shoulda/lib/shoulda/action_controller/macros.rb +240 -0
  628. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/assign_to_matcher.rb +109 -0
  629. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/filter_param_matcher.rb +57 -0
  630. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/render_with_layout_matcher.rb +81 -0
  631. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/respond_with_content_type_matcher.rb +74 -0
  632. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/respond_with_matcher.rb +81 -0
  633. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/route_matcher.rb +93 -0
  634. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/set_session_matcher.rb +87 -0
  635. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers/set_the_flash_matcher.rb +85 -0
  636. data/vendor/gems/shoulda/lib/shoulda/action_controller/matchers.rb +37 -0
  637. data/vendor/gems/shoulda/lib/shoulda/action_controller.rb +26 -0
  638. data/vendor/gems/shoulda/lib/shoulda/action_mailer/assertions.rb +38 -0
  639. data/vendor/gems/shoulda/lib/shoulda/action_mailer.rb +10 -0
  640. data/vendor/gems/shoulda/lib/shoulda/action_view/macros.rb +61 -0
  641. data/vendor/gems/shoulda/lib/shoulda/action_view.rb +10 -0
  642. data/vendor/gems/shoulda/lib/shoulda/active_record/assertions.rb +69 -0
  643. data/vendor/gems/shoulda/lib/shoulda/active_record/helpers.rb +27 -0
  644. data/vendor/gems/shoulda/lib/shoulda/active_record/macros.rb +512 -0
  645. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/allow_mass_assignment_of_matcher.rb +83 -0
  646. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/allow_value_matcher.rb +102 -0
  647. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/association_matcher.rb +226 -0
  648. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/ensure_inclusion_of_matcher.rb +87 -0
  649. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/ensure_length_of_matcher.rb +141 -0
  650. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_db_column_matcher.rb +169 -0
  651. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_db_index_matcher.rb +112 -0
  652. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_named_scope_matcher.rb +128 -0
  653. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/have_readonly_attribute_matcher.rb +59 -0
  654. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_acceptance_of_matcher.rb +41 -0
  655. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_format_of_matcher.rb +67 -0
  656. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_numericality_of_matcher.rb +39 -0
  657. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_presence_of_matcher.rb +60 -0
  658. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validate_uniqueness_of_matcher.rb +148 -0
  659. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers/validation_matcher.rb +57 -0
  660. data/vendor/gems/shoulda/lib/shoulda/active_record/matchers.rb +43 -0
  661. data/vendor/gems/shoulda/lib/shoulda/active_record.rb +16 -0
  662. data/vendor/gems/shoulda/lib/shoulda/assertions.rb +71 -0
  663. data/vendor/gems/shoulda/lib/shoulda/autoload_macros.rb +46 -0
  664. data/vendor/gems/shoulda/lib/shoulda/context.rb +402 -0
  665. data/vendor/gems/shoulda/lib/shoulda/helpers.rb +8 -0
  666. data/vendor/gems/shoulda/lib/shoulda/macros.rb +133 -0
  667. data/vendor/gems/shoulda/lib/shoulda/private_helpers.rb +13 -0
  668. data/vendor/gems/shoulda/lib/shoulda/proc_extensions.rb +14 -0
  669. data/vendor/gems/shoulda/lib/shoulda/rails.rb +13 -0
  670. data/vendor/gems/shoulda/lib/shoulda/rspec.rb +11 -0
  671. data/vendor/gems/shoulda/lib/shoulda/tasks/list_tests.rake +29 -0
  672. data/vendor/gems/shoulda/lib/shoulda/tasks/yaml_to_shoulda.rake +28 -0
  673. data/vendor/gems/shoulda/lib/shoulda/tasks.rb +3 -0
  674. data/vendor/gems/shoulda/lib/shoulda/test_unit.rb +22 -0
  675. data/vendor/gems/shoulda/lib/shoulda.rb +9 -0
  676. data/vendor/gems/shoulda/rails/init.rb +7 -0
  677. data/vendor/gems/shoulda/shoulda.gemspec +31 -0
  678. data/vendor/gems/shoulda/tasks/shoulda.rake +1 -0
  679. data/vendor/gems/shoulda/test/README +36 -0
  680. data/vendor/gems/shoulda/test/fail_macros.rb +39 -0
  681. data/vendor/gems/shoulda/test/fixtures/addresses.yml +3 -0
  682. data/vendor/gems/shoulda/test/fixtures/friendships.yml +0 -0
  683. data/vendor/gems/shoulda/test/fixtures/posts.yml +5 -0
  684. data/vendor/gems/shoulda/test/fixtures/products.yml +0 -0
  685. data/vendor/gems/shoulda/test/fixtures/taggings.yml +0 -0
  686. data/vendor/gems/shoulda/test/fixtures/tags.yml +9 -0
  687. data/vendor/gems/shoulda/test/fixtures/users.yml +6 -0
  688. data/vendor/gems/shoulda/test/functional/posts_controller_test.rb +121 -0
  689. data/vendor/gems/shoulda/test/functional/users_controller_test.rb +19 -0
  690. data/vendor/gems/shoulda/test/matchers/active_record/allow_mass_assignment_of_matcher_test.rb +68 -0
  691. data/vendor/gems/shoulda/test/matchers/active_record/allow_value_matcher_test.rb +64 -0
  692. data/vendor/gems/shoulda/test/matchers/active_record/association_matcher_test.rb +263 -0
  693. data/vendor/gems/shoulda/test/matchers/active_record/ensure_inclusion_of_matcher_test.rb +80 -0
  694. data/vendor/gems/shoulda/test/matchers/active_record/ensure_length_of_matcher_test.rb +158 -0
  695. data/vendor/gems/shoulda/test/matchers/active_record/have_db_column_matcher_test.rb +169 -0
  696. data/vendor/gems/shoulda/test/matchers/active_record/have_db_index_matcher_test.rb +91 -0
  697. data/vendor/gems/shoulda/test/matchers/active_record/have_named_scope_matcher_test.rb +65 -0
  698. data/vendor/gems/shoulda/test/matchers/active_record/have_readonly_attributes_matcher_test.rb +29 -0
  699. data/vendor/gems/shoulda/test/matchers/active_record/validate_acceptance_of_matcher_test.rb +44 -0
  700. data/vendor/gems/shoulda/test/matchers/active_record/validate_format_of_matcher_test.rb +39 -0
  701. data/vendor/gems/shoulda/test/matchers/active_record/validate_numericality_of_matcher_test.rb +52 -0
  702. data/vendor/gems/shoulda/test/matchers/active_record/validate_presence_of_matcher_test.rb +86 -0
  703. data/vendor/gems/shoulda/test/matchers/active_record/validate_uniqueness_of_matcher_test.rb +147 -0
  704. data/vendor/gems/shoulda/test/matchers/controller/assign_to_matcher_test.rb +35 -0
  705. data/vendor/gems/shoulda/test/matchers/controller/filter_param_matcher_test.rb +32 -0
  706. data/vendor/gems/shoulda/test/matchers/controller/render_with_layout_matcher_test.rb +33 -0
  707. data/vendor/gems/shoulda/test/matchers/controller/respond_with_content_type_matcher_test.rb +32 -0
  708. data/vendor/gems/shoulda/test/matchers/controller/respond_with_matcher_test.rb +106 -0
  709. data/vendor/gems/shoulda/test/matchers/controller/route_matcher_test.rb +58 -0
  710. data/vendor/gems/shoulda/test/matchers/controller/set_session_matcher_test.rb +38 -0
  711. data/vendor/gems/shoulda/test/matchers/controller/set_the_flash_matcher.rb +41 -0
  712. data/vendor/gems/shoulda/test/model_builder.rb +106 -0
  713. data/vendor/gems/shoulda/test/other/autoload_macro_test.rb +18 -0
  714. data/vendor/gems/shoulda/test/other/context_test.rb +189 -0
  715. data/vendor/gems/shoulda/test/other/convert_to_should_syntax_test.rb +63 -0
  716. data/vendor/gems/shoulda/test/other/helpers_test.rb +340 -0
  717. data/vendor/gems/shoulda/test/other/private_helpers_test.rb +32 -0
  718. data/vendor/gems/shoulda/test/other/should_test.rb +271 -0
  719. data/vendor/gems/shoulda/test/rails_root/app/controllers/application_controller.rb +25 -0
  720. data/vendor/gems/shoulda/test/rails_root/app/controllers/posts_controller.rb +87 -0
  721. data/vendor/gems/shoulda/test/rails_root/app/controllers/users_controller.rb +84 -0
  722. data/vendor/gems/shoulda/test/rails_root/app/helpers/application_helper.rb +3 -0
  723. data/vendor/gems/shoulda/test/rails_root/app/helpers/posts_helper.rb +2 -0
  724. data/vendor/gems/shoulda/test/rails_root/app/helpers/users_helper.rb +2 -0
  725. data/vendor/gems/shoulda/test/rails_root/app/models/address.rb +7 -0
  726. data/vendor/gems/shoulda/test/rails_root/app/models/flea.rb +3 -0
  727. data/vendor/gems/shoulda/test/rails_root/app/models/friendship.rb +4 -0
  728. data/vendor/gems/shoulda/test/rails_root/app/models/pets/cat.rb +7 -0
  729. data/vendor/gems/shoulda/test/rails_root/app/models/pets/dog.rb +10 -0
  730. data/vendor/gems/shoulda/test/rails_root/app/models/post.rb +12 -0
  731. data/vendor/gems/shoulda/test/rails_root/app/models/product.rb +12 -0
  732. data/vendor/gems/shoulda/test/rails_root/app/models/profile.rb +2 -0
  733. data/vendor/gems/shoulda/test/rails_root/app/models/registration.rb +2 -0
  734. data/vendor/gems/shoulda/test/rails_root/app/models/tag.rb +8 -0
  735. data/vendor/gems/shoulda/test/rails_root/app/models/tagging.rb +4 -0
  736. data/vendor/gems/shoulda/test/rails_root/app/models/treat.rb +3 -0
  737. data/vendor/gems/shoulda/test/rails_root/app/models/user.rb +32 -0
  738. data/vendor/gems/shoulda/test/rails_root/app/views/layouts/posts.rhtml +19 -0
  739. data/vendor/gems/shoulda/test/rails_root/app/views/layouts/users.rhtml +17 -0
  740. data/vendor/gems/shoulda/test/rails_root/app/views/layouts/wide.html.erb +1 -0
  741. data/vendor/gems/shoulda/test/rails_root/app/views/posts/edit.rhtml +27 -0
  742. data/vendor/gems/shoulda/test/rails_root/app/views/posts/index.rhtml +25 -0
  743. data/vendor/gems/shoulda/test/rails_root/app/views/posts/new.rhtml +26 -0
  744. data/vendor/gems/shoulda/test/rails_root/app/views/posts/show.rhtml +18 -0
  745. data/vendor/gems/shoulda/test/rails_root/app/views/users/edit.rhtml +22 -0
  746. data/vendor/gems/shoulda/test/rails_root/app/views/users/index.rhtml +22 -0
  747. data/vendor/gems/shoulda/test/rails_root/app/views/users/new.rhtml +21 -0
  748. data/vendor/gems/shoulda/test/rails_root/app/views/users/show.rhtml +13 -0
  749. data/vendor/gems/shoulda/test/rails_root/config/boot.rb +110 -0
  750. data/vendor/gems/shoulda/test/rails_root/config/database.yml +4 -0
  751. data/vendor/gems/shoulda/test/rails_root/config/environment.rb +18 -0
  752. data/vendor/gems/shoulda/test/rails_root/config/environments/test.rb +0 -0
  753. data/vendor/gems/shoulda/test/rails_root/config/initializers/new_rails_defaults.rb +15 -0
  754. data/vendor/gems/shoulda/test/rails_root/config/initializers/shoulda.rb +8 -0
  755. data/vendor/gems/shoulda/test/rails_root/config/routes.rb +6 -0
  756. data/vendor/gems/shoulda/test/rails_root/db/migrate/001_create_users.rb +19 -0
  757. data/vendor/gems/shoulda/test/rails_root/db/migrate/002_create_posts.rb +13 -0
  758. data/vendor/gems/shoulda/test/rails_root/db/migrate/003_create_taggings.rb +12 -0
  759. data/vendor/gems/shoulda/test/rails_root/db/migrate/004_create_tags.rb +11 -0
  760. data/vendor/gems/shoulda/test/rails_root/db/migrate/005_create_dogs.rb +12 -0
  761. data/vendor/gems/shoulda/test/rails_root/db/migrate/006_create_addresses.rb +14 -0
  762. data/vendor/gems/shoulda/test/rails_root/db/migrate/007_create_fleas.rb +11 -0
  763. data/vendor/gems/shoulda/test/rails_root/db/migrate/008_create_dogs_fleas.rb +12 -0
  764. data/vendor/gems/shoulda/test/rails_root/db/migrate/009_create_products.rb +17 -0
  765. data/vendor/gems/shoulda/test/rails_root/db/migrate/010_create_friendships.rb +14 -0
  766. data/vendor/gems/shoulda/test/rails_root/db/migrate/011_create_treats.rb +12 -0
  767. data/vendor/gems/shoulda/test/rails_root/db/migrate/20090506203502_create_profiles.rb +12 -0
  768. data/vendor/gems/shoulda/test/rails_root/db/migrate/20090506203536_create_registrations.rb +14 -0
  769. data/vendor/gems/shoulda/test/rails_root/db/migrate/20090513104502_create_cats.rb +12 -0
  770. data/vendor/gems/shoulda/test/rails_root/db/schema.rb +0 -0
  771. data/vendor/gems/shoulda/test/rails_root/public/404.html +30 -0
  772. data/vendor/gems/shoulda/test/rails_root/public/422.html +30 -0
  773. data/vendor/gems/shoulda/test/rails_root/public/500.html +30 -0
  774. data/vendor/gems/shoulda/test/rails_root/script/console +3 -0
  775. data/vendor/gems/shoulda/test/rails_root/script/generate +3 -0
  776. data/vendor/gems/shoulda/test/rails_root/test/shoulda_macros/custom_macro.rb +6 -0
  777. data/vendor/gems/shoulda/test/rails_root/vendor/gems/gem_with_macro-0.0.1/shoulda_macros/gem_macro.rb +6 -0
  778. data/vendor/gems/shoulda/test/rails_root/vendor/plugins/plugin_with_macro/shoulda_macros/plugin_macro.rb +6 -0
  779. data/vendor/gems/shoulda/test/rspec_test.rb +207 -0
  780. data/vendor/gems/shoulda/test/test_helper.rb +28 -0
  781. data/vendor/gems/shoulda/test/unit/address_test.rb +10 -0
  782. data/vendor/gems/shoulda/test/unit/cat_test.rb +7 -0
  783. data/vendor/gems/shoulda/test/unit/dog_test.rb +9 -0
  784. data/vendor/gems/shoulda/test/unit/flea_test.rb +6 -0
  785. data/vendor/gems/shoulda/test/unit/friendship_test.rb +6 -0
  786. data/vendor/gems/shoulda/test/unit/post_test.rb +19 -0
  787. data/vendor/gems/shoulda/test/unit/product_test.rb +23 -0
  788. data/vendor/gems/shoulda/test/unit/tag_test.rb +15 -0
  789. data/vendor/gems/shoulda/test/unit/tagging_test.rb +6 -0
  790. data/vendor/gems/shoulda/test/unit/user_test.rb +80 -0
  791. data/vendor/gems/thrift/CHANGELOG +1 -0
  792. data/vendor/gems/thrift/Makefile.am +47 -0
  793. data/vendor/gems/thrift/Manifest +81 -0
  794. data/vendor/gems/thrift/README +43 -0
  795. data/vendor/gems/thrift/Rakefile +104 -0
  796. data/vendor/gems/thrift/benchmark/Benchmark.thrift +24 -0
  797. data/vendor/gems/thrift/benchmark/benchmark.rb +271 -0
  798. data/vendor/gems/thrift/benchmark/client.rb +74 -0
  799. data/vendor/gems/thrift/benchmark/server.rb +82 -0
  800. data/vendor/gems/thrift/benchmark/thin_server.rb +44 -0
  801. data/vendor/gems/thrift/ext/binary_protocol_accelerated.c +474 -0
  802. data/vendor/gems/thrift/ext/binary_protocol_accelerated.h +20 -0
  803. data/vendor/gems/thrift/ext/compact_protocol.c +665 -0
  804. data/vendor/gems/thrift/ext/compact_protocol.h +20 -0
  805. data/vendor/gems/thrift/ext/constants.h +95 -0
  806. data/vendor/gems/thrift/ext/extconf.rb +26 -0
  807. data/vendor/gems/thrift/ext/macros.h +41 -0
  808. data/vendor/gems/thrift/ext/memory_buffer.c +76 -0
  809. data/vendor/gems/thrift/ext/memory_buffer.h +20 -0
  810. data/vendor/gems/thrift/ext/protocol.c +185 -0
  811. data/vendor/gems/thrift/ext/protocol.h +20 -0
  812. data/vendor/gems/thrift/ext/struct.c +606 -0
  813. data/vendor/gems/thrift/ext/struct.h +67 -0
  814. data/vendor/gems/thrift/ext/thrift_native.c +194 -0
  815. data/vendor/gems/thrift/lib/thrift/client.rb +62 -0
  816. data/vendor/gems/thrift/lib/thrift/core_ext/fixnum.rb +29 -0
  817. data/vendor/gems/thrift/lib/thrift/core_ext.rb +23 -0
  818. data/vendor/gems/thrift/lib/thrift/exceptions.rb +82 -0
  819. data/vendor/gems/thrift/lib/thrift/processor.rb +57 -0
  820. data/vendor/gems/thrift/lib/thrift/protocol/base_protocol.rb +290 -0
  821. data/vendor/gems/thrift/lib/thrift/protocol/binary_protocol.rb +225 -0
  822. data/vendor/gems/thrift/lib/thrift/protocol/binary_protocol_accelerated.rb +35 -0
  823. data/vendor/gems/thrift/lib/thrift/protocol/compact_protocol.rb +422 -0
  824. data/vendor/gems/thrift/lib/thrift/serializer/deserializer.rb +33 -0
  825. data/vendor/gems/thrift/lib/thrift/serializer/serializer.rb +34 -0
  826. data/vendor/gems/thrift/lib/thrift/server/base_server.rb +31 -0
  827. data/vendor/gems/thrift/lib/thrift/server/mongrel_http_server.rb +58 -0
  828. data/vendor/gems/thrift/lib/thrift/server/nonblocking_server.rb +296 -0
  829. data/vendor/gems/thrift/lib/thrift/server/simple_server.rb +43 -0
  830. data/vendor/gems/thrift/lib/thrift/server/thread_pool_server.rb +75 -0
  831. data/vendor/gems/thrift/lib/thrift/server/threaded_server.rb +47 -0
  832. data/vendor/gems/thrift/lib/thrift/struct.rb +298 -0
  833. data/vendor/gems/thrift/lib/thrift/thrift_native.rb +24 -0
  834. data/vendor/gems/thrift/lib/thrift/transport/base_server_transport.rb +37 -0
  835. data/vendor/gems/thrift/lib/thrift/transport/base_transport.rb +70 -0
  836. data/vendor/gems/thrift/lib/thrift/transport/buffered_transport.rb +77 -0
  837. data/vendor/gems/thrift/lib/thrift/transport/framed_transport.rb +90 -0
  838. data/vendor/gems/thrift/lib/thrift/transport/http_client_transport.rb +45 -0
  839. data/vendor/gems/thrift/lib/thrift/transport/io_stream_transport.rb +39 -0
  840. data/vendor/gems/thrift/lib/thrift/transport/memory_buffer_transport.rb +96 -0
  841. data/vendor/gems/thrift/lib/thrift/transport/server_socket.rb +63 -0
  842. data/vendor/gems/thrift/lib/thrift/transport/socket.rb +136 -0
  843. data/vendor/gems/thrift/lib/thrift/transport/unix_server_socket.rb +60 -0
  844. data/vendor/gems/thrift/lib/thrift/transport/unix_socket.rb +40 -0
  845. data/vendor/gems/thrift/lib/thrift/types.rb +101 -0
  846. data/vendor/gems/thrift/lib/thrift.rb +59 -0
  847. data/vendor/gems/thrift/script/proto_benchmark.rb +121 -0
  848. data/vendor/gems/thrift/script/read_struct.rb +43 -0
  849. data/vendor/gems/thrift/script/write_struct.rb +30 -0
  850. data/vendor/gems/thrift/setup.rb +1585 -0
  851. data/vendor/gems/thrift/spec/ThriftSpec.thrift +84 -0
  852. data/vendor/gems/thrift/spec/base_protocol_spec.rb +160 -0
  853. data/vendor/gems/thrift/spec/base_transport_spec.rb +351 -0
  854. data/vendor/gems/thrift/spec/binary_protocol_accelerated_spec.rb +41 -0
  855. data/vendor/gems/thrift/spec/binary_protocol_spec.rb +63 -0
  856. data/vendor/gems/thrift/spec/binary_protocol_spec_shared.rb +375 -0
  857. data/vendor/gems/thrift/spec/client_spec.rb +100 -0
  858. data/vendor/gems/thrift/spec/compact_protocol_spec.rb +117 -0
  859. data/vendor/gems/thrift/spec/exception_spec.rb +142 -0
  860. data/vendor/gems/thrift/spec/http_client_spec.rb +49 -0
  861. data/vendor/gems/thrift/spec/mongrel_http_server_spec.rb +117 -0
  862. data/vendor/gems/thrift/spec/nonblocking_server_spec.rb +265 -0
  863. data/vendor/gems/thrift/spec/processor_spec.rb +83 -0
  864. data/vendor/gems/thrift/spec/serializer_spec.rb +69 -0
  865. data/vendor/gems/thrift/spec/server_socket_spec.rb +80 -0
  866. data/vendor/gems/thrift/spec/server_spec.rb +160 -0
  867. data/vendor/gems/thrift/spec/socket_spec.rb +61 -0
  868. data/vendor/gems/thrift/spec/socket_spec_shared.rb +104 -0
  869. data/vendor/gems/thrift/spec/spec_helper.rb +60 -0
  870. data/vendor/gems/thrift/spec/struct_spec.rb +252 -0
  871. data/vendor/gems/thrift/spec/types_spec.rb +116 -0
  872. data/vendor/gems/thrift/spec/unix_socket_spec.rb +108 -0
  873. data/vendor/gems/trollop/FAQ.txt +84 -0
  874. data/vendor/gems/trollop/History.txt +101 -0
  875. data/vendor/gems/trollop/Manifest.txt +7 -0
  876. data/vendor/gems/trollop/README.txt +40 -0
  877. data/vendor/gems/trollop/Rakefile +36 -0
  878. data/vendor/gems/trollop/lib/trollop.rb +739 -0
  879. data/vendor/gems/trollop/release-script.txt +13 -0
  880. data/vendor/gems/trollop/test/test_trollop.rb +1048 -0
  881. data/vendor/gems/trollop/www/index.html +172 -0
  882. metadata +901 -433
  883. data/History.txt +0 -38
  884. data/PostInstall.txt +0 -19
  885. data/README.txt +0 -66
  886. data/bin/cloud-describe +0 -28
  887. data/bin/cloud-handle-load +0 -27
  888. data/bin/cloud-provision +0 -30
  889. data/bin/cloud-rsync +0 -28
  890. data/bin/cloud-setup-dev +0 -25
  891. data/bin/cloud-spec +0 -40
  892. data/bin/server-butterfly +0 -25
  893. data/bin/server-cloud-elections +0 -37
  894. data/bin/server-ensure-provisioning +0 -33
  895. data/bin/server-fire-cmd +0 -14
  896. data/bin/server-get-load +0 -15
  897. data/bin/server-list-active +0 -31
  898. data/bin/server-manage-election +0 -67
  899. data/bin/server-monitor.ru +0 -42
  900. data/bin/server-query-agent +0 -15
  901. data/bin/server-rerun +0 -23
  902. data/bin/server-send-command +0 -18
  903. data/bin/server-show-stats +0 -17
  904. data/bin/server-write-new-nodes +0 -26
  905. data/examples/fairchild.rb +0 -28
  906. data/examples/fairchild_chef.rb +0 -19
  907. data/examples/maize.rb +0 -37
  908. data/examples/paparazzi.conf.erb +0 -21
  909. data/examples/plugin_without_plugin_directory.rb +0 -12
  910. data/examples/poolparty.rb +0 -12
  911. data/generators/poolspec/USAGE +0 -5
  912. data/generators/poolspec/poolspec_generator.rb +0 -58
  913. data/generators/poolspec/templates/pool_spec_template.erb +0 -9
  914. data/lib/poolparty/aska.rb +0 -141
  915. data/lib/poolparty/base_packages/haproxy.rb +0 -59
  916. data/lib/poolparty/base_packages/heartbeat.rb +0 -16
  917. data/lib/poolparty/base_packages/poolparty.rb +0 -14
  918. data/lib/poolparty/base_packages/ruby.rb +0 -42
  919. data/lib/poolparty/base_packages/runit.rb +0 -21
  920. data/lib/poolparty/core/array.rb +0 -48
  921. data/lib/poolparty/core/class.rb +0 -26
  922. data/lib/poolparty/core/exception.rb +0 -10
  923. data/lib/poolparty/core/float.rb +0 -13
  924. data/lib/poolparty/core/hash.rb +0 -78
  925. data/lib/poolparty/core/kernel.rb +0 -66
  926. data/lib/poolparty/core/metaid.rb +0 -15
  927. data/lib/poolparty/core/module.rb +0 -40
  928. data/lib/poolparty/core/my_open_struct.rb +0 -18
  929. data/lib/poolparty/core/nil.rb +0 -8
  930. data/lib/poolparty/core/object.rb +0 -103
  931. data/lib/poolparty/core/ordered_hash.rb +0 -99
  932. data/lib/poolparty/core/proc.rb +0 -7
  933. data/lib/poolparty/core/string.rb +0 -191
  934. data/lib/poolparty/core/symbol.rb +0 -27
  935. data/lib/poolparty/core/time.rb +0 -56
  936. data/lib/poolparty/dependencies.rb +0 -49
  937. data/lib/poolparty/dependency_resolver/chef_resolver.rb +0 -237
  938. data/lib/poolparty/dependency_resolver/dependency_resolver.rb +0 -42
  939. data/lib/poolparty/dependency_resolver/dependency_resolver_cloud_extensions.rb +0 -29
  940. data/lib/poolparty/dependency_resolver/puppet.rb +0 -75
  941. data/lib/poolparty/dependency_resolver/puppet_resolver.rb +0 -188
  942. data/lib/poolparty/exceptions/CloudNotFoundException.rb +0 -7
  943. data/lib/poolparty/exceptions/LoadRulesException.rb +0 -7
  944. data/lib/poolparty/exceptions/MasterException.rb +0 -10
  945. data/lib/poolparty/exceptions/ProvisionerException.rb +0 -5
  946. data/lib/poolparty/exceptions/RemoteException.rb +0 -12
  947. data/lib/poolparty/exceptions/ResourceException.rb +0 -7
  948. data/lib/poolparty/exceptions/RuntimeException.rb +0 -7
  949. data/lib/poolparty/exceptions/SpecException.rb +0 -7
  950. data/lib/poolparty/exceptions/TemplateNotFound.rb +0 -7
  951. data/lib/poolparty/exceptions/UnacceptableCommand.rb +0 -5
  952. data/lib/poolparty/exceptions/dependency_resolver_exception.rb +0 -5
  953. data/lib/poolparty/exceptions/package_exception.rb +0 -7
  954. data/lib/poolparty/extra/deployments.rb +0 -31
  955. data/lib/poolparty/helpers/binary.rb +0 -70
  956. data/lib/poolparty/helpers/console.rb +0 -48
  957. data/lib/poolparty/helpers/display.rb +0 -30
  958. data/lib/poolparty/helpers/hash_printer.rb +0 -44
  959. data/lib/poolparty/helpers/loading.rb +0 -4
  960. data/lib/poolparty/helpers/nice_printer.rb +0 -36
  961. data/lib/poolparty/helpers/optioner.rb +0 -156
  962. data/lib/poolparty/helpers/ruberl.rb +0 -33
  963. data/lib/poolparty/lite.rb +0 -30
  964. data/lib/poolparty/modules/callbacks.rb +0 -44
  965. data/lib/poolparty/modules/cloud_dsl.rb +0 -44
  966. data/lib/poolparty/modules/cloud_resourcer.rb +0 -126
  967. data/lib/poolparty/modules/daemonizable.rb +0 -141
  968. data/lib/poolparty/modules/definable_resource.rb +0 -54
  969. data/lib/poolparty/modules/file_writer.rb +0 -95
  970. data/lib/poolparty/modules/output.rb +0 -13
  971. data/lib/poolparty/modules/pinger.rb +0 -28
  972. data/lib/poolparty/modules/pretty_printer.rb +0 -40
  973. data/lib/poolparty/modules/resourcing_dsl.rb +0 -78
  974. data/lib/poolparty/modules/s3_string.rb +0 -32
  975. data/lib/poolparty/modules/safe_instance.rb +0 -31
  976. data/lib/poolparty/modules/searchable_paths.rb +0 -91
  977. data/lib/poolparty/modules/thread_pool.rb +0 -107
  978. data/lib/poolparty/modules/user_helpers.rb +0 -20
  979. data/lib/poolparty/monitors/base_monitor.rb +0 -32
  980. data/lib/poolparty/monitors/monitor_rack.rb +0 -123
  981. data/lib/poolparty/monitors/monitors/favicon_monitor.rb +0 -12
  982. data/lib/poolparty/monitors/monitors/load_monitor.rb +0 -9
  983. data/lib/poolparty/monitors/monitors/memory_monitor.rb +0 -50
  984. data/lib/poolparty/monitors/monitors/neighborhood_monitor.rb +0 -77
  985. data/lib/poolparty/monitors/monitors/stats_monitor.rb +0 -187
  986. data/lib/poolparty/monitors/monitors/time_monitor.rb +0 -15
  987. data/lib/poolparty/net/init.rb +0 -10
  988. data/lib/poolparty/net/remote_bases.rb +0 -20
  989. data/lib/poolparty/net/remote_instance.rb +0 -82
  990. data/lib/poolparty/net/remoter/cloud_control.rb +0 -24
  991. data/lib/poolparty/net/remoter/connections.rb +0 -172
  992. data/lib/poolparty/net/remoter/interactive.rb +0 -45
  993. data/lib/poolparty/net/remoter_base.rb +0 -174
  994. data/lib/poolparty/net/remoter_bases/ec2/ec2.rb +0 -245
  995. data/lib/poolparty/net/remoter_bases/ec2/ec2_remote_instance.rb +0 -53
  996. data/lib/poolparty/net/remoter_bases/ec2/ec2_response_object.rb +0 -64
  997. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vm_disk.rb +0 -12
  998. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vmx.rb +0 -33
  999. data/lib/poolparty/net/remoter_bases/vmrun/utilities/vmx_file.rb +0 -117
  1000. data/lib/poolparty/net/remoter_bases/vmrun/vmrun.rb +0 -158
  1001. data/lib/poolparty/net/remoter_bases/vmrun/vmrun_instance.rb +0 -71
  1002. data/lib/poolparty/plugins/apache2/apache.rb +0 -340
  1003. data/lib/poolparty/plugins/bind.rb +0 -11
  1004. data/lib/poolparty/plugins/chef.rb +0 -173
  1005. data/lib/poolparty/plugins/chef_deploy.rb +0 -58
  1006. data/lib/poolparty/plugins/deploy_directory.rb +0 -49
  1007. data/lib/poolparty/plugins/gem_package.rb +0 -61
  1008. data/lib/poolparty/plugins/line_in_file.rb +0 -30
  1009. data/lib/poolparty/plugins/nanite.rb +0 -41
  1010. data/lib/poolparty/plugins/rails_deploy.rb +0 -76
  1011. data/lib/poolparty/plugins/runit.rb +0 -96
  1012. data/lib/poolparty/plugins/svn.rb +0 -65
  1013. data/lib/poolparty/poolparty/cloud.rb +0 -236
  1014. data/lib/poolparty/poolparty/default.rb +0 -159
  1015. data/lib/poolparty/poolparty/key.rb +0 -78
  1016. data/lib/poolparty/poolparty/loggable.rb +0 -28
  1017. data/lib/poolparty/poolparty/neighborhoods.rb +0 -102
  1018. data/lib/poolparty/poolparty/plugin.rb +0 -71
  1019. data/lib/poolparty/poolparty/plugin_model.rb +0 -45
  1020. data/lib/poolparty/poolparty/pool.rb +0 -80
  1021. data/lib/poolparty/poolparty/poolparty_base_class.rb +0 -190
  1022. data/lib/poolparty/poolparty/resource.rb +0 -213
  1023. data/lib/poolparty/poolparty/script.rb +0 -58
  1024. data/lib/poolparty/poolparty/service.rb +0 -44
  1025. data/lib/poolparty/poolparty/template.rb +0 -27
  1026. data/lib/poolparty/provision/boot_strapper.rb +0 -164
  1027. data/lib/poolparty/provision/configurations/chef.rb +0 -26
  1028. data/lib/poolparty/provision/configurations/puppet.rb +0 -28
  1029. data/lib/poolparty/provision/dr_configure.rb +0 -142
  1030. data/lib/poolparty/resources/host.rb +0 -37
  1031. data/lib/poolparty/resources/remote_file.rb +0 -52
  1032. data/lib/poolparty/resources/sshkey.rb +0 -49
  1033. data/lib/poolparty/resources/symlink.rb +0 -43
  1034. data/lib/poolparty/resources.rb +0 -42
  1035. data/lib/poolparty/schema.rb +0 -79
  1036. data/lib/poolparty/templates/apache2/apache2.conf +0 -14
  1037. data/lib/poolparty/templates/apache2/base.conf.erb +0 -168
  1038. data/lib/poolparty/templates/apache2/debian.conf.erb +0 -675
  1039. data/lib/poolparty/templates/apache2/default-site.conf.erb +0 -41
  1040. data/lib/poolparty/templates/apache2/directory_indexes.conf.erb +0 -101
  1041. data/lib/poolparty/templates/apache2/logging-syslog.conf.erb +0 -42
  1042. data/lib/poolparty/templates/apache2/mime-extras.conf.erb +0 -211
  1043. data/lib/poolparty/templates/apache2/mpm-worker.conf.erb +0 -20
  1044. data/lib/poolparty/templates/apache2/mpm-worker.erb +0 -20
  1045. data/lib/poolparty/templates/apache2/passenger.conf.erb +0 -20
  1046. data/lib/poolparty/templates/apache2/php.ini.erb +0 -1253
  1047. data/lib/poolparty/templates/apache2/server-status.erb +0 -19
  1048. data/lib/poolparty/templates/authkeys +0 -2
  1049. data/lib/poolparty/templates/cib.xml +0 -54
  1050. data/lib/poolparty/templates/erlang_cookie_maker +0 -6
  1051. data/lib/poolparty/templates/gem +0 -27
  1052. data/lib/poolparty/templates/gemrc_template +0 -11
  1053. data/lib/poolparty/templates/ha.cf +0 -17
  1054. data/lib/poolparty/templates/haproxy.conf +0 -38
  1055. data/lib/poolparty/templates/haresources +0 -3
  1056. data/lib/poolparty/templates/logd.cf +0 -42
  1057. data/lib/poolparty/templates/messenger/client/log-run.erb +0 -2
  1058. data/lib/poolparty/templates/messenger/client/run.erb +0 -4
  1059. data/lib/poolparty/templates/messenger/master/log-run.erb +0 -2
  1060. data/lib/poolparty/templates/messenger/master/run.erb +0 -4
  1061. data/lib/poolparty/templates/messenger/node/log-run.erb +0 -2
  1062. data/lib/poolparty/templates/messenger/node/run.erb +0 -4
  1063. data/lib/poolparty/templates/monitor.ru +0 -16
  1064. data/lib/poolparty/templates/namespaceauth.conf +0 -19
  1065. data/lib/poolparty/templates/php.ini.erb +0 -1253
  1066. data/lib/poolparty/templates/poolparty.monitor +0 -14
  1067. data/lib/poolparty/templates/puppet/add_puppet_to_hosts +0 -6
  1068. data/lib/poolparty/templates/puppet/puppet.conf +0 -2
  1069. data/lib/poolparty/templates/puppet/puppetrunner +0 -14
  1070. data/lib/poolparty/templates/puppet/site.pp +0 -4
  1071. data/lib/poolparty/templates/puppetrunner +0 -14
  1072. data/lib/poolparty/templates/yaws.conf +0 -19
  1073. data/lib/poolparty/verification/verifier_base.rb +0 -17
  1074. data/lib/poolparty/verification/verifiers/http_match.rb +0 -43
  1075. data/lib/poolparty/verification/verifiers/http_status.rb +0 -59
  1076. data/lib/poolparty/verification/verifiers/ping.rb +0 -34
  1077. data/lib/poolparty/verification/verify.rb +0 -76
  1078. data/lib/poolpartycl.rb +0 -72
  1079. data/script/destroy +0 -14
  1080. data/script/generate +0 -14
  1081. data/spec/bin/bin_spec_helper.rb +0 -7
  1082. data/spec/bin/fixtures/bin_cloud_for_test.rb +0 -13
  1083. data/spec/bin/server-list-active_spec.rb +0 -24
  1084. data/spec/poolparty/aska/aska_spec.rb +0 -117
  1085. data/spec/poolparty/base_packages/haproxy_spec.rb +0 -7
  1086. data/spec/poolparty/base_packages/heartbeat_spec.rb +0 -7
  1087. data/spec/poolparty/bin/console_spec.rb +0 -83
  1088. data/spec/poolparty/core/array_spec.rb +0 -48
  1089. data/spec/poolparty/core/float.rb +0 -13
  1090. data/spec/poolparty/core/hash_spec.rb +0 -83
  1091. data/spec/poolparty/core/kernel_spec.rb +0 -24
  1092. data/spec/poolparty/core/module_spec.rb +0 -15
  1093. data/spec/poolparty/core/object_spec.rb +0 -68
  1094. data/spec/poolparty/core/ordered_hash_spec.rb +0 -48
  1095. data/spec/poolparty/core/string_spec.rb +0 -145
  1096. data/spec/poolparty/core/time_spec.rb +0 -49
  1097. data/spec/poolparty/dependencies_spec.rb +0 -11
  1098. data/spec/poolparty/dependency_resolver/chef_resolver_spec.rb +0 -107
  1099. data/spec/poolparty/dependency_resolver/dependency_resolver_cloud_extensions_spec.rb +0 -122
  1100. data/spec/poolparty/dependency_resolver/dependency_resolver_spec.rb +0 -16
  1101. data/spec/poolparty/dependency_resolver/puppet_resolver_spec.rb +0 -121
  1102. data/spec/poolparty/extra/deployments_spec.rb +0 -68
  1103. data/spec/poolparty/fixtures/clouds.json +0 -128
  1104. data/spec/poolparty/fixtures/test_template.erb +0 -1
  1105. data/spec/poolparty/helpers/binary_spec.rb +0 -26
  1106. data/spec/poolparty/helpers/display_spec.rb +0 -13
  1107. data/spec/poolparty/helpers/hash_printer_spec.rb +0 -34
  1108. data/spec/poolparty/helpers/optioner_spec.rb +0 -50
  1109. data/spec/poolparty/id_rsa +0 -27
  1110. data/spec/poolparty/modules/cloud_resourcer_spec.rb +0 -67
  1111. data/spec/poolparty/modules/definable_resource.rb +0 -9
  1112. data/spec/poolparty/modules/file_writer_spec.rb +0 -64
  1113. data/spec/poolparty/modules/s3_string_spec.rb +0 -15
  1114. data/spec/poolparty/modules/searchable_paths_spec.rb +0 -76
  1115. data/spec/poolparty/monitors/base_monitor_spec.rb +0 -112
  1116. data/spec/poolparty/monitors/monitors/cpu_monitor_spec.rb +0 -18
  1117. data/spec/poolparty/monitors/monitors/memory_monitor_spec.rb +0 -48
  1118. data/spec/poolparty/net/remote_instance_spec.rb +0 -17
  1119. data/spec/poolparty/net/remote_spec.rb +0 -287
  1120. data/spec/poolparty/net/remoter_base_spec.rb +0 -35
  1121. data/spec/poolparty/net/remoter_bases/ec2_mocks_and_stubs.rb +0 -24
  1122. data/spec/poolparty/net/remoter_bases/ec2_remote_instance_spec.rb +0 -114
  1123. data/spec/poolparty/net/remoter_bases/ec2_spec.rb +0 -134
  1124. data/spec/poolparty/net/remoter_spec.rb +0 -133
  1125. data/spec/poolparty/plugins/chef_spec.rb +0 -7
  1126. data/spec/poolparty/plugins/deploydirectory_spec.rb +0 -51
  1127. data/spec/poolparty/plugins/git_spec.rb +0 -41
  1128. data/spec/poolparty/plugins/line_spec.rb +0 -22
  1129. data/spec/poolparty/poolparty/cloud_spec.rb +0 -322
  1130. data/spec/poolparty/poolparty/configurers/files/ruby_basic.rb +0 -16
  1131. data/spec/poolparty/poolparty/configurers/files/ruby_plugins.rb +0 -16
  1132. data/spec/poolparty/poolparty/configurers/ruby_spec.rb +0 -42
  1133. data/spec/poolparty/poolparty/default_spec.rb +0 -139
  1134. data/spec/poolparty/poolparty/example_spec.rb +0 -60
  1135. data/spec/poolparty/poolparty/key_spec.rb +0 -42
  1136. data/spec/poolparty/poolparty/neighborhoods_spec.rb +0 -65
  1137. data/spec/poolparty/poolparty/plugin_model_spec.rb +0 -54
  1138. data/spec/poolparty/poolparty/plugin_spec.rb +0 -41
  1139. data/spec/poolparty/poolparty/pool_spec.rb +0 -100
  1140. data/spec/poolparty/poolparty/resource_spec.rb +0 -208
  1141. data/spec/poolparty/poolparty/script_spec.rb +0 -49
  1142. data/spec/poolparty/poolparty/service_spec.rb +0 -5
  1143. data/spec/poolparty/poolparty/template_spec.rb +0 -26
  1144. data/spec/poolparty/poolparty/test_plugins/sshkey_test +0 -2
  1145. data/spec/poolparty/poolparty/test_plugins/webserver.rb +0 -30
  1146. data/spec/poolparty/poolparty_base_class_spec.rb +0 -84
  1147. data/spec/poolparty/poolparty_spec.rb +0 -36
  1148. data/spec/poolparty/resources/cron_spec.rb +0 -44
  1149. data/spec/poolparty/resources/directory_spec.rb +0 -40
  1150. data/spec/poolparty/resources/exec_spec.rb +0 -37
  1151. data/spec/poolparty/resources/file_spec.rb +0 -64
  1152. data/spec/poolparty/resources/gem_spec.rb +0 -7
  1153. data/spec/poolparty/resources/host_spec.rb +0 -35
  1154. data/spec/poolparty/resources/package_spec.rb +0 -26
  1155. data/spec/poolparty/resources/service_spec.rb +0 -29
  1156. data/spec/poolparty/resources/sshkey_spec.rb +0 -40
  1157. data/spec/poolparty/resources/symlink_spec.rb +0 -29
  1158. data/spec/poolparty/resources/user_spec.rb +0 -48
  1159. data/spec/poolparty/resources/variable_spec.rb +0 -26
  1160. data/spec/poolparty/schema_spec.rb +0 -53
  1161. data/spec/poolparty/spec_helper.rb +0 -262
  1162. data/spec/poolparty/test_spec_helper.rb +0 -13
  1163. data/tasks/cloud.rake +0 -3
  1164. data/tasks/ec2.rake +0 -13
  1165. data/tasks/instance.rake +0 -2
  1166. data/tasks/server.rake +0 -44
  1167. data/tasks/spec.rake +0 -50
  1168. data/test/poolparty/core/array_test.rb +0 -21
  1169. data/test/poolparty/core/hash_test.rb +0 -34
  1170. data/test/poolparty/core/string_test.rb +0 -29
  1171. data/test/poolparty/dependency_resolver/puppet_resolver_test.rb +0 -90
  1172. data/test/poolparty/modules/callbacks_test.rb +0 -40
  1173. data/test/poolparty/modules/cloud_dsl_test.rb +0 -60
  1174. data/test/poolparty/net/remoter_bases/vmrun/vmrun_test.rb +0 -54
  1175. data/test/poolparty/net/remoter_test.rb +0 -14
  1176. data/test/poolparty/poolparty/neighborhood_test.rb +0 -23
  1177. data/test/poolparty/poolparty/poolparty_base_class_test.rb +0 -84
  1178. data/test/poolparty/poolparty/template_test.rb +0 -31
  1179. data/test/poolparty/provision/boot_strapper_test.rb +0 -6
  1180. data/test/poolparty/provision/dr_configure_test.rb +0 -6
  1181. data/test/poolparty/verification/verify_test.rb +0 -49
  1182. data/test/test_generator_helper.rb +0 -29
  1183. data/test/test_pool_spec_generator.rb +0 -47
  1184. data/test/test_poolparty.rb +0 -12
  1185. data/vendor/gems/butterfly/History.txt +0 -4
  1186. data/vendor/gems/butterfly/PostInstall.txt +0 -2
  1187. data/vendor/gems/butterfly/README.rdoc +0 -48
  1188. data/vendor/gems/butterfly/Rakefile +0 -62
  1189. data/vendor/gems/butterfly/VERSION.yml +0 -4
  1190. data/vendor/gems/butterfly/bin/flutter +0 -4
  1191. data/vendor/gems/butterfly/butterfly.gemspec +0 -37
  1192. data/vendor/gems/butterfly/examples/config.ru +0 -15
  1193. data/vendor/gems/butterfly/examples/my_app.rb +0 -12
  1194. data/vendor/gems/butterfly/lib/butterfly.rb +0 -14
  1195. data/vendor/gems/butterfly/lib/handler.rb +0 -48
  1196. data/vendor/gems/butterfly/lib/request.rb +0 -29
  1197. data/vendor/gems/butterfly/lib/response.rb +0 -49
  1198. data/vendor/gems/butterfly/script/console +0 -10
  1199. data/vendor/gems/butterfly/script/destroy +0 -14
  1200. data/vendor/gems/butterfly/script/generate +0 -14
  1201. data/vendor/gems/butterfly/test/test_adapter_base.rb +0 -23
  1202. data/vendor/gems/butterfly/test/test_butterfly_request.rb +0 -46
  1203. data/vendor/gems/butterfly/test/test_butterfly_response.rb +0 -43
  1204. data/vendor/gems/butterfly/test/test_butterfly_server.rb +0 -16
  1205. data/vendor/gems/butterfly/test/test_default.rb +0 -12
  1206. data/vendor/gems/butterfly/test/test_helper.rb +0 -6
  1207. data/vendor/gems/dslify/History.txt +0 -4
  1208. data/vendor/gems/dslify/Manifest.txt +0 -25
  1209. data/vendor/gems/dslify/PostInstall.txt +0 -5
  1210. data/vendor/gems/dslify/README.txt +0 -60
  1211. data/vendor/gems/dslify/config/hoe.rb +0 -73
  1212. data/vendor/gems/dslify/config/requirements.rb +0 -15
  1213. data/vendor/gems/dslify/lib/dslify/dslify.rb +0 -76
  1214. data/vendor/gems/dslify/lib/dslify/version.rb +0 -10
  1215. data/vendor/gems/dslify/script/console +0 -10
  1216. data/vendor/gems/dslify/script/destroy +0 -14
  1217. data/vendor/gems/dslify/script/generate +0 -14
  1218. data/vendor/gems/dslify/script/txt2html +0 -82
  1219. data/vendor/gems/dslify/tasks/environment.rake +0 -7
  1220. data/vendor/gems/dslify/tasks/website.rake +0 -17
  1221. data/vendor/gems/dslify/test/test_dslify.rb +0 -138
  1222. data/vendor/gems/dslify/website/index.html +0 -86
  1223. data/vendor/gems/dslify/website/index.txt +0 -83
  1224. data/vendor/gems/dslify/website/javascripts/rounded_corners_lite.inc.js +0 -285
  1225. data/vendor/gems/dslify/website/stylesheets/screen.css +0 -138
  1226. data/vendor/gems/dslify/website/template.html.erb +0 -48
  1227. data/vendor/gems/suitcase/README.rdoc +0 -31
  1228. data/vendor/gems/suitcase/Rakefile +0 -57
  1229. data/vendor/gems/suitcase/VERSION.yml +0 -4
  1230. data/vendor/gems/suitcase/lib/suitcase/unzipper.rb +0 -15
  1231. data/vendor/gems/suitcase/lib/suitcase/zipper.rb +0 -119
  1232. data/vendor/gems/suitcase/lib/suitcase.rb +0 -5
  1233. data/vendor/gems/suitcase/suitcase.gemspec +0 -32
  1234. data/vendor/gems/suitcase/test/suitcase_test.rb +0 -102
  1235. data/vendor/gems/suitcase/test/test_dir/box.rb +0 -1
  1236. data/vendor/gems/suitcase/test/test_dir/test.txt +0 -1
  1237. data/vendor/gems/suitcase/test/test_helper.rb +0 -12
  1238. /data/lib/poolparty/{templates → plugins}/apache2/browser_fixes.conf.erb +0 -0
  1239. /data/lib/poolparty/{templates → plugins}/apache2/mime-minimal.conf.erb +0 -0
  1240. /data/{spec/poolparty/poolparty/test_plugins/virtual_host_template.erb → lib/proto/gen-py/__init__.py} +0 -0
  1241. /data/vendor/gems/{suitcase → colors}/LICENSE +0 -0
  1242. /data/vendor/gems/{dslify → context}/setup.rb +0 -0
  1243. /data/vendor/gems/{dslify → context}/tasks/deployment.rake +0 -0
  1244. /data/{tasks → vendor/gems/context/tasks}/environment.rake +0 -0
@@ -1,1253 +0,0 @@
1
- [PHP]
2
-
3
- ;;;;;;;;;;;
4
- ; WARNING ;
5
- ;;;;;;;;;;;
6
- ; This is the default settings file for new PHP installations.
7
- ; By default, PHP installs itself with a configuration suitable for
8
- ; development purposes, and *NOT* for production purposes.
9
- ; For several security-oriented considerations that should be taken
10
- ; before going online with your site, please consult php.ini-recommended
11
- ; and http://php.net/manual/en/security.php.
12
-
13
-
14
- ;;;;;;;;;;;;;;;;;;;
15
- ; About php.ini ;
16
- ;;;;;;;;;;;;;;;;;;;
17
- ; This file controls many aspects of PHP's behavior. In order for PHP to
18
- ; read it, it must be named 'php.ini'. PHP looks for it in the current
19
- ; working directory, in the path designated by the environment variable
20
- ; PHPRC, and in the path that was defined in compile time (in that order).
21
- ; Under Windows, the compile-time path is the Windows directory. The
22
- ; path in which the php.ini file is looked for can be overridden using
23
- ; the -c argument in command line mode.
24
- ;
25
- ; The syntax of the file is extremely simple. Whitespace and Lines
26
- ; beginning with a semicolon are silently ignored (as you probably guessed).
27
- ; Section headers (e.g. [Foo]) are also silently ignored, even though
28
- ; they might mean something in the future.
29
- ;
30
- ; Directives are specified using the following syntax:
31
- ; directive = value
32
- ; Directive names are *case sensitive* - foo=bar is different from FOO=bar.
33
- ;
34
- ; The value can be a string, a number, a PHP constant (e.g. E_ALL or M_PI), one
35
- ; of the INI constants (On, Off, True, False, Yes, No and None) or an expression
36
- ; (e.g. E_ALL & ~E_NOTICE), or a quoted string ("foo").
37
- ;
38
- ; Expressions in the INI file are limited to bitwise operators and parentheses:
39
- ; | bitwise OR
40
- ; & bitwise AND
41
- ; ~ bitwise NOT
42
- ; ! boolean NOT
43
- ;
44
- ; Boolean flags can be turned on using the values 1, On, True or Yes.
45
- ; They can be turned off using the values 0, Off, False or No.
46
- ;
47
- ; An empty string can be denoted by simply not writing anything after the equal
48
- ; sign, or by using the None keyword:
49
- ;
50
- ; foo = ; sets foo to an empty string
51
- ; foo = none ; sets foo to an empty string
52
- ; foo = "none" ; sets foo to the string 'none'
53
- ;
54
- ; If you use constants in your value, and these constants belong to a
55
- ; dynamically loaded extension (either a PHP extension or a Zend extension),
56
- ; you may only use these constants *after* the line that loads the extension.
57
- ;
58
- ;
59
- ;;;;;;;;;;;;;;;;;;;
60
- ; About this file ;
61
- ;;;;;;;;;;;;;;;;;;;
62
- ; All the values in the php.ini-dist file correspond to the builtin
63
- ; defaults (that is, if no php.ini is used, or if you delete these lines,
64
- ; the builtin defaults will be identical).
65
-
66
-
67
- ;;;;;;;;;;;;;;;;;;;;
68
- ; Language Options ;
69
- ;;;;;;;;;;;;;;;;;;;;
70
-
71
- ; Enable the PHP scripting language engine under Apache.
72
- engine = On
73
-
74
- ; Enable compatibility mode with Zend Engine 1 (PHP 4.x)
75
- zend.ze1_compatibility_mode = Off
76
-
77
- ; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized.
78
- ; NOTE: Using short tags should be avoided when developing applications or
79
- ; libraries that are meant for redistribution, or deployment on PHP
80
- ; servers which are not under your control, because short tags may not
81
- ; be supported on the target server. For portable, redistributable code,
82
- ; be sure not to use short tags.
83
- short_open_tag = On
84
-
85
- ; Allow ASP-style <% %> tags.
86
- asp_tags = Off
87
-
88
- ; The number of significant digits displayed in floating point numbers.
89
- precision = 12
90
-
91
- ; Enforce year 2000 compliance (will cause problems with non-compliant browsers)
92
- y2k_compliance = On
93
-
94
- ; Output buffering allows you to send header lines (including cookies) even
95
- ; after you send body content, at the price of slowing PHP's output layer a
96
- ; bit. You can enable output buffering during runtime by calling the output
97
- ; buffering functions. You can also enable output buffering for all files by
98
- ; setting this directive to On. If you wish to limit the size of the buffer
99
- ; to a certain size - you can use a maximum number of bytes instead of 'On', as
100
- ; a value for this directive (e.g., output_buffering=4096).
101
- output_buffering = Off
102
-
103
- ; You can redirect all of the output of your scripts to a function. For
104
- ; example, if you set output_handler to "mb_output_handler", character
105
- ; encoding will be transparently converted to the specified encoding.
106
- ; Setting any output handler automatically turns on output buffering.
107
- ; Note: People who wrote portable scripts should not depend on this ini
108
- ; directive. Instead, explicitly set the output handler using ob_start().
109
- ; Using this ini directive may cause problems unless you know what script
110
- ; is doing.
111
- ; Note: You cannot use both "mb_output_handler" with "ob_iconv_handler"
112
- ; and you cannot use both "ob_gzhandler" and "zlib.output_compression".
113
- ; Note: output_handler must be empty if this is set 'On' !!!!
114
- ; Instead you must use zlib.output_handler.
115
- ;output_handler =
116
-
117
- ; Transparent output compression using the zlib library
118
- ; Valid values for this option are 'off', 'on', or a specific buffer size
119
- ; to be used for compression (default is 4KB)
120
- ; Note: Resulting chunk size may vary due to nature of compression. PHP
121
- ; outputs chunks that are few hundreds bytes each as a result of
122
- ; compression. If you prefer a larger chunk size for better
123
- ; performance, enable output_buffering in addition.
124
- ; Note: You need to use zlib.output_handler instead of the standard
125
- ; output_handler, or otherwise the output will be corrupted.
126
- zlib.output_compression = Off
127
- ;zlib.output_compression_level = -1
128
-
129
- ; You cannot specify additional output handlers if zlib.output_compression
130
- ; is activated here. This setting does the same as output_handler but in
131
- ; a different order.
132
- ;zlib.output_handler =
133
-
134
- ; Implicit flush tells PHP to tell the output layer to flush itself
135
- ; automatically after every output block. This is equivalent to calling the
136
- ; PHP function flush() after each and every call to print() or echo() and each
137
- ; and every HTML block. Turning this option on has serious performance
138
- ; implications and is generally recommended for debugging purposes only.
139
- implicit_flush = Off
140
-
141
- ; The unserialize callback function will be called (with the undefined class'
142
- ; name as parameter), if the unserializer finds an undefined class
143
- ; which should be instantiated.
144
- ; A warning appears if the specified function is not defined, or if the
145
- ; function doesn't include/implement the missing class.
146
- ; So only set this entry, if you really want to implement such a
147
- ; callback-function.
148
- unserialize_callback_func=
149
-
150
- ; When floats & doubles are serialized store serialize_precision significant
151
- ; digits after the floating point. The default value ensures that when floats
152
- ; are decoded with unserialize, the data will remain the same.
153
- serialize_precision = 100
154
-
155
- ; Whether to enable the ability to force arguments to be passed by reference
156
- ; at function call time. This method is deprecated and is likely to be
157
- ; unsupported in future versions of PHP/Zend. The encouraged method of
158
- ; specifying which arguments should be passed by reference is in the function
159
- ; declaration. You're encouraged to try and turn this option Off and make
160
- ; sure your scripts work properly with it in order to ensure they will work
161
- ; with future versions of the language (you will receive a warning each time
162
- ; you use this feature, and the argument will be passed by value instead of by
163
- ; reference).
164
- allow_call_time_pass_reference = On
165
-
166
- ;
167
- ; Safe Mode
168
- ;
169
- ; NOTE: this is considered a "broken" security measure.
170
- ; Applications relying on this feature will not recieve full
171
- ; support by the security team. For more information please
172
- ; see /usr/share/doc/php5-common/README.Debian.security
173
- ;
174
- safe_mode = Off
175
-
176
- ; By default, Safe Mode does a UID compare check when
177
- ; opening files. If you want to relax this to a GID compare,
178
- ; then turn on safe_mode_gid.
179
- safe_mode_gid = Off
180
-
181
- ; When safe_mode is on, UID/GID checks are bypassed when
182
- ; including files from this directory and its subdirectories.
183
- ; (directory must also be in include_path or full path must
184
- ; be used when including)
185
- safe_mode_include_dir =
186
-
187
- ; When safe_mode is on, only executables located in the safe_mode_exec_dir
188
- ; will be allowed to be executed via the exec family of functions.
189
- safe_mode_exec_dir =
190
-
191
- ; Setting certain environment variables may be a potential security breach.
192
- ; This directive contains a comma-delimited list of prefixes. In Safe Mode,
193
- ; the user may only alter environment variables whose names begin with the
194
- ; prefixes supplied here. By default, users will only be able to set
195
- ; environment variables that begin with PHP_ (e.g. PHP_FOO=BAR).
196
- ;
197
- ; Note: If this directive is empty, PHP will let the user modify ANY
198
- ; environment variable!
199
- safe_mode_allowed_env_vars = PHP_
200
-
201
- ; This directive contains a comma-delimited list of environment variables that
202
- ; the end user won't be able to change using putenv(). These variables will be
203
- ; protected even if safe_mode_allowed_env_vars is set to allow to change them.
204
- safe_mode_protected_env_vars = LD_LIBRARY_PATH
205
-
206
- ; open_basedir, if set, limits all file operations to the defined directory
207
- ; and below. This directive makes most sense if used in a per-directory
208
- ; or per-virtualhost web server configuration file. This directive is
209
- ; *NOT* affected by whether Safe Mode is turned On or Off.
210
-
211
- ; NOTE: this is considered a "broken" security measure.
212
- ; Applications relying on this feature will not recieve full
213
- ; support by the security team. For more information please
214
- ; see /usr/share/doc/php5-common/README.Debian.security
215
- ;
216
-
217
- ;open_basedir =
218
-
219
- ; This directive allows you to disable certain functions for security reasons.
220
- ; It receives a comma-delimited list of function names. This directive is
221
- ; *NOT* affected by whether Safe Mode is turned On or Off.
222
- disable_functions =
223
-
224
- ; This directive allows you to disable certain classes for security reasons.
225
- ; It receives a comma-delimited list of class names. This directive is
226
- ; *NOT* affected by whether Safe Mode is turned On or Off.
227
- disable_classes =
228
-
229
- ; Colors for Syntax Highlighting mode. Anything that's acceptable in
230
- ; <span style="color: ???????"> would work.
231
- ;highlight.string = #DD0000
232
- ;highlight.comment = #FF9900
233
- ;highlight.keyword = #007700
234
- ;highlight.bg = #FFFFFF
235
- ;highlight.default = #0000BB
236
- ;highlight.html = #000000
237
-
238
- ; If enabled, the request will be allowed to complete even if the user aborts
239
- ; the request. Consider enabling it if executing long request, which may end up
240
- ; being interrupted by the user or a browser timing out.
241
- ; ignore_user_abort = On
242
-
243
- ; Determines the size of the realpath cache to be used by PHP. This value should
244
- ; be increased on systems where PHP opens many files to reflect the quantity of
245
- ; the file operations performed.
246
- ; realpath_cache_size=16k
247
-
248
- ; Duration of time, in seconds for which to cache realpath information for a given
249
- ; file or directory. For systems with rarely changing files, consider increasing this
250
- ; value.
251
- ; realpath_cache_ttl=120
252
-
253
- ;
254
- ; Misc
255
- ;
256
- ; Decides whether PHP may expose the fact that it is installed on the server
257
- ; (e.g. by adding its signature to the Web server header). It is no security
258
- ; threat in any way, but it makes it possible to determine whether you use PHP
259
- ; on your server or not.
260
- expose_php = On
261
-
262
-
263
- ;;;;;;;;;;;;;;;;;;;
264
- ; Resource Limits ;
265
- ;;;;;;;;;;;;;;;;;;;
266
-
267
- max_execution_time = 120 ; Maximum execution time of each script, in seconds
268
- max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
269
- ;max_input_nesting_level = 64 ; Maximum input variable nesting level
270
- memory_limit = 64M ; Maximum amount of memory a script may consume (16MB)
271
-
272
-
273
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
274
- ; Error handling and logging ;
275
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
276
-
277
- ; error_reporting is a bit-field. Or each number up to get desired error
278
- ; reporting level
279
- ; E_ALL - All errors and warnings (doesn't include E_STRICT)
280
- ; E_ERROR - fatal run-time errors
281
- ; E_RECOVERABLE_ERROR - almost fatal run-time errors
282
- ; E_WARNING - run-time warnings (non-fatal errors)
283
- ; E_PARSE - compile-time parse errors
284
- ; E_NOTICE - run-time notices (these are warnings which often result
285
- ; from a bug in your code, but it's possible that it was
286
- ; intentional (e.g., using an uninitialized variable and
287
- ; relying on the fact it's automatically initialized to an
288
- ; empty string)
289
- ; E_STRICT - run-time notices, enable to have PHP suggest changes
290
- ; to your code which will ensure the best interoperability
291
- ; and forward compatibility of your code
292
- ; E_CORE_ERROR - fatal errors that occur during PHP's initial startup
293
- ; E_CORE_WARNING - warnings (non-fatal errors) that occur during PHP's
294
- ; initial startup
295
- ; E_COMPILE_ERROR - fatal compile-time errors
296
- ; E_COMPILE_WARNING - compile-time warnings (non-fatal errors)
297
- ; E_USER_ERROR - user-generated error message
298
- ; E_USER_WARNING - user-generated warning message
299
- ; E_USER_NOTICE - user-generated notice message
300
- ;
301
- ; Examples:
302
- ;
303
- ; - Show all errors, except for notices and coding standards warnings
304
- ;
305
- ;error_reporting = E_ALL & ~E_NOTICE
306
- ;
307
- ; - Show all errors, except for notices
308
- ;
309
- ;error_reporting = E_ALL & ~E_NOTICE | E_STRICT
310
- ;
311
- ; - Show only errors
312
- ;
313
- ;error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR
314
- ;
315
- ; - Show all errors except for notices and coding standards warnings
316
- ;
317
- error_reporting = E_ALL & ~E_NOTICE
318
-
319
- ; Print out errors (as a part of the output). For production web sites,
320
- ; you're strongly encouraged to turn this feature off, and use error logging
321
- ; instead (see below). Keeping display_errors enabled on a production web site
322
- ; may reveal security information to end users, such as file paths on your Web
323
- ; server, your database schema or other information.
324
- ;
325
- ; possible values for display_errors:
326
- ;
327
- ; Off - Do not display any errors
328
- ; stderr - Display errors to STDERR (affects only CGI/CLI binaries!)
329
- ;
330
- ;display_errors = "stderr"
331
- ;
332
- ; stdout (On) - Display errors to STDOUT
333
- ;
334
- display_errors = On
335
-
336
- ; Even when display_errors is on, errors that occur during PHP's startup
337
- ; sequence are not displayed. It's strongly recommended to keep
338
- ; display_startup_errors off, except for when debugging.
339
- display_startup_errors = Off
340
-
341
- ; Log errors into a log file (server-specific log, stderr, or error_log (below))
342
- ; As stated above, you're strongly advised to use error logging in place of
343
- ; error displaying on production web sites.
344
- log_errors = Off
345
-
346
- ; Set maximum length of log_errors. In error_log information about the source is
347
- ; added. The default is 1024 and 0 allows to not apply any maximum length at all.
348
- log_errors_max_len = 1024
349
-
350
- ; Do not log repeated messages. Repeated errors must occur in same file on same
351
- ; line until ignore_repeated_source is set true.
352
- ignore_repeated_errors = Off
353
-
354
- ; Ignore source of message when ignoring repeated messages. When this setting
355
- ; is On you will not log errors with repeated messages from different files or
356
- ; source lines.
357
- ignore_repeated_source = Off
358
-
359
- ; If this parameter is set to Off, then memory leaks will not be shown (on
360
- ; stdout or in the log). This has only effect in a debug compile, and if
361
- ; error reporting includes E_WARNING in the allowed list
362
- report_memleaks = On
363
-
364
- ;report_zend_debug = 0
365
-
366
- ; Store the last error/warning message in $php_errormsg (boolean).
367
- track_errors = Off
368
-
369
- ; Disable the inclusion of HTML tags in error messages.
370
- ; Note: Never use this feature for production boxes.
371
- ;html_errors = Off
372
-
373
- ; If html_errors is set On PHP produces clickable error messages that direct
374
- ; to a page describing the error or function causing the error in detail.
375
- ; You can download a copy of the PHP manual from http://www.php.net/docs.php
376
- ; and change docref_root to the base URL of your local copy including the
377
- ; leading '/'. You must also specify the file extension being used including
378
- ; the dot.
379
- ; Note: Never use this feature for production boxes.
380
- ;docref_root = "/phpmanual/"
381
- ;docref_ext = .html
382
-
383
- ; String to output before an error message.
384
- ;error_prepend_string = "<font color=ff0000>"
385
-
386
- ; String to output after an error message.
387
- ;error_append_string = "</font>"
388
-
389
- ; Log errors to specified file.
390
- ;error_log = filename
391
-
392
- ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
393
- ;error_log = syslog
394
-
395
-
396
- ;;;;;;;;;;;;;;;;;
397
- ; Data Handling ;
398
- ;;;;;;;;;;;;;;;;;
399
- ;
400
- ; Note - track_vars is ALWAYS enabled as of PHP 4.0.3
401
-
402
- ; The separator used in PHP generated URLs to separate arguments.
403
- ; Default is "&".
404
- ;arg_separator.output = "&amp;"
405
-
406
- ; List of separator(s) used by PHP to parse input URLs into variables.
407
- ; Default is "&".
408
- ; NOTE: Every character in this directive is considered as separator!
409
- ;arg_separator.input = ";&"
410
-
411
- ; This directive describes the order in which PHP registers GET, POST, Cookie,
412
- ; Environment and Built-in variables (G, P, C, E & S respectively, often
413
- ; referred to as EGPCS or GPC). Registration is done from left to right, newer
414
- ; values override older values.
415
- variables_order = "EGPCS"
416
-
417
- ; Whether or not to register the EGPCS variables as global variables. You may
418
- ; want to turn this off if you don't want to clutter your scripts' global scope
419
- ; with user data. This makes most sense when coupled with track_vars - in which
420
- ; case you can access all of the GPC variables through the $HTTP_*_VARS[],
421
- ; variables.
422
- ;
423
- ; You should do your best to write your scripts so that they do not require
424
- ; register_globals to be on; Using form variables as globals can easily lead
425
- ; to possible security problems, if the code is not very well thought of.
426
-
427
- ; NOTE: applications relying on this feature will not recieve full
428
- ; support by the security team. For more information please
429
- ; see /usr/share/doc/php5-common/README.Debian.security
430
- ;
431
- register_globals = Off
432
-
433
- ; Whether or not to register the old-style input arrays, HTTP_GET_VARS
434
- ; and friends. If you're not using them, it's recommended to turn them off,
435
- ; for performance reasons.
436
- register_long_arrays = On
437
-
438
- ; This directive tells PHP whether to declare the argv&argc variables (that
439
- ; would contain the GET information). If you don't use these variables, you
440
- ; should turn it off for increased performance.
441
- register_argc_argv = On
442
-
443
- ; When enabled, the SERVER and ENV variables are created when they're first
444
- ; used (Just In Time) instead of when the script starts. If these variables
445
- ; are not used within a script, having this directive on will result in a
446
- ; performance gain. The PHP directives register_globals, register_long_arrays,
447
- ; and register_argc_argv must be disabled for this directive to have any affect.
448
- auto_globals_jit = On
449
-
450
- ; Maximum size of POST data that PHP will accept.
451
- post_max_size = 8M
452
-
453
- ; Magic quotes
454
- ;
455
-
456
- ; Magic quotes for incoming GET/POST/Cookie data.
457
- magic_quotes_gpc = On
458
-
459
- ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
460
- magic_quotes_runtime = Off
461
-
462
- ; Use Sybase-style magic quotes (escape ' with '' instead of \').
463
- magic_quotes_sybase = Off
464
-
465
- ; Automatically add files before or after any PHP document.
466
- auto_prepend_file =
467
- auto_append_file =
468
-
469
- ; As of 4.0b4, PHP always outputs a character encoding by default in
470
- ; the Content-type: header. To disable sending of the charset, simply
471
- ; set it to be empty.
472
- ;
473
- ; PHP's built-in default is text/html
474
- default_mimetype = "text/html"
475
- ;default_charset = "iso-8859-1"
476
-
477
- ; Always populate the $HTTP_RAW_POST_DATA variable.
478
- ;always_populate_raw_post_data = On
479
-
480
-
481
- ;;;;;;;;;;;;;;;;;;;;;;;;;
482
- ; Paths and Directories ;
483
- ;;;;;;;;;;;;;;;;;;;;;;;;;
484
-
485
- ; UNIX: "/path1:/path2"
486
- ;include_path = ".:/usr/share/php"
487
- ;
488
- ; Windows: "\path1;\path2"
489
- ;include_path = ".;c:\php\includes"
490
-
491
- ; The root of the PHP pages, used only if nonempty.
492
- ; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
493
- ; if you are running php as a CGI under any web server (other than IIS)
494
- ; see documentation for security issues. The alternate is to use the
495
- ; cgi.force_redirect configuration below
496
- doc_root =
497
-
498
- ; The directory under which PHP opens the script using /~username used only
499
- ; if nonempty.
500
- user_dir =
501
-
502
- ; Directory in which the loadable extensions (modules) reside.
503
- ; extension_dir = "./"
504
-
505
- ; Whether or not to enable the dl() function. The dl() function does NOT work
506
- ; properly in multithreaded servers, such as IIS or Zeus, and is automatically
507
- ; disabled on them.
508
- ; NOTE: this is a potential security hole and is disabled by default in debian
509
- enable_dl = Off
510
-
511
- ; cgi.force_redirect is necessary to provide security running PHP as a CGI under
512
- ; most web servers. Left undefined, PHP turns this on by default. You can
513
- ; turn it off here AT YOUR OWN RISK
514
- ; **You CAN safely turn this off for IIS, in fact, you MUST.**
515
- ; cgi.force_redirect = 1
516
-
517
- ; if cgi.nph is enabled it will force cgi to always sent Status: 200 with
518
- ; every request.
519
- ; cgi.nph = 1
520
-
521
- ; if cgi.force_redirect is turned on, and you are not running under Apache or Netscape
522
- ; (iPlanet) web servers, you MAY need to set an environment variable name that PHP
523
- ; will look for to know it is OK to continue execution. Setting this variable MAY
524
- ; cause security issues, KNOW WHAT YOU ARE DOING FIRST.
525
- ; cgi.redirect_status_env = ;
526
-
527
- ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's
528
- ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
529
- ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting
530
- ; this to 1 will cause PHP CGI to fix it's paths to conform to the spec. A setting
531
- ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts
532
- ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
533
- ; cgi.fix_pathinfo=0
534
-
535
- ; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
536
- ; security tokens of the calling client. This allows IIS to define the
537
- ; security context that the request runs under. mod_fastcgi under Apache
538
- ; does not currently support this feature (03/17/2002)
539
- ; Set to 1 if running under IIS. Default is zero.
540
- ; fastcgi.impersonate = 1;
541
-
542
- ; Disable logging through FastCGI connection
543
- ; fastcgi.logging = 0
544
-
545
- ; cgi.rfc2616_headers configuration option tells PHP what type of headers to
546
- ; use when sending HTTP response code. If it's set 0 PHP sends Status: header that
547
- ; is supported by Apache. When this option is set to 1 PHP will send
548
- ; RFC2616 compliant header.
549
- ; Default is zero.
550
- ;cgi.rfc2616_headers = 0
551
-
552
-
553
- ;;;;;;;;;;;;;;;;
554
- ; File Uploads ;
555
- ;;;;;;;;;;;;;;;;
556
-
557
- ; Whether to allow HTTP file uploads.
558
- file_uploads = On
559
-
560
- ; Temporary directory for HTTP uploaded files (will use system default if not
561
- ; specified).
562
- ;upload_tmp_dir =
563
-
564
- ; Maximum allowed size for uploaded files.
565
- upload_max_filesize = 2M
566
-
567
-
568
- ;;;;;;;;;;;;;;;;;;
569
- ; Fopen wrappers ;
570
- ;;;;;;;;;;;;;;;;;;
571
-
572
- ; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
573
- allow_url_fopen = On
574
-
575
- ; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
576
- allow_url_include = Off
577
-
578
- ; Define the anonymous ftp password (your email address)
579
- ;from="john@doe.com"
580
-
581
- ; Define the User-Agent string
582
- ; user_agent="PHP"
583
-
584
- ; Default timeout for socket based streams (seconds)
585
- default_socket_timeout = 60
586
-
587
- ; If your scripts have to deal with files from Macintosh systems,
588
- ; or you are running on a Mac and need to deal with files from
589
- ; unix or win32 systems, setting this flag will cause PHP to
590
- ; automatically detect the EOL character in those files so that
591
- ; fgets() and file() will work regardless of the source of the file.
592
- ; auto_detect_line_endings = Off
593
-
594
-
595
- ;;;;;;;;;;;;;;;;;;;;;;
596
- ; Dynamic Extensions ;
597
- ;;;;;;;;;;;;;;;;;;;;;;
598
- ;
599
- ; If you wish to have an extension loaded automatically, use the following
600
- ; syntax:
601
- ;
602
- ; extension=modulename.extension
603
- ;
604
- ; For example, on Windows:
605
- ;
606
- ; extension=msql.dll
607
- ;
608
- ; ... or under UNIX:
609
- ;
610
- ; extension=msql.so
611
- ;
612
- ; Note that it should be the name of the module only; no directory information
613
- ; needs to go here. Specify the location of the extension with the
614
- ; extension_dir directive above.
615
-
616
-
617
- ;;;;;;;;;;;;;;;;;;;
618
- ; Module Settings ;
619
- ;;;;;;;;;;;;;;;;;;;
620
-
621
- [Date]
622
- ; Defines the default timezone used by the date functions
623
- ;date.timezone =
624
-
625
- ;date.default_latitude = 31.7667
626
- ;date.default_longitude = 35.2333
627
-
628
- ;date.sunrise_zenith = 90.583333
629
- ;date.sunset_zenith = 90.583333
630
-
631
- [filter]
632
- ;filter.default = unsafe_raw
633
- ;filter.default_flags =
634
-
635
- [iconv]
636
- ;iconv.input_encoding = ISO-8859-1
637
- ;iconv.internal_encoding = ISO-8859-1
638
- ;iconv.output_encoding = ISO-8859-1
639
-
640
- [sqlite]
641
- ;sqlite.assoc_case = 0
642
-
643
- [xmlrpc]
644
- ;xmlrpc_error_number = 0
645
- ;xmlrpc_errors = 0
646
-
647
- [Pcre]
648
- ;PCRE library backtracking limit.
649
- ;pcre.backtrack_limit=100000
650
-
651
- ;PCRE library recursion limit.
652
- ;Please note that if you set this value to a high number you may consume all
653
- ;the available process stack and eventually crash PHP (due to reaching the
654
- ;stack size limit imposed by the Operating System).
655
- ;pcre.recursion_limit=100000
656
-
657
- [Syslog]
658
- ; Whether or not to define the various syslog variables (e.g. $LOG_PID,
659
- ; $LOG_CRON, etc.). Turning it off is a good idea performance-wise. In
660
- ; runtime, you can define these variables by calling define_syslog_variables().
661
- define_syslog_variables = Off
662
-
663
- [mail function]
664
- ; For Win32 only.
665
- SMTP = localhost
666
- smtp_port = 25
667
-
668
- ; For Win32 only.
669
- ;sendmail_from = me@example.com
670
-
671
- ; For Unix only. You may supply arguments as well (default: "sendmail -t -i").
672
- ;sendmail_path =
673
-
674
- ; Force the addition of the specified parameters to be passed as extra parameters
675
- ; to the sendmail binary. These parameters will always replace the value of
676
- ; the 5th parameter to mail(), even in safe mode.
677
- ;mail.force_extra_parameters =
678
-
679
- [SQL]
680
- sql.safe_mode = Off
681
-
682
- [ODBC]
683
- ;odbc.default_db = Not yet implemented
684
- ;odbc.default_user = Not yet implemented
685
- ;odbc.default_pw = Not yet implemented
686
-
687
- ; Allow or prevent persistent links.
688
- odbc.allow_persistent = On
689
-
690
- ; Check that a connection is still valid before reuse.
691
- odbc.check_persistent = On
692
-
693
- ; Maximum number of persistent links. -1 means no limit.
694
- odbc.max_persistent = -1
695
-
696
- ; Maximum number of links (persistent + non-persistent). -1 means no limit.
697
- odbc.max_links = -1
698
-
699
- ; Handling of LONG fields. Returns number of bytes to variables. 0 means
700
- ; passthru.
701
- odbc.defaultlrl = 4096
702
-
703
- ; Handling of binary data. 0 means passthru, 1 return as is, 2 convert to char.
704
- ; See the documentation on odbc_binmode and odbc_longreadlen for an explanation
705
- ; of uodbc.defaultlrl and uodbc.defaultbinmode
706
- odbc.defaultbinmode = 1
707
-
708
- [MySQL]
709
- ; Allow or prevent persistent links.
710
- mysql.allow_persistent = On
711
-
712
- ; Maximum number of persistent links. -1 means no limit.
713
- mysql.max_persistent = -1
714
-
715
- ; Maximum number of links (persistent + non-persistent). -1 means no limit.
716
- mysql.max_links = -1
717
-
718
- ; Default port number for mysql_connect(). If unset, mysql_connect() will use
719
- ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
720
- ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
721
- ; at MYSQL_PORT.
722
- mysql.default_port =
723
-
724
- ; Default socket name for local MySQL connects. If empty, uses the built-in
725
- ; MySQL defaults.
726
- mysql.default_socket =
727
-
728
- ; Default host for mysql_connect() (doesn't apply in safe mode).
729
- mysql.default_host =
730
-
731
- ; Default user for mysql_connect() (doesn't apply in safe mode).
732
- mysql.default_user =
733
-
734
- ; Default password for mysql_connect() (doesn't apply in safe mode).
735
- ; Note that this is generally a *bad* idea to store passwords in this file.
736
- ; *Any* user with PHP access can run 'echo get_cfg_var("mysql.default_password")
737
- ; and reveal this password! And of course, any users with read access to this
738
- ; file will be able to reveal the password as well.
739
- mysql.default_password =
740
-
741
- ; Maximum time (in seconds) for connect timeout. -1 means no limit
742
- mysql.connect_timeout = 60
743
-
744
- ; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
745
- ; SQL-Errors will be displayed.
746
- mysql.trace_mode = Off
747
-
748
- [MySQLi]
749
-
750
- ; Maximum number of links. -1 means no limit.
751
- mysqli.max_links = -1
752
-
753
- ; Default port number for mysqli_connect(). If unset, mysqli_connect() will use
754
- ; the $MYSQL_TCP_PORT or the mysql-tcp entry in /etc/services or the
755
- ; compile-time value defined MYSQL_PORT (in that order). Win32 will only look
756
- ; at MYSQL_PORT.
757
- mysqli.default_port = 3306
758
-
759
- ; Default socket name for local MySQL connects. If empty, uses the built-in
760
- ; MySQL defaults.
761
- mysqli.default_socket =
762
-
763
- ; Default host for mysql_connect() (doesn't apply in safe mode).
764
- mysqli.default_host =
765
-
766
- ; Default user for mysql_connect() (doesn't apply in safe mode).
767
- mysqli.default_user =
768
-
769
- ; Default password for mysqli_connect() (doesn't apply in safe mode).
770
- ; Note that this is generally a *bad* idea to store passwords in this file.
771
- ; *Any* user with PHP access can run 'echo get_cfg_var("mysqli.default_pw")
772
- ; and reveal this password! And of course, any users with read access to this
773
- ; file will be able to reveal the password as well.
774
- mysqli.default_pw =
775
-
776
- ; Allow or prevent reconnect
777
- mysqli.reconnect = Off
778
-
779
- [mSQL]
780
- ; Allow or prevent persistent links.
781
- msql.allow_persistent = On
782
-
783
- ; Maximum number of persistent links. -1 means no limit.
784
- msql.max_persistent = -1
785
-
786
- ; Maximum number of links (persistent+non persistent). -1 means no limit.
787
- msql.max_links = -1
788
-
789
- [OCI8]
790
- ; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
791
- ;oci8.privileged_connect = Off
792
-
793
- ; Connection: The maximum number of persistent OCI8 connections per
794
- ; process. Using -1 means no limit.
795
- ;oci8.max_persistent = -1
796
-
797
- ; Connection: The maximum number of seconds a process is allowed to
798
- ; maintain an idle persistent connection. Using -1 means idle
799
- ; persistent connections will be maintained forever.
800
- ;oci8.persistent_timeout = -1
801
-
802
- ; Connection: The number of seconds that must pass before issuing a
803
- ; ping during oci_pconnect() to check the connection validity. When
804
- ; set to 0, each oci_pconnect() will cause a ping. Using -1 disables
805
- ; pings completely.
806
- ;oci8.ping_interval = 60
807
-
808
- ; Tuning: This option enables statement caching, and specifies how
809
- ; many statements to cache. Using 0 disables statement caching.
810
- ;oci8.statement_cache_size = 20
811
-
812
- ; Tuning: Enables statement prefetching and sets the default number of
813
- ; rows that will be fetched automatically after statement execution.
814
- ;oci8.default_prefetch = 10
815
-
816
- ; Compatibility. Using On means oci_close() will not close
817
- ; oci_connect() and oci_new_connect() connections.
818
- ;oci8.old_oci_close_semantics = Off
819
-
820
- [PostgresSQL]
821
- ; Allow or prevent persistent links.
822
- pgsql.allow_persistent = On
823
-
824
- ; Detect broken persistent links always with pg_pconnect().
825
- ; Auto reset feature requires a little overheads.
826
- pgsql.auto_reset_persistent = Off
827
-
828
- ; Maximum number of persistent links. -1 means no limit.
829
- pgsql.max_persistent = -1
830
-
831
- ; Maximum number of links (persistent+non persistent). -1 means no limit.
832
- pgsql.max_links = -1
833
-
834
- ; Ignore PostgreSQL backends Notice message or not.
835
- ; Notice message logging require a little overheads.
836
- pgsql.ignore_notice = 0
837
-
838
- ; Log PostgreSQL backends Noitce message or not.
839
- ; Unless pgsql.ignore_notice=0, module cannot log notice message.
840
- pgsql.log_notice = 0
841
-
842
- [Sybase]
843
- ; Allow or prevent persistent links.
844
- sybase.allow_persistent = On
845
-
846
- ; Maximum number of persistent links. -1 means no limit.
847
- sybase.max_persistent = -1
848
-
849
- ; Maximum number of links (persistent + non-persistent). -1 means no limit.
850
- sybase.max_links = -1
851
-
852
- ;sybase.interface_file = "/usr/sybase/interfaces"
853
-
854
- ; Minimum error severity to display.
855
- sybase.min_error_severity = 10
856
-
857
- ; Minimum message severity to display.
858
- sybase.min_message_severity = 10
859
-
860
- ; Compatibility mode with old versions of PHP 3.0.
861
- ; If on, this will cause PHP to automatically assign types to results according
862
- ; to their Sybase type, instead of treating them all as strings. This
863
- ; compatibility mode will probably not stay around forever, so try applying
864
- ; whatever necessary changes to your code, and turn it off.
865
- sybase.compatability_mode = Off
866
-
867
- [Sybase-CT]
868
- ; Allow or prevent persistent links.
869
- sybct.allow_persistent = On
870
-
871
- ; Maximum number of persistent links. -1 means no limit.
872
- sybct.max_persistent = -1
873
-
874
- ; Maximum number of links (persistent + non-persistent). -1 means no limit.
875
- sybct.max_links = -1
876
-
877
- ; Minimum server message severity to display.
878
- sybct.min_server_severity = 10
879
-
880
- ; Minimum client message severity to display.
881
- sybct.min_client_severity = 10
882
-
883
- [bcmath]
884
- ; Number of decimal digits for all bcmath functions.
885
- bcmath.scale = 0
886
-
887
- [browscap]
888
- ;browscap = extra/browscap.ini
889
-
890
- [Informix]
891
- ; Default host for ifx_connect() (doesn't apply in safe mode).
892
- ifx.default_host =
893
-
894
- ; Default user for ifx_connect() (doesn't apply in safe mode).
895
- ifx.default_user =
896
-
897
- ; Default password for ifx_connect() (doesn't apply in safe mode).
898
- ifx.default_password =
899
-
900
- ; Allow or prevent persistent links.
901
- ifx.allow_persistent = On
902
-
903
- ; Maximum number of persistent links. -1 means no limit.
904
- ifx.max_persistent = -1
905
-
906
- ; Maximum number of links (persistent + non-persistent). -1 means no limit.
907
- ifx.max_links = -1
908
-
909
- ; If on, select statements return the contents of a text blob instead of its id.
910
- ifx.textasvarchar = 0
911
-
912
- ; If on, select statements return the contents of a byte blob instead of its id.
913
- ifx.byteasvarchar = 0
914
-
915
- ; Trailing blanks are stripped from fixed-length char columns. May help the
916
- ; life of Informix SE users.
917
- ifx.charasvarchar = 0
918
-
919
- ; If on, the contents of text and byte blobs are dumped to a file instead of
920
- ; keeping them in memory.
921
- ifx.blobinfile = 0
922
-
923
- ; NULL's are returned as empty strings, unless this is set to 1. In that case,
924
- ; NULL's are returned as string 'NULL'.
925
- ifx.nullformat = 0
926
-
927
- [Session]
928
- ; Handler used to store/retrieve data.
929
- session.save_handler = files
930
-
931
- ; Argument passed to save_handler. In the case of files, this is the path
932
- ; where data files are stored. Note: Windows users have to change this
933
- ; variable in order to use PHP's session functions.
934
- ;
935
- ; As of PHP 4.0.1, you can define the path as:
936
- ;
937
- ; session.save_path = "N;/path"
938
- ;
939
- ; where N is an integer. Instead of storing all the session files in
940
- ; /path, what this will do is use subdirectories N-levels deep, and
941
- ; store the session data in those directories. This is useful if you
942
- ; or your OS have problems with lots of files in one directory, and is
943
- ; a more efficient layout for servers that handle lots of sessions.
944
- ;
945
- ; NOTE 1: PHP will not create this directory structure automatically.
946
- ; You can use the script in the ext/session dir for that purpose.
947
- ; NOTE 2: See the section on garbage collection below if you choose to
948
- ; use subdirectories for session storage
949
- ;
950
- ; The file storage module creates files using mode 600 by default.
951
- ; You can change that by using
952
- ;
953
- ; session.save_path = "N;MODE;/path"
954
- ;
955
- ; where MODE is the octal representation of the mode. Note that this
956
- ; does not overwrite the process's umask.
957
- ;session.save_path = /var/lib/php5
958
-
959
- ; Whether to use cookies.
960
- session.use_cookies = 1
961
-
962
- ;session.cookie_secure =
963
-
964
- ; This option enables administrators to make their users invulnerable to
965
- ; attacks which involve passing session ids in URLs; defaults to 0.
966
- ; session.use_only_cookies = 1
967
-
968
- ; Name of the session (used as cookie name).
969
- session.name = PHPSESSID
970
-
971
- ; Initialize session on request startup.
972
- session.auto_start = 0
973
-
974
- ; Lifetime in seconds of cookie or, if 0, until browser is restarted.
975
- session.cookie_lifetime = 0
976
-
977
- ; The path for which the cookie is valid.
978
- session.cookie_path = /
979
-
980
- ; The domain for which the cookie is valid.
981
- session.cookie_domain =
982
-
983
- ; Whether or not to add the httpOnly flag to the cookie, which makes it inaccessible to browser scripting languages such as JavaScript.
984
- session.cookie_httponly =
985
-
986
- ; Handler used to serialize data. php is the standard serializer of PHP.
987
- session.serialize_handler = php
988
-
989
- ; Define the probability that the 'garbage collection' process is started
990
- ; on every session initialization.
991
- ; The probability is calculated by using gc_probability/gc_divisor,
992
- ; e.g. 1/100 means there is a 1% chance that the GC process starts
993
- ; on each request.
994
-
995
- ; This is disabled in the Debian packages, due to the strict permissions
996
- ; on /var/lib/php5. Instead of setting this here, see the cronjob at
997
- ; /etc/cron.d/php5, which uses the session.gc_maxlifetime setting below
998
- ;session.gc_probability = 0
999
- session.gc_divisor = 100
1000
-
1001
- ; After this number of seconds, stored data will be seen as 'garbage' and
1002
- ; cleaned up by the garbage collection process.
1003
- session.gc_maxlifetime = 1440
1004
-
1005
- ; NOTE: If you are using the subdirectory option for storing session files
1006
- ; (see session.save_path above), then garbage collection does *not*
1007
- ; happen automatically. You will need to do your own garbage
1008
- ; collection through a shell script, cron entry, or some other method.
1009
- ; For example, the following script would is the equivalent of
1010
- ; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
1011
- ; cd /path/to/sessions; find -cmin +24 | xargs rm
1012
-
1013
- ; PHP 4.2 and less have an undocumented feature/bug that allows you to
1014
- ; to initialize a session variable in the global scope, albeit register_globals
1015
- ; is disabled. PHP 4.3 and later will warn you, if this feature is used.
1016
- ; You can disable the feature and the warning separately. At this time,
1017
- ; the warning is only displayed, if bug_compat_42 is enabled.
1018
-
1019
- session.bug_compat_42 = 1
1020
- session.bug_compat_warn = 1
1021
-
1022
- ; Check HTTP Referer to invalidate externally stored URLs containing ids.
1023
- ; HTTP_REFERER has to contain this substring for the session to be
1024
- ; considered as valid.
1025
- session.referer_check =
1026
-
1027
- ; How many bytes to read from the file.
1028
- session.entropy_length = 0
1029
-
1030
- ; Specified here to create the session id.
1031
- session.entropy_file =
1032
-
1033
- ;session.entropy_length = 16
1034
-
1035
- ;session.entropy_file = /dev/urandom
1036
-
1037
- ; Set to {nocache,private,public,} to determine HTTP caching aspects
1038
- ; or leave this empty to avoid sending anti-caching headers.
1039
- session.cache_limiter = nocache
1040
-
1041
- ; Document expires after n minutes.
1042
- session.cache_expire = 180
1043
-
1044
- ; trans sid support is disabled by default.
1045
- ; Use of trans sid may risk your users security.
1046
- ; Use this option with caution.
1047
- ; - User may send URL contains active session ID
1048
- ; to other person via. email/irc/etc.
1049
- ; - URL that contains active session ID may be stored
1050
- ; in publically accessible computer.
1051
- ; - User may access your site with the same session ID
1052
- ; always using URL stored in browser's history or bookmarks.
1053
- session.use_trans_sid = 0
1054
-
1055
- ; Select a hash function
1056
- ; 0: MD5 (128 bits)
1057
- ; 1: SHA-1 (160 bits)
1058
- session.hash_function = 0
1059
-
1060
- ; Define how many bits are stored in each character when converting
1061
- ; the binary hash data to something readable.
1062
- ;
1063
- ; 4 bits: 0-9, a-f
1064
- ; 5 bits: 0-9, a-v
1065
- ; 6 bits: 0-9, a-z, A-Z, "-", ","
1066
- session.hash_bits_per_character = 4
1067
-
1068
- ; The URL rewriter will look for URLs in a defined set of HTML tags.
1069
- ; form/fieldset are special; if you include them here, the rewriter will
1070
- ; add a hidden <input> field with the info which is otherwise appended
1071
- ; to URLs. If you want XHTML conformity, remove the form entry.
1072
- ; Note that all valid entries require a "=", even if no value follows.
1073
- url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
1074
-
1075
- [MSSQL]
1076
- ; Allow or prevent persistent links.
1077
- mssql.allow_persistent = On
1078
-
1079
- ; Maximum number of persistent links. -1 means no limit.
1080
- mssql.max_persistent = -1
1081
-
1082
- ; Maximum number of links (persistent+non persistent). -1 means no limit.
1083
- mssql.max_links = -1
1084
-
1085
- ; Minimum error severity to display.
1086
- mssql.min_error_severity = 10
1087
-
1088
- ; Minimum message severity to display.
1089
- mssql.min_message_severity = 10
1090
-
1091
- ; Compatibility mode with old versions of PHP 3.0.
1092
- mssql.compatability_mode = Off
1093
-
1094
- ; Connect timeout
1095
- ;mssql.connect_timeout = 5
1096
-
1097
- ; Query timeout
1098
- ;mssql.timeout = 60
1099
-
1100
- ; Valid range 0 - 2147483647. Default = 4096.
1101
- ;mssql.textlimit = 4096
1102
-
1103
- ; Valid range 0 - 2147483647. Default = 4096.
1104
- ;mssql.textsize = 4096
1105
-
1106
- ; Limits the number of records in each batch. 0 = all records in one batch.
1107
- ;mssql.batchsize = 0
1108
-
1109
- ; Specify how datetime and datetim4 columns are returned
1110
- ; On => Returns data converted to SQL server settings
1111
- ; Off => Returns values as YYYY-MM-DD hh:mm:ss
1112
- ;mssql.datetimeconvert = On
1113
-
1114
- ; Use NT authentication when connecting to the server
1115
- mssql.secure_connection = Off
1116
-
1117
- ; Specify max number of processes. -1 = library default
1118
- ; msdlib defaults to 25
1119
- ; FreeTDS defaults to 4096
1120
- ;mssql.max_procs = -1
1121
-
1122
- ; Specify client character set.
1123
- ; If empty or not set the client charset from freetds.comf is used
1124
- ; This is only used when compiled with FreeTDS
1125
- ;mssql.charset = "ISO-8859-1"
1126
-
1127
- [Assertion]
1128
- ; Assert(expr); active by default.
1129
- ;assert.active = On
1130
-
1131
- ; Issue a PHP warning for each failed assertion.
1132
- ;assert.warning = On
1133
-
1134
- ; Don't bail out by default.
1135
- ;assert.bail = Off
1136
-
1137
- ; User-function to be called if an assertion fails.
1138
- ;assert.callback = 0
1139
-
1140
- ; Eval the expression with current error_reporting(). Set to true if you want
1141
- ; error_reporting(0) around the eval().
1142
- ;assert.quiet_eval = 0
1143
-
1144
- [COM]
1145
- ; path to a file containing GUIDs, IIDs or filenames of files with TypeLibs
1146
- ;com.typelib_file =
1147
- ; allow Distributed-COM calls
1148
- ;com.allow_dcom = true
1149
- ; autoregister constants of a components typlib on com_load()
1150
- ;com.autoregister_typelib = true
1151
- ; register constants casesensitive
1152
- ;com.autoregister_casesensitive = false
1153
- ; show warnings on duplicate constant registrations
1154
- ;com.autoregister_verbose = true
1155
-
1156
- [mbstring]
1157
- ; language for internal character representation.
1158
- ;mbstring.language = Japanese
1159
-
1160
- ; internal/script encoding.
1161
- ; Some encoding cannot work as internal encoding.
1162
- ; (e.g. SJIS, BIG5, ISO-2022-*)
1163
- ;mbstring.internal_encoding = EUC-JP
1164
-
1165
- ; http input encoding.
1166
- ;mbstring.http_input = auto
1167
-
1168
- ; http output encoding. mb_output_handler must be
1169
- ; registered as output buffer to function
1170
- ;mbstring.http_output = SJIS
1171
-
1172
- ; enable automatic encoding translation according to
1173
- ; mbstring.internal_encoding setting. Input chars are
1174
- ; converted to internal encoding by setting this to On.
1175
- ; Note: Do _not_ use automatic encoding translation for
1176
- ; portable libs/applications.
1177
- ;mbstring.encoding_translation = Off
1178
-
1179
- ; automatic encoding detection order.
1180
- ; auto means
1181
- ;mbstring.detect_order = auto
1182
-
1183
- ; substitute_character used when character cannot be converted
1184
- ; one from another
1185
- ;mbstring.substitute_character = none;
1186
-
1187
- ; overload(replace) single byte functions by mbstring functions.
1188
- ; mail(), ereg(), etc are overloaded by mb_send_mail(), mb_ereg(),
1189
- ; etc. Possible values are 0,1,2,4 or combination of them.
1190
- ; For example, 7 for overload everything.
1191
- ; 0: No overload
1192
- ; 1: Overload mail() function
1193
- ; 2: Overload str*() functions
1194
- ; 4: Overload ereg*() functions
1195
- ;mbstring.func_overload = 0
1196
-
1197
- [FrontBase]
1198
- ;fbsql.allow_persistent = On
1199
- ;fbsql.autocommit = On
1200
- ;fbsql.show_timestamp_decimals = Off
1201
- ;fbsql.default_database =
1202
- ;fbsql.default_database_password =
1203
- ;fbsql.default_host =
1204
- ;fbsql.default_password =
1205
- ;fbsql.default_user = "_SYSTEM"
1206
- ;fbsql.generate_warnings = Off
1207
- ;fbsql.max_connections = 128
1208
- ;fbsql.max_links = 128
1209
- ;fbsql.max_persistent = -1
1210
- ;fbsql.max_results = 128
1211
-
1212
- [gd]
1213
- ; Tell the jpeg decode to libjpeg warnings and try to create
1214
- ; a gd image. The warning will then be displayed as notices
1215
- ; disabled by default
1216
- ;gd.jpeg_ignore_warning = 0
1217
-
1218
- [exif]
1219
- ; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS.
1220
- ; With mbstring support this will automatically be converted into the encoding
1221
- ; given by corresponding encode setting. When empty mbstring.internal_encoding
1222
- ; is used. For the decode settings you can distinguish between motorola and
1223
- ; intel byte order. A decode setting cannot be empty.
1224
- ;exif.encode_unicode = ISO-8859-15
1225
- ;exif.decode_unicode_motorola = UCS-2BE
1226
- ;exif.decode_unicode_intel = UCS-2LE
1227
- ;exif.encode_jis =
1228
- ;exif.decode_jis_motorola = JIS
1229
- ;exif.decode_jis_intel = JIS
1230
-
1231
- [Tidy]
1232
- ; The path to a default tidy configuration file to use when using tidy
1233
- ;tidy.default_config = /usr/local/lib/php/default.tcfg
1234
-
1235
- ; Should tidy clean and repair output automatically?
1236
- ; WARNING: Do not use this option if you are generating non-html content
1237
- ; such as dynamic images
1238
- tidy.clean_output = Off
1239
-
1240
- [soap]
1241
- ; Enables or disables WSDL caching feature.
1242
- soap.wsdl_cache_enabled=1
1243
- ; Sets the directory name where SOAP extension will put cache files.
1244
- soap.wsdl_cache_dir="/tmp"
1245
- ; (time to live) Sets the number of second while cached file will be used
1246
- ; instead of original one.
1247
- soap.wsdl_cache_ttl=86400
1248
-
1249
- ; Local Variables:
1250
- ; tab-width: 4
1251
- ; End:
1252
-
1253
-