passenger-jmazzi 2.2.9
Sign up to get free protection for your applications and to get access to all the features.
- data/INSTALL +6 -0
- data/LICENSE +19 -0
- data/NEWS +270 -0
- data/README +45 -0
- data/Rakefile +918 -0
- data/benchmark/ApplicationPool.cpp +52 -0
- data/benchmark/accept_vs_socketpair_vs_named_pipes.rb +126 -0
- data/benchmark/dispatcher.rb +42 -0
- data/benchmark/overhead_of_password_checking.rb +81 -0
- data/benchmark/socket_connections_vs_persistent_pipe.rb +99 -0
- data/benchmark/unix_sockets_vs_pipes.rb +83 -0
- data/bin/passenger-config +46 -0
- data/bin/passenger-install-apache2-module +224 -0
- data/bin/passenger-install-nginx-module +474 -0
- data/bin/passenger-make-enterprisey +83 -0
- data/bin/passenger-memory-stats +301 -0
- data/bin/passenger-spawn-server +68 -0
- data/bin/passenger-status +125 -0
- data/bin/passenger-stress-test +344 -0
- data/debian/compat +1 -0
- data/debian/control +21 -0
- data/debian/postinst +24 -0
- data/debian/prerm +2 -0
- data/doc/ApplicationPool algorithm.txt +402 -0
- data/doc/Architectural overview.txt +334 -0
- data/doc/Doxyfile +241 -0
- data/doc/Security of user switching support.txt +197 -0
- data/doc/Users guide Apache.txt +1848 -0
- data/doc/Users guide Nginx.txt +769 -0
- data/doc/definitions.h +5 -0
- data/doc/images/by_sa.png +0 -0
- data/doc/images/conservative_spawning.png +0 -0
- data/doc/images/conservative_spawning.svg +248 -0
- data/doc/images/icons/README +5 -0
- data/doc/images/icons/callouts/1.png +0 -0
- data/doc/images/icons/callouts/10.png +0 -0
- data/doc/images/icons/callouts/11.png +0 -0
- data/doc/images/icons/callouts/12.png +0 -0
- data/doc/images/icons/callouts/13.png +0 -0
- data/doc/images/icons/callouts/14.png +0 -0
- data/doc/images/icons/callouts/15.png +0 -0
- data/doc/images/icons/callouts/2.png +0 -0
- data/doc/images/icons/callouts/3.png +0 -0
- data/doc/images/icons/callouts/4.png +0 -0
- data/doc/images/icons/callouts/5.png +0 -0
- data/doc/images/icons/callouts/6.png +0 -0
- data/doc/images/icons/callouts/7.png +0 -0
- data/doc/images/icons/callouts/8.png +0 -0
- data/doc/images/icons/callouts/9.png +0 -0
- data/doc/images/icons/caution.png +0 -0
- data/doc/images/icons/example.png +0 -0
- data/doc/images/icons/home.png +0 -0
- data/doc/images/icons/important.png +0 -0
- data/doc/images/icons/next.png +0 -0
- data/doc/images/icons/note.png +0 -0
- data/doc/images/icons/prev.png +0 -0
- data/doc/images/icons/tip.png +0 -0
- data/doc/images/icons/up.png +0 -0
- data/doc/images/icons/warning.png +0 -0
- data/doc/images/passenger_architecture.png +0 -0
- data/doc/images/passenger_architecture.svg +401 -0
- data/doc/images/phusion_banner.png +0 -0
- data/doc/images/smart-lv2.png +0 -0
- data/doc/images/smart-lv2.svg +320 -0
- data/doc/images/spawn_server_architecture.png +0 -0
- data/doc/images/spawn_server_architecture.svg +655 -0
- data/doc/images/typical_isolated_web_application.png +0 -0
- data/doc/images/typical_isolated_web_application.svg +213 -0
- data/doc/template/horo.rb +613 -0
- data/doc/users_guide_snippets/analysis_and_system_maintenance_tools.txt +144 -0
- data/doc/users_guide_snippets/appendix_a_about.txt +13 -0
- data/doc/users_guide_snippets/appendix_b_terminology.txt +63 -0
- data/doc/users_guide_snippets/appendix_c_spawning_methods.txt +304 -0
- data/doc/users_guide_snippets/global_queueing_explained.txt +78 -0
- data/doc/users_guide_snippets/rackup_specifications.txt +71 -0
- data/doc/users_guide_snippets/rails_spawn_method.txt +48 -0
- data/doc/users_guide_snippets/tips.txt +173 -0
- data/ext/apache2/Bucket.cpp +190 -0
- data/ext/apache2/Bucket.h +87 -0
- data/ext/apache2/Configuration.cpp +798 -0
- data/ext/apache2/Configuration.h +405 -0
- data/ext/apache2/DirectoryMapper.h +296 -0
- data/ext/apache2/Hooks.cpp +1617 -0
- data/ext/apache2/Hooks.h +45 -0
- data/ext/apache2/LICENSE-CNRI.TXT +79 -0
- data/ext/apache2/mod_passenger.c +38 -0
- data/ext/boost/LICENSE.TXT +23 -0
- data/ext/boost/VERSION.TXT +1 -0
- data/ext/boost/algorithm/string/case_conv.hpp +176 -0
- data/ext/boost/algorithm/string/compare.hpp +199 -0
- data/ext/boost/algorithm/string/concept.hpp +83 -0
- data/ext/boost/algorithm/string/config.hpp +28 -0
- data/ext/boost/algorithm/string/constants.hpp +36 -0
- data/ext/boost/algorithm/string/detail/case_conv.hpp +112 -0
- data/ext/boost/algorithm/string/detail/find_format.hpp +193 -0
- data/ext/boost/algorithm/string/detail/find_format_all.hpp +263 -0
- data/ext/boost/algorithm/string/detail/find_format_store.hpp +71 -0
- data/ext/boost/algorithm/string/detail/finder.hpp +646 -0
- data/ext/boost/algorithm/string/detail/formatter.hpp +94 -0
- data/ext/boost/algorithm/string/detail/replace_storage.hpp +159 -0
- data/ext/boost/algorithm/string/detail/sequence.hpp +200 -0
- data/ext/boost/algorithm/string/detail/util.hpp +106 -0
- data/ext/boost/algorithm/string/erase.hpp +844 -0
- data/ext/boost/algorithm/string/find_format.hpp +269 -0
- data/ext/boost/algorithm/string/finder.hpp +270 -0
- data/ext/boost/algorithm/string/formatter.hpp +103 -0
- data/ext/boost/algorithm/string/replace.hpp +928 -0
- data/ext/boost/algorithm/string/sequence_traits.hpp +193 -0
- data/ext/boost/algorithm/string/yes_no_type.hpp +33 -0
- data/ext/boost/assert.hpp +50 -0
- data/ext/boost/bind.hpp +1689 -0
- data/ext/boost/bind/arg.hpp +62 -0
- data/ext/boost/bind/bind_cc.hpp +117 -0
- data/ext/boost/bind/bind_mf_cc.hpp +227 -0
- data/ext/boost/bind/bind_template.hpp +345 -0
- data/ext/boost/bind/mem_fn_cc.hpp +103 -0
- data/ext/boost/bind/mem_fn_template.hpp +1020 -0
- data/ext/boost/bind/placeholders.hpp +68 -0
- data/ext/boost/bind/storage.hpp +475 -0
- data/ext/boost/call_traits.hpp +24 -0
- data/ext/boost/checked_delete.hpp +69 -0
- data/ext/boost/concept/assert.hpp +46 -0
- data/ext/boost/concept/detail/concept_def.hpp +51 -0
- data/ext/boost/concept/detail/concept_undef.hpp +5 -0
- data/ext/boost/concept/detail/general.hpp +66 -0
- data/ext/boost/concept/detail/has_constraints.hpp +48 -0
- data/ext/boost/concept/usage.hpp +43 -0
- data/ext/boost/concept_check.hpp +988 -0
- data/ext/boost/config.hpp +70 -0
- data/ext/boost/config/abi/borland_prefix.hpp +27 -0
- data/ext/boost/config/abi/borland_suffix.hpp +12 -0
- data/ext/boost/config/abi/msvc_prefix.hpp +8 -0
- data/ext/boost/config/abi/msvc_suffix.hpp +8 -0
- data/ext/boost/config/abi_prefix.hpp +25 -0
- data/ext/boost/config/abi_suffix.hpp +26 -0
- data/ext/boost/config/auto_link.hpp +368 -0
- data/ext/boost/config/compiler/borland.hpp +209 -0
- data/ext/boost/config/compiler/comeau.hpp +59 -0
- data/ext/boost/config/compiler/common_edg.hpp +62 -0
- data/ext/boost/config/compiler/compaq_cxx.hpp +19 -0
- data/ext/boost/config/compiler/digitalmars.hpp +67 -0
- data/ext/boost/config/compiler/gcc.hpp +149 -0
- data/ext/boost/config/compiler/gcc_xml.hpp +30 -0
- data/ext/boost/config/compiler/greenhills.hpp +28 -0
- data/ext/boost/config/compiler/hp_acc.hpp +95 -0
- data/ext/boost/config/compiler/intel.hpp +162 -0
- data/ext/boost/config/compiler/kai.hpp +35 -0
- data/ext/boost/config/compiler/metrowerks.hpp +111 -0
- data/ext/boost/config/compiler/mpw.hpp +51 -0
- data/ext/boost/config/compiler/pgi.hpp +25 -0
- data/ext/boost/config/compiler/sgi_mipspro.hpp +28 -0
- data/ext/boost/config/compiler/sunpro_cc.hpp +98 -0
- data/ext/boost/config/compiler/vacpp.hpp +60 -0
- data/ext/boost/config/compiler/visualc.hpp +191 -0
- data/ext/boost/config/no_tr1/complex.hpp +28 -0
- data/ext/boost/config/no_tr1/functional.hpp +28 -0
- data/ext/boost/config/no_tr1/memory.hpp +28 -0
- data/ext/boost/config/no_tr1/utility.hpp +28 -0
- data/ext/boost/config/platform/aix.hpp +33 -0
- data/ext/boost/config/platform/amigaos.hpp +15 -0
- data/ext/boost/config/platform/beos.hpp +26 -0
- data/ext/boost/config/platform/bsd.hpp +73 -0
- data/ext/boost/config/platform/cygwin.hpp +51 -0
- data/ext/boost/config/platform/hpux.hpp +84 -0
- data/ext/boost/config/platform/irix.hpp +31 -0
- data/ext/boost/config/platform/linux.hpp +98 -0
- data/ext/boost/config/platform/macos.hpp +78 -0
- data/ext/boost/config/platform/qnxnto.hpp +31 -0
- data/ext/boost/config/platform/solaris.hpp +21 -0
- data/ext/boost/config/platform/win32.hpp +58 -0
- data/ext/boost/config/posix_features.hpp +95 -0
- data/ext/boost/config/requires_threads.hpp +92 -0
- data/ext/boost/config/select_compiler_config.hpp +115 -0
- data/ext/boost/config/select_platform_config.hpp +90 -0
- data/ext/boost/config/select_stdlib_config.hpp +68 -0
- data/ext/boost/config/stdlib/dinkumware.hpp +106 -0
- data/ext/boost/config/stdlib/libcomo.hpp +46 -0
- data/ext/boost/config/stdlib/libstdcpp3.hpp +73 -0
- data/ext/boost/config/stdlib/modena.hpp +30 -0
- data/ext/boost/config/stdlib/msl.hpp +59 -0
- data/ext/boost/config/stdlib/roguewave.hpp +153 -0
- data/ext/boost/config/stdlib/sgi.hpp +111 -0
- data/ext/boost/config/stdlib/stlport.hpp +201 -0
- data/ext/boost/config/stdlib/vacpp.hpp +18 -0
- data/ext/boost/config/suffix.hpp +566 -0
- data/ext/boost/config/user.hpp +124 -0
- data/ext/boost/cstdint.hpp +449 -0
- data/ext/boost/current_function.hpp +67 -0
- data/ext/boost/date_time/adjust_functors.hpp +178 -0
- data/ext/boost/date_time/c_time.hpp +91 -0
- data/ext/boost/date_time/compiler_config.hpp +149 -0
- data/ext/boost/date_time/constrained_value.hpp +98 -0
- data/ext/boost/date_time/date.hpp +197 -0
- data/ext/boost/date_time/date_clock_device.hpp +77 -0
- data/ext/boost/date_time/date_defs.hpp +26 -0
- data/ext/boost/date_time/date_duration.hpp +147 -0
- data/ext/boost/date_time/date_duration_types.hpp +269 -0
- data/ext/boost/date_time/date_facet.hpp +775 -0
- data/ext/boost/date_time/date_format_simple.hpp +159 -0
- data/ext/boost/date_time/date_formatting.hpp +127 -0
- data/ext/boost/date_time/date_formatting_limited.hpp +121 -0
- data/ext/boost/date_time/date_formatting_locales.hpp +233 -0
- data/ext/boost/date_time/date_generator_formatter.hpp +263 -0
- data/ext/boost/date_time/date_generator_parser.hpp +329 -0
- data/ext/boost/date_time/date_generators.hpp +509 -0
- data/ext/boost/date_time/date_iterator.hpp +101 -0
- data/ext/boost/date_time/date_names_put.hpp +320 -0
- data/ext/boost/date_time/date_parsing.hpp +299 -0
- data/ext/boost/date_time/dst_rules.hpp +391 -0
- data/ext/boost/date_time/filetime_functions.hpp +78 -0
- data/ext/boost/date_time/format_date_parser.hpp +731 -0
- data/ext/boost/date_time/gregorian/conversion.hpp +73 -0
- data/ext/boost/date_time/gregorian/formatters.hpp +162 -0
- data/ext/boost/date_time/gregorian/formatters_limited.hpp +81 -0
- data/ext/boost/date_time/gregorian/greg_calendar.hpp +47 -0
- data/ext/boost/date_time/gregorian/greg_date.hpp +135 -0
- data/ext/boost/date_time/gregorian/greg_day.hpp +57 -0
- data/ext/boost/date_time/gregorian/greg_day_of_year.hpp +38 -0
- data/ext/boost/date_time/gregorian/greg_duration.hpp +38 -0
- data/ext/boost/date_time/gregorian/greg_duration_types.hpp +34 -0
- data/ext/boost/date_time/gregorian/greg_month.hpp +105 -0
- data/ext/boost/date_time/gregorian/greg_weekday.hpp +66 -0
- data/ext/boost/date_time/gregorian/greg_year.hpp +53 -0
- data/ext/boost/date_time/gregorian/greg_ymd.hpp +33 -0
- data/ext/boost/date_time/gregorian/gregorian.hpp +38 -0
- data/ext/boost/date_time/gregorian/gregorian_io.hpp +777 -0
- data/ext/boost/date_time/gregorian/gregorian_types.hpp +109 -0
- data/ext/boost/date_time/gregorian/parsers.hpp +91 -0
- data/ext/boost/date_time/gregorian_calendar.hpp +70 -0
- data/ext/boost/date_time/gregorian_calendar.ipp +219 -0
- data/ext/boost/date_time/int_adapter.hpp +507 -0
- data/ext/boost/date_time/iso_format.hpp +303 -0
- data/ext/boost/date_time/locale_config.hpp +31 -0
- data/ext/boost/date_time/microsec_time_clock.hpp +205 -0
- data/ext/boost/date_time/parse_format_base.hpp +29 -0
- data/ext/boost/date_time/period.hpp +377 -0
- data/ext/boost/date_time/period_formatter.hpp +196 -0
- data/ext/boost/date_time/period_parser.hpp +196 -0
- data/ext/boost/date_time/posix_time/conversion.hpp +93 -0
- data/ext/boost/date_time/posix_time/date_duration_operators.hpp +114 -0
- data/ext/boost/date_time/posix_time/posix_time.hpp +39 -0
- data/ext/boost/date_time/posix_time/posix_time_config.hpp +178 -0
- data/ext/boost/date_time/posix_time/posix_time_duration.hpp +82 -0
- data/ext/boost/date_time/posix_time/posix_time_io.hpp +246 -0
- data/ext/boost/date_time/posix_time/posix_time_system.hpp +68 -0
- data/ext/boost/date_time/posix_time/posix_time_types.hpp +55 -0
- data/ext/boost/date_time/posix_time/ptime.hpp +65 -0
- data/ext/boost/date_time/posix_time/time_formatters.hpp +289 -0
- data/ext/boost/date_time/posix_time/time_parsers.hpp +44 -0
- data/ext/boost/date_time/posix_time/time_period.hpp +29 -0
- data/ext/boost/date_time/special_defs.hpp +25 -0
- data/ext/boost/date_time/special_values_formatter.hpp +96 -0
- data/ext/boost/date_time/special_values_parser.hpp +159 -0
- data/ext/boost/date_time/string_convert.hpp +33 -0
- data/ext/boost/date_time/string_parse_tree.hpp +278 -0
- data/ext/boost/date_time/strings_from_facet.hpp +123 -0
- data/ext/boost/date_time/time.hpp +190 -0
- data/ext/boost/date_time/time_clock.hpp +83 -0
- data/ext/boost/date_time/time_defs.hpp +33 -0
- data/ext/boost/date_time/time_duration.hpp +281 -0
- data/ext/boost/date_time/time_facet.hpp +1263 -0
- data/ext/boost/date_time/time_formatting_streams.hpp +119 -0
- data/ext/boost/date_time/time_iterator.hpp +52 -0
- data/ext/boost/date_time/time_parsing.hpp +321 -0
- data/ext/boost/date_time/time_resolution_traits.hpp +140 -0
- data/ext/boost/date_time/time_system_counted.hpp +254 -0
- data/ext/boost/date_time/time_system_split.hpp +213 -0
- data/ext/boost/date_time/wrapping_int.hpp +163 -0
- data/ext/boost/date_time/year_month_day.hpp +45 -0
- data/ext/boost/detail/atomic_count.hpp +124 -0
- data/ext/boost/detail/atomic_count_gcc.hpp +68 -0
- data/ext/boost/detail/atomic_count_gcc_x86.hpp +84 -0
- data/ext/boost/detail/atomic_count_pthreads.hpp +96 -0
- data/ext/boost/detail/atomic_count_solaris.hpp +59 -0
- data/ext/boost/detail/atomic_count_sync.hpp +57 -0
- data/ext/boost/detail/atomic_count_win32.hpp +63 -0
- data/ext/boost/detail/bad_weak_ptr.hpp +59 -0
- data/ext/boost/detail/call_traits.hpp +164 -0
- data/ext/boost/detail/endian.hpp +73 -0
- data/ext/boost/detail/indirect_traits.hpp +487 -0
- data/ext/boost/detail/iterator.hpp +494 -0
- data/ext/boost/detail/lcast_precision.hpp +184 -0
- data/ext/boost/detail/limits.hpp +449 -0
- data/ext/boost/detail/reference_content.hpp +141 -0
- data/ext/boost/detail/shared_count.hpp +375 -0
- data/ext/boost/detail/sp_counted_base.hpp +81 -0
- data/ext/boost/detail/sp_counted_base_acc_ia64.hpp +150 -0
- data/ext/boost/detail/sp_counted_base_cw_ppc.hpp +170 -0
- data/ext/boost/detail/sp_counted_base_cw_x86.hpp +158 -0
- data/ext/boost/detail/sp_counted_base_gcc_ia64.hpp +157 -0
- data/ext/boost/detail/sp_counted_base_gcc_ppc.hpp +181 -0
- data/ext/boost/detail/sp_counted_base_gcc_sparc.hpp +166 -0
- data/ext/boost/detail/sp_counted_base_gcc_x86.hpp +173 -0
- data/ext/boost/detail/sp_counted_base_nt.hpp +107 -0
- data/ext/boost/detail/sp_counted_base_pt.hpp +135 -0
- data/ext/boost/detail/sp_counted_base_solaris.hpp +113 -0
- data/ext/boost/detail/sp_counted_base_sync.hpp +151 -0
- data/ext/boost/detail/sp_counted_base_w32.hpp +130 -0
- data/ext/boost/detail/sp_counted_impl.hpp +231 -0
- data/ext/boost/detail/sp_typeinfo.hpp +83 -0
- data/ext/boost/detail/workaround.hpp +202 -0
- data/ext/boost/enable_shared_from_this.hpp +73 -0
- data/ext/boost/function.hpp +66 -0
- data/ext/boost/function/detail/function_iterate.hpp +16 -0
- data/ext/boost/function/detail/maybe_include.hpp +267 -0
- data/ext/boost/function/detail/prologue.hpp +25 -0
- data/ext/boost/function/function_base.hpp +762 -0
- data/ext/boost/function/function_template.hpp +969 -0
- data/ext/boost/function_equal.hpp +28 -0
- data/ext/boost/get_pointer.hpp +29 -0
- data/ext/boost/implicit_cast.hpp +29 -0
- data/ext/boost/integer_traits.hpp +236 -0
- data/ext/boost/io/ios_state.hpp +431 -0
- data/ext/boost/io_fwd.hpp +67 -0
- data/ext/boost/is_placeholder.hpp +31 -0
- data/ext/boost/iterator.hpp +59 -0
- data/ext/boost/iterator/detail/config_def.hpp +135 -0
- data/ext/boost/iterator/detail/config_undef.hpp +25 -0
- data/ext/boost/iterator/detail/enable_if.hpp +86 -0
- data/ext/boost/iterator/detail/facade_iterator_category.hpp +200 -0
- data/ext/boost/iterator/detail/minimum_category.hpp +116 -0
- data/ext/boost/iterator/interoperable.hpp +50 -0
- data/ext/boost/iterator/iterator_adaptor.hpp +366 -0
- data/ext/boost/iterator/iterator_categories.hpp +188 -0
- data/ext/boost/iterator/iterator_facade.hpp +879 -0
- data/ext/boost/iterator/iterator_traits.hpp +92 -0
- data/ext/boost/iterator/reverse_iterator.hpp +69 -0
- data/ext/boost/iterator/transform_iterator.hpp +188 -0
- data/ext/boost/lexical_cast.hpp +1205 -0
- data/ext/boost/limits.hpp +146 -0
- data/ext/boost/mem_fn.hpp +389 -0
- data/ext/boost/mpl/always.hpp +39 -0
- data/ext/boost/mpl/and.hpp +60 -0
- data/ext/boost/mpl/apply.hpp +229 -0
- data/ext/boost/mpl/apply_fwd.hpp +107 -0
- data/ext/boost/mpl/apply_wrap.hpp +203 -0
- data/ext/boost/mpl/arg.hpp +131 -0
- data/ext/boost/mpl/arg_fwd.hpp +28 -0
- data/ext/boost/mpl/assert.hpp +370 -0
- data/ext/boost/mpl/aux_/adl_barrier.hpp +48 -0
- data/ext/boost/mpl/aux_/arg_typedef.hpp +31 -0
- data/ext/boost/mpl/aux_/arity.hpp +39 -0
- data/ext/boost/mpl/aux_/arity_spec.hpp +67 -0
- data/ext/boost/mpl/aux_/common_name_wknd.hpp +34 -0
- data/ext/boost/mpl/aux_/config/adl.hpp +40 -0
- data/ext/boost/mpl/aux_/config/arrays.hpp +30 -0
- data/ext/boost/mpl/aux_/config/bind.hpp +33 -0
- data/ext/boost/mpl/aux_/config/compiler.hpp +64 -0
- data/ext/boost/mpl/aux_/config/ctps.hpp +30 -0
- data/ext/boost/mpl/aux_/config/dtp.hpp +46 -0
- data/ext/boost/mpl/aux_/config/eti.hpp +47 -0
- data/ext/boost/mpl/aux_/config/gcc.hpp +23 -0
- data/ext/boost/mpl/aux_/config/has_apply.hpp +32 -0
- data/ext/boost/mpl/aux_/config/has_xxx.hpp +33 -0
- data/ext/boost/mpl/aux_/config/integral.hpp +38 -0
- data/ext/boost/mpl/aux_/config/intel.hpp +21 -0
- data/ext/boost/mpl/aux_/config/lambda.hpp +32 -0
- data/ext/boost/mpl/aux_/config/msvc.hpp +21 -0
- data/ext/boost/mpl/aux_/config/msvc_typename.hpp +26 -0
- data/ext/boost/mpl/aux_/config/nttp.hpp +41 -0
- data/ext/boost/mpl/aux_/config/overload_resolution.hpp +29 -0
- data/ext/boost/mpl/aux_/config/pp_counter.hpp +26 -0
- data/ext/boost/mpl/aux_/config/preprocessor.hpp +39 -0
- data/ext/boost/mpl/aux_/config/static_constant.hpp +25 -0
- data/ext/boost/mpl/aux_/config/ttp.hpp +41 -0
- data/ext/boost/mpl/aux_/config/use_preprocessed.hpp +19 -0
- data/ext/boost/mpl/aux_/config/workaround.hpp +19 -0
- data/ext/boost/mpl/aux_/full_lambda.hpp +354 -0
- data/ext/boost/mpl/aux_/has_apply.hpp +32 -0
- data/ext/boost/mpl/aux_/has_type.hpp +23 -0
- data/ext/boost/mpl/aux_/include_preprocessed.hpp +42 -0
- data/ext/boost/mpl/aux_/integral_wrapper.hpp +93 -0
- data/ext/boost/mpl/aux_/lambda_arity_param.hpp +25 -0
- data/ext/boost/mpl/aux_/lambda_support.hpp +169 -0
- data/ext/boost/mpl/aux_/msvc_never_true.hpp +34 -0
- data/ext/boost/mpl/aux_/na.hpp +95 -0
- data/ext/boost/mpl/aux_/na_assert.hpp +34 -0
- data/ext/boost/mpl/aux_/na_fwd.hpp +31 -0
- data/ext/boost/mpl/aux_/na_spec.hpp +175 -0
- data/ext/boost/mpl/aux_/nested_type_wknd.hpp +48 -0
- data/ext/boost/mpl/aux_/nttp_decl.hpp +35 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/and.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/apply.hpp +169 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp +84 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/arg.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bind.hpp +561 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp +52 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp +558 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/or.hpp +69 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/quote.hpp +123 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp +101 -0
- data/ext/boost/mpl/aux_/preprocessor/def_params_tail.hpp +105 -0
- data/ext/boost/mpl/aux_/preprocessor/enum.hpp +62 -0
- data/ext/boost/mpl/aux_/preprocessor/filter_params.hpp +28 -0
- data/ext/boost/mpl/aux_/preprocessor/params.hpp +65 -0
- data/ext/boost/mpl/aux_/preprocessor/sub.hpp +65 -0
- data/ext/boost/mpl/aux_/static_cast.hpp +27 -0
- data/ext/boost/mpl/aux_/template_arity.hpp +189 -0
- data/ext/boost/mpl/aux_/template_arity_fwd.hpp +23 -0
- data/ext/boost/mpl/aux_/type_wrapper.hpp +47 -0
- data/ext/boost/mpl/aux_/value_wknd.hpp +89 -0
- data/ext/boost/mpl/aux_/yes_no.hpp +58 -0
- data/ext/boost/mpl/bind.hpp +551 -0
- data/ext/boost/mpl/bind_fwd.hpp +99 -0
- data/ext/boost/mpl/bool.hpp +39 -0
- data/ext/boost/mpl/bool_fwd.hpp +33 -0
- data/ext/boost/mpl/eval_if.hpp +71 -0
- data/ext/boost/mpl/has_xxx.hpp +272 -0
- data/ext/boost/mpl/identity.hpp +45 -0
- data/ext/boost/mpl/if.hpp +135 -0
- data/ext/boost/mpl/int.hpp +22 -0
- data/ext/boost/mpl/int_fwd.hpp +27 -0
- data/ext/boost/mpl/integral_c.hpp +51 -0
- data/ext/boost/mpl/integral_c_fwd.hpp +32 -0
- data/ext/boost/mpl/integral_c_tag.hpp +26 -0
- data/ext/boost/mpl/lambda.hpp +29 -0
- data/ext/boost/mpl/lambda_fwd.hpp +57 -0
- data/ext/boost/mpl/limits/arity.hpp +21 -0
- data/ext/boost/mpl/logical.hpp +21 -0
- data/ext/boost/mpl/next.hpp +19 -0
- data/ext/boost/mpl/next_prior.hpp +49 -0
- data/ext/boost/mpl/not.hpp +51 -0
- data/ext/boost/mpl/or.hpp +61 -0
- data/ext/boost/mpl/placeholders.hpp +100 -0
- data/ext/boost/mpl/protect.hpp +55 -0
- data/ext/boost/mpl/quote.hpp +140 -0
- data/ext/boost/mpl/size_t.hpp +25 -0
- data/ext/boost/mpl/size_t_fwd.hpp +28 -0
- data/ext/boost/mpl/void.hpp +76 -0
- data/ext/boost/mpl/void_fwd.hpp +26 -0
- data/ext/boost/next_prior.hpp +51 -0
- data/ext/boost/non_type.hpp +27 -0
- data/ext/boost/noncopyable.hpp +36 -0
- data/ext/boost/none.hpp +28 -0
- data/ext/boost/none_t.hpp +24 -0
- data/ext/boost/operators.hpp +943 -0
- data/ext/boost/optional.hpp +18 -0
- data/ext/boost/optional/optional.hpp +922 -0
- data/ext/boost/optional/optional_fwd.hpp +22 -0
- data/ext/boost/preprocessor/arithmetic/add.hpp +51 -0
- data/ext/boost/preprocessor/arithmetic/dec.hpp +288 -0
- data/ext/boost/preprocessor/arithmetic/inc.hpp +288 -0
- data/ext/boost/preprocessor/arithmetic/sub.hpp +50 -0
- data/ext/boost/preprocessor/array/data.hpp +28 -0
- data/ext/boost/preprocessor/array/elem.hpp +29 -0
- data/ext/boost/preprocessor/array/size.hpp +28 -0
- data/ext/boost/preprocessor/cat.hpp +35 -0
- data/ext/boost/preprocessor/comma_if.hpp +17 -0
- data/ext/boost/preprocessor/config/config.hpp +70 -0
- data/ext/boost/preprocessor/control/detail/while.hpp +536 -0
- data/ext/boost/preprocessor/control/expr_iif.hpp +31 -0
- data/ext/boost/preprocessor/control/if.hpp +30 -0
- data/ext/boost/preprocessor/control/iif.hpp +34 -0
- data/ext/boost/preprocessor/control/while.hpp +312 -0
- data/ext/boost/preprocessor/debug/error.hpp +33 -0
- data/ext/boost/preprocessor/detail/auto_rec.hpp +293 -0
- data/ext/boost/preprocessor/detail/check.hpp +48 -0
- data/ext/boost/preprocessor/detail/is_binary.hpp +30 -0
- data/ext/boost/preprocessor/empty.hpp +17 -0
- data/ext/boost/preprocessor/enum.hpp +17 -0
- data/ext/boost/preprocessor/enum_params.hpp +17 -0
- data/ext/boost/preprocessor/facilities/empty.hpp +21 -0
- data/ext/boost/preprocessor/facilities/identity.hpp +23 -0
- data/ext/boost/preprocessor/identity.hpp +17 -0
- data/ext/boost/preprocessor/inc.hpp +17 -0
- data/ext/boost/preprocessor/iterate.hpp +17 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/lower1.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/bounds/upper1.hpp +99 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward1.hpp +1342 -0
- data/ext/boost/preprocessor/iteration/iterate.hpp +82 -0
- data/ext/boost/preprocessor/list/adt.hpp +73 -0
- data/ext/boost/preprocessor/list/append.hpp +40 -0
- data/ext/boost/preprocessor/list/detail/fold_left.hpp +279 -0
- data/ext/boost/preprocessor/list/detail/fold_right.hpp +277 -0
- data/ext/boost/preprocessor/list/fold_left.hpp +303 -0
- data/ext/boost/preprocessor/list/fold_right.hpp +40 -0
- data/ext/boost/preprocessor/list/for_each_i.hpp +65 -0
- data/ext/boost/preprocessor/list/reverse.hpp +40 -0
- data/ext/boost/preprocessor/list/transform.hpp +49 -0
- data/ext/boost/preprocessor/logical/and.hpp +30 -0
- data/ext/boost/preprocessor/logical/bitand.hpp +38 -0
- data/ext/boost/preprocessor/logical/bool.hpp +288 -0
- data/ext/boost/preprocessor/logical/compl.hpp +36 -0
- data/ext/boost/preprocessor/punctuation/comma.hpp +21 -0
- data/ext/boost/preprocessor/punctuation/comma_if.hpp +31 -0
- data/ext/boost/preprocessor/repeat.hpp +17 -0
- data/ext/boost/preprocessor/repetition/detail/for.hpp +536 -0
- data/ext/boost/preprocessor/repetition/enum.hpp +66 -0
- data/ext/boost/preprocessor/repetition/enum_binary_params.hpp +54 -0
- data/ext/boost/preprocessor/repetition/enum_params.hpp +41 -0
- data/ext/boost/preprocessor/repetition/for.hpp +306 -0
- data/ext/boost/preprocessor/repetition/repeat.hpp +825 -0
- data/ext/boost/preprocessor/repetition/repeat_from_to.hpp +87 -0
- data/ext/boost/preprocessor/seq/elem.hpp +304 -0
- data/ext/boost/preprocessor/seq/enum.hpp +288 -0
- data/ext/boost/preprocessor/seq/for_each_i.hpp +61 -0
- data/ext/boost/preprocessor/seq/seq.hpp +44 -0
- data/ext/boost/preprocessor/seq/size.hpp +548 -0
- data/ext/boost/preprocessor/slot/detail/def.hpp +49 -0
- data/ext/boost/preprocessor/slot/detail/shared.hpp +247 -0
- data/ext/boost/preprocessor/slot/slot.hpp +32 -0
- data/ext/boost/preprocessor/stringize.hpp +33 -0
- data/ext/boost/preprocessor/tuple/eat.hpp +57 -0
- data/ext/boost/preprocessor/tuple/elem.hpp +385 -0
- data/ext/boost/preprocessor/tuple/rem.hpp +72 -0
- data/ext/boost/preprocessor/tuple/to_list.hpp +62 -0
- data/ext/boost/range/as_literal.hpp +131 -0
- data/ext/boost/range/begin.hpp +132 -0
- data/ext/boost/range/config.hpp +54 -0
- data/ext/boost/range/const_iterator.hpp +64 -0
- data/ext/boost/range/detail/common.hpp +117 -0
- data/ext/boost/range/detail/implementation_help.hpp +99 -0
- data/ext/boost/range/detail/sfinae.hpp +77 -0
- data/ext/boost/range/detail/str_types.hpp +38 -0
- data/ext/boost/range/difference_type.hpp +29 -0
- data/ext/boost/range/distance.hpp +34 -0
- data/ext/boost/range/empty.hpp +34 -0
- data/ext/boost/range/end.hpp +131 -0
- data/ext/boost/range/functions.hpp +27 -0
- data/ext/boost/range/iterator.hpp +72 -0
- data/ext/boost/range/iterator_range.hpp +643 -0
- data/ext/boost/range/mutable_iterator.hpp +64 -0
- data/ext/boost/range/rbegin.hpp +65 -0
- data/ext/boost/range/rend.hpp +65 -0
- data/ext/boost/range/reverse_iterator.hpp +40 -0
- data/ext/boost/range/size.hpp +36 -0
- data/ext/boost/range/size_type.hpp +78 -0
- data/ext/boost/range/value_type.hpp +34 -0
- data/ext/boost/ref.hpp +178 -0
- data/ext/boost/shared_ptr.hpp +619 -0
- data/ext/boost/src/pthread/exceptions.cpp +146 -0
- data/ext/boost/src/pthread/once.cpp +51 -0
- data/ext/boost/src/pthread/thread.cpp +709 -0
- data/ext/boost/src/pthread/timeconv.inl +130 -0
- data/ext/boost/src/tss_null.cpp +34 -0
- data/ext/boost/src/win32/exceptions.cpp +124 -0
- data/ext/boost/src/win32/thread.cpp +629 -0
- data/ext/boost/src/win32/timeconv.inl +130 -0
- data/ext/boost/src/win32/tss_dll.cpp +72 -0
- data/ext/boost/src/win32/tss_pe.cpp +269 -0
- data/ext/boost/static_assert.hpp +122 -0
- data/ext/boost/thread.hpp +21 -0
- data/ext/boost/thread/condition.hpp +16 -0
- data/ext/boost/thread/condition_variable.hpp +21 -0
- data/ext/boost/thread/detail/config.hpp +94 -0
- data/ext/boost/thread/detail/move.hpp +33 -0
- data/ext/boost/thread/detail/platform.hpp +71 -0
- data/ext/boost/thread/exceptions.hpp +109 -0
- data/ext/boost/thread/locks.hpp +589 -0
- data/ext/boost/thread/mutex.hpp +21 -0
- data/ext/boost/thread/once.hpp +29 -0
- data/ext/boost/thread/pthread/condition_variable.hpp +184 -0
- data/ext/boost/thread/pthread/condition_variable_fwd.hpp +66 -0
- data/ext/boost/thread/pthread/mutex.hpp +211 -0
- data/ext/boost/thread/pthread/once.hpp +85 -0
- data/ext/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +50 -0
- data/ext/boost/thread/pthread/recursive_mutex.hpp +249 -0
- data/ext/boost/thread/pthread/thread.hpp +339 -0
- data/ext/boost/thread/pthread/thread_data.hpp +102 -0
- data/ext/boost/thread/pthread/timespec.hpp +28 -0
- data/ext/boost/thread/pthread/tss.hpp +103 -0
- data/ext/boost/thread/recursive_mutex.hpp +21 -0
- data/ext/boost/thread/thread.hpp +22 -0
- data/ext/boost/thread/thread_time.hpp +46 -0
- data/ext/boost/thread/tss.hpp +18 -0
- data/ext/boost/thread/xtime.hpp +88 -0
- data/ext/boost/throw_exception.hpp +46 -0
- data/ext/boost/token_functions.hpp +621 -0
- data/ext/boost/token_iterator.hpp +128 -0
- data/ext/boost/tokenizer.hpp +98 -0
- data/ext/boost/type.hpp +18 -0
- data/ext/boost/type_traits/add_const.hpp +47 -0
- data/ext/boost/type_traits/add_pointer.hpp +72 -0
- data/ext/boost/type_traits/add_reference.hpp +89 -0
- data/ext/boost/type_traits/alignment_of.hpp +100 -0
- data/ext/boost/type_traits/broken_compiler_spec.hpp +117 -0
- data/ext/boost/type_traits/composite_traits.hpp +29 -0
- data/ext/boost/type_traits/config.hpp +76 -0
- data/ext/boost/type_traits/conversion_traits.hpp +17 -0
- data/ext/boost/type_traits/detail/bool_trait_def.hpp +173 -0
- data/ext/boost/type_traits/detail/bool_trait_undef.hpp +27 -0
- data/ext/boost/type_traits/detail/cv_traits_impl.hpp +97 -0
- data/ext/boost/type_traits/detail/false_result.hpp +28 -0
- data/ext/boost/type_traits/detail/ice_and.hpp +35 -0
- data/ext/boost/type_traits/detail/ice_eq.hpp +36 -0
- data/ext/boost/type_traits/detail/ice_not.hpp +31 -0
- data/ext/boost/type_traits/detail/ice_or.hpp +34 -0
- data/ext/boost/type_traits/detail/is_function_ptr_helper.hpp +220 -0
- data/ext/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp +817 -0
- data/ext/boost/type_traits/detail/size_t_trait_def.hpp +58 -0
- data/ext/boost/type_traits/detail/size_t_trait_undef.hpp +16 -0
- data/ext/boost/type_traits/detail/template_arity_spec.hpp +31 -0
- data/ext/boost/type_traits/detail/type_trait_def.hpp +61 -0
- data/ext/boost/type_traits/detail/type_trait_undef.hpp +19 -0
- data/ext/boost/type_traits/detail/yes_no_type.hpp +26 -0
- data/ext/boost/type_traits/function_traits.hpp +236 -0
- data/ext/boost/type_traits/has_nothrow_copy.hpp +39 -0
- data/ext/boost/type_traits/has_trivial_copy.hpp +49 -0
- data/ext/boost/type_traits/ice.hpp +20 -0
- data/ext/boost/type_traits/integral_constant.hpp +53 -0
- data/ext/boost/type_traits/intrinsics.hpp +153 -0
- data/ext/boost/type_traits/is_abstract.hpp +144 -0
- data/ext/boost/type_traits/is_arithmetic.hpp +43 -0
- data/ext/boost/type_traits/is_array.hpp +90 -0
- data/ext/boost/type_traits/is_class.hpp +128 -0
- data/ext/boost/type_traits/is_const.hpp +142 -0
- data/ext/boost/type_traits/is_convertible.hpp +418 -0
- data/ext/boost/type_traits/is_enum.hpp +180 -0
- data/ext/boost/type_traits/is_float.hpp +27 -0
- data/ext/boost/type_traits/is_function.hpp +95 -0
- data/ext/boost/type_traits/is_integral.hpp +73 -0
- data/ext/boost/type_traits/is_member_function_pointer.hpp +134 -0
- data/ext/boost/type_traits/is_member_pointer.hpp +114 -0
- data/ext/boost/type_traits/is_pod.hpp +135 -0
- data/ext/boost/type_traits/is_pointer.hpp +160 -0
- data/ext/boost/type_traits/is_reference.hpp +116 -0
- data/ext/boost/type_traits/is_same.hpp +103 -0
- data/ext/boost/type_traits/is_scalar.hpp +55 -0
- data/ext/boost/type_traits/is_union.hpp +49 -0
- data/ext/boost/type_traits/is_void.hpp +33 -0
- data/ext/boost/type_traits/is_volatile.hpp +131 -0
- data/ext/boost/type_traits/remove_const.hpp +78 -0
- data/ext/boost/type_traits/remove_cv.hpp +61 -0
- data/ext/boost/type_traits/remove_pointer.hpp +43 -0
- data/ext/boost/type_traits/remove_reference.hpp +50 -0
- data/ext/boost/type_traits/type_with_alignment.hpp +288 -0
- data/ext/boost/utility.hpp +19 -0
- data/ext/boost/utility/addressof.hpp +58 -0
- data/ext/boost/utility/base_from_member.hpp +87 -0
- data/ext/boost/utility/compare_pointees.hpp +68 -0
- data/ext/boost/utility/enable_if.hpp +119 -0
- data/ext/boost/visit_each.hpp +29 -0
- data/ext/boost/weak_ptr.hpp +188 -0
- data/ext/common/Application.h +511 -0
- data/ext/common/ApplicationPool.h +205 -0
- data/ext/common/ApplicationPoolServer.h +794 -0
- data/ext/common/ApplicationPoolServerExecutable.cpp +743 -0
- data/ext/common/ApplicationPoolStatusReporter.h +336 -0
- data/ext/common/Base64.cpp +143 -0
- data/ext/common/Base64.h +57 -0
- data/ext/common/CachedFileStat.cpp +62 -0
- data/ext/common/CachedFileStat.h +51 -0
- data/ext/common/CachedFileStat.hpp +243 -0
- data/ext/common/DummySpawnManager.h +108 -0
- data/ext/common/Exceptions.h +258 -0
- data/ext/common/FileChangeChecker.h +209 -0
- data/ext/common/Logging.cpp +65 -0
- data/ext/common/Logging.h +123 -0
- data/ext/common/MessageChannel.h +615 -0
- data/ext/common/PoolOptions.h +355 -0
- data/ext/common/SpawnManager.h +561 -0
- data/ext/common/StandardApplicationPool.h +821 -0
- data/ext/common/StaticString.h +148 -0
- data/ext/common/StringListCreator.h +83 -0
- data/ext/common/SystemTime.cpp +33 -0
- data/ext/common/SystemTime.h +88 -0
- data/ext/common/Timer.h +90 -0
- data/ext/common/Utils.cpp +681 -0
- data/ext/common/Utils.h +497 -0
- data/ext/common/Version.h +31 -0
- data/ext/nginx/Configuration.c +1098 -0
- data/ext/nginx/Configuration.h +71 -0
- data/ext/nginx/ContentHandler.c +1225 -0
- data/ext/nginx/ContentHandler.h +64 -0
- data/ext/nginx/HelperServer.cpp +850 -0
- data/ext/nginx/HttpStatusExtractor.h +350 -0
- data/ext/nginx/ScgiRequestParser.h +317 -0
- data/ext/nginx/StaticContentHandler.c +257 -0
- data/ext/nginx/StaticContentHandler.h +37 -0
- data/ext/nginx/config +45 -0
- data/ext/nginx/ngx_http_passenger_module.c +653 -0
- data/ext/nginx/ngx_http_passenger_module.h +72 -0
- data/ext/oxt/backtrace.cpp +177 -0
- data/ext/oxt/backtrace.hpp +135 -0
- data/ext/oxt/detail/backtrace_disabled.hpp +39 -0
- data/ext/oxt/detail/backtrace_enabled.hpp +155 -0
- data/ext/oxt/detail/spin_lock_gcc_x86.hpp +82 -0
- data/ext/oxt/detail/spin_lock_portable.hpp +38 -0
- data/ext/oxt/detail/spin_lock_pthreads.hpp +97 -0
- data/ext/oxt/detail/tracable_exception_disabled.hpp +46 -0
- data/ext/oxt/detail/tracable_exception_enabled.hpp +48 -0
- data/ext/oxt/macros.hpp +58 -0
- data/ext/oxt/spin_lock.hpp +55 -0
- data/ext/oxt/system_calls.cpp +351 -0
- data/ext/oxt/system_calls.hpp +244 -0
- data/ext/oxt/thread.cpp +32 -0
- data/ext/oxt/thread.hpp +335 -0
- data/ext/oxt/tracable_exception.cpp +87 -0
- data/ext/oxt/tracable_exception.hpp +35 -0
- data/ext/phusion_passenger/extconf.rb +36 -0
- data/ext/phusion_passenger/native_support.c +308 -0
- data/lib/jeweler_spec.rb +86 -0
- data/lib/phusion_passenger/abstract_installer.rb +196 -0
- data/lib/phusion_passenger/abstract_request_handler.rb +475 -0
- data/lib/phusion_passenger/abstract_server.rb +369 -0
- data/lib/phusion_passenger/abstract_server_collection.rb +306 -0
- data/lib/phusion_passenger/admin_tools.rb +48 -0
- data/lib/phusion_passenger/admin_tools/control_process.rb +150 -0
- data/lib/phusion_passenger/application.rb +113 -0
- data/lib/phusion_passenger/console_text_template.rb +66 -0
- data/lib/phusion_passenger/constants.rb +31 -0
- data/lib/phusion_passenger/dependencies.rb +425 -0
- data/lib/phusion_passenger/events.rb +50 -0
- data/lib/phusion_passenger/exceptions.rb +103 -0
- data/lib/phusion_passenger/html_template.rb +109 -0
- data/lib/phusion_passenger/message_channel.rb +229 -0
- data/lib/phusion_passenger/packaging.rb +39 -0
- data/lib/phusion_passenger/platform_info.rb +550 -0
- data/lib/phusion_passenger/rack/application_spawner.rb +146 -0
- data/lib/phusion_passenger/rack/request_handler.rb +122 -0
- data/lib/phusion_passenger/railz/application_spawner.rb +412 -0
- data/lib/phusion_passenger/railz/cgi_fixed.rb +68 -0
- data/lib/phusion_passenger/railz/framework_spawner.rb +334 -0
- data/lib/phusion_passenger/railz/request_handler.rb +73 -0
- data/lib/phusion_passenger/simple_benchmarking.rb +52 -0
- data/lib/phusion_passenger/spawn_manager.rb +372 -0
- data/lib/phusion_passenger/templates/apache2/apache_must_be_compiled_with_compatible_mpm.txt.erb +9 -0
- data/lib/phusion_passenger/templates/apache2/config_snippets.txt.erb +13 -0
- data/lib/phusion_passenger/templates/apache2/deployment_example.txt.erb +23 -0
- data/lib/phusion_passenger/templates/apache2/no_write_permission_to_passenger_root.txt.erb +9 -0
- data/lib/phusion_passenger/templates/apache2/possible_solutions_for_compilation_and_installation_problems.txt.erb +11 -0
- data/lib/phusion_passenger/templates/apache2/run_installer_as_root.txt.erb +8 -0
- data/lib/phusion_passenger/templates/apache2/welcome.txt.erb +15 -0
- data/lib/phusion_passenger/templates/app_exited_during_initialization.html.erb +14 -0
- data/lib/phusion_passenger/templates/app_init_error.html.erb +46 -0
- data/lib/phusion_passenger/templates/database_error.html.erb +24 -0
- data/lib/phusion_passenger/templates/error_layout.css +97 -0
- data/lib/phusion_passenger/templates/error_layout.html.erb +39 -0
- data/lib/phusion_passenger/templates/framework_init_error.html.erb +10 -0
- data/lib/phusion_passenger/templates/general_error.html.erb +8 -0
- data/lib/phusion_passenger/templates/invalid_app_root.html.erb +9 -0
- data/lib/phusion_passenger/templates/load_error.html.erb +6 -0
- data/lib/phusion_passenger/templates/nginx/ask_for_extra_configure_flags.txt.erb +8 -0
- data/lib/phusion_passenger/templates/nginx/cannot_write_to_dir.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/config_snippets.txt.erb +17 -0
- data/lib/phusion_passenger/templates/nginx/config_snippets_inserted.txt.erb +20 -0
- data/lib/phusion_passenger/templates/nginx/confirm_extra_configure_flags.txt.erb +5 -0
- data/lib/phusion_passenger/templates/nginx/deployment_example.txt.erb +22 -0
- data/lib/phusion_passenger/templates/nginx/pcre_could_not_be_downloaded.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/pcre_could_not_be_extracted.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/possible_solutions_for_compilation_and_installation_problems.txt.erb +11 -0
- data/lib/phusion_passenger/templates/nginx/possible_solutions_for_download_and_extraction_problems.txt.erb +20 -0
- data/lib/phusion_passenger/templates/nginx/query_download_and_install.txt.erb +21 -0
- data/lib/phusion_passenger/templates/nginx/run_installer_as_root.txt.erb +8 -0
- data/lib/phusion_passenger/templates/nginx/welcome.txt.erb +15 -0
- data/lib/phusion_passenger/templates/version_not_found.html.erb +6 -0
- data/lib/phusion_passenger/utils.rb +611 -0
- data/lib/phusion_passenger/utils/rewindable_input.rb +116 -0
- data/lib/phusion_passenger/wsgi/application_spawner.rb +104 -0
- data/lib/phusion_passenger/wsgi/request_handler.py +199 -0
- data/man/passenger-config.1 +29 -0
- data/man/passenger-make-enterprisey.8 +23 -0
- data/man/passenger-memory-stats.8 +33 -0
- data/man/passenger-status.8 +43 -0
- data/man/passenger-stress-test.1 +43 -0
- data/misc/copy_boost_headers.rb +125 -0
- data/misc/find_owner_pipe_leaks.rb +128 -0
- data/misc/rake/cplusplus.rb +57 -0
- data/misc/rake/extensions.rb +182 -0
- data/misc/rake/gempackagetask.rb +99 -0
- data/misc/rake/packagetask.rb +186 -0
- data/misc/rake/rdoctask.rb +209 -0
- data/misc/render_error_pages.rb +116 -0
- data/test/ApplicationPoolServerTest.cpp +114 -0
- data/test/ApplicationPoolServer_ApplicationPoolTest.cpp +33 -0
- data/test/ApplicationPoolTest.cpp +599 -0
- data/test/Base64Test.cpp +48 -0
- data/test/CachedFileStatTest.cpp +402 -0
- data/test/CxxTestMain.cpp +143 -0
- data/test/FileChangeCheckerTest.cpp +331 -0
- data/test/HttpStatusExtractorTest.cpp +198 -0
- data/test/MessageChannelTest.cpp +312 -0
- data/test/PoolOptionsTest.cpp +117 -0
- data/test/ScgiRequestParserTest.cpp +337 -0
- data/test/SpawnManagerTest.cpp +64 -0
- data/test/StandardApplicationPoolTest.cpp +27 -0
- data/test/StaticStringTest.cpp +51 -0
- data/test/SystemTimeTest.cpp +37 -0
- data/test/UtilsTest.cpp +257 -0
- data/test/config.yml.example +30 -0
- data/test/integration_tests/apache2_tests.rb +595 -0
- data/test/integration_tests/hello_world_rack_spec.rb +36 -0
- data/test/integration_tests/hello_world_wsgi_spec.rb +41 -0
- data/test/integration_tests/mycook_spec.rb +192 -0
- data/test/integration_tests/nginx_tests.rb +151 -0
- data/test/oxt/backtrace_test.cpp +128 -0
- data/test/oxt/oxt_test_main.cpp +25 -0
- data/test/oxt/syscall_interruption_test.cpp +38 -0
- data/test/ruby/abstract_request_handler_spec.rb +85 -0
- data/test/ruby/abstract_server_collection_spec.rb +246 -0
- data/test/ruby/abstract_server_spec.rb +51 -0
- data/test/ruby/application_spec.rb +43 -0
- data/test/ruby/message_channel_spec.rb +170 -0
- data/test/ruby/rack/application_spawner_spec.rb +99 -0
- data/test/ruby/rails/application_spawner_spec.rb +159 -0
- data/test/ruby/rails/framework_spawner_spec.rb +133 -0
- data/test/ruby/rails/minimal_spawner_spec.rb +93 -0
- data/test/ruby/rails/spawner_error_handling_spec.rb +107 -0
- data/test/ruby/rails/spawner_privilege_lowering_spec.rb +97 -0
- data/test/ruby/spawn_manager_spec.rb +205 -0
- data/test/ruby/spawn_server_spec.rb +26 -0
- data/test/ruby/utils_spec.rb +335 -0
- data/test/ruby/wsgi/application_spawner_spec.rb +54 -0
- data/test/stub/apache2/httpd.conf.erb +81 -0
- data/test/stub/apache2/mime.types +748 -0
- data/test/stub/garbage1.dat +0 -0
- data/test/stub/garbage2.dat +0 -0
- data/test/stub/garbage3.dat +0 -0
- data/test/stub/http_request.yml +23 -0
- data/test/stub/message_channel.rb +9 -0
- data/test/stub/message_channel_2.rb +10 -0
- data/test/stub/message_channel_3.rb +17 -0
- data/test/stub/nginx/koi-utf +109 -0
- data/test/stub/nginx/koi-win +103 -0
- data/test/stub/nginx/mime.types +70 -0
- data/test/stub/nginx/nginx.conf.erb +57 -0
- data/test/stub/nginx/win-utf +126 -0
- data/test/stub/rack/config.ru +4 -0
- data/test/stub/rack/public/rack.jpg +0 -0
- data/test/stub/rails_apps/foobar/app/controllers/application.rb +12 -0
- data/test/stub/rails_apps/foobar/app/controllers/bar_controller_1.rb +5 -0
- data/test/stub/rails_apps/foobar/app/controllers/bar_controller_2.rb +5 -0
- data/test/stub/rails_apps/foobar/app/controllers/foo_controller.rb +21 -0
- data/test/stub/rails_apps/foobar/app/helpers/application_helper.rb +3 -0
- data/test/stub/rails_apps/foobar/config/boot.rb +108 -0
- data/test/stub/rails_apps/foobar/config/database.yml +19 -0
- data/test/stub/rails_apps/foobar/config/environment.rb +59 -0
- data/test/stub/rails_apps/foobar/config/environments/development.rb +17 -0
- data/test/stub/rails_apps/foobar/config/environments/production.rb +18 -0
- data/test/stub/rails_apps/foobar/config/initializers/inflections.rb +10 -0
- data/test/stub/rails_apps/foobar/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails_apps/foobar/config/routes.rb +35 -0
- data/test/stub/rails_apps/mycook/app/controllers/application.rb +12 -0
- data/test/stub/rails_apps/mycook/app/controllers/recipes_controller.rb +5 -0
- data/test/stub/rails_apps/mycook/app/controllers/uploads_controller.rb +15 -0
- data/test/stub/rails_apps/mycook/app/controllers/welcome_controller.rb +71 -0
- data/test/stub/rails_apps/mycook/app/helpers/application_helper.rb +3 -0
- data/test/stub/rails_apps/mycook/app/views/layouts/default.rhtml +26 -0
- data/test/stub/rails_apps/mycook/app/views/recipes/create.rhtml +13 -0
- data/test/stub/rails_apps/mycook/app/views/recipes/index.rhtml +3 -0
- data/test/stub/rails_apps/mycook/app/views/recipes/new.rhtml +8 -0
- data/test/stub/rails_apps/mycook/app/views/uploads/index.rhtml +1 -0
- data/test/stub/rails_apps/mycook/app/views/uploads/new.html.erb +8 -0
- data/test/stub/rails_apps/mycook/app/views/welcome/cached.rhtml +1 -0
- data/test/stub/rails_apps/mycook/app/views/welcome/index.rhtml +20 -0
- data/test/stub/rails_apps/mycook/config/boot.rb +108 -0
- data/test/stub/rails_apps/mycook/config/database.yml +19 -0
- data/test/stub/rails_apps/mycook/config/environment.rb +61 -0
- data/test/stub/rails_apps/mycook/config/environments/development.rb +18 -0
- data/test/stub/rails_apps/mycook/config/environments/production.rb +19 -0
- data/test/stub/rails_apps/mycook/config/initializers/inflections.rb +10 -0
- data/test/stub/rails_apps/mycook/config/initializers/mime_types.rb +5 -0
- data/test/stub/rails_apps/mycook/config/routes.rb +38 -0
- data/test/stub/rails_apps/mycook/log/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/public/404.html +30 -0
- data/test/stub/rails_apps/mycook/public/422.html +30 -0
- data/test/stub/rails_apps/mycook/public/500.html +30 -0
- data/test/stub/rails_apps/mycook/public/dispatch.cgi +10 -0
- data/test/stub/rails_apps/mycook/public/dispatch.fcgi +24 -0
- data/test/stub/rails_apps/mycook/public/dispatch.rb +10 -0
- data/test/stub/rails_apps/mycook/public/favicon.ico +0 -0
- data/test/stub/rails_apps/mycook/public/images/angrywizard.gif +0 -0
- data/test/stub/rails_apps/mycook/public/images/cookbook.gif +0 -0
- data/test/stub/rails_apps/mycook/public/images/header.png +0 -0
- data/test/stub/rails_apps/mycook/public/images/rails.png +0 -0
- data/test/stub/rails_apps/mycook/public/javascripts/application.js +2 -0
- data/test/stub/rails_apps/mycook/public/javascripts/controls.js +963 -0
- data/test/stub/rails_apps/mycook/public/javascripts/dragdrop.js +972 -0
- data/test/stub/rails_apps/mycook/public/javascripts/effects.js +1120 -0
- data/test/stub/rails_apps/mycook/public/javascripts/prototype.js +4225 -0
- data/test/stub/rails_apps/mycook/public/robots.txt +5 -0
- data/test/stub/rails_apps/mycook/public/uploads.html +26 -0
- data/test/stub/rails_apps/mycook/public/welcome/cached.html +26 -0
- data/test/stub/rails_apps/mycook/sites/some.site/public/uploads.html +26 -0
- data/test/stub/rails_apps/mycook/sites/some.site/public/welcome/cached.html +26 -0
- data/test/stub/rails_apps/mycook/tmp/cache/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/tmp/pids/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/tmp/sessions/useless.txt +1 -0
- data/test/stub/rails_apps/mycook/tmp/sockets/useless.txt +1 -0
- data/test/stub/spawn_server.rb +20 -0
- data/test/stub/upload_data.txt +494 -0
- data/test/stub/vendor_rails/minimal/README +1 -0
- data/test/stub/vendor_rails/minimal/actionmailer/lib/action_mailer.rb +0 -0
- data/test/stub/vendor_rails/minimal/actionpack/lib/action_controller.rb +19 -0
- data/test/stub/vendor_rails/minimal/actionpack/lib/action_pack.rb +0 -0
- data/test/stub/vendor_rails/minimal/actionpack/lib/action_view.rb +0 -0
- data/test/stub/vendor_rails/minimal/activerecord/lib/active_record.rb +7 -0
- data/test/stub/vendor_rails/minimal/activeresource/lib/active_resource.rb +0 -0
- data/test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb +17 -0
- data/test/stub/vendor_rails/minimal/activesupport/lib/active_support/whiny_nil.rb +0 -0
- data/test/stub/vendor_rails/minimal/railties/lib/dispatcher.rb +0 -0
- data/test/stub/vendor_rails/minimal/railties/lib/initializer.rb +52 -0
- data/test/stub/vendor_rails/minimal/railties/lib/ruby_version_check.rb +1 -0
- data/test/stub/wsgi/passenger_wsgi.py +3 -0
- data/test/stub/wsgi/public/wsgi-snake.jpg +0 -0
- data/test/stub/zsfa/header.png +0 -0
- data/test/stub/zsfa/index.html +14 -0
- data/test/stub/zsfa/zsfa.png +0 -0
- data/test/support/Support.cpp +84 -0
- data/test/support/Support.h +118 -0
- data/test/support/apache2_controller.rb +250 -0
- data/test/support/config.rb +38 -0
- data/test/support/multipart.rb +62 -0
- data/test/support/nginx_controller.rb +98 -0
- data/test/support/run_rspec_tests.rb +10 -0
- data/test/support/test_helper.rb +207 -0
- data/test/support/tut.h +1234 -0
- data/test/support/tut_reporter.h +256 -0
- data/test/support/valgrind.h +2539 -0
- metadata +1078 -0
Binary file
|
@@ -0,0 +1,213 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
<svg
|
4
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
5
|
+
xmlns:cc="http://web.resource.org/cc/"
|
6
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
7
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
8
|
+
xmlns="http://www.w3.org/2000/svg"
|
9
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
10
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
12
|
+
width="490"
|
13
|
+
height="235"
|
14
|
+
id="svg2"
|
15
|
+
sodipodi:version="0.32"
|
16
|
+
inkscape:version="0.45.1"
|
17
|
+
version="1.0"
|
18
|
+
sodipodi:docbase="/home/hongli/Projects/mod_rails/doc/images"
|
19
|
+
sodipodi:docname="typical_isolated_web_application.svg"
|
20
|
+
inkscape:output_extension="org.inkscape.output.svg.inkscape"
|
21
|
+
inkscape:export-filename="/home/hongli/Projects/mod_rails/doc/images/typical_isolated_web_application.png"
|
22
|
+
inkscape:export-xdpi="90"
|
23
|
+
inkscape:export-ydpi="90">
|
24
|
+
<defs
|
25
|
+
id="defs4">
|
26
|
+
<marker
|
27
|
+
inkscape:stockid="Arrow1Mend"
|
28
|
+
orient="auto"
|
29
|
+
refY="0"
|
30
|
+
refX="0"
|
31
|
+
id="Arrow1Mend"
|
32
|
+
style="overflow:visible">
|
33
|
+
<path
|
34
|
+
id="path3179"
|
35
|
+
d="M 0,0 L 5,-5 L -12.5,0 L 5,5 L 0,0 z "
|
36
|
+
style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
|
37
|
+
transform="matrix(-0.4,0,0,-0.4,-4,0)" />
|
38
|
+
</marker>
|
39
|
+
<linearGradient
|
40
|
+
id="linearGradient3148">
|
41
|
+
<stop
|
42
|
+
style="stop-color:#19a300;stop-opacity:1;"
|
43
|
+
offset="0"
|
44
|
+
id="stop3150" />
|
45
|
+
<stop
|
46
|
+
style="stop-color:#89f676;stop-opacity:1;"
|
47
|
+
offset="1"
|
48
|
+
id="stop3152" />
|
49
|
+
</linearGradient>
|
50
|
+
<linearGradient
|
51
|
+
id="linearGradient3136">
|
52
|
+
<stop
|
53
|
+
style="stop-color:#02a800;stop-opacity:1;"
|
54
|
+
offset="0"
|
55
|
+
id="stop3138" />
|
56
|
+
<stop
|
57
|
+
id="stop3144"
|
58
|
+
offset="0.27777779"
|
59
|
+
style="stop-color:#37e928;stop-opacity:1;" />
|
60
|
+
<stop
|
61
|
+
style="stop-color:#53f03c;stop-opacity:1;"
|
62
|
+
offset="0.65895063"
|
63
|
+
id="stop3146" />
|
64
|
+
<stop
|
65
|
+
style="stop-color:#d5ffc5;stop-opacity:1;"
|
66
|
+
offset="1"
|
67
|
+
id="stop3140" />
|
68
|
+
</linearGradient>
|
69
|
+
<linearGradient
|
70
|
+
inkscape:collect="always"
|
71
|
+
xlink:href="#linearGradient3136"
|
72
|
+
id="linearGradient3163"
|
73
|
+
gradientUnits="userSpaceOnUse"
|
74
|
+
x1="296.5"
|
75
|
+
y1="148.86218"
|
76
|
+
x2="291.5"
|
77
|
+
y2="83.862183" />
|
78
|
+
<linearGradient
|
79
|
+
inkscape:collect="always"
|
80
|
+
xlink:href="#linearGradient3148"
|
81
|
+
id="linearGradient3165"
|
82
|
+
gradientUnits="userSpaceOnUse"
|
83
|
+
x1="263.5"
|
84
|
+
y1="148.86218"
|
85
|
+
x2="244.5"
|
86
|
+
y2="78.862183" />
|
87
|
+
</defs>
|
88
|
+
<sodipodi:namedview
|
89
|
+
id="base"
|
90
|
+
pagecolor="#ffffff"
|
91
|
+
bordercolor="#666666"
|
92
|
+
borderopacity="1.0"
|
93
|
+
gridtolerance="10000"
|
94
|
+
guidetolerance="10"
|
95
|
+
objecttolerance="10"
|
96
|
+
inkscape:pageopacity="1"
|
97
|
+
inkscape:pageshadow="2"
|
98
|
+
inkscape:zoom="1"
|
99
|
+
inkscape:cx="375"
|
100
|
+
inkscape:cy="160"
|
101
|
+
inkscape:document-units="px"
|
102
|
+
inkscape:current-layer="layer1"
|
103
|
+
inkscape:window-width="1280"
|
104
|
+
inkscape:window-height="702"
|
105
|
+
inkscape:window-x="0"
|
106
|
+
inkscape:window-y="72"
|
107
|
+
width="490px"
|
108
|
+
height="235px" />
|
109
|
+
<metadata
|
110
|
+
id="metadata7">
|
111
|
+
<rdf:RDF>
|
112
|
+
<cc:Work
|
113
|
+
rdf:about="">
|
114
|
+
<dc:format>image/svg+xml</dc:format>
|
115
|
+
<dc:type
|
116
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
117
|
+
</cc:Work>
|
118
|
+
</rdf:RDF>
|
119
|
+
</metadata>
|
120
|
+
<g
|
121
|
+
inkscape:label="Layer 1"
|
122
|
+
inkscape:groupmode="layer"
|
123
|
+
id="layer1"
|
124
|
+
transform="translate(-12.747352,-41.519898)">
|
125
|
+
<g
|
126
|
+
id="g3158"
|
127
|
+
transform="translate(59,77)">
|
128
|
+
<rect
|
129
|
+
ry="25"
|
130
|
+
rx="25"
|
131
|
+
y="81.362183"
|
132
|
+
x="189"
|
133
|
+
height="65"
|
134
|
+
width="215"
|
135
|
+
id="rect2160"
|
136
|
+
style="opacity:1;fill:url(#linearGradient3163);fill-opacity:1;stroke:url(#linearGradient3165);stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
|
137
|
+
<text
|
138
|
+
id="text2162"
|
139
|
+
y="121.6162"
|
140
|
+
x="217.72668"
|
141
|
+
style="font-size:20.23151207px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
|
142
|
+
xml:space="preserve"><tspan
|
143
|
+
y="121.6162"
|
144
|
+
x="217.72668"
|
145
|
+
id="tspan2164"
|
146
|
+
sodipodi:role="line">Web application</tspan></text>
|
147
|
+
</g>
|
148
|
+
<path
|
149
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
150
|
+
d="M 156.125,192.23718 L 238.125,192.23718"
|
151
|
+
id="path3156" />
|
152
|
+
<path
|
153
|
+
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:5;stroke-linecap:butt;stroke-linejoin:miter;marker-end:url(#Arrow1Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
154
|
+
d="M 398,157.23718 L 398,102.96896"
|
155
|
+
id="path3365" />
|
156
|
+
<text
|
157
|
+
xml:space="preserve"
|
158
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
|
159
|
+
x="85.478348"
|
160
|
+
y="184.42551"
|
161
|
+
id="text3367"
|
162
|
+
sodipodi:linespacing="110%"><tspan
|
163
|
+
sodipodi:role="line"
|
164
|
+
id="tspan3369"
|
165
|
+
x="85.478346"
|
166
|
+
y="184.42551"
|
167
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial">1. HTTP request</tspan><tspan
|
168
|
+
sodipodi:role="line"
|
169
|
+
x="85.478348"
|
170
|
+
y="202.68543"
|
171
|
+
id="tspan3371"
|
172
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial">(input)</tspan></text>
|
173
|
+
<text
|
174
|
+
xml:space="preserve"
|
175
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
|
176
|
+
x="396.45288"
|
177
|
+
y="62.451099"
|
178
|
+
id="text3373"
|
179
|
+
sodipodi:linespacing="110%"><tspan
|
180
|
+
sodipodi:role="line"
|
181
|
+
id="tspan3375"
|
182
|
+
x="396.45288"
|
183
|
+
y="62.451099"
|
184
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial">3. HTTP response</tspan><tspan
|
185
|
+
sodipodi:role="line"
|
186
|
+
x="396.45288"
|
187
|
+
y="80.711025"
|
188
|
+
id="tspan3377"
|
189
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial">(output)</tspan></text>
|
190
|
+
<path
|
191
|
+
sodipodi:type="arc"
|
192
|
+
style="opacity:1;fill:#a4ff8d;fill-opacity:1;stroke:#229f0f;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
|
193
|
+
id="path3379"
|
194
|
+
sodipodi:cx="315.5"
|
195
|
+
sodipodi:cy="304.86218"
|
196
|
+
sodipodi:rx="67.5"
|
197
|
+
sodipodi:ry="28.5"
|
198
|
+
d="M 383 304.86218 A 67.5 28.5 0 1 1 248,304.86218 A 67.5 28.5 0 1 1 383 304.86218 z"
|
199
|
+
transform="translate(104,-70)" />
|
200
|
+
<text
|
201
|
+
xml:space="preserve"
|
202
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Arial"
|
203
|
+
x="421.45288"
|
204
|
+
y="240.45111"
|
205
|
+
id="text3385"
|
206
|
+
sodipodi:linespacing="110%"><tspan
|
207
|
+
sodipodi:role="line"
|
208
|
+
x="421.45288"
|
209
|
+
y="240.45111"
|
210
|
+
id="tspan3389"
|
211
|
+
style="font-size:16.59993172px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:110.00000238%;writing-mode:lr-tb;text-anchor:middle;font-family:Arial">2. Processing</tspan></text>
|
212
|
+
</g>
|
213
|
+
</svg>
|
@@ -0,0 +1,613 @@
|
|
1
|
+
# Horo RDoc template
|
2
|
+
# Author: Hongli Lai - http://izumi.plan99.net/blog/
|
3
|
+
#
|
4
|
+
# Based on the Jamis template:
|
5
|
+
# http://weblog.jamisbuck.org/2005/4/8/rdoc-template
|
6
|
+
|
7
|
+
if defined?(RDoc::Diagram)
|
8
|
+
RDoc::Diagram.class_eval do
|
9
|
+
remove_const(:FONT)
|
10
|
+
const_set(:FONT, "\"Bitstream Vera Sans\"")
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
module RDoc
|
15
|
+
module Page
|
16
|
+
|
17
|
+
FONTS = "\"Bitstream Vera Sans\", Verdana, Arial, Helvetica, sans-serif"
|
18
|
+
|
19
|
+
STYLE = <<CSS
|
20
|
+
a {
|
21
|
+
color: #00F;
|
22
|
+
text-decoration: none;
|
23
|
+
}
|
24
|
+
|
25
|
+
a:hover {
|
26
|
+
color: #77F;
|
27
|
+
text-decoration: underline;
|
28
|
+
}
|
29
|
+
|
30
|
+
body, td, p {
|
31
|
+
font-family: %fonts%;
|
32
|
+
background: #FFF;
|
33
|
+
color: #000;
|
34
|
+
margin: 0px;
|
35
|
+
font-size: small;
|
36
|
+
}
|
37
|
+
|
38
|
+
p {
|
39
|
+
margin-top: 0.5em;
|
40
|
+
margin-bottom: 0.5em;
|
41
|
+
}
|
42
|
+
|
43
|
+
#content {
|
44
|
+
margin: 2em;
|
45
|
+
margin-left: 3.5em;
|
46
|
+
margin-right: 3.5em;
|
47
|
+
}
|
48
|
+
|
49
|
+
#description p {
|
50
|
+
margin-bottom: 0.5em;
|
51
|
+
}
|
52
|
+
|
53
|
+
.sectiontitle {
|
54
|
+
margin-top: 1em;
|
55
|
+
margin-bottom: 1em;
|
56
|
+
padding: 0.5em;
|
57
|
+
padding-left: 2em;
|
58
|
+
background: #005;
|
59
|
+
color: #FFF;
|
60
|
+
font-weight: bold;
|
61
|
+
}
|
62
|
+
|
63
|
+
.attr-rw {
|
64
|
+
padding-left: 1em;
|
65
|
+
padding-right: 1em;
|
66
|
+
text-align: center;
|
67
|
+
color: #055;
|
68
|
+
}
|
69
|
+
|
70
|
+
.attr-name {
|
71
|
+
font-weight: bold;
|
72
|
+
}
|
73
|
+
|
74
|
+
.attr-desc {
|
75
|
+
}
|
76
|
+
|
77
|
+
.attr-value {
|
78
|
+
font-family: monospace;
|
79
|
+
}
|
80
|
+
|
81
|
+
.file-title-prefix {
|
82
|
+
font-size: large;
|
83
|
+
}
|
84
|
+
|
85
|
+
.file-title {
|
86
|
+
font-size: large;
|
87
|
+
font-weight: bold;
|
88
|
+
background: #005;
|
89
|
+
color: #FFF;
|
90
|
+
}
|
91
|
+
|
92
|
+
.banner {
|
93
|
+
background: #005;
|
94
|
+
color: #FFF;
|
95
|
+
border: 1px solid black;
|
96
|
+
padding: 1em;
|
97
|
+
}
|
98
|
+
|
99
|
+
.banner td {
|
100
|
+
background: transparent;
|
101
|
+
color: #FFF;
|
102
|
+
}
|
103
|
+
|
104
|
+
h1 a, h2 a, .sectiontitle a, .banner a {
|
105
|
+
color: #FF0;
|
106
|
+
}
|
107
|
+
|
108
|
+
h1 a:hover, h2 a:hover, .sectiontitle a:hover, .banner a:hover {
|
109
|
+
color: #FF7;
|
110
|
+
}
|
111
|
+
|
112
|
+
.dyn-source {
|
113
|
+
display: none;
|
114
|
+
background: #fffde8;
|
115
|
+
color: #000;
|
116
|
+
border: #ffe0bb dotted 1px;
|
117
|
+
margin: 0.5em 2em 0.5em 2em;
|
118
|
+
padding: 0.5em;
|
119
|
+
}
|
120
|
+
|
121
|
+
.dyn-source .cmt {
|
122
|
+
color: #00F;
|
123
|
+
font-style: italic;
|
124
|
+
}
|
125
|
+
|
126
|
+
.dyn-source .kw {
|
127
|
+
color: #070;
|
128
|
+
font-weight: bold;
|
129
|
+
}
|
130
|
+
|
131
|
+
.method {
|
132
|
+
margin-left: 1em;
|
133
|
+
margin-right: 1em;
|
134
|
+
margin-bottom: 1em;
|
135
|
+
}
|
136
|
+
|
137
|
+
.description pre {
|
138
|
+
padding: 0.5em;
|
139
|
+
border: #ffe0bb dotted 1px;
|
140
|
+
background: #fffde8;
|
141
|
+
}
|
142
|
+
|
143
|
+
.method .title {
|
144
|
+
font-family: monospace;
|
145
|
+
font-size: large;
|
146
|
+
border-bottom: 1px dashed black;
|
147
|
+
margin-bottom: 0.3em;
|
148
|
+
padding-bottom: 0.1em;
|
149
|
+
}
|
150
|
+
|
151
|
+
.method .description, .method .sourcecode {
|
152
|
+
margin-left: 1em;
|
153
|
+
}
|
154
|
+
|
155
|
+
.description p, .sourcecode p {
|
156
|
+
margin-bottom: 0.5em;
|
157
|
+
}
|
158
|
+
|
159
|
+
.method .sourcecode p.source-link {
|
160
|
+
text-indent: 0em;
|
161
|
+
margin-top: 0.5em;
|
162
|
+
}
|
163
|
+
|
164
|
+
.method .aka {
|
165
|
+
margin-top: 0.3em;
|
166
|
+
margin-left: 1em;
|
167
|
+
font-style: italic;
|
168
|
+
text-indent: 2em;
|
169
|
+
}
|
170
|
+
|
171
|
+
h1 {
|
172
|
+
padding: 1em;
|
173
|
+
margin-left: -1.5em;
|
174
|
+
font-size: x-large;
|
175
|
+
font-weight: bold;
|
176
|
+
color: #FFF;
|
177
|
+
background: #007;
|
178
|
+
}
|
179
|
+
|
180
|
+
h2 {
|
181
|
+
padding: 0.5em 1em 0.5em 1em;
|
182
|
+
margin-left: -1.5em;
|
183
|
+
font-size: large;
|
184
|
+
font-weight: bold;
|
185
|
+
color: #FFF;
|
186
|
+
background: #009;
|
187
|
+
}
|
188
|
+
|
189
|
+
h3, h4, h5, h6 {
|
190
|
+
color: #220088;
|
191
|
+
border-bottom: #5522bb solid 1px;
|
192
|
+
}
|
193
|
+
|
194
|
+
.sourcecode > pre {
|
195
|
+
padding: 0.5em;
|
196
|
+
border: 1px dotted black;
|
197
|
+
background: #FFE;
|
198
|
+
}
|
199
|
+
|
200
|
+
dt {
|
201
|
+
font-weight: bold
|
202
|
+
}
|
203
|
+
|
204
|
+
dd {
|
205
|
+
margin-bottom: 0.7em;
|
206
|
+
}
|
207
|
+
CSS
|
208
|
+
|
209
|
+
XHTML_PREAMBLE = %{<?xml version="1.0" encoding="%charset%"?>
|
210
|
+
<!DOCTYPE html
|
211
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
212
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
213
|
+
}
|
214
|
+
|
215
|
+
XHTML_FRAMESET_PREAMBLE = %{
|
216
|
+
<!DOCTYPE html
|
217
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
218
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
|
219
|
+
}
|
220
|
+
|
221
|
+
HEADER = XHTML_PREAMBLE + <<ENDHEADER
|
222
|
+
<html>
|
223
|
+
<head>
|
224
|
+
<title>%title%</title>
|
225
|
+
<meta http-equiv="Content-Type" content="text/html; charset=%charset%" />
|
226
|
+
<link rel="stylesheet" href="%style_url%" type="text/css" media="screen" />
|
227
|
+
|
228
|
+
<script language="JavaScript" type="text/javascript">
|
229
|
+
// <![CDATA[
|
230
|
+
|
231
|
+
function toggleSource( id )
|
232
|
+
{
|
233
|
+
var elem
|
234
|
+
var link
|
235
|
+
|
236
|
+
if( document.getElementById )
|
237
|
+
{
|
238
|
+
elem = document.getElementById( id )
|
239
|
+
link = document.getElementById( "l_" + id )
|
240
|
+
}
|
241
|
+
else if ( document.all )
|
242
|
+
{
|
243
|
+
elem = eval( "document.all." + id )
|
244
|
+
link = eval( "document.all.l_" + id )
|
245
|
+
}
|
246
|
+
else
|
247
|
+
return false;
|
248
|
+
|
249
|
+
if( elem.style.display == "block" )
|
250
|
+
{
|
251
|
+
elem.style.display = "none"
|
252
|
+
link.innerHTML = "show source"
|
253
|
+
}
|
254
|
+
else
|
255
|
+
{
|
256
|
+
elem.style.display = "block"
|
257
|
+
link.innerHTML = "hide source"
|
258
|
+
}
|
259
|
+
}
|
260
|
+
|
261
|
+
function openCode( url )
|
262
|
+
{
|
263
|
+
window.open( url, "SOURCE_CODE", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=480,width=750" ).focus();
|
264
|
+
}
|
265
|
+
// ]]>
|
266
|
+
</script>
|
267
|
+
</head>
|
268
|
+
|
269
|
+
<body>
|
270
|
+
ENDHEADER
|
271
|
+
|
272
|
+
FILE_PAGE = <<HTML
|
273
|
+
<table border='0' cellpadding='0' cellspacing='0' width="100%" class='banner'>
|
274
|
+
<tr><td>
|
275
|
+
<table width="100%" border='0' cellpadding='0' cellspacing='0'><tr>
|
276
|
+
<td class="file-title" colspan="2"><span class="file-title-prefix">File</span><br />%short_name%</td>
|
277
|
+
<td align="right">
|
278
|
+
<table border='0' cellspacing="0" cellpadding="2">
|
279
|
+
<tr>
|
280
|
+
<td>Path:</td>
|
281
|
+
<td>%full_path%
|
282
|
+
IF:cvsurl
|
283
|
+
(<a href="%cvsurl%">CVS</a>)
|
284
|
+
ENDIF:cvsurl
|
285
|
+
</td>
|
286
|
+
</tr>
|
287
|
+
<tr>
|
288
|
+
<td>Modified:</td>
|
289
|
+
<td>%dtm_modified%</td>
|
290
|
+
</tr>
|
291
|
+
</table>
|
292
|
+
</td></tr>
|
293
|
+
</table>
|
294
|
+
</td></tr>
|
295
|
+
</table><br />
|
296
|
+
HTML
|
297
|
+
|
298
|
+
###################################################################
|
299
|
+
|
300
|
+
CLASS_PAGE = <<HTML
|
301
|
+
<table width="100%" border='0' cellpadding='0' cellspacing='0' class='banner'><tr>
|
302
|
+
<td class="file-title"><span class="file-title-prefix">%classmod%</span><br />%full_name%</td>
|
303
|
+
<td align="right">
|
304
|
+
<table cellspacing="0" cellpadding="2">
|
305
|
+
<tr valign="top">
|
306
|
+
<td>In:</td>
|
307
|
+
<td>
|
308
|
+
START:infiles
|
309
|
+
HREF:full_path_url:full_path:
|
310
|
+
IF:cvsurl
|
311
|
+
(<a href="%cvsurl%">CVS</a>)
|
312
|
+
ENDIF:cvsurl
|
313
|
+
END:infiles
|
314
|
+
</td>
|
315
|
+
</tr>
|
316
|
+
IF:parent
|
317
|
+
<tr>
|
318
|
+
<td>Parent:</td>
|
319
|
+
<td>
|
320
|
+
IF:par_url
|
321
|
+
<a href="%par_url%">
|
322
|
+
ENDIF:par_url
|
323
|
+
%parent%
|
324
|
+
IF:par_url
|
325
|
+
</a>
|
326
|
+
ENDIF:par_url
|
327
|
+
</td>
|
328
|
+
</tr>
|
329
|
+
ENDIF:parent
|
330
|
+
</table>
|
331
|
+
</td>
|
332
|
+
</tr>
|
333
|
+
</table>
|
334
|
+
HTML
|
335
|
+
|
336
|
+
###################################################################
|
337
|
+
|
338
|
+
METHOD_LIST = <<HTML
|
339
|
+
<div id="content">
|
340
|
+
IF:diagram
|
341
|
+
<table cellpadding='0' cellspacing='0' border='0' width="100%"><tr><td align="center">
|
342
|
+
%diagram%
|
343
|
+
</td></tr></table>
|
344
|
+
ENDIF:diagram
|
345
|
+
|
346
|
+
IF:description
|
347
|
+
<div class="description">%description%</div>
|
348
|
+
ENDIF:description
|
349
|
+
|
350
|
+
IF:requires
|
351
|
+
<div class="sectiontitle">Required Files</div>
|
352
|
+
<ul>
|
353
|
+
START:requires
|
354
|
+
<li>HREF:aref:name:</li>
|
355
|
+
END:requires
|
356
|
+
</ul>
|
357
|
+
ENDIF:requires
|
358
|
+
|
359
|
+
IF:toc
|
360
|
+
<div class="sectiontitle">Contents</div>
|
361
|
+
<ul>
|
362
|
+
START:toc
|
363
|
+
<li><a href="#%href%">%secname%</a></li>
|
364
|
+
END:toc
|
365
|
+
</ul>
|
366
|
+
ENDIF:toc
|
367
|
+
|
368
|
+
IF:methods
|
369
|
+
<div class="sectiontitle">Methods</div>
|
370
|
+
<ul>
|
371
|
+
START:methods
|
372
|
+
<li>HREF:aref:name:</li>
|
373
|
+
END:methods
|
374
|
+
</ul>
|
375
|
+
ENDIF:methods
|
376
|
+
|
377
|
+
IF:includes
|
378
|
+
<div class="sectiontitle">Included Modules</div>
|
379
|
+
<ul>
|
380
|
+
START:includes
|
381
|
+
<li>HREF:aref:name:</li>
|
382
|
+
END:includes
|
383
|
+
</ul>
|
384
|
+
ENDIF:includes
|
385
|
+
|
386
|
+
START:sections
|
387
|
+
IF:sectitle
|
388
|
+
<div class="sectiontitle"><a name="%secsequence%">%sectitle%</a></div>
|
389
|
+
IF:seccomment
|
390
|
+
<div class="description">
|
391
|
+
%seccomment%
|
392
|
+
</div>
|
393
|
+
ENDIF:seccomment
|
394
|
+
ENDIF:sectitle
|
395
|
+
|
396
|
+
IF:classlist
|
397
|
+
<div class="sectiontitle">Classes and Modules</div>
|
398
|
+
%classlist%
|
399
|
+
ENDIF:classlist
|
400
|
+
|
401
|
+
IF:constants
|
402
|
+
<div class="sectiontitle">Constants</div>
|
403
|
+
<table border='0' cellpadding='5'>
|
404
|
+
START:constants
|
405
|
+
<tr valign='top'>
|
406
|
+
<td class="attr-name">%name%</td>
|
407
|
+
<td>=</td>
|
408
|
+
<td class="attr-value">%value%</td>
|
409
|
+
</tr>
|
410
|
+
IF:desc
|
411
|
+
<tr valign='top'>
|
412
|
+
<td> </td>
|
413
|
+
<td colspan="2" class="attr-desc">%desc%</td>
|
414
|
+
</tr>
|
415
|
+
ENDIF:desc
|
416
|
+
END:constants
|
417
|
+
</table>
|
418
|
+
ENDIF:constants
|
419
|
+
|
420
|
+
IF:attributes
|
421
|
+
<div class="sectiontitle">Attributes</div>
|
422
|
+
<table border='0' cellpadding='5'>
|
423
|
+
START:attributes
|
424
|
+
<tr valign='top'>
|
425
|
+
<td class='attr-rw'>
|
426
|
+
IF:rw
|
427
|
+
[%rw%]
|
428
|
+
ENDIF:rw
|
429
|
+
</td>
|
430
|
+
<td class='attr-name'>%name%</td>
|
431
|
+
<td class='attr-desc'>%a_desc%</td>
|
432
|
+
</tr>
|
433
|
+
END:attributes
|
434
|
+
</table>
|
435
|
+
ENDIF:attributes
|
436
|
+
|
437
|
+
IF:method_list
|
438
|
+
START:method_list
|
439
|
+
IF:methods
|
440
|
+
<div class="sectiontitle">%type% %category% methods</div>
|
441
|
+
START:methods
|
442
|
+
<div class="method">
|
443
|
+
<div class="title">
|
444
|
+
IF:callseq
|
445
|
+
<a name="%aref%"></a><b>%callseq%</b>
|
446
|
+
ENDIF:callseq
|
447
|
+
IFNOT:callseq
|
448
|
+
<a name="%aref%"></a><b>%name%</b>%params%
|
449
|
+
ENDIF:callseq
|
450
|
+
IF:codeurl
|
451
|
+
[ <a href="%codeurl%" target="SOURCE_CODE" onclick="javascript:openCode('%codeurl%'); return false;">source</a> ]
|
452
|
+
ENDIF:codeurl
|
453
|
+
</div>
|
454
|
+
IF:m_desc
|
455
|
+
<div class="description">
|
456
|
+
%m_desc%
|
457
|
+
</div>
|
458
|
+
ENDIF:m_desc
|
459
|
+
IF:aka
|
460
|
+
<div class="aka">
|
461
|
+
This method is also aliased as
|
462
|
+
START:aka
|
463
|
+
<a href="%aref%">%name%</a>
|
464
|
+
END:aka
|
465
|
+
</div>
|
466
|
+
ENDIF:aka
|
467
|
+
IF:sourcecode
|
468
|
+
<div class="sourcecode">
|
469
|
+
<p class="source-link">[ <a href="javascript:toggleSource('%aref%_source')" id="l_%aref%_source">show source</a> ]</p>
|
470
|
+
<div id="%aref%_source" class="dyn-source">
|
471
|
+
<pre>
|
472
|
+
%sourcecode%
|
473
|
+
</pre>
|
474
|
+
</div>
|
475
|
+
</div>
|
476
|
+
ENDIF:sourcecode
|
477
|
+
</div>
|
478
|
+
END:methods
|
479
|
+
ENDIF:methods
|
480
|
+
END:method_list
|
481
|
+
ENDIF:method_list
|
482
|
+
END:sections
|
483
|
+
</div>
|
484
|
+
HTML
|
485
|
+
|
486
|
+
FOOTER = <<ENDFOOTER
|
487
|
+
</body>
|
488
|
+
</html>
|
489
|
+
ENDFOOTER
|
490
|
+
|
491
|
+
BODY = HEADER + <<ENDBODY
|
492
|
+
!INCLUDE! <!-- banner header -->
|
493
|
+
|
494
|
+
<div id="bodyContent">
|
495
|
+
#{METHOD_LIST}
|
496
|
+
</div>
|
497
|
+
|
498
|
+
#{FOOTER}
|
499
|
+
ENDBODY
|
500
|
+
|
501
|
+
########################## Source code ##########################
|
502
|
+
|
503
|
+
SRC_PAGE = XHTML_PREAMBLE + <<HTML
|
504
|
+
<html>
|
505
|
+
<head><title>%title%</title>
|
506
|
+
<meta http-equiv="Content-Type" content="text/html; charset=%charset%" />
|
507
|
+
<style type="text/css">
|
508
|
+
.ruby-comment { color: green; font-style: italic }
|
509
|
+
.ruby-constant { color: #4433aa; font-weight: bold; }
|
510
|
+
.ruby-identifier { color: #222222; }
|
511
|
+
.ruby-ivar { color: #2233dd; }
|
512
|
+
.ruby-keyword { color: #3333FF; font-weight: bold }
|
513
|
+
.ruby-node { color: #777777; }
|
514
|
+
.ruby-operator { color: #111111; }
|
515
|
+
.ruby-regexp { color: #662222; }
|
516
|
+
.ruby-value { color: #662222; font-style: italic }
|
517
|
+
.kw { color: #3333FF; font-weight: bold }
|
518
|
+
.cmt { color: green; font-style: italic }
|
519
|
+
.str { color: #662222; font-style: italic }
|
520
|
+
.re { color: #662222; }
|
521
|
+
</style>
|
522
|
+
</head>
|
523
|
+
<body bgcolor="white">
|
524
|
+
<pre>%code%</pre>
|
525
|
+
</body>
|
526
|
+
</html>
|
527
|
+
HTML
|
528
|
+
|
529
|
+
########################## Index ################################
|
530
|
+
|
531
|
+
FR_INDEX_BODY = <<HTML
|
532
|
+
!INCLUDE!
|
533
|
+
HTML
|
534
|
+
|
535
|
+
FILE_INDEX = XHTML_PREAMBLE + <<HTML
|
536
|
+
<html>
|
537
|
+
<head>
|
538
|
+
<meta http-equiv="Content-Type" content="text/html; charset=%charset%" />
|
539
|
+
<title>Index</title>
|
540
|
+
<style type="text/css">
|
541
|
+
<!--
|
542
|
+
body {
|
543
|
+
background-color: #EEE;
|
544
|
+
font-family: #{FONTS};
|
545
|
+
color: #000;
|
546
|
+
margin: 0px;
|
547
|
+
}
|
548
|
+
.banner {
|
549
|
+
background: #005;
|
550
|
+
color: #FFF;
|
551
|
+
padding: 0.2em;
|
552
|
+
font-size: small;
|
553
|
+
font-weight: bold;
|
554
|
+
text-align: center;
|
555
|
+
}
|
556
|
+
.entries {
|
557
|
+
margin: 0.25em 1em 0 1em;
|
558
|
+
font-size: x-small;
|
559
|
+
}
|
560
|
+
a {
|
561
|
+
color: #00F;
|
562
|
+
text-decoration: none;
|
563
|
+
white-space: nowrap;
|
564
|
+
}
|
565
|
+
a:hover {
|
566
|
+
color: #77F;
|
567
|
+
text-decoration: underline;
|
568
|
+
}
|
569
|
+
-->
|
570
|
+
</style>
|
571
|
+
<base target="docwin" />
|
572
|
+
</head>
|
573
|
+
<body>
|
574
|
+
<div class="banner">%list_title%</div>
|
575
|
+
<div class="entries">
|
576
|
+
START:entries
|
577
|
+
<a href="%href%">%name%</a><br />
|
578
|
+
END:entries
|
579
|
+
</div>
|
580
|
+
</body></html>
|
581
|
+
HTML
|
582
|
+
|
583
|
+
CLASS_INDEX = FILE_INDEX
|
584
|
+
METHOD_INDEX = FILE_INDEX
|
585
|
+
|
586
|
+
INDEX = XHTML_FRAMESET_PREAMBLE + <<HTML
|
587
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
588
|
+
<head>
|
589
|
+
<title>%title%</title>
|
590
|
+
<meta http-equiv="Content-Type" content="text/html; charset=%charset%" />
|
591
|
+
</head>
|
592
|
+
|
593
|
+
<frameset cols="20%,*">
|
594
|
+
<frameset rows="15%,55%,30%">
|
595
|
+
<frame src="fr_file_index.html" title="Files" name="Files" />
|
596
|
+
<frame src="fr_class_index.html" name="Classes" />
|
597
|
+
<frame src="fr_method_index.html" name="Methods" />
|
598
|
+
</frameset>
|
599
|
+
<frame src="%initial_page%" name="docwin" />
|
600
|
+
<noframes>
|
601
|
+
<body bgcolor="white">
|
602
|
+
Click <a href="html/index.html">here</a> for a non-frames
|
603
|
+
version of this page.
|
604
|
+
</body>
|
605
|
+
</noframes>
|
606
|
+
</frameset>
|
607
|
+
|
608
|
+
</html>
|
609
|
+
HTML
|
610
|
+
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|