passenger 3.0.21 → 3.9.1.beta
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- data/DEVELOPERS.TXT +4 -10
- data/NEWS +19 -27
- data/Rakefile +20 -19
- data/bin/passenger +3 -2
- data/bin/passenger-config +35 -5
- data/bin/passenger-install-apache2-module +12 -12
- data/bin/passenger-install-nginx-module +55 -38
- data/bin/passenger-memory-stats +3 -1
- data/bin/passenger-status +7 -35
- data/build/agents.rb +107 -21
- data/build/apache2.rb +11 -46
- data/build/basics.rb +61 -9
- data/build/common_library.rb +59 -142
- data/build/cxx_tests.rb +111 -110
- data/build/documentation.rb +33 -0
- data/build/misc.rb +30 -12
- data/build/nginx.rb +10 -39
- data/build/oxt_tests.rb +1 -0
- data/build/ruby_extension.rb +1 -5
- data/build/test_basics.rb +3 -2
- data/dev/copy_boost_headers.rb +2 -1
- data/doc/Architectural overview.html +49 -90
- data/doc/DebuggingAndStressTesting.txt.md +49 -0
- data/doc/Packaging.txt.md +254 -0
- data/doc/Security of user switching support.html +35 -66
- data/doc/Users guide Apache.html +588 -758
- data/doc/Users guide Apache.idmap.txt +253 -136
- data/doc/Users guide Apache.txt +154 -109
- data/doc/Users guide Nginx.html +544 -660
- data/doc/Users guide Nginx.idmap.txt +179 -91
- data/doc/Users guide Nginx.txt +192 -118
- data/doc/Users guide Standalone.html +65 -48
- data/doc/Users guide Standalone.idmap.txt +10 -2
- data/doc/Users guide Standalone.txt +4 -0
- data/doc/images/glyphicons-halflings-white.png +0 -0
- data/doc/images/glyphicons-halflings.png +0 -0
- data/doc/images/phusion_banner_small.png +0 -0
- data/doc/images/{smart-lv2.png → smart.png} +0 -0
- data/doc/images/{smart-lv2.svg → smart.svg} +0 -0
- data/doc/templates/bootstrap.min.css +397 -0
- data/doc/templates/markdown.html.erb +117 -0
- data/doc/users_guide_snippets/analysis_and_system_maintenance.txt +2 -1
- data/doc/users_guide_snippets/appendix_c_spawning_methods.txt +26 -48
- data/doc/users_guide_snippets/passenger_spawn_method.txt +18 -30
- data/doc/users_guide_snippets/support_information.txt +30 -0
- data/ext/apache2/Bucket.cpp +9 -26
- data/ext/apache2/Bucket.h +13 -10
- data/ext/apache2/Configuration.cpp +70 -58
- data/ext/apache2/Configuration.hpp +19 -47
- data/ext/apache2/DirectoryMapper.h +7 -7
- data/ext/apache2/Hooks.cpp +150 -313
- data/ext/boost/algorithm/string/detail/case_conv.hpp +4 -2
- data/ext/boost/algorithm/string/detail/find_format.hpp +20 -20
- data/ext/boost/algorithm/string/detail/find_format_all.hpp +23 -23
- data/ext/boost/algorithm/string/detail/find_format_store.hpp +2 -2
- data/ext/boost/algorithm/string/detail/formatter.hpp +25 -0
- data/ext/boost/algorithm/string/formatter.hpp +20 -3
- data/ext/boost/assert.hpp +85 -4
- data/ext/boost/bind/bind.hpp +1 -1
- data/ext/boost/concept/detail/backward_compatibility.hpp +1 -1
- data/ext/boost/concept_check.hpp +140 -64
- data/ext/boost/config.hpp +1 -1
- data/ext/boost/config/auto_link.hpp +8 -6
- data/ext/boost/config/compiler/borland.hpp +12 -2
- data/ext/boost/config/compiler/clang.hpp +89 -30
- data/ext/boost/config/compiler/codegear.hpp +3 -2
- data/ext/boost/config/compiler/common_edg.hpp +7 -5
- data/ext/boost/config/compiler/cray.hpp +61 -0
- data/ext/boost/config/compiler/digitalmars.hpp +9 -1
- data/ext/boost/config/compiler/gcc.hpp +33 -24
- data/ext/boost/config/compiler/gcc_xml.hpp +4 -0
- data/ext/boost/config/compiler/hp_acc.hpp +12 -1
- data/ext/boost/config/compiler/intel.hpp +78 -4
- data/ext/boost/config/compiler/metrowerks.hpp +4 -1
- data/ext/boost/config/compiler/mpw.hpp +4 -1
- data/ext/boost/config/compiler/nvcc.hpp +8 -66
- data/ext/boost/config/compiler/pathscale.hpp +80 -0
- data/ext/boost/config/compiler/pgi.hpp +5 -5
- data/ext/boost/config/compiler/sunpro_cc.hpp +4 -1
- data/ext/boost/config/compiler/vacpp.hpp +37 -13
- data/ext/boost/config/compiler/visualc.hpp +24 -11
- data/ext/boost/config/platform/bsd.hpp +1 -1
- data/ext/boost/config/platform/cray.hpp +18 -0
- data/ext/boost/config/platform/cygwin.hpp +10 -0
- data/ext/boost/config/platform/linux.hpp +5 -0
- data/ext/boost/config/platform/macos.hpp +5 -4
- data/ext/boost/config/platform/symbian.hpp +5 -2
- data/ext/boost/config/platform/vms.hpp +25 -0
- data/ext/boost/config/platform/win32.hpp +7 -1
- data/ext/boost/config/select_compiler_config.hpp +8 -25
- data/ext/boost/config/select_platform_config.hpp +8 -1
- data/ext/boost/config/select_stdlib_config.hpp +9 -1
- data/ext/boost/config/stdlib/dinkumware.hpp +6 -9
- data/ext/boost/config/stdlib/libcomo.hpp +1 -4
- data/ext/boost/config/stdlib/libcpp.hpp +36 -0
- data/ext/boost/config/stdlib/libstdcpp3.hpp +37 -11
- data/ext/boost/config/stdlib/modena.hpp +1 -4
- data/ext/boost/config/stdlib/msl.hpp +1 -4
- data/ext/boost/config/stdlib/roguewave.hpp +9 -6
- data/ext/boost/config/stdlib/sgi.hpp +12 -4
- data/ext/boost/config/stdlib/stlport.hpp +11 -4
- data/ext/boost/config/stdlib/vacpp.hpp +11 -4
- data/ext/boost/config/suffix.hpp +71 -6
- data/ext/boost/config/warning_disable.hpp +1 -1
- data/ext/boost/container/container_fwd.hpp +177 -0
- data/ext/boost/cstdint.hpp +17 -12
- data/ext/boost/current_function.hpp +2 -1
- data/ext/boost/date_time/c_time.hpp +17 -1
- data/ext/boost/date_time/compiler_config.hpp +13 -15
- data/ext/boost/date_time/date_formatting.hpp +7 -1
- data/ext/boost/date_time/filetime_functions.hpp +4 -4
- data/ext/boost/date_time/gregorian_calendar.ipp +2 -2
- data/ext/boost/date_time/strings_from_facet.hpp +3 -3
- data/ext/boost/date_time/time_facet.hpp +101 -101
- data/ext/boost/detail/endian.hpp +4 -2
- data/ext/boost/detail/fenv.hpp +74 -0
- data/ext/boost/detail/sp_typeinfo.hpp +6 -0
- data/ext/boost/exception/detail/clone_current_exception.hpp +47 -0
- data/ext/boost/exception/detail/exception_ptr.hpp +194 -122
- data/ext/boost/exception/detail/type_info.hpp +3 -3
- data/ext/boost/exception/diagnostic_information.hpp +37 -21
- data/ext/boost/exception/exception.hpp +21 -1
- data/ext/boost/exception/info.hpp +0 -1
- data/ext/boost/function.hpp +2 -2
- data/ext/boost/function/function_base.hpp +15 -9
- data/ext/boost/function/function_template.hpp +26 -48
- data/ext/boost/integer_fwd.hpp +0 -16
- data/ext/boost/integer_traits.hpp +2 -2
- data/ext/boost/iterator.hpp +1 -1
- data/ext/boost/iterator/iterator_adaptor.hpp +1 -7
- data/ext/boost/iterator/iterator_facade.hpp +13 -13
- data/ext/boost/iterator/transform_iterator.hpp +5 -20
- data/ext/boost/lexical_cast.hpp +1655 -673
- data/ext/boost/math/policies/policy.hpp +982 -0
- data/ext/boost/math/special_functions/detail/fp_traits.hpp +570 -0
- data/ext/boost/math/special_functions/detail/round_fwd.hpp +80 -0
- data/ext/boost/math/special_functions/fpclassify.hpp +533 -0
- data/ext/boost/math/special_functions/math_fwd.hpp +1070 -0
- data/ext/boost/math/special_functions/sign.hpp +145 -0
- data/ext/boost/math/tools/config.hpp +321 -0
- data/ext/boost/math/tools/promotion.hpp +150 -0
- data/ext/boost/math/tools/real_cast.hpp +29 -0
- data/ext/boost/math/tools/user.hpp +97 -0
- data/ext/boost/move/move.hpp +1222 -0
- data/ext/boost/mpl/O1_size.hpp +40 -0
- data/ext/boost/mpl/O1_size_fwd.hpp +24 -0
- data/ext/boost/mpl/advance.hpp +76 -0
- data/ext/boost/mpl/advance_fwd.hpp +28 -0
- data/ext/boost/mpl/at.hpp +52 -0
- data/ext/boost/mpl/at_fwd.hpp +24 -0
- data/ext/boost/mpl/aux_/O1_size_impl.hpp +87 -0
- data/ext/boost/mpl/aux_/advance_backward.hpp +128 -0
- data/ext/boost/mpl/aux_/advance_forward.hpp +127 -0
- data/ext/boost/mpl/aux_/arithmetic_op.hpp +92 -0
- data/ext/boost/mpl/aux_/at_impl.hpp +45 -0
- data/ext/boost/mpl/aux_/begin_end_impl.hpp +101 -0
- data/ext/boost/mpl/aux_/clear_impl.hpp +35 -0
- data/ext/boost/mpl/aux_/comparison_op.hpp +83 -0
- data/ext/boost/mpl/aux_/config/forwarding.hpp +27 -0
- data/ext/boost/mpl/aux_/config/typeof.hpp +38 -0
- data/ext/boost/mpl/aux_/contains_impl.hpp +61 -0
- data/ext/boost/mpl/aux_/find_if_pred.hpp +31 -0
- data/ext/boost/mpl/aux_/fold_impl.hpp +43 -0
- data/ext/boost/mpl/aux_/has_begin.hpp +23 -0
- data/ext/boost/mpl/aux_/has_size.hpp +23 -0
- data/ext/boost/mpl/aux_/has_tag.hpp +23 -0
- data/ext/boost/mpl/aux_/inserter_algorithm.hpp +159 -0
- data/ext/boost/mpl/aux_/is_msvc_eti_arg.hpp +64 -0
- data/ext/boost/mpl/aux_/iter_apply.hpp +47 -0
- data/ext/boost/mpl/aux_/iter_fold_if_impl.hpp +210 -0
- data/ext/boost/mpl/aux_/iter_fold_impl.hpp +42 -0
- data/ext/boost/mpl/aux_/lambda_spec.hpp +49 -0
- data/ext/boost/mpl/aux_/largest_int.hpp +63 -0
- data/ext/boost/mpl/aux_/msvc_eti_base.hpp +77 -0
- data/ext/boost/mpl/aux_/msvc_type.hpp +62 -0
- data/ext/boost/mpl/aux_/numeric_cast_utils.hpp +77 -0
- data/ext/boost/mpl/aux_/numeric_op.hpp +315 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp +97 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/greater.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp +133 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp +180 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/less.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/list.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/minus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp +94 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/plus.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp +231 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/times.hpp +146 -0
- data/ext/boost/mpl/aux_/preprocessed/gcc/vector.hpp +323 -0
- data/ext/boost/mpl/aux_/preprocessor/default_params.hpp +67 -0
- data/ext/boost/mpl/aux_/push_back_impl.hpp +70 -0
- data/ext/boost/mpl/aux_/push_front_impl.hpp +71 -0
- data/ext/boost/mpl/aux_/reverse_fold_impl.hpp +44 -0
- data/ext/boost/mpl/aux_/size_impl.hpp +52 -0
- data/ext/boost/mpl/aux_/traits_lambda_spec.hpp +63 -0
- data/ext/boost/mpl/back_fwd.hpp +24 -0
- data/ext/boost/mpl/back_inserter.hpp +34 -0
- data/ext/boost/mpl/begin_end.hpp +57 -0
- data/ext/boost/mpl/begin_end_fwd.hpp +27 -0
- data/ext/boost/mpl/clear.hpp +39 -0
- data/ext/boost/mpl/clear_fwd.hpp +24 -0
- data/ext/boost/mpl/comparison.hpp +24 -0
- data/ext/boost/mpl/contains.hpp +41 -0
- data/ext/boost/mpl/contains_fwd.hpp +25 -0
- data/ext/boost/mpl/deref.hpp +41 -0
- data/ext/boost/mpl/distance.hpp +78 -0
- data/ext/boost/mpl/distance_fwd.hpp +28 -0
- data/ext/boost/mpl/empty_fwd.hpp +24 -0
- data/ext/boost/mpl/equal_to.hpp +21 -0
- data/ext/boost/mpl/find.hpp +38 -0
- data/ext/boost/mpl/find_if.hpp +50 -0
- data/ext/boost/mpl/fold.hpp +48 -0
- data/ext/boost/mpl/front_fwd.hpp +24 -0
- data/ext/boost/mpl/front_inserter.hpp +33 -0
- data/ext/boost/mpl/greater.hpp +21 -0
- data/ext/boost/mpl/greater_equal.hpp +21 -0
- data/ext/boost/mpl/inserter.hpp +32 -0
- data/ext/boost/mpl/iter_fold.hpp +49 -0
- data/ext/boost/mpl/iter_fold_if.hpp +117 -0
- data/ext/boost/mpl/iterator_range.hpp +42 -0
- data/ext/boost/mpl/iterator_tags.hpp +27 -0
- data/ext/boost/mpl/less.hpp +21 -0
- data/ext/boost/mpl/less_equal.hpp +21 -0
- data/ext/boost/mpl/limits/list.hpp +21 -0
- data/ext/boost/mpl/limits/vector.hpp +21 -0
- data/ext/boost/mpl/list.hpp +57 -0
- data/ext/boost/mpl/list/aux_/O1_size.hpp +33 -0
- data/ext/boost/mpl/list/aux_/begin_end.hpp +44 -0
- data/ext/boost/mpl/list/aux_/clear.hpp +34 -0
- data/ext/boost/mpl/list/aux_/empty.hpp +34 -0
- data/ext/boost/mpl/list/aux_/front.hpp +33 -0
- data/ext/boost/mpl/list/aux_/include_preprocessed.hpp +35 -0
- data/ext/boost/mpl/list/aux_/item.hpp +55 -0
- data/ext/boost/mpl/list/aux_/iterator.hpp +76 -0
- data/ext/boost/mpl/list/aux_/pop_front.hpp +34 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list10.hpp +149 -0
- data/ext/boost/mpl/list/aux_/preprocessed/plain/list20.hpp +169 -0
- data/ext/boost/mpl/list/aux_/push_back.hpp +36 -0
- data/ext/boost/mpl/list/aux_/push_front.hpp +39 -0
- data/ext/boost/mpl/list/aux_/size.hpp +33 -0
- data/ext/boost/mpl/list/aux_/tag.hpp +24 -0
- data/ext/boost/mpl/list/list0.hpp +42 -0
- data/ext/boost/mpl/list/list10.hpp +43 -0
- data/ext/boost/mpl/list/list20.hpp +43 -0
- data/ext/boost/mpl/long.hpp +22 -0
- data/ext/boost/mpl/long_fwd.hpp +27 -0
- data/ext/boost/mpl/minus.hpp +21 -0
- data/ext/boost/mpl/multiplies.hpp +53 -0
- data/ext/boost/mpl/negate.hpp +81 -0
- data/ext/boost/mpl/not_equal_to.hpp +21 -0
- data/ext/boost/mpl/numeric_cast.hpp +41 -0
- data/ext/boost/mpl/pair.hpp +70 -0
- data/ext/boost/mpl/plus.hpp +21 -0
- data/ext/boost/mpl/pop_back_fwd.hpp +24 -0
- data/ext/boost/mpl/pop_front_fwd.hpp +24 -0
- data/ext/boost/mpl/prior.hpp +19 -0
- data/ext/boost/mpl/push_back.hpp +53 -0
- data/ext/boost/mpl/push_back_fwd.hpp +24 -0
- data/ext/boost/mpl/push_front.hpp +52 -0
- data/ext/boost/mpl/push_front_fwd.hpp +24 -0
- data/ext/boost/mpl/remove_if.hpp +83 -0
- data/ext/boost/mpl/reverse_fold.hpp +50 -0
- data/ext/boost/mpl/same_as.hpp +55 -0
- data/ext/boost/mpl/sequence_tag.hpp +124 -0
- data/ext/boost/mpl/sequence_tag_fwd.hpp +26 -0
- data/ext/boost/mpl/size.hpp +42 -0
- data/ext/boost/mpl/size_fwd.hpp +24 -0
- data/ext/boost/mpl/tag.hpp +52 -0
- data/ext/boost/mpl/times.hpp +21 -0
- data/ext/boost/mpl/vector.hpp +57 -0
- data/ext/boost/mpl/vector/aux_/O1_size.hpp +56 -0
- data/ext/boost/mpl/vector/aux_/at.hpp +116 -0
- data/ext/boost/mpl/vector/aux_/back.hpp +59 -0
- data/ext/boost/mpl/vector/aux_/begin_end.hpp +49 -0
- data/ext/boost/mpl/vector/aux_/clear.hpp +55 -0
- data/ext/boost/mpl/vector/aux_/empty.hpp +68 -0
- data/ext/boost/mpl/vector/aux_/front.hpp +56 -0
- data/ext/boost/mpl/vector/aux_/include_preprocessed.hpp +55 -0
- data/ext/boost/mpl/vector/aux_/item.hpp +103 -0
- data/ext/boost/mpl/vector/aux_/iterator.hpp +130 -0
- data/ext/boost/mpl/vector/aux_/pop_back.hpp +40 -0
- data/ext/boost/mpl/vector/aux_/pop_front.hpp +40 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp +829 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp +1144 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp +139 -0
- data/ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp +159 -0
- data/ext/boost/mpl/vector/aux_/push_back.hpp +40 -0
- data/ext/boost/mpl/vector/aux_/push_front.hpp +40 -0
- data/ext/boost/mpl/vector/aux_/size.hpp +49 -0
- data/ext/boost/mpl/vector/aux_/tag.hpp +32 -0
- data/ext/boost/mpl/vector/aux_/vector0.hpp +52 -0
- data/ext/boost/mpl/vector/vector0.hpp +34 -0
- data/ext/boost/mpl/vector/vector10.hpp +45 -0
- data/ext/boost/mpl/vector/vector20.hpp +45 -0
- data/ext/boost/none.hpp +1 -1
- data/ext/boost/numeric/conversion/bounds.hpp +24 -0
- data/ext/boost/numeric/conversion/cast.hpp +61 -0
- data/ext/boost/numeric/conversion/conversion_traits.hpp +39 -0
- data/ext/boost/numeric/conversion/converter.hpp +68 -0
- data/ext/boost/numeric/conversion/converter_policies.hpp +186 -0
- data/ext/boost/numeric/conversion/detail/bounds.hpp +58 -0
- data/ext/boost/numeric/conversion/detail/conversion_traits.hpp +97 -0
- data/ext/boost/numeric/conversion/detail/converter.hpp +602 -0
- data/ext/boost/numeric/conversion/detail/int_float_mixture.hpp +72 -0
- data/ext/boost/numeric/conversion/detail/is_subranged.hpp +234 -0
- data/ext/boost/numeric/conversion/detail/meta.hpp +120 -0
- data/ext/boost/numeric/conversion/detail/numeric_cast_traits.hpp +138 -0
- data/ext/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp +1741 -0
- data/ext/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp +347 -0
- data/ext/boost/numeric/conversion/detail/sign_mixture.hpp +72 -0
- data/ext/boost/numeric/conversion/detail/udt_builtin_mixture.hpp +69 -0
- data/ext/boost/numeric/conversion/int_float_mixture_enum.hpp +29 -0
- data/ext/boost/numeric/conversion/numeric_cast_traits.hpp +31 -0
- data/ext/boost/numeric/conversion/sign_mixture_enum.hpp +29 -0
- data/ext/boost/numeric/conversion/udt_builtin_mixture_enum.hpp +26 -0
- data/ext/boost/operators.hpp +3 -1
- data/ext/boost/optional/optional.hpp +146 -79
- data/ext/boost/optional/optional_fwd.hpp +8 -1
- data/ext/boost/preprocessor/cat.hpp +2 -2
- data/ext/boost/preprocessor/config/config.hpp +39 -4
- data/ext/boost/preprocessor/facilities/intercept.hpp +277 -0
- data/ext/boost/preprocessor/facilities/overload.hpp +25 -0
- data/ext/boost/preprocessor/iteration/detail/iter/forward1.hpp +3 -3
- data/ext/boost/preprocessor/iteration/iterate.hpp +3 -3
- data/ext/boost/preprocessor/punctuation/paren.hpp +23 -0
- data/ext/boost/preprocessor/repetition/enum_shifted_params.hpp +44 -0
- data/ext/boost/preprocessor/seq/cat.hpp +5 -4
- data/ext/boost/preprocessor/seq/size.hpp +0 -1
- data/ext/boost/preprocessor/tuple/eat.hpp +83 -34
- data/ext/boost/preprocessor/tuple/elem.hpp +161 -355
- data/ext/boost/preprocessor/tuple/rem.hpp +110 -48
- data/ext/boost/preprocessor/tuple/to_list.hpp +90 -36
- data/ext/boost/preprocessor/variadic/elem.hpp +94 -0
- data/ext/boost/preprocessor/variadic/size.hpp +30 -0
- data/ext/boost/range/begin.hpp +17 -6
- data/ext/boost/range/concepts.hpp +37 -2
- data/ext/boost/range/detail/safe_bool.hpp +72 -0
- data/ext/boost/range/end.hpp +14 -9
- data/ext/boost/range/iterator_range_core.hpp +120 -12
- data/ext/boost/range/size.hpp +21 -5
- data/ext/boost/smart_ptr/detail/shared_count.hpp +88 -0
- data/ext/boost/smart_ptr/detail/sp_counted_base.hpp +3 -0
- data/ext/boost/smart_ptr/detail/sp_counted_base_aix.hpp +142 -0
- data/ext/boost/smart_ptr/detail/sp_counted_base_gcc_mips.hpp +9 -0
- data/ext/boost/smart_ptr/detail/sp_counted_impl.hpp +10 -2
- data/ext/boost/smart_ptr/detail/sp_has_sync.hpp +5 -1
- data/ext/boost/smart_ptr/detail/spinlock.hpp +4 -1
- data/ext/boost/smart_ptr/detail/spinlock_gcc_arm.hpp +20 -3
- data/ext/boost/smart_ptr/detail/spinlock_pool.hpp +4 -0
- data/ext/boost/smart_ptr/make_shared.hpp +591 -22
- data/ext/boost/smart_ptr/shared_array.hpp +29 -1
- data/ext/boost/smart_ptr/shared_ptr.hpp +29 -13
- data/ext/boost/smart_ptr/weak_ptr.hpp +24 -12
- data/ext/boost/src/pthread/once.cpp +9 -7
- data/ext/boost/src/pthread/thread.cpp +32 -28
- data/ext/boost/src/pthread/timeconv.inl +4 -5
- data/ext/boost/src/tss_null.cpp +5 -1
- data/ext/boost/static_assert.hpp +8 -2
- data/ext/boost/thread/detail/config.hpp +19 -4
- data/ext/boost/thread/detail/move.hpp +11 -5
- data/ext/boost/thread/detail/thread.hpp +59 -43
- data/ext/boost/thread/exceptions.hpp +9 -9
- data/ext/boost/thread/future.hpp +150 -82
- data/ext/boost/thread/locks.hpp +101 -60
- data/ext/boost/thread/pthread/condition_variable.hpp +79 -32
- data/ext/boost/thread/pthread/condition_variable_fwd.hpp +12 -3
- data/ext/boost/thread/pthread/mutex.hpp +17 -14
- data/ext/boost/thread/pthread/once.hpp +3 -4
- data/ext/boost/thread/pthread/pthread_mutex_scoped_lock.hpp +12 -2
- data/ext/boost/thread/pthread/recursive_mutex.hpp +19 -19
- data/ext/boost/thread/pthread/shared_mutex.hpp +13 -13
- data/ext/boost/thread/pthread/thread_data.hpp +40 -12
- data/ext/boost/thread/thread_time.hpp +5 -0
- data/ext/boost/throw_exception.hpp +1 -1
- data/ext/boost/token_functions.hpp +34 -10
- data/ext/boost/type_traits/add_rvalue_reference.hpp +66 -0
- data/ext/boost/type_traits/alignment_of.hpp +1 -1
- data/ext/boost/type_traits/detail/bool_trait_def.hpp +26 -3
- data/ext/boost/type_traits/detail/bool_trait_undef.hpp +3 -2
- data/ext/boost/type_traits/detail/cv_traits_impl.hpp +1 -1
- data/ext/boost/type_traits/detail/size_t_trait_def.hpp +6 -4
- data/ext/boost/type_traits/detail/type_trait_def.hpp +8 -2
- data/ext/boost/type_traits/function_traits.hpp +1 -1
- data/ext/boost/type_traits/has_nothrow_constructor.hpp +53 -0
- data/ext/boost/type_traits/has_nothrow_copy.hpp +19 -5
- data/ext/boost/type_traits/has_trivial_constructor.hpp +51 -0
- data/ext/boost/type_traits/has_trivial_copy.hpp +20 -5
- data/ext/boost/type_traits/has_trivial_destructor.hpp +12 -5
- data/ext/boost/type_traits/intrinsics.hpp +119 -71
- data/ext/boost/type_traits/is_const.hpp +5 -5
- data/ext/boost/type_traits/is_convertible.hpp +14 -13
- data/ext/boost/type_traits/is_enum.hpp +1 -1
- data/ext/boost/type_traits/is_floating_point.hpp +27 -0
- data/ext/boost/type_traits/is_function.hpp +3 -3
- data/ext/boost/type_traits/is_fundamental.hpp +1 -1
- data/ext/boost/type_traits/is_member_function_pointer.hpp +2 -2
- data/ext/boost/type_traits/is_member_pointer.hpp +2 -2
- data/ext/boost/type_traits/is_pod.hpp +11 -3
- data/ext/boost/type_traits/is_pointer.hpp +2 -2
- data/ext/boost/type_traits/is_signed.hpp +8 -3
- data/ext/boost/type_traits/is_union.hpp +8 -0
- data/ext/boost/type_traits/is_unsigned.hpp +9 -4
- data/ext/boost/type_traits/is_volatile.hpp +5 -5
- data/ext/boost/type_traits/remove_cv.hpp +4 -3
- data/ext/boost/type_traits/remove_pointer.hpp +51 -2
- data/ext/boost/type_traits/remove_reference.hpp +2 -2
- data/ext/boost/type_traits/type_with_alignment.hpp +8 -2
- data/ext/boost/utility/declval.hpp +44 -0
- data/ext/boost/utility/detail/in_place_factory_prefix.hpp +36 -0
- data/ext/boost/utility/detail/in_place_factory_suffix.hpp +23 -0
- data/ext/boost/utility/detail/result_of_iterate.hpp +142 -0
- data/ext/boost/utility/in_place_factory.hpp +88 -0
- data/ext/boost/utility/result_of.hpp +103 -0
- data/ext/boost/utility/swap.hpp +55 -0
- data/ext/common/AnsiColorConstants.h +36 -0
- data/ext/common/ApplicationPool2/Common.h +87 -0
- data/ext/common/ApplicationPool2/ComponentInfo.h +53 -0
- data/ext/common/ApplicationPool2/Group.h +648 -0
- data/ext/common/ApplicationPool2/Implementation.cpp +580 -0
- data/ext/common/ApplicationPool2/Options.h +576 -0
- data/ext/common/ApplicationPool2/PipeWatcher.h +61 -0
- data/ext/common/ApplicationPool2/Pool.h +1181 -0
- data/ext/common/ApplicationPool2/Process.h +425 -0
- data/ext/common/ApplicationPool2/README.md +96 -0
- data/ext/common/ApplicationPool2/Session.h +158 -0
- data/ext/common/ApplicationPool2/Socket.h +246 -0
- data/ext/common/ApplicationPool2/Spawner.h +2212 -0
- data/ext/common/ApplicationPool2/SuperGroup.h +749 -0
- data/ext/common/BackgroundEventLoop.cpp +129 -0
- data/ext/common/BackgroundEventLoop.h +61 -0
- data/ext/common/Constants.h +3 -1
- data/ext/common/EventedBufferedInput.h +331 -0
- data/ext/common/EventedMessageServer.h +17 -34
- data/ext/common/EventedServer.h +2 -2
- data/ext/common/Exceptions.h +71 -19
- data/ext/common/FileDescriptor.h +8 -6
- data/ext/common/HttpConstants.h +167 -0
- data/ext/common/IniFile.h +24 -0
- data/ext/common/Logging.h +62 -849
- data/ext/common/MessageReadersWriters.h +19 -0
- data/ext/common/MessageServer.h +11 -14
- data/ext/common/MultiLibeio.cpp +198 -0
- data/ext/common/MultiLibeio.h +67 -0
- data/ext/common/ResourceLocator.h +24 -41
- data/ext/common/SafeLibev.h +186 -14
- data/ext/common/StaticString.h +23 -3
- data/ext/common/UnionStation.h +972 -0
- data/ext/common/Utils.cpp +168 -24
- data/ext/common/Utils.h +25 -3
- data/ext/common/Utils/CachedFileStat.hpp +4 -3
- data/ext/common/Utils/FileChangeChecker.h +2 -2
- data/ext/common/Utils/HashMap.h +50 -0
- data/ext/common/Utils/IOUtils.cpp +229 -68
- data/ext/common/Utils/IOUtils.h +134 -3
- data/ext/common/Utils/Lock.h +28 -0
- data/ext/common/Utils/MemoryBarrier.h +52 -0
- data/ext/common/Utils/PriorityQueue.h +54 -0
- data/ext/common/Utils/ProcessMetricsCollector.h +9 -11
- data/ext/common/Utils/ScopeGuard.h +50 -1
- data/ext/common/Utils/SmallVector.h +653 -0
- data/ext/common/Utils/StrIntUtils.cpp +26 -2
- data/ext/common/Utils/StrIntUtils.h +18 -2
- data/ext/common/Utils/StringMap.h +125 -8
- data/ext/common/Utils/Template.h +212 -0
- data/ext/common/Utils/fib.c +699 -0
- data/ext/common/Utils/fib.h +101 -0
- data/ext/common/Utils/fibpriv.h +67 -0
- data/ext/common/Utils/json-forwards.h +249 -0
- data/ext/common/Utils/json.h +1855 -0
- data/ext/common/Utils/jsoncpp.cpp +4230 -0
- data/ext/common/agents/Base.cpp +1126 -0
- data/ext/common/{AgentBase.h → agents/Base.h} +5 -1
- data/ext/common/agents/EnvPrinter.c +16 -0
- data/ext/common/agents/HelperAgent/AgentOptions.h +81 -0
- data/ext/common/{HelperAgent → agents/HelperAgent}/BacktracesServer.h +3 -2
- data/ext/common/agents/HelperAgent/FileBackedPipe.h +732 -0
- data/ext/common/agents/HelperAgent/Main.cpp +497 -0
- data/ext/common/agents/HelperAgent/RequestHandler.cpp +283 -0
- data/ext/common/agents/HelperAgent/RequestHandler.h +2139 -0
- data/ext/common/agents/HelperAgent/ScgiRequestParser.h +451 -0
- data/ext/common/{LoggingAgent → agents/LoggingAgent}/DataStoreId.h +1 -1
- data/ext/common/{LoggingAgent → agents/LoggingAgent}/FilterSupport.cpp +1 -1
- data/ext/common/{LoggingAgent → agents/LoggingAgent}/FilterSupport.h +0 -0
- data/ext/common/{LoggingAgent → agents/LoggingAgent}/LoggingServer.h +18 -16
- data/ext/common/{LoggingAgent → agents/LoggingAgent}/Main.cpp +15 -13
- data/ext/common/{LoggingAgent → agents/LoggingAgent}/RemoteSender.h +6 -6
- data/ext/common/agents/SpawnPreparer.cpp +127 -0
- data/ext/common/{Watchdog.cpp → agents/Watchdog/Main.cpp} +63 -25
- data/ext/libeio/Changes +72 -0
- data/ext/{google/COPYING → libeio/LICENSE} +17 -9
- data/ext/libeio/Makefile.am +15 -0
- data/ext/libeio/Makefile.in +694 -0
- data/ext/libeio/aclocal.m4 +9418 -0
- data/ext/libeio/autogen.sh +3 -0
- data/ext/libeio/config.guess +1501 -0
- data/ext/libeio/config.h.in +136 -0
- data/ext/libeio/config.sub +1705 -0
- data/ext/libeio/configure +14822 -0
- data/ext/libeio/configure.ac +22 -0
- data/ext/libeio/demo.c +194 -0
- data/ext/libeio/ecb.h +457 -0
- data/ext/libeio/eio.c +2816 -0
- data/ext/libeio/eio.h +411 -0
- data/ext/libeio/install-sh +520 -0
- data/ext/libeio/libeio.m4 +211 -0
- data/ext/libeio/ltmain.sh +9636 -0
- data/ext/libeio/missing +376 -0
- data/ext/libeio/xthread.h +166 -0
- data/ext/libev/Changes +125 -7
- data/ext/libev/Makefile.am +5 -3
- data/ext/libev/Makefile.in +209 -120
- data/ext/libev/aclocal.m4 +6027 -4619
- data/ext/libev/autogen.sh +1 -4
- data/ext/libev/config.h.in +11 -7
- data/ext/libev/configure +7312 -14993
- data/ext/libev/configure.ac +12 -5
- data/ext/libev/depcomp +630 -0
- data/ext/libev/ev++.h +48 -32
- data/ext/libev/ev.c +1173 -391
- data/ext/libev/ev.h +315 -181
- data/ext/libev/ev_epoll.c +66 -15
- data/ext/libev/ev_kqueue.c +20 -18
- data/ext/libev/ev_poll.c +27 -23
- data/ext/libev/ev_port.c +39 -19
- data/ext/libev/ev_select.c +23 -17
- data/ext/libev/ev_vars.h +25 -8
- data/ext/libev/ev_win32.c +6 -6
- data/ext/libev/ev_wrap.h +22 -2
- data/ext/libev/event.c +18 -17
- data/ext/libev/event.h +16 -4
- data/ext/libev/libev.m4 +10 -6
- data/ext/libev/ltmain.sh +7353 -5811
- data/ext/nginx/Configuration.c +74 -42
- data/ext/nginx/Configuration.h +3 -5
- data/ext/nginx/ContentHandler.c +26 -83
- data/ext/nginx/ContentHandler.h +1 -1
- data/ext/nginx/config +13 -9
- data/ext/nginx/ngx_http_passenger_module.c +3 -7
- data/ext/oxt/detail/backtrace_enabled.hpp +5 -102
- data/ext/oxt/detail/context.hpp +90 -0
- data/ext/oxt/detail/spin_lock_darwin.hpp +4 -0
- data/ext/oxt/detail/spin_lock_gcc_x86.hpp +4 -0
- data/ext/oxt/detail/spin_lock_pthreads.hpp +14 -0
- data/ext/oxt/detail/tracable_exception_enabled.hpp +2 -2
- data/ext/oxt/dynamic_thread_group.hpp +27 -1
- data/ext/oxt/implementation.cpp +415 -0
- data/ext/oxt/{thread.cpp → initialize.hpp} +13 -6
- data/ext/oxt/macros.hpp +32 -1
- data/ext/oxt/spin_lock.hpp +6 -11
- data/ext/oxt/system_calls.cpp +204 -16
- data/ext/oxt/system_calls.hpp +85 -45
- data/ext/oxt/thread.hpp +13 -117
- data/ext/ruby/passenger_native_support.c +82 -237
- data/helper-scripts/backtrace-sanitizer.rb +114 -0
- data/helper-scripts/classic-rails-loader.rb +135 -0
- data/helper-scripts/classic-rails-preloader.rb +161 -0
- data/helper-scripts/node-loader.js +314 -0
- data/helper-scripts/rack-loader.rb +104 -0
- data/helper-scripts/rack-preloader.rb +132 -0
- data/helper-scripts/wsgi-loader.py +231 -0
- data/helper-scripts/wsgi-preloader.py +1 -0
- data/lib/phusion_passenger.rb +159 -61
- data/lib/phusion_passenger/abstract_installer.rb +182 -87
- data/lib/phusion_passenger/admin_tools/server_instance.rb +25 -19
- data/lib/phusion_passenger/analytics_logger.rb +5 -4
- data/lib/phusion_passenger/classic_rails/{request_handler.rb → thread_handler_extension.rb} +4 -40
- data/lib/phusion_passenger/classic_rails_extensions/init.rb +5 -3
- data/lib/phusion_passenger/common_library.rb +441 -0
- data/lib/phusion_passenger/console_text_template.rb +4 -16
- data/lib/phusion_passenger/constants.rb +1 -8
- data/lib/phusion_passenger/debug_logging.rb +5 -2
- data/lib/phusion_passenger/dependencies.rb +51 -13
- data/lib/phusion_passenger/loader_shared_helpers.rb +318 -0
- data/lib/phusion_passenger/message_channel.rb +3 -47
- data/lib/phusion_passenger/message_client.rb +2 -2
- data/lib/phusion_passenger/native_support.rb +36 -15
- data/lib/phusion_passenger/packaging.rb +8 -11
- data/lib/phusion_passenger/platform_info.rb +25 -17
- data/lib/phusion_passenger/platform_info/apache.rb +10 -7
- data/lib/phusion_passenger/platform_info/binary_compatibility.rb +10 -30
- data/lib/phusion_passenger/platform_info/compiler.rb +93 -34
- data/lib/phusion_passenger/platform_info/ruby.rb +37 -97
- data/lib/phusion_passenger/preloader_shared_helpers.rb +121 -0
- data/lib/phusion_passenger/public_api.rb +1 -4
- data/lib/phusion_passenger/rack/{request_handler.rb → thread_handler_extension.rb} +14 -63
- data/lib/phusion_passenger/rails3_extensions/init.rb +9 -8
- data/lib/phusion_passenger/request_handler.rb +500 -0
- data/lib/phusion_passenger/request_handler/thread_handler.rb +360 -0
- data/lib/phusion_passenger/ruby_core_enhancements.rb +142 -0
- data/lib/phusion_passenger/standalone/command.rb +36 -15
- data/lib/phusion_passenger/standalone/package_runtime_command.rb +16 -8
- data/lib/phusion_passenger/standalone/runtime_installer.rb +169 -72
- data/lib/phusion_passenger/standalone/start_command.rb +44 -39
- data/lib/phusion_passenger/standalone/utils.rb +5 -5
- data/lib/phusion_passenger/utils.rb +35 -914
- data/lib/phusion_passenger/utils/ansi_colors.rb +59 -0
- data/lib/phusion_passenger/utils/file_system_watcher.rb +1 -1
- data/lib/phusion_passenger/utils/robust_interruption.rb +134 -0
- data/lib/phusion_passenger/utils/tee_input.rb +174 -0
- data/lib/phusion_passenger/utils/tmpio.rb +33 -0
- data/lib/phusion_passenger/utils/unseekable_socket.rb +6 -0
- data/resources/mime.types +5 -1
- data/{lib/phusion_passenger/templates → resources}/standalone_default_root/index.html +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/apache_must_be_compiled_with_compatible_mpm.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/config_snippets.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/deployment_example.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/no_write_permission_to_passenger_root.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/possible_solutions_for_compilation_and_installation_problems.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/run_installer_as_root.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/apache2/welcome.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/error_layout.css +6 -0
- data/resources/templates/error_layout.html.template +89 -0
- data/resources/templates/general_error.html.template +1 -0
- data/resources/templates/general_error_with_html.html.template +1 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/ask_for_extra_configure_flags.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/cannot_write_to_dir.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/config_snippets.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/config_snippets_inserted.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/confirm_extra_configure_flags.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/deployment_example.txt.erb +0 -0
- data/resources/templates/nginx/not_available_when_natively_packaged.txt.erb +8 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/pcre_could_not_be_downloaded.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/pcre_could_not_be_extracted.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/possible_solutions_for_compilation_and_installation_problems.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/possible_solutions_for_download_and_extraction_problems.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/query_download_and_install.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/run_installer_as_root.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/nginx/welcome.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/standalone/cannot_write_to_dir.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/standalone/config.erb +26 -5
- data/{lib/phusion_passenger → resources}/templates/standalone/possible_solutions_for_download_and_extraction_problems.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/standalone/run_installer_as_root.txt.erb +0 -0
- data/{lib/phusion_passenger → resources}/templates/standalone/welcome.txt.erb +0 -0
- data/resources/templates/undisclosed_error.html.template +25 -0
- data/test/config.json.example +42 -0
- data/test/cxx/ApplicationPool2/DirectSpawnerTest.cpp +86 -0
- data/test/cxx/ApplicationPool2/OptionsTest.cpp +44 -0
- data/test/cxx/ApplicationPool2/PoolTest.cpp +1234 -0
- data/test/cxx/ApplicationPool2/ProcessTest.cpp +131 -0
- data/test/cxx/ApplicationPool2/SmartSpawnerTest.cpp +229 -0
- data/test/cxx/ApplicationPool2/SpawnerTestCases.cpp +744 -0
- data/test/cxx/BufferedIOTest.cpp +7 -7
- data/test/cxx/CxxTestMain.cpp +65 -2
- data/test/cxx/FileBackedPipeTest.cpp +626 -0
- data/test/cxx/FileChangeCheckerTest.cpp +20 -18
- data/test/cxx/FilterSupportTest.cpp +5 -5
- data/test/cxx/IOUtilsTest.cpp +11 -4
- data/test/cxx/MessageReadersWritersTest.cpp +1 -1
- data/test/cxx/MessageServerTest.cpp +31 -30
- data/test/cxx/RequestHandlerTest.cpp +777 -0
- data/test/cxx/ScgiRequestParserTest.cpp +36 -16
- data/test/cxx/ServerInstanceDirTest.cpp +1 -1
- data/test/cxx/StringMapTest.cpp +61 -0
- data/test/cxx/TemplateTest.cpp +118 -0
- data/test/cxx/TestSupport.cpp +25 -68
- data/test/cxx/TestSupport.h +81 -41
- data/test/cxx/{LoggingTest.cpp → UnionStationTest.cpp} +79 -74
- data/test/cxx/UtilsTest.cpp +59 -5
- data/test/integration_tests/apache2_tests.rb +2 -2
- data/test/integration_tests/nginx_tests.rb +1 -1
- data/test/integration_tests/spec_helper.rb +7 -5
- data/test/oxt/oxt_test_main.cpp +2 -0
- data/test/oxt/syscall_interruption_test.cpp +1 -0
- data/test/ruby/classic_rails/loader_spec.rb +48 -0
- data/test/ruby/classic_rails/preloader_spec.rb +54 -0
- data/test/ruby/rack/loader_spec.rb +62 -0
- data/test/ruby/rack/preloader_spec.rb +74 -0
- data/test/ruby/{abstract_request_handler_spec.rb → request_handler_spec.rb} +31 -68
- data/test/ruby/shared/loader_spec.rb +241 -0
- data/test/ruby/shared/rails/analytics_logging_extensions_spec.rb +141 -182
- data/test/ruby/shared/ruby_loader_spec.rb +55 -0
- data/test/ruby/spec_helper.rb +8 -53
- data/test/ruby/utils/file_system_watcher_spec.rb +9 -1
- data/test/ruby/utils_spec.rb +10 -683
- data/test/stub/rack/config.ru +28 -3
- data/test/stub/rack/start.rb +47 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/Rakefile +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/app/controllers/application_controller.rb +0 -2
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/app/controllers/bar_controller_1.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/app/controllers/bar_controller_2.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/app/controllers/foo_controller.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/app/helpers/application_helper.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/boot.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/database.yml +3 -3
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/environment.rb +5 -2
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/environments/development.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/environments/production.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/environments/staging.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/initializers/inflections.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/initializers/mime_types.rb +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/config/routes.rb +1 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/about +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/console +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/dbconsole +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/destroy +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/generate +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/performance/benchmarker +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/performance/profiler +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/performance/request +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/plugin +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/process/inspector +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/process/reaper +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/process/spawner +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/runner +0 -0
- data/test/stub/{rails_apps/2.3/foobar → rails2.3}/script/server +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/Gemfile +0 -0
- data/test/stub/rails3.0/Gemfile.lock +80 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/Rakefile +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/app/controllers/application_controller.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/app/helpers/application_helper.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/app/views/layouts/application.html.erb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config.ru +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/application.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/boot.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/database.yml +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/environment.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/environments/development.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/environments/production.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/environments/test.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/initializers/backtrace_silencers.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/initializers/inflections.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/initializers/mime_types.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/initializers/passenger.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/initializers/secret_token.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/initializers/session_store.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/locales/en.yml +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/config/routes.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/db/seeds.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/doc/README_FOR_APP +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/public/404.html +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/public/422.html +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/public/500.html +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/public/favicon.ico +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/public/index.html +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/public/robots.txt +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/script/rails +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/test/performance/browsing_test.rb +0 -0
- data/test/stub/{rails_apps/3.0/empty → rails3.0}/test/test_helper.rb +0 -0
- data/test/stub/start_error.pl +24 -0
- data/test/stub/wsgi/passenger_wsgi.py +71 -3
- data/test/support/apache2_controller.rb +2 -2
- data/test/support/placebo-preloader.rb +88 -0
- data/test/support/test_helper.rb +1 -14
- data/test/tut/tut.h +11 -4
- metadata +590 -326
- data.tar.gz.asc +0 -12
- data/PACKAGING.TXT +0 -25
- data/build/config.rb +0 -46
- data/ext/apache2/HelperAgent.cpp +0 -364
- data/ext/boost/call_traits.hpp +0 -24
- data/ext/boost/detail/call_traits.hpp +0 -164
- data/ext/common/AbstractSpawnManager.h +0 -110
- data/ext/common/AgentBase.cpp +0 -432
- data/ext/common/ApplicationPool/Client.h +0 -788
- data/ext/common/ApplicationPool/Interface.h +0 -295
- data/ext/common/ApplicationPool/Pool.h +0 -1327
- data/ext/common/ApplicationPool/Server.h +0 -479
- data/ext/common/MessageChannel.h +0 -494
- data/ext/common/PoolOptions.h +0 -518
- data/ext/common/Process.h +0 -253
- data/ext/common/Session.h +0 -436
- data/ext/common/SpawnManager.h +0 -611
- data/ext/google/ChangeLog +0 -167
- data/ext/google/dense_hash_map +0 -310
- data/ext/google/dense_hash_set +0 -287
- data/ext/google/sparse_hash_map +0 -294
- data/ext/google/sparse_hash_set +0 -275
- data/ext/google/sparsehash/densehashtable.h +0 -1062
- data/ext/google/sparsehash/sparseconfig.h +0 -55
- data/ext/google/sparsehash/sparsehashtable.h +0 -1015
- data/ext/google/sparsetable +0 -1468
- data/ext/google/type_traits.h +0 -250
- data/ext/nginx/HelperAgent.cpp +0 -1355
- data/ext/nginx/ScgiRequestParser.h +0 -375
- data/ext/oxt/backtrace.cpp +0 -185
- data/ext/oxt/tracable_exception.cpp +0 -89
- data/helper-scripts/passenger-spawn-server +0 -106
- data/lib/phusion_passenger/abstract_request_handler.rb +0 -766
- data/lib/phusion_passenger/abstract_server.rb +0 -372
- data/lib/phusion_passenger/abstract_server_collection.rb +0 -335
- data/lib/phusion_passenger/app_process.rb +0 -174
- data/lib/phusion_passenger/classic_rails/application_spawner.rb +0 -344
- data/lib/phusion_passenger/classic_rails/framework_spawner.rb +0 -311
- data/lib/phusion_passenger/exceptions.rb +0 -103
- data/lib/phusion_passenger/html_template.rb +0 -107
- data/lib/phusion_passenger/rack/application_spawner.rb +0 -231
- data/lib/phusion_passenger/spawn_manager.rb +0 -359
- data/lib/phusion_passenger/templates/app_exited_during_initialization.html.erb +0 -38
- data/lib/phusion_passenger/templates/app_init_error.html.erb +0 -64
- data/lib/phusion_passenger/templates/database_error.html.erb +0 -66
- data/lib/phusion_passenger/templates/error_layout.html.erb +0 -39
- data/lib/phusion_passenger/templates/framework_init_error.html.erb +0 -39
- data/lib/phusion_passenger/templates/general_error.html.erb +0 -22
- data/lib/phusion_passenger/templates/load_error.html.erb +0 -46
- data/lib/phusion_passenger/templates/version_not_found.html.erb +0 -34
- data/lib/phusion_passenger/utils/rewindable_input.rb +0 -125
- data/lib/phusion_passenger/wsgi/application_spawner.rb +0 -108
- data/test/config.yml.example +0 -41
- data/test/cxx/ApplicationPool_PoolTest.cpp +0 -33
- data/test/cxx/ApplicationPool_PoolTestCases.cpp +0 -1029
- data/test/cxx/ApplicationPool_ServerTest.cpp +0 -308
- data/test/cxx/ApplicationPool_Server_PoolTest.cpp +0 -80
- data/test/cxx/MessageChannelTest.cpp +0 -557
- data/test/cxx/PoolOptionsTest.cpp +0 -116
- data/test/cxx/SpawnManagerTest.cpp +0 -161
- data/test/ruby/abstract_server_collection_spec.rb +0 -247
- data/test/ruby/abstract_server_spec.rb +0 -61
- data/test/ruby/app_process_spec.rb +0 -43
- data/test/ruby/classic_rails/application_spawner_spec.rb +0 -89
- data/test/ruby/classic_rails/framework_spawner_spec.rb +0 -92
- data/test/ruby/rack/application_spawner_spec.rb +0 -116
- data/test/ruby/shared/abstract_server_spec.rb +0 -23
- data/test/ruby/shared/spawners/classic_rails/framework_spawner_spec.rb +0 -38
- data/test/ruby/shared/spawners/classic_rails/lack_of_rails_gem_version_spec.rb +0 -19
- data/test/ruby/shared/spawners/classic_rails/spawner_spec.rb +0 -15
- data/test/ruby/shared/spawners/non_preloading_spawner_spec.rb +0 -27
- data/test/ruby/shared/spawners/preloading_spawner_spec.rb +0 -29
- data/test/ruby/shared/spawners/reload_all_spec.rb +0 -36
- data/test/ruby/shared/spawners/reload_single_spec.rb +0 -52
- data/test/ruby/shared/spawners/spawn_server_spec.rb +0 -28
- data/test/ruby/shared/spawners/spawner_spec.rb +0 -273
- data/test/ruby/shared/utils/pseudo_io_spec.rb +0 -60
- data/test/ruby/spawn_manager_spec.rb +0 -134
- data/test/ruby/wsgi/application_spawner_spec.rb +0 -50
- data/test/stub/message_channel.rb +0 -11
- data/test/stub/message_channel_2.rb +0 -12
- data/test/stub/message_channel_3.rb +0 -19
- data/test/stub/rails_apps/3.0/empty/Gemfile.lock +0 -73
- data/test/stub/spawn_server.rb +0 -22
- metadata.gz.asc +0 -12
@@ -70,8 +70,8 @@ class Apache2Controller
|
|
70
70
|
@vhosts = []
|
71
71
|
@extra = []
|
72
72
|
@server_root = File.expand_path('tmp.apache2')
|
73
|
-
@passenger_root = File.expand_path(
|
74
|
-
@mod_passenger = File.expand_path(
|
73
|
+
@passenger_root = File.expand_path(PhusionPassenger.source_root)
|
74
|
+
@mod_passenger = File.expand_path(PhusionPassenger.source_root + "/libout/apache2/mod_passenger.so")
|
75
75
|
end
|
76
76
|
|
77
77
|
def set(options)
|
@@ -0,0 +1,88 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# An application preloader which doesn't actually preload anything
|
3
|
+
# and executes the requested start command.
|
4
|
+
|
5
|
+
DIR = File.expand_path(File.dirname(__FILE__))
|
6
|
+
require "#{DIR}/../../lib/phusion_passenger"
|
7
|
+
PhusionPassenger.locate_directories
|
8
|
+
require 'phusion_passenger/native_support'
|
9
|
+
require 'socket'
|
10
|
+
|
11
|
+
STDOUT.sync = true
|
12
|
+
STDERR.sync = true
|
13
|
+
puts "!> I have control 1.0"
|
14
|
+
abort "Invalid initialization header" if STDIN.readline != "You have control 1.0\n"
|
15
|
+
|
16
|
+
options = {}
|
17
|
+
while (line = STDIN.readline) != "\n"
|
18
|
+
name, value = line.strip.split(/: */, 2)
|
19
|
+
options[name] = value
|
20
|
+
end
|
21
|
+
|
22
|
+
socket_filename = "/tmp/placebo-preloader.sock.#{Process.pid}"
|
23
|
+
server = UNIXServer.new(socket_filename)
|
24
|
+
puts "!> Ready"
|
25
|
+
puts "!> socket: unix:#{socket_filename}"
|
26
|
+
puts "!> "
|
27
|
+
|
28
|
+
def process_client_command(server, client, command)
|
29
|
+
if command == "spawn\n"
|
30
|
+
options = {}
|
31
|
+
while (line = client.readline) != "\n"
|
32
|
+
name, value = line.strip.split(/: */, 2)
|
33
|
+
options[name] = value
|
34
|
+
end
|
35
|
+
|
36
|
+
command = options["start_command"].split("\1")
|
37
|
+
process_title = options["process_title"]
|
38
|
+
process_title = command[0] if !process_title || process_title.empty?
|
39
|
+
command[0] = [command[0], process_title]
|
40
|
+
|
41
|
+
pid = fork do
|
42
|
+
begin
|
43
|
+
STDIN.reopen(client)
|
44
|
+
STDOUT.reopen(client)
|
45
|
+
STDOUT.sync = true
|
46
|
+
server.close
|
47
|
+
client.close
|
48
|
+
puts "OK"
|
49
|
+
puts Process.pid
|
50
|
+
exec(*command)
|
51
|
+
rescue Exception => e
|
52
|
+
STDERR.puts "*** ERROR: #{e}\n#{e.backtrace.join("\n")}"
|
53
|
+
ensure
|
54
|
+
STDERR.flush
|
55
|
+
exit!(1)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
Process.detach(pid)
|
59
|
+
elsif command == "pid\n"
|
60
|
+
client.write("#{Process.pid}\n")
|
61
|
+
else
|
62
|
+
client.write("unknown request\n")
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
begin
|
67
|
+
exit if ARGV[0] == "exit-immediately"
|
68
|
+
while true
|
69
|
+
ios = select([server, STDIN])[0]
|
70
|
+
if ios.include?(server)
|
71
|
+
client = server.accept
|
72
|
+
begin
|
73
|
+
process_client_command(server, client, client.readline)
|
74
|
+
ensure
|
75
|
+
client.close
|
76
|
+
end
|
77
|
+
end
|
78
|
+
if ios.include?(STDIN)
|
79
|
+
begin
|
80
|
+
STDIN.readline
|
81
|
+
rescue EOFError
|
82
|
+
exit
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
ensure
|
87
|
+
File.unlink(socket_filename) rescue nil
|
88
|
+
end
|
data/test/support/test_helper.rb
CHANGED
@@ -85,7 +85,7 @@ module TestHelper
|
|
85
85
|
end
|
86
86
|
end
|
87
87
|
|
88
|
-
class
|
88
|
+
class ClassicRailsStub < Stub
|
89
89
|
def self.use(name, app_root = nil)
|
90
90
|
stub = new(name, app_root)
|
91
91
|
begin
|
@@ -103,20 +103,7 @@ module TestHelper
|
|
103
103
|
return "#{@full_app_root}/config/environment.rb"
|
104
104
|
end
|
105
105
|
|
106
|
-
def use_vendor_rails(name)
|
107
|
-
FileUtils.mkdir_p("#{@full_app_root}/vendor/rails")
|
108
|
-
FileUtils.cp_r("stub/vendor_rails/#{name}/.", "#{@full_app_root}/vendor/rails")
|
109
|
-
end
|
110
|
-
|
111
|
-
def dont_use_vendor_rails
|
112
|
-
remove_dir_tree("#{@full_app_root}/vendor/rails")
|
113
|
-
end
|
114
|
-
|
115
106
|
private
|
116
|
-
def stub_source_dir
|
117
|
-
return "stub/rails_apps/#{@name}"
|
118
|
-
end
|
119
|
-
|
120
107
|
def copy_stub_contents
|
121
108
|
super
|
122
109
|
FileUtils.mkdir_p("#{@full_app_root}/log")
|
data/test/tut/tut.h
CHANGED
@@ -73,6 +73,12 @@ static int setenv(const char *name, const char *value, int override) {
|
|
73
73
|
template<> template<> \
|
74
74
|
void object::test<i>()
|
75
75
|
|
76
|
+
#ifdef __GNUC__
|
77
|
+
#define TUT_UNUSED __attribute__((unused))
|
78
|
+
#else
|
79
|
+
#define TUT_UNUSED
|
80
|
+
#endif
|
81
|
+
|
76
82
|
/**
|
77
83
|
* Template Unit Tests Framework for C++.
|
78
84
|
* http://tut.dozen.ru
|
@@ -661,7 +667,7 @@ namespace
|
|
661
667
|
* Tests provided condition.
|
662
668
|
* Throws if false.
|
663
669
|
*/
|
664
|
-
void ensure(bool cond)
|
670
|
+
TUT_UNUSED void ensure(bool cond)
|
665
671
|
{
|
666
672
|
if (!cond)
|
667
673
|
{
|
@@ -674,7 +680,7 @@ void ensure(bool cond)
|
|
674
680
|
* Tests provided condition.
|
675
681
|
* Throws if true.
|
676
682
|
*/
|
677
|
-
void ensure_not(bool cond)
|
683
|
+
TUT_UNUSED void ensure_not(bool cond)
|
678
684
|
{
|
679
685
|
ensure(!cond);
|
680
686
|
}
|
@@ -770,7 +776,7 @@ void ensure_distance(const T& actual, const T& expected, const T& distance)
|
|
770
776
|
/**
|
771
777
|
* Unconditionally fails with message.
|
772
778
|
*/
|
773
|
-
void fail(const char* msg = "")
|
779
|
+
TUT_UNUSED void fail(const char* msg = "")
|
774
780
|
{
|
775
781
|
throw failure(msg);
|
776
782
|
}
|
@@ -1045,6 +1051,7 @@ private:
|
|
1045
1051
|
test_result run_test_(const tests_iterator& ti, safe_holder<object>& obj)
|
1046
1052
|
{
|
1047
1053
|
std::string current_test_name;
|
1054
|
+
int number = ti->first; // In a variable so we can easily inspect wih gdb.
|
1048
1055
|
try
|
1049
1056
|
{
|
1050
1057
|
if (run_test_seh_(ti->second,obj, current_test_name) == false)
|
@@ -1126,7 +1133,7 @@ private:
|
|
1126
1133
|
*/
|
1127
1134
|
|
1128
1135
|
// test passed
|
1129
|
-
test_result tr(name_,
|
1136
|
+
test_result tr(name_,number, current_test_name, test_result::ok);
|
1130
1137
|
return tr;
|
1131
1138
|
}
|
1132
1139
|
|
metadata
CHANGED
@@ -1,83 +1,88 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: passenger
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 1868587049
|
5
|
+
prerelease: 6
|
6
|
+
segments:
|
7
|
+
- 3
|
8
|
+
- 9
|
9
|
+
- 1
|
10
|
+
- beta
|
11
|
+
version: 3.9.1.beta
|
6
12
|
platform: ruby
|
7
|
-
authors:
|
13
|
+
authors:
|
8
14
|
- Phusion - http://www.phusion.nl/
|
9
15
|
autorequire:
|
10
16
|
bindir: bin
|
11
17
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
18
|
+
|
19
|
+
date: 2012-10-24 00:00:00 Z
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
15
22
|
name: rake
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 0.8.1
|
22
|
-
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
|
-
requirements:
|
27
|
-
- -
|
28
|
-
- !ruby/object:Gem::Version
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 61
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 8
|
33
|
+
- 1
|
29
34
|
version: 0.8.1
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: fastthread
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ! '>='
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 1.0.1
|
38
35
|
type: :runtime
|
36
|
+
version_requirements: *id001
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: fastthread
|
39
39
|
prerelease: false
|
40
|
-
|
40
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
|
-
requirements:
|
43
|
-
- -
|
44
|
-
- !ruby/object:Gem::Version
|
42
|
+
requirements:
|
43
|
+
- - ">="
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
hash: 21
|
46
|
+
segments:
|
47
|
+
- 1
|
48
|
+
- 0
|
49
|
+
- 1
|
45
50
|
version: 1.0.1
|
46
|
-
- !ruby/object:Gem::Dependency
|
47
|
-
name: daemon_controller
|
48
|
-
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
|
-
requirements:
|
51
|
-
- - ! '>='
|
52
|
-
- !ruby/object:Gem::Version
|
53
|
-
version: 1.0.0
|
54
51
|
type: :runtime
|
52
|
+
version_requirements: *id002
|
53
|
+
- !ruby/object:Gem::Dependency
|
54
|
+
name: daemon_controller
|
55
55
|
prerelease: false
|
56
|
-
|
56
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
57
57
|
none: false
|
58
|
-
requirements:
|
59
|
-
- -
|
60
|
-
- !ruby/object:Gem::Version
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
hash: 23
|
62
|
+
segments:
|
63
|
+
- 1
|
64
|
+
- 0
|
65
|
+
- 0
|
61
66
|
version: 1.0.0
|
62
|
-
- !ruby/object:Gem::Dependency
|
63
|
-
name: rack
|
64
|
-
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
|
-
requirements:
|
67
|
-
- - ! '>='
|
68
|
-
- !ruby/object:Gem::Version
|
69
|
-
version: '0'
|
70
67
|
type: :runtime
|
68
|
+
version_requirements: *id003
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rack
|
71
71
|
prerelease: false
|
72
|
-
|
72
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
|
-
requirements:
|
75
|
-
- -
|
76
|
-
- !ruby/object:Gem::Version
|
77
|
-
|
74
|
+
requirements:
|
75
|
+
- - ">="
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
hash: 3
|
78
|
+
segments:
|
79
|
+
- 0
|
80
|
+
version: "0"
|
81
|
+
type: :runtime
|
82
|
+
version_requirements: *id004
|
78
83
|
description: Easy and robust Ruby web application deployment.
|
79
84
|
email: info@phusion.nl
|
80
|
-
executables:
|
85
|
+
executables:
|
81
86
|
- passenger
|
82
87
|
- passenger-install-apache2-module
|
83
88
|
- passenger-install-nginx-module
|
@@ -85,13 +90,14 @@ executables:
|
|
85
90
|
- passenger-status
|
86
91
|
- passenger-memory-stats
|
87
92
|
extensions: []
|
93
|
+
|
88
94
|
extra_rdoc_files: []
|
89
|
-
|
95
|
+
|
96
|
+
files:
|
90
97
|
- configure
|
91
98
|
- Rakefile
|
92
99
|
- README
|
93
100
|
- DEVELOPERS.TXT
|
94
|
-
- PACKAGING.TXT
|
95
101
|
- LICENSE
|
96
102
|
- INSTALL
|
97
103
|
- NEWS
|
@@ -99,7 +105,6 @@ files:
|
|
99
105
|
- build/apache2.rb
|
100
106
|
- build/basics.rb
|
101
107
|
- build/common_library.rb
|
102
|
-
- build/config.rb
|
103
108
|
- build/cplusplus_support.rb
|
104
109
|
- build/cxx_tests.rb
|
105
110
|
- build/documentation.rb
|
@@ -117,18 +122,12 @@ files:
|
|
117
122
|
- build/test_basics.rb
|
118
123
|
- lib/phusion_passenger.rb
|
119
124
|
- lib/phusion_passenger/abstract_installer.rb
|
120
|
-
- lib/phusion_passenger/abstract_request_handler.rb
|
121
|
-
- lib/phusion_passenger/abstract_server.rb
|
122
|
-
- lib/phusion_passenger/abstract_server_collection.rb
|
123
|
-
- lib/phusion_passenger/admin_tools.rb
|
124
125
|
- lib/phusion_passenger/admin_tools/memory_stats.rb
|
125
126
|
- lib/phusion_passenger/admin_tools/server_instance.rb
|
127
|
+
- lib/phusion_passenger/admin_tools.rb
|
126
128
|
- lib/phusion_passenger/analytics_logger.rb
|
127
|
-
- lib/phusion_passenger/app_process.rb
|
128
|
-
- lib/phusion_passenger/classic_rails/application_spawner.rb
|
129
129
|
- lib/phusion_passenger/classic_rails/cgi_fixed.rb
|
130
|
-
- lib/phusion_passenger/classic_rails/
|
131
|
-
- lib/phusion_passenger/classic_rails/request_handler.rb
|
130
|
+
- lib/phusion_passenger/classic_rails/thread_handler_extension.rb
|
132
131
|
- lib/phusion_passenger/classic_rails_extensions/analytics_logging/ac_base_extension.rb
|
133
132
|
- lib/phusion_passenger/classic_rails_extensions/analytics_logging/ac_benchmarking_extension.rb
|
134
133
|
- lib/phusion_passenger/classic_rails_extensions/analytics_logging/ac_rescue_extension.rb
|
@@ -136,17 +135,16 @@ files:
|
|
136
135
|
- lib/phusion_passenger/classic_rails_extensions/analytics_logging/as_cache_extension.rb
|
137
136
|
- lib/phusion_passenger/classic_rails_extensions/analytics_logging/av_benchmark_helper_extension.rb
|
138
137
|
- lib/phusion_passenger/classic_rails_extensions/init.rb
|
138
|
+
- lib/phusion_passenger/common_library.rb
|
139
139
|
- lib/phusion_passenger/console_text_template.rb
|
140
140
|
- lib/phusion_passenger/constants.rb
|
141
141
|
- lib/phusion_passenger/debug_logging.rb
|
142
142
|
- lib/phusion_passenger/dependencies.rb
|
143
|
-
- lib/phusion_passenger/
|
144
|
-
- lib/phusion_passenger/html_template.rb
|
143
|
+
- lib/phusion_passenger/loader_shared_helpers.rb
|
145
144
|
- lib/phusion_passenger/message_channel.rb
|
146
145
|
- lib/phusion_passenger/message_client.rb
|
147
146
|
- lib/phusion_passenger/native_support.rb
|
148
147
|
- lib/phusion_passenger/packaging.rb
|
149
|
-
- lib/phusion_passenger/platform_info.rb
|
150
148
|
- lib/phusion_passenger/platform_info/apache.rb
|
151
149
|
- lib/phusion_passenger/platform_info/binary_compatibility.rb
|
152
150
|
- lib/phusion_passenger/platform_info/compiler.rb
|
@@ -155,13 +153,16 @@ files:
|
|
155
153
|
- lib/phusion_passenger/platform_info/operating_system.rb
|
156
154
|
- lib/phusion_passenger/platform_info/ruby.rb
|
157
155
|
- lib/phusion_passenger/platform_info/zlib.rb
|
156
|
+
- lib/phusion_passenger/platform_info.rb
|
158
157
|
- lib/phusion_passenger/plugin.rb
|
158
|
+
- lib/phusion_passenger/preloader_shared_helpers.rb
|
159
159
|
- lib/phusion_passenger/public_api.rb
|
160
|
-
- lib/phusion_passenger/rack/
|
161
|
-
- lib/phusion_passenger/rack/request_handler.rb
|
160
|
+
- lib/phusion_passenger/rack/thread_handler_extension.rb
|
162
161
|
- lib/phusion_passenger/rails3_extensions/init.rb
|
162
|
+
- lib/phusion_passenger/request_handler/thread_handler.rb
|
163
|
+
- lib/phusion_passenger/request_handler.rb
|
164
|
+
- lib/phusion_passenger/ruby_core_enhancements.rb
|
163
165
|
- lib/phusion_passenger/simple_benchmarking.rb
|
164
|
-
- lib/phusion_passenger/spawn_manager.rb
|
165
166
|
- lib/phusion_passenger/standalone/app_finder.rb
|
166
167
|
- lib/phusion_passenger/standalone/command.rb
|
167
168
|
- lib/phusion_passenger/standalone/config_file.rb
|
@@ -174,49 +175,16 @@ files:
|
|
174
175
|
- lib/phusion_passenger/standalone/stop_command.rb
|
175
176
|
- lib/phusion_passenger/standalone/utils.rb
|
176
177
|
- lib/phusion_passenger/standalone/version_command.rb
|
177
|
-
- lib/phusion_passenger/utils.rb
|
178
|
+
- lib/phusion_passenger/utils/ansi_colors.rb
|
178
179
|
- lib/phusion_passenger/utils/file_system_watcher.rb
|
179
180
|
- lib/phusion_passenger/utils/hosts_file_parser.rb
|
180
|
-
- lib/phusion_passenger/utils/
|
181
|
+
- lib/phusion_passenger/utils/robust_interruption.rb
|
182
|
+
- lib/phusion_passenger/utils/tee_input.rb
|
181
183
|
- lib/phusion_passenger/utils/tmpdir.rb
|
184
|
+
- lib/phusion_passenger/utils/tmpio.rb
|
182
185
|
- lib/phusion_passenger/utils/unseekable_socket.rb
|
183
|
-
- lib/phusion_passenger/
|
186
|
+
- lib/phusion_passenger/utils.rb
|
184
187
|
- lib/phusion_passenger/wsgi/request_handler.py
|
185
|
-
- lib/phusion_passenger/templates/app_exited_during_initialization.html.erb
|
186
|
-
- lib/phusion_passenger/templates/app_init_error.html.erb
|
187
|
-
- lib/phusion_passenger/templates/database_error.html.erb
|
188
|
-
- lib/phusion_passenger/templates/error_layout.css
|
189
|
-
- lib/phusion_passenger/templates/error_layout.html.erb
|
190
|
-
- lib/phusion_passenger/templates/framework_init_error.html.erb
|
191
|
-
- lib/phusion_passenger/templates/general_error.html.erb
|
192
|
-
- lib/phusion_passenger/templates/load_error.html.erb
|
193
|
-
- lib/phusion_passenger/templates/version_not_found.html.erb
|
194
|
-
- lib/phusion_passenger/templates/apache2/apache_must_be_compiled_with_compatible_mpm.txt.erb
|
195
|
-
- lib/phusion_passenger/templates/apache2/config_snippets.txt.erb
|
196
|
-
- lib/phusion_passenger/templates/apache2/deployment_example.txt.erb
|
197
|
-
- lib/phusion_passenger/templates/apache2/no_write_permission_to_passenger_root.txt.erb
|
198
|
-
- lib/phusion_passenger/templates/apache2/possible_solutions_for_compilation_and_installation_problems.txt.erb
|
199
|
-
- lib/phusion_passenger/templates/apache2/run_installer_as_root.txt.erb
|
200
|
-
- lib/phusion_passenger/templates/apache2/welcome.txt.erb
|
201
|
-
- lib/phusion_passenger/templates/nginx/ask_for_extra_configure_flags.txt.erb
|
202
|
-
- lib/phusion_passenger/templates/nginx/cannot_write_to_dir.txt.erb
|
203
|
-
- lib/phusion_passenger/templates/nginx/config_snippets.txt.erb
|
204
|
-
- lib/phusion_passenger/templates/nginx/config_snippets_inserted.txt.erb
|
205
|
-
- lib/phusion_passenger/templates/nginx/confirm_extra_configure_flags.txt.erb
|
206
|
-
- lib/phusion_passenger/templates/nginx/deployment_example.txt.erb
|
207
|
-
- lib/phusion_passenger/templates/nginx/pcre_could_not_be_downloaded.txt.erb
|
208
|
-
- lib/phusion_passenger/templates/nginx/pcre_could_not_be_extracted.txt.erb
|
209
|
-
- lib/phusion_passenger/templates/nginx/possible_solutions_for_compilation_and_installation_problems.txt.erb
|
210
|
-
- lib/phusion_passenger/templates/nginx/possible_solutions_for_download_and_extraction_problems.txt.erb
|
211
|
-
- lib/phusion_passenger/templates/nginx/query_download_and_install.txt.erb
|
212
|
-
- lib/phusion_passenger/templates/nginx/run_installer_as_root.txt.erb
|
213
|
-
- lib/phusion_passenger/templates/nginx/welcome.txt.erb
|
214
|
-
- lib/phusion_passenger/templates/standalone/cannot_write_to_dir.txt.erb
|
215
|
-
- lib/phusion_passenger/templates/standalone/config.erb
|
216
|
-
- lib/phusion_passenger/templates/standalone/possible_solutions_for_download_and_extraction_problems.txt.erb
|
217
|
-
- lib/phusion_passenger/templates/standalone/run_installer_as_root.txt.erb
|
218
|
-
- lib/phusion_passenger/templates/standalone/welcome.txt.erb
|
219
|
-
- lib/phusion_passenger/templates/standalone_default_root/index.html
|
220
188
|
- bin/passenger
|
221
189
|
- bin/passenger-config
|
222
190
|
- bin/passenger-install-apache2-module
|
@@ -224,21 +192,16 @@ files:
|
|
224
192
|
- bin/passenger-memory-stats
|
225
193
|
- bin/passenger-status
|
226
194
|
- doc/ApplicationPool algorithm.txt
|
195
|
+
- doc/Architectural overview.html
|
227
196
|
- doc/Architectural overview.idmap.txt
|
228
197
|
- doc/Architectural overview.txt
|
229
|
-
- doc/
|
230
|
-
- doc/Security of user switching support.txt
|
231
|
-
- doc/Users guide Apache.idmap.txt
|
232
|
-
- doc/Users guide Apache.txt
|
233
|
-
- doc/Users guide Nginx.idmap.txt
|
234
|
-
- doc/Users guide Nginx.txt
|
235
|
-
- doc/Users guide Standalone.idmap.txt
|
236
|
-
- doc/Users guide Standalone.txt
|
198
|
+
- doc/DebuggingAndStressTesting.txt.md
|
237
199
|
- doc/definitions.h
|
238
200
|
- doc/images/by_sa.png
|
239
201
|
- doc/images/conservative_spawning.png
|
240
202
|
- doc/images/conservative_spawning.svg
|
241
|
-
- doc/images/
|
203
|
+
- doc/images/glyphicons-halflings-white.png
|
204
|
+
- doc/images/glyphicons-halflings.png
|
242
205
|
- doc/images/icons/callouts/1.png
|
243
206
|
- doc/images/icons/callouts/10.png
|
244
207
|
- doc/images/icons/callouts/11.png
|
@@ -261,6 +224,7 @@ files:
|
|
261
224
|
- doc/images/icons/next.png
|
262
225
|
- doc/images/icons/note.png
|
263
226
|
- doc/images/icons/prev.png
|
227
|
+
- doc/images/icons/README
|
264
228
|
- doc/images/icons/tip.png
|
265
229
|
- doc/images/icons/up.png
|
266
230
|
- doc/images/icons/warning.png
|
@@ -268,13 +232,29 @@ files:
|
|
268
232
|
- doc/images/passenger_architecture.png
|
269
233
|
- doc/images/passenger_architecture.svg
|
270
234
|
- doc/images/phusion_banner.png
|
235
|
+
- doc/images/phusion_banner_small.png
|
271
236
|
- doc/images/rack.png
|
272
|
-
- doc/images/smart
|
273
|
-
- doc/images/smart
|
237
|
+
- doc/images/smart.png
|
238
|
+
- doc/images/smart.svg
|
274
239
|
- doc/images/spawn_server_architecture.png
|
275
240
|
- doc/images/spawn_server_architecture.svg
|
276
241
|
- doc/images/typical_isolated_web_application.png
|
277
242
|
- doc/images/typical_isolated_web_application.svg
|
243
|
+
- doc/Packaging.txt.md
|
244
|
+
- doc/Security of user switching support.html
|
245
|
+
- doc/Security of user switching support.idmap.txt
|
246
|
+
- doc/Security of user switching support.txt
|
247
|
+
- doc/templates/bootstrap.min.css
|
248
|
+
- doc/templates/markdown.html.erb
|
249
|
+
- doc/Users guide Apache.html
|
250
|
+
- doc/Users guide Apache.idmap.txt
|
251
|
+
- doc/Users guide Apache.txt
|
252
|
+
- doc/Users guide Nginx.html
|
253
|
+
- doc/Users guide Nginx.idmap.txt
|
254
|
+
- doc/Users guide Nginx.txt
|
255
|
+
- doc/Users guide Standalone.html
|
256
|
+
- doc/Users guide Standalone.idmap.txt
|
257
|
+
- doc/Users guide Standalone.txt
|
278
258
|
- doc/users_guide_snippets/analysis_and_system_maintenance.txt
|
279
259
|
- doc/users_guide_snippets/appendix_a_about.txt
|
280
260
|
- doc/users_guide_snippets/appendix_b_terminology.txt
|
@@ -283,13 +263,13 @@ files:
|
|
283
263
|
- doc/users_guide_snippets/global_queueing_explained.txt
|
284
264
|
- doc/users_guide_snippets/passenger_spawn_method.txt
|
285
265
|
- doc/users_guide_snippets/rackup_specifications.txt
|
266
|
+
- doc/users_guide_snippets/support_information.txt
|
286
267
|
- doc/users_guide_snippets/tips.txt
|
287
268
|
- doc/users_guide_snippets/under_the_hood/page_caching_support.txt
|
288
269
|
- man/passenger-config.1
|
289
270
|
- man/passenger-memory-stats.8
|
290
271
|
- man/passenger-status.8
|
291
272
|
- man/passenger-stress-test.1
|
292
|
-
- debian/README.Debian
|
293
273
|
- debian/changelog
|
294
274
|
- debian/compat
|
295
275
|
- debian/control
|
@@ -301,110 +281,146 @@ files:
|
|
301
281
|
- debian/passenger.conf
|
302
282
|
- debian/passenger.load
|
303
283
|
- debian/prerm
|
284
|
+
- debian/README.Debian
|
304
285
|
- debian/rules
|
305
286
|
- debian/watch
|
306
|
-
- helper-scripts/
|
287
|
+
- helper-scripts/backtrace-sanitizer.rb
|
288
|
+
- helper-scripts/classic-rails-loader.rb
|
289
|
+
- helper-scripts/classic-rails-preloader.rb
|
290
|
+
- helper-scripts/node-loader.js
|
307
291
|
- helper-scripts/prespawn
|
308
|
-
-
|
309
|
-
-
|
292
|
+
- helper-scripts/rack-loader.rb
|
293
|
+
- helper-scripts/rack-preloader.rb
|
294
|
+
- helper-scripts/wsgi-loader.py
|
295
|
+
- helper-scripts/wsgi-preloader.py
|
310
296
|
- ext/common/AccountsDatabase.cpp
|
311
|
-
- ext/common/
|
312
|
-
- ext/common/
|
313
|
-
- ext/common/
|
297
|
+
- ext/common/agents/Base.cpp
|
298
|
+
- ext/common/agents/HelperAgent/Main.cpp
|
299
|
+
- ext/common/agents/HelperAgent/RequestHandler.cpp
|
300
|
+
- ext/common/agents/LoggingAgent/FilterSupport.cpp
|
301
|
+
- ext/common/agents/LoggingAgent/Main.cpp
|
302
|
+
- ext/common/agents/SpawnPreparer.cpp
|
303
|
+
- ext/common/agents/Watchdog/Main.cpp
|
314
304
|
- ext/common/AgentsStarter.cpp
|
315
|
-
- ext/common/
|
316
|
-
- ext/common/
|
317
|
-
- ext/common/ApplicationPool/Client.h
|
318
|
-
- ext/common/ApplicationPool/Interface.h
|
319
|
-
- ext/common/ApplicationPool/Pool.h
|
320
|
-
- ext/common/ApplicationPool/Server.h
|
305
|
+
- ext/common/ApplicationPool2/Implementation.cpp
|
306
|
+
- ext/common/BackgroundEventLoop.cpp
|
321
307
|
- ext/common/BCrypt.cpp
|
322
|
-
- ext/common/
|
308
|
+
- ext/common/Logging.cpp
|
309
|
+
- ext/common/MultiLibeio.cpp
|
310
|
+
- ext/common/Utils/Base64.cpp
|
311
|
+
- ext/common/Utils/CachedFileStat.cpp
|
312
|
+
- ext/common/Utils/IOUtils.cpp
|
313
|
+
- ext/common/Utils/jsoncpp.cpp
|
314
|
+
- ext/common/Utils/MD5.cpp
|
315
|
+
- ext/common/Utils/StrIntUtils.cpp
|
316
|
+
- ext/common/Utils/SystemTime.cpp
|
317
|
+
- ext/common/Utils.cpp
|
318
|
+
- ext/common/agents/EnvPrinter.c
|
323
319
|
- ext/common/Blowfish.c
|
320
|
+
- ext/common/Utils/fib.c
|
321
|
+
- ext/common/Account.h
|
322
|
+
- ext/common/AccountsDatabase.h
|
323
|
+
- ext/common/agents/Base.h
|
324
|
+
- ext/common/agents/HelperAgent/AgentOptions.h
|
325
|
+
- ext/common/agents/HelperAgent/BacktracesServer.h
|
326
|
+
- ext/common/agents/HelperAgent/FileBackedPipe.h
|
327
|
+
- ext/common/agents/HelperAgent/RequestHandler.h
|
328
|
+
- ext/common/agents/HelperAgent/ScgiRequestParser.h
|
329
|
+
- ext/common/agents/LoggingAgent/DataStoreId.h
|
330
|
+
- ext/common/agents/LoggingAgent/FilterSupport.h
|
331
|
+
- ext/common/agents/LoggingAgent/LoggingServer.h
|
332
|
+
- ext/common/agents/LoggingAgent/RemoteSender.h
|
333
|
+
- ext/common/AgentsStarter.h
|
334
|
+
- ext/common/AnsiColorConstants.h
|
335
|
+
- ext/common/ApplicationPool2/Common.h
|
336
|
+
- ext/common/ApplicationPool2/ComponentInfo.h
|
337
|
+
- ext/common/ApplicationPool2/Group.h
|
338
|
+
- ext/common/ApplicationPool2/Options.h
|
339
|
+
- ext/common/ApplicationPool2/PipeWatcher.h
|
340
|
+
- ext/common/ApplicationPool2/Pool.h
|
341
|
+
- ext/common/ApplicationPool2/Process.h
|
342
|
+
- ext/common/ApplicationPool2/Session.h
|
343
|
+
- ext/common/ApplicationPool2/Socket.h
|
344
|
+
- ext/common/ApplicationPool2/Spawner.h
|
345
|
+
- ext/common/ApplicationPool2/SuperGroup.h
|
346
|
+
- ext/common/BackgroundEventLoop.h
|
347
|
+
- ext/common/BCrypt.h
|
324
348
|
- ext/common/Blowfish.h
|
325
349
|
- ext/common/Constants.h
|
350
|
+
- ext/common/EventedBufferedInput.h
|
326
351
|
- ext/common/EventedClient.h
|
327
352
|
- ext/common/EventedMessageServer.h
|
328
353
|
- ext/common/EventedServer.h
|
329
354
|
- ext/common/Exceptions.h
|
330
355
|
- ext/common/FileDescriptor.h
|
331
|
-
- ext/common/
|
356
|
+
- ext/common/HttpConstants.h
|
332
357
|
- ext/common/IniFile.h
|
333
|
-
- ext/common/Logging.cpp
|
334
358
|
- ext/common/Logging.h
|
335
|
-
- ext/common/LoggingAgent/DataStoreId.h
|
336
|
-
- ext/common/LoggingAgent/FilterSupport.cpp
|
337
|
-
- ext/common/LoggingAgent/FilterSupport.h
|
338
|
-
- ext/common/LoggingAgent/LoggingServer.h
|
339
|
-
- ext/common/LoggingAgent/Main.cpp
|
340
|
-
- ext/common/LoggingAgent/RemoteSender.h
|
341
|
-
- ext/common/MessageChannel.h
|
342
359
|
- ext/common/MessageClient.h
|
343
360
|
- ext/common/MessageReadersWriters.h
|
344
361
|
- ext/common/MessageServer.h
|
345
|
-
- ext/common/
|
346
|
-
- ext/common/Process.h
|
362
|
+
- ext/common/MultiLibeio.h
|
347
363
|
- ext/common/RandomGenerator.h
|
348
364
|
- ext/common/ResourceLocator.h
|
349
365
|
- ext/common/SafeLibev.h
|
350
366
|
- ext/common/ServerInstanceDir.h
|
351
|
-
- ext/common/Session.h
|
352
|
-
- ext/common/SpawnManager.h
|
353
367
|
- ext/common/StaticString.h
|
354
368
|
- ext/common/StringListCreator.h
|
355
|
-
- ext/common/
|
356
|
-
- ext/common/Utils.h
|
357
|
-
- ext/common/Utils/Base64.cpp
|
369
|
+
- ext/common/UnionStation.h
|
358
370
|
- ext/common/Utils/Base64.h
|
359
371
|
- ext/common/Utils/BlockingQueue.h
|
360
372
|
- ext/common/Utils/BufferedIO.h
|
361
|
-
- ext/common/Utils/CachedFileStat.cpp
|
362
373
|
- ext/common/Utils/CachedFileStat.h
|
363
|
-
- ext/common/Utils/CachedFileStat.hpp
|
364
374
|
- ext/common/Utils/Dechunker.h
|
375
|
+
- ext/common/Utils/fib.h
|
376
|
+
- ext/common/Utils/fibpriv.h
|
365
377
|
- ext/common/Utils/FileChangeChecker.h
|
378
|
+
- ext/common/Utils/HashMap.h
|
366
379
|
- ext/common/Utils/HttpHeaderBufferer.h
|
367
|
-
- ext/common/Utils/IOUtils.cpp
|
368
380
|
- ext/common/Utils/IOUtils.h
|
369
|
-
- ext/common/Utils/
|
381
|
+
- ext/common/Utils/json-forwards.h
|
382
|
+
- ext/common/Utils/json.h
|
383
|
+
- ext/common/Utils/Lock.h
|
370
384
|
- ext/common/Utils/MD5.h
|
385
|
+
- ext/common/Utils/MemoryBarrier.h
|
371
386
|
- ext/common/Utils/MemZeroGuard.h
|
372
387
|
- ext/common/Utils/MessageIO.h
|
388
|
+
- ext/common/Utils/PriorityQueue.h
|
373
389
|
- ext/common/Utils/ProcessMetricsCollector.h
|
374
390
|
- ext/common/Utils/ScopeGuard.h
|
375
|
-
- ext/common/Utils/
|
376
|
-
- ext/common/Utils/StrIntUtils.h
|
391
|
+
- ext/common/Utils/SmallVector.h
|
377
392
|
- ext/common/Utils/StreamBoyerMooreHorspool.h
|
378
393
|
- ext/common/Utils/StringMap.h
|
379
|
-
- ext/common/Utils/
|
394
|
+
- ext/common/Utils/StrIntUtils.h
|
380
395
|
- ext/common/Utils/SystemTime.h
|
396
|
+
- ext/common/Utils/Template.h
|
381
397
|
- ext/common/Utils/Timer.h
|
382
|
-
- ext/common/Utils/VariantMap.h
|
383
|
-
- ext/common/Utils/utf8.h
|
384
398
|
- ext/common/Utils/utf8/checked.h
|
385
399
|
- ext/common/Utils/utf8/core.h
|
386
400
|
- ext/common/Utils/utf8/unchecked.h
|
387
|
-
- ext/common/
|
401
|
+
- ext/common/Utils/utf8.h
|
402
|
+
- ext/common/Utils/VariantMap.h
|
403
|
+
- ext/common/Utils.h
|
404
|
+
- ext/common/AgentsStarter.hpp
|
405
|
+
- ext/common/Utils/CachedFileStat.hpp
|
406
|
+
- ext/common/ApplicationPool2/README.md
|
388
407
|
- ext/apache2/Bucket.cpp
|
389
|
-
- ext/apache2/Bucket.h
|
390
408
|
- ext/apache2/Configuration.cpp
|
409
|
+
- ext/apache2/Hooks.cpp
|
410
|
+
- ext/apache2/Bucket.h
|
391
411
|
- ext/apache2/Configuration.h
|
392
|
-
- ext/apache2/Configuration.hpp
|
393
412
|
- ext/apache2/DirectoryMapper.h
|
394
|
-
- ext/apache2/HelperAgent.cpp
|
395
|
-
- ext/apache2/Hooks.cpp
|
396
413
|
- ext/apache2/Hooks.h
|
414
|
+
- ext/apache2/Configuration.hpp
|
397
415
|
- ext/apache2/mod_passenger.c
|
398
416
|
- ext/nginx/Configuration.c
|
399
|
-
- ext/nginx/Configuration.h
|
400
417
|
- ext/nginx/ContentHandler.c
|
401
|
-
- ext/nginx/ContentHandler.h
|
402
|
-
- ext/nginx/HelperAgent.cpp
|
403
|
-
- ext/nginx/ScgiRequestParser.h
|
404
|
-
- ext/nginx/StaticContentHandler.c
|
405
|
-
- ext/nginx/StaticContentHandler.h
|
406
418
|
- ext/nginx/ngx_http_passenger_module.c
|
419
|
+
- ext/nginx/StaticContentHandler.c
|
420
|
+
- ext/nginx/Configuration.h
|
421
|
+
- ext/nginx/ContentHandler.h
|
407
422
|
- ext/nginx/ngx_http_passenger_module.h
|
423
|
+
- ext/nginx/StaticContentHandler.h
|
408
424
|
- ext/nginx/config
|
409
425
|
- ext/boost/algorithm/string/case_conv.hpp
|
410
426
|
- ext/boost/algorithm/string/compare.hpp
|
@@ -428,7 +444,6 @@ files:
|
|
428
444
|
- ext/boost/algorithm/string/sequence_traits.hpp
|
429
445
|
- ext/boost/algorithm/string/yes_no_type.hpp
|
430
446
|
- ext/boost/assert.hpp
|
431
|
-
- ext/boost/bind.hpp
|
432
447
|
- ext/boost/bind/arg.hpp
|
433
448
|
- ext/boost/bind/bind.hpp
|
434
449
|
- ext/boost/bind/bind_cc.hpp
|
@@ -440,7 +455,7 @@ files:
|
|
440
455
|
- ext/boost/bind/mem_fn_template.hpp
|
441
456
|
- ext/boost/bind/placeholders.hpp
|
442
457
|
- ext/boost/bind/storage.hpp
|
443
|
-
- ext/boost/
|
458
|
+
- ext/boost/bind.hpp
|
444
459
|
- ext/boost/checked_delete.hpp
|
445
460
|
- ext/boost/concept/assert.hpp
|
446
461
|
- ext/boost/concept/detail/backward_compatibility.hpp
|
@@ -450,7 +465,6 @@ files:
|
|
450
465
|
- ext/boost/concept/detail/has_constraints.hpp
|
451
466
|
- ext/boost/concept/usage.hpp
|
452
467
|
- ext/boost/concept_check.hpp
|
453
|
-
- ext/boost/config.hpp
|
454
468
|
- ext/boost/config/abi/borland_prefix.hpp
|
455
469
|
- ext/boost/config/abi/borland_suffix.hpp
|
456
470
|
- ext/boost/config/abi/msvc_prefix.hpp
|
@@ -464,6 +478,7 @@ files:
|
|
464
478
|
- ext/boost/config/compiler/comeau.hpp
|
465
479
|
- ext/boost/config/compiler/common_edg.hpp
|
466
480
|
- ext/boost/config/compiler/compaq_cxx.hpp
|
481
|
+
- ext/boost/config/compiler/cray.hpp
|
467
482
|
- ext/boost/config/compiler/digitalmars.hpp
|
468
483
|
- ext/boost/config/compiler/gcc.hpp
|
469
484
|
- ext/boost/config/compiler/gcc_xml.hpp
|
@@ -474,6 +489,7 @@ files:
|
|
474
489
|
- ext/boost/config/compiler/metrowerks.hpp
|
475
490
|
- ext/boost/config/compiler/mpw.hpp
|
476
491
|
- ext/boost/config/compiler/nvcc.hpp
|
492
|
+
- ext/boost/config/compiler/pathscale.hpp
|
477
493
|
- ext/boost/config/compiler/pgi.hpp
|
478
494
|
- ext/boost/config/compiler/sgi_mipspro.hpp
|
479
495
|
- ext/boost/config/compiler/sunpro_cc.hpp
|
@@ -488,6 +504,7 @@ files:
|
|
488
504
|
- ext/boost/config/platform/amigaos.hpp
|
489
505
|
- ext/boost/config/platform/beos.hpp
|
490
506
|
- ext/boost/config/platform/bsd.hpp
|
507
|
+
- ext/boost/config/platform/cray.hpp
|
491
508
|
- ext/boost/config/platform/cygwin.hpp
|
492
509
|
- ext/boost/config/platform/hpux.hpp
|
493
510
|
- ext/boost/config/platform/irix.hpp
|
@@ -496,6 +513,7 @@ files:
|
|
496
513
|
- ext/boost/config/platform/qnxnto.hpp
|
497
514
|
- ext/boost/config/platform/solaris.hpp
|
498
515
|
- ext/boost/config/platform/symbian.hpp
|
516
|
+
- ext/boost/config/platform/vms.hpp
|
499
517
|
- ext/boost/config/platform/vxworks.hpp
|
500
518
|
- ext/boost/config/platform/win32.hpp
|
501
519
|
- ext/boost/config/posix_features.hpp
|
@@ -505,6 +523,7 @@ files:
|
|
505
523
|
- ext/boost/config/select_stdlib_config.hpp
|
506
524
|
- ext/boost/config/stdlib/dinkumware.hpp
|
507
525
|
- ext/boost/config/stdlib/libcomo.hpp
|
526
|
+
- ext/boost/config/stdlib/libcpp.hpp
|
508
527
|
- ext/boost/config/stdlib/libstdcpp3.hpp
|
509
528
|
- ext/boost/config/stdlib/modena.hpp
|
510
529
|
- ext/boost/config/stdlib/msl.hpp
|
@@ -515,6 +534,8 @@ files:
|
|
515
534
|
- ext/boost/config/suffix.hpp
|
516
535
|
- ext/boost/config/user.hpp
|
517
536
|
- ext/boost/config/warning_disable.hpp
|
537
|
+
- ext/boost/config.hpp
|
538
|
+
- ext/boost/container/container_fwd.hpp
|
518
539
|
- ext/boost/cstdint.hpp
|
519
540
|
- ext/boost/current_function.hpp
|
520
541
|
- ext/boost/date_time/adjust_functors.hpp
|
@@ -598,8 +619,8 @@ files:
|
|
598
619
|
- ext/boost/date_time/time_system_split.hpp
|
599
620
|
- ext/boost/date_time/wrapping_int.hpp
|
600
621
|
- ext/boost/date_time/year_month_day.hpp
|
601
|
-
- ext/boost/detail/call_traits.hpp
|
602
622
|
- ext/boost/detail/endian.hpp
|
623
|
+
- ext/boost/detail/fenv.hpp
|
603
624
|
- ext/boost/detail/indirect_traits.hpp
|
604
625
|
- ext/boost/detail/iterator.hpp
|
605
626
|
- ext/boost/detail/lcast_precision.hpp
|
@@ -611,6 +632,7 @@ files:
|
|
611
632
|
- ext/boost/enable_shared_from_this.hpp
|
612
633
|
- ext/boost/exception/current_exception_cast.hpp
|
613
634
|
- ext/boost/exception/detail/attribute_noreturn.hpp
|
635
|
+
- ext/boost/exception/detail/clone_current_exception.hpp
|
614
636
|
- ext/boost/exception/detail/error_info_impl.hpp
|
615
637
|
- ext/boost/exception/detail/exception_ptr.hpp
|
616
638
|
- ext/boost/exception/detail/is_output_streamable.hpp
|
@@ -623,13 +645,13 @@ files:
|
|
623
645
|
- ext/boost/exception/to_string.hpp
|
624
646
|
- ext/boost/exception/to_string_stub.hpp
|
625
647
|
- ext/boost/exception_ptr.hpp
|
626
|
-
- ext/boost/function.hpp
|
627
648
|
- ext/boost/function/detail/function_iterate.hpp
|
628
649
|
- ext/boost/function/detail/maybe_include.hpp
|
629
650
|
- ext/boost/function/detail/prologue.hpp
|
630
651
|
- ext/boost/function/function_base.hpp
|
631
652
|
- ext/boost/function/function_fwd.hpp
|
632
653
|
- ext/boost/function/function_template.hpp
|
654
|
+
- ext/boost/function.hpp
|
633
655
|
- ext/boost/function_equal.hpp
|
634
656
|
- ext/boost/get_pointer.hpp
|
635
657
|
- ext/boost/implicit_cast.hpp
|
@@ -639,7 +661,6 @@ files:
|
|
639
661
|
- ext/boost/io/ios_state.hpp
|
640
662
|
- ext/boost/io_fwd.hpp
|
641
663
|
- ext/boost/is_placeholder.hpp
|
642
|
-
- ext/boost/iterator.hpp
|
643
664
|
- ext/boost/iterator/detail/config_def.hpp
|
644
665
|
- ext/boost/iterator/detail/config_undef.hpp
|
645
666
|
- ext/boost/iterator/detail/enable_if.hpp
|
@@ -653,11 +674,25 @@ files:
|
|
653
674
|
- ext/boost/iterator/iterator_traits.hpp
|
654
675
|
- ext/boost/iterator/reverse_iterator.hpp
|
655
676
|
- ext/boost/iterator/transform_iterator.hpp
|
677
|
+
- ext/boost/iterator.hpp
|
656
678
|
- ext/boost/lexical_cast.hpp
|
657
679
|
- ext/boost/limits.hpp
|
658
680
|
- ext/boost/make_shared.hpp
|
681
|
+
- ext/boost/math/policies/policy.hpp
|
682
|
+
- ext/boost/math/special_functions/detail/fp_traits.hpp
|
683
|
+
- ext/boost/math/special_functions/detail/round_fwd.hpp
|
684
|
+
- ext/boost/math/special_functions/fpclassify.hpp
|
685
|
+
- ext/boost/math/special_functions/math_fwd.hpp
|
686
|
+
- ext/boost/math/special_functions/sign.hpp
|
687
|
+
- ext/boost/math/tools/config.hpp
|
688
|
+
- ext/boost/math/tools/promotion.hpp
|
689
|
+
- ext/boost/math/tools/real_cast.hpp
|
690
|
+
- ext/boost/math/tools/user.hpp
|
659
691
|
- ext/boost/mem_fn.hpp
|
660
692
|
- ext/boost/memory_order.hpp
|
693
|
+
- ext/boost/move/move.hpp
|
694
|
+
- ext/boost/mpl/advance.hpp
|
695
|
+
- ext/boost/mpl/advance_fwd.hpp
|
661
696
|
- ext/boost/mpl/always.hpp
|
662
697
|
- ext/boost/mpl/and.hpp
|
663
698
|
- ext/boost/mpl/apply.hpp
|
@@ -666,11 +701,20 @@ files:
|
|
666
701
|
- ext/boost/mpl/arg.hpp
|
667
702
|
- ext/boost/mpl/arg_fwd.hpp
|
668
703
|
- ext/boost/mpl/assert.hpp
|
704
|
+
- ext/boost/mpl/at.hpp
|
705
|
+
- ext/boost/mpl/at_fwd.hpp
|
669
706
|
- ext/boost/mpl/aux_/adl_barrier.hpp
|
707
|
+
- ext/boost/mpl/aux_/advance_backward.hpp
|
708
|
+
- ext/boost/mpl/aux_/advance_forward.hpp
|
670
709
|
- ext/boost/mpl/aux_/arg_typedef.hpp
|
710
|
+
- ext/boost/mpl/aux_/arithmetic_op.hpp
|
671
711
|
- ext/boost/mpl/aux_/arity.hpp
|
672
712
|
- ext/boost/mpl/aux_/arity_spec.hpp
|
713
|
+
- ext/boost/mpl/aux_/at_impl.hpp
|
714
|
+
- ext/boost/mpl/aux_/begin_end_impl.hpp
|
715
|
+
- ext/boost/mpl/aux_/clear_impl.hpp
|
673
716
|
- ext/boost/mpl/aux_/common_name_wknd.hpp
|
717
|
+
- ext/boost/mpl/aux_/comparison_op.hpp
|
674
718
|
- ext/boost/mpl/aux_/config/adl.hpp
|
675
719
|
- ext/boost/mpl/aux_/config/arrays.hpp
|
676
720
|
- ext/boost/mpl/aux_/config/bcc.hpp
|
@@ -679,6 +723,7 @@ files:
|
|
679
723
|
- ext/boost/mpl/aux_/config/ctps.hpp
|
680
724
|
- ext/boost/mpl/aux_/config/dtp.hpp
|
681
725
|
- ext/boost/mpl/aux_/config/eti.hpp
|
726
|
+
- ext/boost/mpl/aux_/config/forwarding.hpp
|
682
727
|
- ext/boost/mpl/aux_/config/gcc.hpp
|
683
728
|
- ext/boost/mpl/aux_/config/has_apply.hpp
|
684
729
|
- ext/boost/mpl/aux_/config/has_xxx.hpp
|
@@ -693,22 +738,43 @@ files:
|
|
693
738
|
- ext/boost/mpl/aux_/config/preprocessor.hpp
|
694
739
|
- ext/boost/mpl/aux_/config/static_constant.hpp
|
695
740
|
- ext/boost/mpl/aux_/config/ttp.hpp
|
741
|
+
- ext/boost/mpl/aux_/config/typeof.hpp
|
696
742
|
- ext/boost/mpl/aux_/config/use_preprocessed.hpp
|
697
743
|
- ext/boost/mpl/aux_/config/workaround.hpp
|
744
|
+
- ext/boost/mpl/aux_/contains_impl.hpp
|
745
|
+
- ext/boost/mpl/aux_/find_if_pred.hpp
|
746
|
+
- ext/boost/mpl/aux_/fold_impl.hpp
|
698
747
|
- ext/boost/mpl/aux_/full_lambda.hpp
|
699
748
|
- ext/boost/mpl/aux_/has_apply.hpp
|
749
|
+
- ext/boost/mpl/aux_/has_begin.hpp
|
750
|
+
- ext/boost/mpl/aux_/has_size.hpp
|
751
|
+
- ext/boost/mpl/aux_/has_tag.hpp
|
700
752
|
- ext/boost/mpl/aux_/has_type.hpp
|
701
753
|
- ext/boost/mpl/aux_/include_preprocessed.hpp
|
754
|
+
- ext/boost/mpl/aux_/inserter_algorithm.hpp
|
702
755
|
- ext/boost/mpl/aux_/integral_wrapper.hpp
|
756
|
+
- ext/boost/mpl/aux_/is_msvc_eti_arg.hpp
|
757
|
+
- ext/boost/mpl/aux_/iter_apply.hpp
|
758
|
+
- ext/boost/mpl/aux_/iter_fold_if_impl.hpp
|
759
|
+
- ext/boost/mpl/aux_/iter_fold_impl.hpp
|
703
760
|
- ext/boost/mpl/aux_/lambda_arity_param.hpp
|
761
|
+
- ext/boost/mpl/aux_/lambda_spec.hpp
|
704
762
|
- ext/boost/mpl/aux_/lambda_support.hpp
|
763
|
+
- ext/boost/mpl/aux_/largest_int.hpp
|
764
|
+
- ext/boost/mpl/aux_/msvc_eti_base.hpp
|
705
765
|
- ext/boost/mpl/aux_/msvc_never_true.hpp
|
766
|
+
- ext/boost/mpl/aux_/msvc_type.hpp
|
706
767
|
- ext/boost/mpl/aux_/na.hpp
|
707
768
|
- ext/boost/mpl/aux_/na_assert.hpp
|
708
769
|
- ext/boost/mpl/aux_/na_fwd.hpp
|
709
770
|
- ext/boost/mpl/aux_/na_spec.hpp
|
710
771
|
- ext/boost/mpl/aux_/nested_type_wknd.hpp
|
711
772
|
- ext/boost/mpl/aux_/nttp_decl.hpp
|
773
|
+
- ext/boost/mpl/aux_/numeric_cast_utils.hpp
|
774
|
+
- ext/boost/mpl/aux_/numeric_op.hpp
|
775
|
+
- ext/boost/mpl/aux_/O1_size_impl.hpp
|
776
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp
|
777
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp
|
712
778
|
- ext/boost/mpl/aux_/preprocessed/gcc/and.hpp
|
713
779
|
- ext/boost/mpl/aux_/preprocessed/gcc/apply.hpp
|
714
780
|
- ext/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp
|
@@ -716,48 +782,170 @@ files:
|
|
716
782
|
- ext/boost/mpl/aux_/preprocessed/gcc/arg.hpp
|
717
783
|
- ext/boost/mpl/aux_/preprocessed/gcc/bind.hpp
|
718
784
|
- ext/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp
|
785
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp
|
786
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp
|
719
787
|
- ext/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp
|
788
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/greater.hpp
|
789
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/greater_equal.hpp
|
790
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/iter_fold_if_impl.hpp
|
791
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp
|
792
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/less.hpp
|
793
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/less_equal.hpp
|
794
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/list.hpp
|
795
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/minus.hpp
|
796
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/not_equal_to.hpp
|
720
797
|
- ext/boost/mpl/aux_/preprocessed/gcc/or.hpp
|
721
798
|
- ext/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp
|
799
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/plus.hpp
|
722
800
|
- ext/boost/mpl/aux_/preprocessed/gcc/quote.hpp
|
801
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/reverse_fold_impl.hpp
|
723
802
|
- ext/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp
|
803
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/times.hpp
|
804
|
+
- ext/boost/mpl/aux_/preprocessed/gcc/vector.hpp
|
724
805
|
- ext/boost/mpl/aux_/preprocessor/def_params_tail.hpp
|
806
|
+
- ext/boost/mpl/aux_/preprocessor/default_params.hpp
|
725
807
|
- ext/boost/mpl/aux_/preprocessor/enum.hpp
|
726
808
|
- ext/boost/mpl/aux_/preprocessor/filter_params.hpp
|
727
809
|
- ext/boost/mpl/aux_/preprocessor/params.hpp
|
728
810
|
- ext/boost/mpl/aux_/preprocessor/sub.hpp
|
811
|
+
- ext/boost/mpl/aux_/push_back_impl.hpp
|
812
|
+
- ext/boost/mpl/aux_/push_front_impl.hpp
|
813
|
+
- ext/boost/mpl/aux_/reverse_fold_impl.hpp
|
814
|
+
- ext/boost/mpl/aux_/size_impl.hpp
|
729
815
|
- ext/boost/mpl/aux_/static_cast.hpp
|
730
816
|
- ext/boost/mpl/aux_/template_arity.hpp
|
731
817
|
- ext/boost/mpl/aux_/template_arity_fwd.hpp
|
818
|
+
- ext/boost/mpl/aux_/traits_lambda_spec.hpp
|
732
819
|
- ext/boost/mpl/aux_/type_wrapper.hpp
|
733
820
|
- ext/boost/mpl/aux_/value_wknd.hpp
|
734
821
|
- ext/boost/mpl/aux_/yes_no.hpp
|
822
|
+
- ext/boost/mpl/back_fwd.hpp
|
823
|
+
- ext/boost/mpl/back_inserter.hpp
|
824
|
+
- ext/boost/mpl/begin_end.hpp
|
825
|
+
- ext/boost/mpl/begin_end_fwd.hpp
|
735
826
|
- ext/boost/mpl/bind.hpp
|
736
827
|
- ext/boost/mpl/bind_fwd.hpp
|
737
828
|
- ext/boost/mpl/bool.hpp
|
738
829
|
- ext/boost/mpl/bool_fwd.hpp
|
830
|
+
- ext/boost/mpl/clear.hpp
|
831
|
+
- ext/boost/mpl/clear_fwd.hpp
|
832
|
+
- ext/boost/mpl/comparison.hpp
|
833
|
+
- ext/boost/mpl/contains.hpp
|
834
|
+
- ext/boost/mpl/contains_fwd.hpp
|
835
|
+
- ext/boost/mpl/deref.hpp
|
836
|
+
- ext/boost/mpl/distance.hpp
|
837
|
+
- ext/boost/mpl/distance_fwd.hpp
|
838
|
+
- ext/boost/mpl/empty_fwd.hpp
|
839
|
+
- ext/boost/mpl/equal_to.hpp
|
739
840
|
- ext/boost/mpl/eval_if.hpp
|
841
|
+
- ext/boost/mpl/find.hpp
|
842
|
+
- ext/boost/mpl/find_if.hpp
|
843
|
+
- ext/boost/mpl/fold.hpp
|
844
|
+
- ext/boost/mpl/front_fwd.hpp
|
845
|
+
- ext/boost/mpl/front_inserter.hpp
|
846
|
+
- ext/boost/mpl/greater.hpp
|
847
|
+
- ext/boost/mpl/greater_equal.hpp
|
740
848
|
- ext/boost/mpl/has_xxx.hpp
|
741
849
|
- ext/boost/mpl/identity.hpp
|
742
850
|
- ext/boost/mpl/if.hpp
|
851
|
+
- ext/boost/mpl/inserter.hpp
|
743
852
|
- ext/boost/mpl/int.hpp
|
744
853
|
- ext/boost/mpl/int_fwd.hpp
|
745
854
|
- ext/boost/mpl/integral_c.hpp
|
746
855
|
- ext/boost/mpl/integral_c_fwd.hpp
|
747
856
|
- ext/boost/mpl/integral_c_tag.hpp
|
857
|
+
- ext/boost/mpl/iter_fold.hpp
|
858
|
+
- ext/boost/mpl/iter_fold_if.hpp
|
859
|
+
- ext/boost/mpl/iterator_range.hpp
|
860
|
+
- ext/boost/mpl/iterator_tags.hpp
|
748
861
|
- ext/boost/mpl/lambda.hpp
|
749
862
|
- ext/boost/mpl/lambda_fwd.hpp
|
863
|
+
- ext/boost/mpl/less.hpp
|
864
|
+
- ext/boost/mpl/less_equal.hpp
|
750
865
|
- ext/boost/mpl/limits/arity.hpp
|
866
|
+
- ext/boost/mpl/limits/list.hpp
|
867
|
+
- ext/boost/mpl/limits/vector.hpp
|
868
|
+
- ext/boost/mpl/list/aux_/begin_end.hpp
|
869
|
+
- ext/boost/mpl/list/aux_/clear.hpp
|
870
|
+
- ext/boost/mpl/list/aux_/empty.hpp
|
871
|
+
- ext/boost/mpl/list/aux_/front.hpp
|
872
|
+
- ext/boost/mpl/list/aux_/include_preprocessed.hpp
|
873
|
+
- ext/boost/mpl/list/aux_/item.hpp
|
874
|
+
- ext/boost/mpl/list/aux_/iterator.hpp
|
875
|
+
- ext/boost/mpl/list/aux_/O1_size.hpp
|
876
|
+
- ext/boost/mpl/list/aux_/pop_front.hpp
|
877
|
+
- ext/boost/mpl/list/aux_/preprocessed/plain/list10.hpp
|
878
|
+
- ext/boost/mpl/list/aux_/preprocessed/plain/list20.hpp
|
879
|
+
- ext/boost/mpl/list/aux_/push_back.hpp
|
880
|
+
- ext/boost/mpl/list/aux_/push_front.hpp
|
881
|
+
- ext/boost/mpl/list/aux_/size.hpp
|
882
|
+
- ext/boost/mpl/list/aux_/tag.hpp
|
883
|
+
- ext/boost/mpl/list/list0.hpp
|
884
|
+
- ext/boost/mpl/list/list10.hpp
|
885
|
+
- ext/boost/mpl/list/list20.hpp
|
886
|
+
- ext/boost/mpl/list.hpp
|
751
887
|
- ext/boost/mpl/logical.hpp
|
888
|
+
- ext/boost/mpl/long.hpp
|
889
|
+
- ext/boost/mpl/long_fwd.hpp
|
890
|
+
- ext/boost/mpl/minus.hpp
|
891
|
+
- ext/boost/mpl/multiplies.hpp
|
892
|
+
- ext/boost/mpl/negate.hpp
|
752
893
|
- ext/boost/mpl/next.hpp
|
753
894
|
- ext/boost/mpl/next_prior.hpp
|
754
895
|
- ext/boost/mpl/not.hpp
|
896
|
+
- ext/boost/mpl/not_equal_to.hpp
|
897
|
+
- ext/boost/mpl/numeric_cast.hpp
|
898
|
+
- ext/boost/mpl/O1_size.hpp
|
899
|
+
- ext/boost/mpl/O1_size_fwd.hpp
|
755
900
|
- ext/boost/mpl/or.hpp
|
901
|
+
- ext/boost/mpl/pair.hpp
|
756
902
|
- ext/boost/mpl/placeholders.hpp
|
903
|
+
- ext/boost/mpl/plus.hpp
|
904
|
+
- ext/boost/mpl/pop_back_fwd.hpp
|
905
|
+
- ext/boost/mpl/pop_front_fwd.hpp
|
906
|
+
- ext/boost/mpl/prior.hpp
|
757
907
|
- ext/boost/mpl/protect.hpp
|
908
|
+
- ext/boost/mpl/push_back.hpp
|
909
|
+
- ext/boost/mpl/push_back_fwd.hpp
|
910
|
+
- ext/boost/mpl/push_front.hpp
|
911
|
+
- ext/boost/mpl/push_front_fwd.hpp
|
758
912
|
- ext/boost/mpl/quote.hpp
|
913
|
+
- ext/boost/mpl/remove_if.hpp
|
914
|
+
- ext/boost/mpl/reverse_fold.hpp
|
915
|
+
- ext/boost/mpl/same_as.hpp
|
916
|
+
- ext/boost/mpl/sequence_tag.hpp
|
917
|
+
- ext/boost/mpl/sequence_tag_fwd.hpp
|
918
|
+
- ext/boost/mpl/size.hpp
|
919
|
+
- ext/boost/mpl/size_fwd.hpp
|
759
920
|
- ext/boost/mpl/size_t.hpp
|
760
921
|
- ext/boost/mpl/size_t_fwd.hpp
|
922
|
+
- ext/boost/mpl/tag.hpp
|
923
|
+
- ext/boost/mpl/times.hpp
|
924
|
+
- ext/boost/mpl/vector/aux_/at.hpp
|
925
|
+
- ext/boost/mpl/vector/aux_/back.hpp
|
926
|
+
- ext/boost/mpl/vector/aux_/begin_end.hpp
|
927
|
+
- ext/boost/mpl/vector/aux_/clear.hpp
|
928
|
+
- ext/boost/mpl/vector/aux_/empty.hpp
|
929
|
+
- ext/boost/mpl/vector/aux_/front.hpp
|
930
|
+
- ext/boost/mpl/vector/aux_/include_preprocessed.hpp
|
931
|
+
- ext/boost/mpl/vector/aux_/item.hpp
|
932
|
+
- ext/boost/mpl/vector/aux_/iterator.hpp
|
933
|
+
- ext/boost/mpl/vector/aux_/O1_size.hpp
|
934
|
+
- ext/boost/mpl/vector/aux_/pop_back.hpp
|
935
|
+
- ext/boost/mpl/vector/aux_/pop_front.hpp
|
936
|
+
- ext/boost/mpl/vector/aux_/preprocessed/plain/vector10.hpp
|
937
|
+
- ext/boost/mpl/vector/aux_/preprocessed/plain/vector20.hpp
|
938
|
+
- ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector10.hpp
|
939
|
+
- ext/boost/mpl/vector/aux_/preprocessed/typeof_based/vector20.hpp
|
940
|
+
- ext/boost/mpl/vector/aux_/push_back.hpp
|
941
|
+
- ext/boost/mpl/vector/aux_/push_front.hpp
|
942
|
+
- ext/boost/mpl/vector/aux_/size.hpp
|
943
|
+
- ext/boost/mpl/vector/aux_/tag.hpp
|
944
|
+
- ext/boost/mpl/vector/aux_/vector0.hpp
|
945
|
+
- ext/boost/mpl/vector/vector0.hpp
|
946
|
+
- ext/boost/mpl/vector/vector10.hpp
|
947
|
+
- ext/boost/mpl/vector/vector20.hpp
|
948
|
+
- ext/boost/mpl/vector.hpp
|
761
949
|
- ext/boost/mpl/void.hpp
|
762
950
|
- ext/boost/mpl/void_fwd.hpp
|
763
951
|
- ext/boost/next_prior.hpp
|
@@ -765,10 +953,30 @@ files:
|
|
765
953
|
- ext/boost/noncopyable.hpp
|
766
954
|
- ext/boost/none.hpp
|
767
955
|
- ext/boost/none_t.hpp
|
956
|
+
- ext/boost/numeric/conversion/bounds.hpp
|
957
|
+
- ext/boost/numeric/conversion/cast.hpp
|
958
|
+
- ext/boost/numeric/conversion/conversion_traits.hpp
|
959
|
+
- ext/boost/numeric/conversion/converter.hpp
|
960
|
+
- ext/boost/numeric/conversion/converter_policies.hpp
|
961
|
+
- ext/boost/numeric/conversion/detail/bounds.hpp
|
962
|
+
- ext/boost/numeric/conversion/detail/conversion_traits.hpp
|
963
|
+
- ext/boost/numeric/conversion/detail/converter.hpp
|
964
|
+
- ext/boost/numeric/conversion/detail/int_float_mixture.hpp
|
965
|
+
- ext/boost/numeric/conversion/detail/is_subranged.hpp
|
966
|
+
- ext/boost/numeric/conversion/detail/meta.hpp
|
967
|
+
- ext/boost/numeric/conversion/detail/numeric_cast_traits.hpp
|
968
|
+
- ext/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_common.hpp
|
969
|
+
- ext/boost/numeric/conversion/detail/preprocessed/numeric_cast_traits_long_long.hpp
|
970
|
+
- ext/boost/numeric/conversion/detail/sign_mixture.hpp
|
971
|
+
- ext/boost/numeric/conversion/detail/udt_builtin_mixture.hpp
|
972
|
+
- ext/boost/numeric/conversion/int_float_mixture_enum.hpp
|
973
|
+
- ext/boost/numeric/conversion/numeric_cast_traits.hpp
|
974
|
+
- ext/boost/numeric/conversion/sign_mixture_enum.hpp
|
975
|
+
- ext/boost/numeric/conversion/udt_builtin_mixture_enum.hpp
|
768
976
|
- ext/boost/operators.hpp
|
769
|
-
- ext/boost/optional.hpp
|
770
977
|
- ext/boost/optional/optional.hpp
|
771
978
|
- ext/boost/optional/optional_fwd.hpp
|
979
|
+
- ext/boost/optional.hpp
|
772
980
|
- ext/boost/preprocessor/arithmetic/add.hpp
|
773
981
|
- ext/boost/preprocessor/arithmetic/dec.hpp
|
774
982
|
- ext/boost/preprocessor/arithmetic/detail/div_base.hpp
|
@@ -797,6 +1005,8 @@ files:
|
|
797
1005
|
- ext/boost/preprocessor/enum_params.hpp
|
798
1006
|
- ext/boost/preprocessor/facilities/empty.hpp
|
799
1007
|
- ext/boost/preprocessor/facilities/identity.hpp
|
1008
|
+
- ext/boost/preprocessor/facilities/intercept.hpp
|
1009
|
+
- ext/boost/preprocessor/facilities/overload.hpp
|
800
1010
|
- ext/boost/preprocessor/identity.hpp
|
801
1011
|
- ext/boost/preprocessor/inc.hpp
|
802
1012
|
- ext/boost/preprocessor/iterate.hpp
|
@@ -820,11 +1030,13 @@ files:
|
|
820
1030
|
- ext/boost/preprocessor/logical/not.hpp
|
821
1031
|
- ext/boost/preprocessor/punctuation/comma.hpp
|
822
1032
|
- ext/boost/preprocessor/punctuation/comma_if.hpp
|
1033
|
+
- ext/boost/preprocessor/punctuation/paren.hpp
|
823
1034
|
- ext/boost/preprocessor/repeat.hpp
|
824
1035
|
- ext/boost/preprocessor/repetition/detail/for.hpp
|
825
1036
|
- ext/boost/preprocessor/repetition/enum.hpp
|
826
1037
|
- ext/boost/preprocessor/repetition/enum_binary_params.hpp
|
827
1038
|
- ext/boost/preprocessor/repetition/enum_params.hpp
|
1039
|
+
- ext/boost/preprocessor/repetition/enum_shifted_params.hpp
|
828
1040
|
- ext/boost/preprocessor/repetition/enum_trailing_params.hpp
|
829
1041
|
- ext/boost/preprocessor/repetition/for.hpp
|
830
1042
|
- ext/boost/preprocessor/repetition/repeat.hpp
|
@@ -845,6 +1057,8 @@ files:
|
|
845
1057
|
- ext/boost/preprocessor/tuple/elem.hpp
|
846
1058
|
- ext/boost/preprocessor/tuple/rem.hpp
|
847
1059
|
- ext/boost/preprocessor/tuple/to_list.hpp
|
1060
|
+
- ext/boost/preprocessor/variadic/elem.hpp
|
1061
|
+
- ext/boost/preprocessor/variadic/size.hpp
|
848
1062
|
- ext/boost/range/algorithm/equal.hpp
|
849
1063
|
- ext/boost/range/as_literal.hpp
|
850
1064
|
- ext/boost/range/begin.hpp
|
@@ -855,6 +1069,7 @@ files:
|
|
855
1069
|
- ext/boost/range/detail/extract_optional_type.hpp
|
856
1070
|
- ext/boost/range/detail/implementation_help.hpp
|
857
1071
|
- ext/boost/range/detail/misc_concept.hpp
|
1072
|
+
- ext/boost/range/detail/safe_bool.hpp
|
858
1073
|
- ext/boost/range/detail/sfinae.hpp
|
859
1074
|
- ext/boost/range/detail/str_types.hpp
|
860
1075
|
- ext/boost/range/difference_type.hpp
|
@@ -891,6 +1106,7 @@ files:
|
|
891
1106
|
- ext/boost/smart_ptr/detail/sp_convertible.hpp
|
892
1107
|
- ext/boost/smart_ptr/detail/sp_counted_base.hpp
|
893
1108
|
- ext/boost/smart_ptr/detail/sp_counted_base_acc_ia64.hpp
|
1109
|
+
- ext/boost/smart_ptr/detail/sp_counted_base_aix.hpp
|
894
1110
|
- ext/boost/smart_ptr/detail/sp_counted_base_cw_ppc.hpp
|
895
1111
|
- ext/boost/smart_ptr/detail/sp_counted_base_cw_x86.hpp
|
896
1112
|
- ext/boost/smart_ptr/detail/sp_counted_base_gcc_ia64.hpp
|
@@ -925,7 +1141,6 @@ files:
|
|
925
1141
|
- ext/boost/src/pthread/timeconv.inl
|
926
1142
|
- ext/boost/src/tss_null.cpp
|
927
1143
|
- ext/boost/static_assert.hpp
|
928
|
-
- ext/boost/thread.hpp
|
929
1144
|
- ext/boost/thread/barrier.hpp
|
930
1145
|
- ext/boost/thread/condition.hpp
|
931
1146
|
- ext/boost/thread/condition_variable.hpp
|
@@ -960,6 +1175,7 @@ files:
|
|
960
1175
|
- ext/boost/thread/thread_time.hpp
|
961
1176
|
- ext/boost/thread/tss.hpp
|
962
1177
|
- ext/boost/thread/xtime.hpp
|
1178
|
+
- ext/boost/thread.hpp
|
963
1179
|
- ext/boost/throw_exception.hpp
|
964
1180
|
- ext/boost/token_functions.hpp
|
965
1181
|
- ext/boost/token_iterator.hpp
|
@@ -968,6 +1184,7 @@ files:
|
|
968
1184
|
- ext/boost/type_traits/add_const.hpp
|
969
1185
|
- ext/boost/type_traits/add_pointer.hpp
|
970
1186
|
- ext/boost/type_traits/add_reference.hpp
|
1187
|
+
- ext/boost/type_traits/add_rvalue_reference.hpp
|
971
1188
|
- ext/boost/type_traits/add_volatile.hpp
|
972
1189
|
- ext/boost/type_traits/alignment_of.hpp
|
973
1190
|
- ext/boost/type_traits/broken_compiler_spec.hpp
|
@@ -991,7 +1208,9 @@ files:
|
|
991
1208
|
- ext/boost/type_traits/detail/type_trait_undef.hpp
|
992
1209
|
- ext/boost/type_traits/detail/yes_no_type.hpp
|
993
1210
|
- ext/boost/type_traits/function_traits.hpp
|
1211
|
+
- ext/boost/type_traits/has_nothrow_constructor.hpp
|
994
1212
|
- ext/boost/type_traits/has_nothrow_copy.hpp
|
1213
|
+
- ext/boost/type_traits/has_trivial_constructor.hpp
|
995
1214
|
- ext/boost/type_traits/has_trivial_copy.hpp
|
996
1215
|
- ext/boost/type_traits/has_trivial_destructor.hpp
|
997
1216
|
- ext/boost/type_traits/ice.hpp
|
@@ -1007,6 +1226,7 @@ files:
|
|
1007
1226
|
- ext/boost/type_traits/is_convertible.hpp
|
1008
1227
|
- ext/boost/type_traits/is_enum.hpp
|
1009
1228
|
- ext/boost/type_traits/is_float.hpp
|
1229
|
+
- ext/boost/type_traits/is_floating_point.hpp
|
1010
1230
|
- ext/boost/type_traits/is_function.hpp
|
1011
1231
|
- ext/boost/type_traits/is_fundamental.hpp
|
1012
1232
|
- ext/boost/type_traits/is_integral.hpp
|
@@ -1031,158 +1251,197 @@ files:
|
|
1031
1251
|
- ext/boost/type_traits/remove_reference.hpp
|
1032
1252
|
- ext/boost/type_traits/type_with_alignment.hpp
|
1033
1253
|
- ext/boost/units/detail/utility.hpp
|
1034
|
-
- ext/boost/utility.hpp
|
1035
1254
|
- ext/boost/utility/addressof.hpp
|
1036
1255
|
- ext/boost/utility/base_from_member.hpp
|
1037
1256
|
- ext/boost/utility/binary.hpp
|
1038
1257
|
- ext/boost/utility/compare_pointees.hpp
|
1258
|
+
- ext/boost/utility/declval.hpp
|
1259
|
+
- ext/boost/utility/detail/in_place_factory_prefix.hpp
|
1260
|
+
- ext/boost/utility/detail/in_place_factory_suffix.hpp
|
1261
|
+
- ext/boost/utility/detail/result_of_iterate.hpp
|
1039
1262
|
- ext/boost/utility/enable_if.hpp
|
1263
|
+
- ext/boost/utility/in_place_factory.hpp
|
1264
|
+
- ext/boost/utility/result_of.hpp
|
1265
|
+
- ext/boost/utility/swap.hpp
|
1266
|
+
- ext/boost/utility.hpp
|
1040
1267
|
- ext/boost/visit_each.hpp
|
1041
1268
|
- ext/boost/weak_ptr.hpp
|
1042
|
-
- ext/google/COPYING
|
1043
|
-
- ext/google/ChangeLog
|
1044
|
-
- ext/google/dense_hash_map
|
1045
|
-
- ext/google/dense_hash_set
|
1046
|
-
- ext/google/sparse_hash_map
|
1047
|
-
- ext/google/sparse_hash_set
|
1048
|
-
- ext/google/sparsehash/densehashtable.h
|
1049
|
-
- ext/google/sparsehash/sparseconfig.h
|
1050
|
-
- ext/google/sparsehash/sparsehashtable.h
|
1051
|
-
- ext/google/sparsetable
|
1052
|
-
- ext/google/type_traits.h
|
1053
|
-
- ext/libev/Changes
|
1054
1269
|
- ext/libev/LICENSE
|
1270
|
+
- ext/libev/Changes
|
1271
|
+
- ext/libev/README
|
1055
1272
|
- ext/libev/Makefile.am
|
1056
1273
|
- ext/libev/Makefile.in
|
1057
|
-
- ext/libev/README
|
1058
1274
|
- ext/libev/aclocal.m4
|
1275
|
+
- ext/libev/libev.m4
|
1059
1276
|
- ext/libev/autogen.sh
|
1060
1277
|
- ext/libev/config.guess
|
1061
1278
|
- ext/libev/config.h.in
|
1062
1279
|
- ext/libev/config.sub
|
1063
|
-
- ext/libev/libev.m4
|
1064
1280
|
- ext/libev/configure
|
1065
1281
|
- ext/libev/configure.ac
|
1282
|
+
- ext/libev/depcomp
|
1066
1283
|
- ext/libev/install-sh
|
1067
1284
|
- ext/libev/ltmain.sh
|
1068
1285
|
- ext/libev/missing
|
1069
1286
|
- ext/libev/mkinstalldirs
|
1070
1287
|
- ext/libev/ev++.h
|
1071
|
-
- ext/libev/ev.c
|
1072
1288
|
- ext/libev/ev.h
|
1289
|
+
- ext/libev/ev_vars.h
|
1290
|
+
- ext/libev/ev_wrap.h
|
1291
|
+
- ext/libev/event.h
|
1292
|
+
- ext/libev/ev.c
|
1073
1293
|
- ext/libev/ev_epoll.c
|
1074
1294
|
- ext/libev/ev_kqueue.c
|
1075
1295
|
- ext/libev/ev_poll.c
|
1076
1296
|
- ext/libev/ev_port.c
|
1077
1297
|
- ext/libev/ev_select.c
|
1078
|
-
- ext/libev/ev_vars.h
|
1079
1298
|
- ext/libev/ev_win32.c
|
1080
|
-
- ext/libev/ev_wrap.h
|
1081
1299
|
- ext/libev/event.c
|
1082
|
-
- ext/
|
1300
|
+
- ext/libeio/LICENSE
|
1301
|
+
- ext/libeio/Changes
|
1302
|
+
- ext/libeio/Makefile.am
|
1303
|
+
- ext/libeio/Makefile.in
|
1304
|
+
- ext/libeio/aclocal.m4
|
1305
|
+
- ext/libeio/libeio.m4
|
1306
|
+
- ext/libeio/autogen.sh
|
1307
|
+
- ext/libeio/config.guess
|
1308
|
+
- ext/libeio/config.h.in
|
1309
|
+
- ext/libeio/config.sub
|
1310
|
+
- ext/libeio/configure
|
1311
|
+
- ext/libeio/configure.ac
|
1312
|
+
- ext/libeio/install-sh
|
1313
|
+
- ext/libeio/ltmain.sh
|
1314
|
+
- ext/libeio/missing
|
1315
|
+
- ext/libeio/ecb.h
|
1316
|
+
- ext/libeio/eio.h
|
1317
|
+
- ext/libeio/xthread.h
|
1318
|
+
- ext/libeio/demo.c
|
1319
|
+
- ext/libeio/eio.c
|
1083
1320
|
- ext/oxt/backtrace.hpp
|
1084
1321
|
- ext/oxt/dynamic_thread_group.hpp
|
1322
|
+
- ext/oxt/initialize.hpp
|
1085
1323
|
- ext/oxt/macros.hpp
|
1086
1324
|
- ext/oxt/spin_lock.hpp
|
1087
1325
|
- ext/oxt/system_calls.hpp
|
1088
1326
|
- ext/oxt/thread.hpp
|
1089
1327
|
- ext/oxt/tracable_exception.hpp
|
1090
|
-
- ext/oxt/
|
1328
|
+
- ext/oxt/implementation.cpp
|
1091
1329
|
- ext/oxt/system_calls.cpp
|
1092
|
-
- ext/oxt/thread.cpp
|
1093
|
-
- ext/oxt/tracable_exception.cpp
|
1094
1330
|
- ext/oxt/detail/backtrace_disabled.hpp
|
1095
1331
|
- ext/oxt/detail/backtrace_enabled.hpp
|
1332
|
+
- ext/oxt/detail/context.hpp
|
1096
1333
|
- ext/oxt/detail/spin_lock_darwin.hpp
|
1097
1334
|
- ext/oxt/detail/spin_lock_gcc_x86.hpp
|
1098
1335
|
- ext/oxt/detail/spin_lock_portable.hpp
|
1099
1336
|
- ext/oxt/detail/spin_lock_pthreads.hpp
|
1100
1337
|
- ext/oxt/detail/tracable_exception_disabled.hpp
|
1101
1338
|
- ext/oxt/detail/tracable_exception_enabled.hpp
|
1102
|
-
- ext/ruby/extconf.rb
|
1103
1339
|
- ext/ruby/passenger_native_support.c
|
1340
|
+
- ext/ruby/extconf.rb
|
1104
1341
|
- dev/copy_boost_headers.rb
|
1105
1342
|
- dev/find_owner_pipe_leaks.rb
|
1106
1343
|
- dev/render_error_pages.rb
|
1107
1344
|
- resources/mime.types
|
1345
|
+
- resources/standalone_default_root/index.html
|
1346
|
+
- resources/templates/apache2/apache_must_be_compiled_with_compatible_mpm.txt.erb
|
1347
|
+
- resources/templates/apache2/config_snippets.txt.erb
|
1348
|
+
- resources/templates/apache2/deployment_example.txt.erb
|
1349
|
+
- resources/templates/apache2/no_write_permission_to_passenger_root.txt.erb
|
1350
|
+
- resources/templates/apache2/possible_solutions_for_compilation_and_installation_problems.txt.erb
|
1351
|
+
- resources/templates/apache2/run_installer_as_root.txt.erb
|
1352
|
+
- resources/templates/apache2/welcome.txt.erb
|
1353
|
+
- resources/templates/error_layout.css
|
1354
|
+
- resources/templates/error_layout.html.template
|
1355
|
+
- resources/templates/general_error.html.template
|
1356
|
+
- resources/templates/general_error_with_html.html.template
|
1357
|
+
- resources/templates/nginx/ask_for_extra_configure_flags.txt.erb
|
1358
|
+
- resources/templates/nginx/cannot_write_to_dir.txt.erb
|
1359
|
+
- resources/templates/nginx/config_snippets.txt.erb
|
1360
|
+
- resources/templates/nginx/config_snippets_inserted.txt.erb
|
1361
|
+
- resources/templates/nginx/confirm_extra_configure_flags.txt.erb
|
1362
|
+
- resources/templates/nginx/deployment_example.txt.erb
|
1363
|
+
- resources/templates/nginx/not_available_when_natively_packaged.txt.erb
|
1364
|
+
- resources/templates/nginx/pcre_could_not_be_downloaded.txt.erb
|
1365
|
+
- resources/templates/nginx/pcre_could_not_be_extracted.txt.erb
|
1366
|
+
- resources/templates/nginx/possible_solutions_for_compilation_and_installation_problems.txt.erb
|
1367
|
+
- resources/templates/nginx/possible_solutions_for_download_and_extraction_problems.txt.erb
|
1368
|
+
- resources/templates/nginx/query_download_and_install.txt.erb
|
1369
|
+
- resources/templates/nginx/run_installer_as_root.txt.erb
|
1370
|
+
- resources/templates/nginx/welcome.txt.erb
|
1371
|
+
- resources/templates/standalone/cannot_write_to_dir.txt.erb
|
1372
|
+
- resources/templates/standalone/config.erb
|
1373
|
+
- resources/templates/standalone/possible_solutions_for_download_and_extraction_problems.txt.erb
|
1374
|
+
- resources/templates/standalone/run_installer_as_root.txt.erb
|
1375
|
+
- resources/templates/standalone/welcome.txt.erb
|
1376
|
+
- resources/templates/undisclosed_error.html.template
|
1108
1377
|
- resources/union_station_gateway.crt
|
1109
|
-
- test/config.
|
1378
|
+
- test/config.json.example
|
1110
1379
|
- test/support/allocate_memory.c
|
1380
|
+
- test/support/valgrind.h
|
1111
1381
|
- test/support/apache2_controller.rb
|
1112
1382
|
- test/support/multipart.rb
|
1113
1383
|
- test/support/nginx_controller.rb
|
1384
|
+
- test/support/placebo-preloader.rb
|
1114
1385
|
- test/support/test_helper.rb
|
1115
|
-
- test/support/valgrind.h
|
1116
1386
|
- test/tut/tut.h
|
1117
1387
|
- test/tut/tut_reporter.h
|
1118
|
-
- test/cxx/
|
1119
|
-
- test/cxx/
|
1120
|
-
- test/cxx/
|
1121
|
-
- test/cxx/
|
1388
|
+
- test/cxx/ApplicationPool2/DirectSpawnerTest.cpp
|
1389
|
+
- test/cxx/ApplicationPool2/OptionsTest.cpp
|
1390
|
+
- test/cxx/ApplicationPool2/PoolTest.cpp
|
1391
|
+
- test/cxx/ApplicationPool2/ProcessTest.cpp
|
1392
|
+
- test/cxx/ApplicationPool2/SmartSpawnerTest.cpp
|
1393
|
+
- test/cxx/ApplicationPool2/SpawnerTestCases.cpp
|
1122
1394
|
- test/cxx/Base64Test.cpp
|
1123
1395
|
- test/cxx/BufferedIOTest.cpp
|
1124
1396
|
- test/cxx/CachedFileStatTest.cpp
|
1125
1397
|
- test/cxx/CxxTestMain.cpp
|
1126
1398
|
- test/cxx/DechunkerTest.cpp
|
1127
1399
|
- test/cxx/EventedClientTest.cpp
|
1400
|
+
- test/cxx/FileBackedPipeTest.cpp
|
1128
1401
|
- test/cxx/FileChangeCheckerTest.cpp
|
1129
1402
|
- test/cxx/FileDescriptorTest.cpp
|
1130
1403
|
- test/cxx/FilterSupportTest.cpp
|
1131
1404
|
- test/cxx/HttpHeaderBuffererTest.cpp
|
1132
1405
|
- test/cxx/IOUtilsTest.cpp
|
1133
|
-
- test/cxx/LoggingTest.cpp
|
1134
|
-
- test/cxx/MessageChannelTest.cpp
|
1135
1406
|
- test/cxx/MessageIOTest.cpp
|
1136
1407
|
- test/cxx/MessageReadersWritersTest.cpp
|
1137
1408
|
- test/cxx/MessageServerTest.cpp
|
1138
|
-
- test/cxx/PoolOptionsTest.cpp
|
1139
1409
|
- test/cxx/ProcessMetricsCollectorTest.cpp
|
1410
|
+
- test/cxx/RequestHandlerTest.cpp
|
1140
1411
|
- test/cxx/ScgiRequestParserTest.cpp
|
1141
1412
|
- test/cxx/ServerInstanceDirTest.cpp
|
1142
|
-
- test/cxx/SpawnManagerTest.cpp
|
1143
1413
|
- test/cxx/StaticStringTest.cpp
|
1144
1414
|
- test/cxx/StringMapTest.cpp
|
1145
1415
|
- test/cxx/SystemTimeTest.cpp
|
1416
|
+
- test/cxx/TemplateTest.cpp
|
1146
1417
|
- test/cxx/TestSupport.cpp
|
1147
|
-
- test/cxx/
|
1418
|
+
- test/cxx/UnionStationTest.cpp
|
1148
1419
|
- test/cxx/UtilsTest.cpp
|
1149
1420
|
- test/cxx/VariantMapTest.cpp
|
1421
|
+
- test/cxx/TestSupport.h
|
1150
1422
|
- test/oxt/backtrace_test.cpp
|
1151
|
-
- test/oxt/counter.hpp
|
1152
1423
|
- test/oxt/dynamic_thread_group_test.cpp
|
1153
1424
|
- test/oxt/oxt_test_main.cpp
|
1154
1425
|
- test/oxt/spin_lock_test.cpp
|
1155
1426
|
- test/oxt/syscall_interruption_test.cpp
|
1156
|
-
- test/
|
1157
|
-
- test/ruby/abstract_server_collection_spec.rb
|
1158
|
-
- test/ruby/abstract_server_spec.rb
|
1427
|
+
- test/oxt/counter.hpp
|
1159
1428
|
- test/ruby/admin_tools_spec.rb
|
1160
1429
|
- test/ruby/analytics_logger_spec.rb
|
1161
|
-
- test/ruby/
|
1162
|
-
- test/ruby/classic_rails/
|
1163
|
-
- test/ruby/classic_rails/framework_spawner_spec.rb
|
1430
|
+
- test/ruby/classic_rails/loader_spec.rb
|
1431
|
+
- test/ruby/classic_rails/preloader_spec.rb
|
1164
1432
|
- test/ruby/debug_logging_spec.rb
|
1165
1433
|
- test/ruby/message_channel_spec.rb
|
1166
|
-
- test/ruby/rack/
|
1167
|
-
- test/ruby/
|
1434
|
+
- test/ruby/rack/loader_spec.rb
|
1435
|
+
- test/ruby/rack/preloader_spec.rb
|
1436
|
+
- test/ruby/request_handler_spec.rb
|
1437
|
+
- test/ruby/shared/loader_spec.rb
|
1168
1438
|
- test/ruby/shared/rails/analytics_logging_extensions_spec.rb
|
1169
|
-
- test/ruby/shared/
|
1170
|
-
- test/ruby/shared/spawners/classic_rails/lack_of_rails_gem_version_spec.rb
|
1171
|
-
- test/ruby/shared/spawners/classic_rails/spawner_spec.rb
|
1172
|
-
- test/ruby/shared/spawners/non_preloading_spawner_spec.rb
|
1173
|
-
- test/ruby/shared/spawners/preloading_spawner_spec.rb
|
1174
|
-
- test/ruby/shared/spawners/reload_all_spec.rb
|
1175
|
-
- test/ruby/shared/spawners/reload_single_spec.rb
|
1176
|
-
- test/ruby/shared/spawners/spawn_server_spec.rb
|
1177
|
-
- test/ruby/shared/spawners/spawner_spec.rb
|
1178
|
-
- test/ruby/shared/utils/pseudo_io_spec.rb
|
1179
|
-
- test/ruby/spawn_manager_spec.rb
|
1439
|
+
- test/ruby/shared/ruby_loader_spec.rb
|
1180
1440
|
- test/ruby/spec_helper.rb
|
1181
1441
|
- test/ruby/utils/file_system_watcher_spec.rb
|
1182
1442
|
- test/ruby/utils/hosts_file_parser.rb
|
1183
1443
|
- test/ruby/utils/unseekable_socket_spec.rb
|
1184
1444
|
- test/ruby/utils_spec.rb
|
1185
|
-
- test/ruby/wsgi/application_spawner_spec.rb
|
1186
1445
|
- test/integration_tests/apache2_tests.rb
|
1187
1446
|
- test/integration_tests/cgi_environment_spec.rb
|
1188
1447
|
- test/integration_tests/hello_world_rack_spec.rb
|
@@ -1196,9 +1455,6 @@ files:
|
|
1196
1455
|
- test/stub/garbage2.dat
|
1197
1456
|
- test/stub/garbage3.dat
|
1198
1457
|
- test/stub/http_request.yml
|
1199
|
-
- test/stub/message_channel.rb
|
1200
|
-
- test/stub/message_channel_2.rb
|
1201
|
-
- test/stub/message_channel_3.rb
|
1202
1458
|
- test/stub/nginx/koi-utf
|
1203
1459
|
- test/stub/nginx/koi-win
|
1204
1460
|
- test/stub/nginx/mime.types
|
@@ -1206,7 +1462,69 @@ files:
|
|
1206
1462
|
- test/stub/nginx/win-utf
|
1207
1463
|
- test/stub/rack/config.ru
|
1208
1464
|
- test/stub/rack/public/rack.jpg
|
1209
|
-
- test/stub/
|
1465
|
+
- test/stub/rack/start.rb
|
1466
|
+
- test/stub/rails2.3/app/controllers/application_controller.rb
|
1467
|
+
- test/stub/rails2.3/app/controllers/bar_controller_1.rb
|
1468
|
+
- test/stub/rails2.3/app/controllers/bar_controller_2.rb
|
1469
|
+
- test/stub/rails2.3/app/controllers/foo_controller.rb
|
1470
|
+
- test/stub/rails2.3/app/helpers/application_helper.rb
|
1471
|
+
- test/stub/rails2.3/config/boot.rb
|
1472
|
+
- test/stub/rails2.3/config/database.yml
|
1473
|
+
- test/stub/rails2.3/config/environment.rb
|
1474
|
+
- test/stub/rails2.3/config/environments/development.rb
|
1475
|
+
- test/stub/rails2.3/config/environments/production.rb
|
1476
|
+
- test/stub/rails2.3/config/environments/staging.rb
|
1477
|
+
- test/stub/rails2.3/config/initializers/inflections.rb
|
1478
|
+
- test/stub/rails2.3/config/initializers/mime_types.rb
|
1479
|
+
- test/stub/rails2.3/config/routes.rb
|
1480
|
+
- test/stub/rails2.3/Rakefile
|
1481
|
+
- test/stub/rails2.3/script/about
|
1482
|
+
- test/stub/rails2.3/script/console
|
1483
|
+
- test/stub/rails2.3/script/dbconsole
|
1484
|
+
- test/stub/rails2.3/script/destroy
|
1485
|
+
- test/stub/rails2.3/script/generate
|
1486
|
+
- test/stub/rails2.3/script/performance/benchmarker
|
1487
|
+
- test/stub/rails2.3/script/performance/profiler
|
1488
|
+
- test/stub/rails2.3/script/performance/request
|
1489
|
+
- test/stub/rails2.3/script/plugin
|
1490
|
+
- test/stub/rails2.3/script/process/inspector
|
1491
|
+
- test/stub/rails2.3/script/process/reaper
|
1492
|
+
- test/stub/rails2.3/script/process/spawner
|
1493
|
+
- test/stub/rails2.3/script/runner
|
1494
|
+
- test/stub/rails2.3/script/server
|
1495
|
+
- test/stub/rails3.0/app/controllers/application_controller.rb
|
1496
|
+
- test/stub/rails3.0/app/helpers/application_helper.rb
|
1497
|
+
- test/stub/rails3.0/app/views/layouts/application.html.erb
|
1498
|
+
- test/stub/rails3.0/config/application.rb
|
1499
|
+
- test/stub/rails3.0/config/boot.rb
|
1500
|
+
- test/stub/rails3.0/config/database.yml
|
1501
|
+
- test/stub/rails3.0/config/environment.rb
|
1502
|
+
- test/stub/rails3.0/config/environments/development.rb
|
1503
|
+
- test/stub/rails3.0/config/environments/production.rb
|
1504
|
+
- test/stub/rails3.0/config/environments/test.rb
|
1505
|
+
- test/stub/rails3.0/config/initializers/backtrace_silencers.rb
|
1506
|
+
- test/stub/rails3.0/config/initializers/inflections.rb
|
1507
|
+
- test/stub/rails3.0/config/initializers/mime_types.rb
|
1508
|
+
- test/stub/rails3.0/config/initializers/passenger.rb
|
1509
|
+
- test/stub/rails3.0/config/initializers/secret_token.rb
|
1510
|
+
- test/stub/rails3.0/config/initializers/session_store.rb
|
1511
|
+
- test/stub/rails3.0/config/locales/en.yml
|
1512
|
+
- test/stub/rails3.0/config/routes.rb
|
1513
|
+
- test/stub/rails3.0/config.ru
|
1514
|
+
- test/stub/rails3.0/db/seeds.rb
|
1515
|
+
- test/stub/rails3.0/doc/README_FOR_APP
|
1516
|
+
- test/stub/rails3.0/Gemfile
|
1517
|
+
- test/stub/rails3.0/Gemfile.lock
|
1518
|
+
- test/stub/rails3.0/public/404.html
|
1519
|
+
- test/stub/rails3.0/public/422.html
|
1520
|
+
- test/stub/rails3.0/public/500.html
|
1521
|
+
- test/stub/rails3.0/public/favicon.ico
|
1522
|
+
- test/stub/rails3.0/public/index.html
|
1523
|
+
- test/stub/rails3.0/public/robots.txt
|
1524
|
+
- test/stub/rails3.0/Rakefile
|
1525
|
+
- test/stub/rails3.0/script/rails
|
1526
|
+
- test/stub/rails3.0/test/performance/browsing_test.rb
|
1527
|
+
- test/stub/rails3.0/test/test_helper.rb
|
1210
1528
|
- test/stub/rails_apps/1.2/empty/app/controllers/application.rb
|
1211
1529
|
- test/stub/rails_apps/1.2/empty/app/helpers/application_helper.rb
|
1212
1530
|
- test/stub/rails_apps/1.2/empty/config/boot.rb
|
@@ -1226,6 +1544,7 @@ files:
|
|
1226
1544
|
- test/stub/rails_apps/1.2/empty/public/favicon.ico
|
1227
1545
|
- test/stub/rails_apps/1.2/empty/public/images/rails.png
|
1228
1546
|
- test/stub/rails_apps/1.2/empty/public/robots.txt
|
1547
|
+
- test/stub/rails_apps/1.2/empty/Rakefile
|
1229
1548
|
- test/stub/rails_apps/1.2/empty/script/about
|
1230
1549
|
- test/stub/rails_apps/1.2/empty/script/breakpointer
|
1231
1550
|
- test/stub/rails_apps/1.2/empty/script/console
|
@@ -1240,7 +1559,6 @@ files:
|
|
1240
1559
|
- test/stub/rails_apps/1.2/empty/script/runner
|
1241
1560
|
- test/stub/rails_apps/1.2/empty/script/server
|
1242
1561
|
- test/stub/rails_apps/1.2/empty/test/test_helper.rb
|
1243
|
-
- test/stub/rails_apps/2.0/empty/Rakefile
|
1244
1562
|
- test/stub/rails_apps/2.0/empty/app/controllers/application.rb
|
1245
1563
|
- test/stub/rails_apps/2.0/empty/app/helpers/application_helper.rb
|
1246
1564
|
- test/stub/rails_apps/2.0/empty/config/boot.rb
|
@@ -1263,6 +1581,7 @@ files:
|
|
1263
1581
|
- test/stub/rails_apps/2.0/empty/public/favicon.ico
|
1264
1582
|
- test/stub/rails_apps/2.0/empty/public/images/rails.png
|
1265
1583
|
- test/stub/rails_apps/2.0/empty/public/robots.txt
|
1584
|
+
- test/stub/rails_apps/2.0/empty/Rakefile
|
1266
1585
|
- test/stub/rails_apps/2.0/empty/script/about
|
1267
1586
|
- test/stub/rails_apps/2.0/empty/script/console
|
1268
1587
|
- test/stub/rails_apps/2.0/empty/script/destroy
|
@@ -1277,7 +1596,6 @@ files:
|
|
1277
1596
|
- test/stub/rails_apps/2.0/empty/script/runner
|
1278
1597
|
- test/stub/rails_apps/2.0/empty/script/server
|
1279
1598
|
- test/stub/rails_apps/2.0/empty/test/test_helper.rb
|
1280
|
-
- test/stub/rails_apps/2.2/empty/Rakefile
|
1281
1599
|
- test/stub/rails_apps/2.2/empty/app/controllers/application.rb
|
1282
1600
|
- test/stub/rails_apps/2.2/empty/app/helpers/application_helper.rb
|
1283
1601
|
- test/stub/rails_apps/2.2/empty/config/boot.rb
|
@@ -1302,6 +1620,7 @@ files:
|
|
1302
1620
|
- test/stub/rails_apps/2.2/empty/public/favicon.ico
|
1303
1621
|
- test/stub/rails_apps/2.2/empty/public/images/rails.png
|
1304
1622
|
- test/stub/rails_apps/2.2/empty/public/robots.txt
|
1623
|
+
- test/stub/rails_apps/2.2/empty/Rakefile
|
1305
1624
|
- test/stub/rails_apps/2.2/empty/script/about
|
1306
1625
|
- test/stub/rails_apps/2.2/empty/script/console
|
1307
1626
|
- test/stub/rails_apps/2.2/empty/script/dbconsole
|
@@ -1318,7 +1637,6 @@ files:
|
|
1318
1637
|
- test/stub/rails_apps/2.2/empty/script/server
|
1319
1638
|
- test/stub/rails_apps/2.2/empty/test/performance/browsing_test.rb
|
1320
1639
|
- test/stub/rails_apps/2.2/empty/test/test_helper.rb
|
1321
|
-
- test/stub/rails_apps/2.3/empty/Rakefile
|
1322
1640
|
- test/stub/rails_apps/2.3/empty/app/controllers/application_controller.rb
|
1323
1641
|
- test/stub/rails_apps/2.3/empty/app/helpers/application_helper.rb
|
1324
1642
|
- test/stub/rails_apps/2.3/empty/config/boot.rb
|
@@ -1343,6 +1661,7 @@ files:
|
|
1343
1661
|
- test/stub/rails_apps/2.3/empty/public/favicon.ico
|
1344
1662
|
- test/stub/rails_apps/2.3/empty/public/images/rails.png
|
1345
1663
|
- test/stub/rails_apps/2.3/empty/public/robots.txt
|
1664
|
+
- test/stub/rails_apps/2.3/empty/Rakefile
|
1346
1665
|
- test/stub/rails_apps/2.3/empty/script/about
|
1347
1666
|
- test/stub/rails_apps/2.3/empty/script/console
|
1348
1667
|
- test/stub/rails_apps/2.3/empty/script/dbconsole
|
@@ -1355,36 +1674,6 @@ files:
|
|
1355
1674
|
- test/stub/rails_apps/2.3/empty/script/server
|
1356
1675
|
- test/stub/rails_apps/2.3/empty/test/performance/browsing_test.rb
|
1357
1676
|
- test/stub/rails_apps/2.3/empty/test/test_helper.rb
|
1358
|
-
- test/stub/rails_apps/2.3/foobar/Rakefile
|
1359
|
-
- test/stub/rails_apps/2.3/foobar/app/controllers/application_controller.rb
|
1360
|
-
- test/stub/rails_apps/2.3/foobar/app/controllers/bar_controller_1.rb
|
1361
|
-
- test/stub/rails_apps/2.3/foobar/app/controllers/bar_controller_2.rb
|
1362
|
-
- test/stub/rails_apps/2.3/foobar/app/controllers/foo_controller.rb
|
1363
|
-
- test/stub/rails_apps/2.3/foobar/app/helpers/application_helper.rb
|
1364
|
-
- test/stub/rails_apps/2.3/foobar/config/boot.rb
|
1365
|
-
- test/stub/rails_apps/2.3/foobar/config/database.yml
|
1366
|
-
- test/stub/rails_apps/2.3/foobar/config/environment.rb
|
1367
|
-
- test/stub/rails_apps/2.3/foobar/config/environments/development.rb
|
1368
|
-
- test/stub/rails_apps/2.3/foobar/config/environments/production.rb
|
1369
|
-
- test/stub/rails_apps/2.3/foobar/config/environments/staging.rb
|
1370
|
-
- test/stub/rails_apps/2.3/foobar/config/initializers/inflections.rb
|
1371
|
-
- test/stub/rails_apps/2.3/foobar/config/initializers/mime_types.rb
|
1372
|
-
- test/stub/rails_apps/2.3/foobar/config/routes.rb
|
1373
|
-
- test/stub/rails_apps/2.3/foobar/script/about
|
1374
|
-
- test/stub/rails_apps/2.3/foobar/script/console
|
1375
|
-
- test/stub/rails_apps/2.3/foobar/script/dbconsole
|
1376
|
-
- test/stub/rails_apps/2.3/foobar/script/destroy
|
1377
|
-
- test/stub/rails_apps/2.3/foobar/script/generate
|
1378
|
-
- test/stub/rails_apps/2.3/foobar/script/performance/benchmarker
|
1379
|
-
- test/stub/rails_apps/2.3/foobar/script/performance/profiler
|
1380
|
-
- test/stub/rails_apps/2.3/foobar/script/performance/request
|
1381
|
-
- test/stub/rails_apps/2.3/foobar/script/plugin
|
1382
|
-
- test/stub/rails_apps/2.3/foobar/script/process/inspector
|
1383
|
-
- test/stub/rails_apps/2.3/foobar/script/process/reaper
|
1384
|
-
- test/stub/rails_apps/2.3/foobar/script/process/spawner
|
1385
|
-
- test/stub/rails_apps/2.3/foobar/script/runner
|
1386
|
-
- test/stub/rails_apps/2.3/foobar/script/server
|
1387
|
-
- test/stub/rails_apps/2.3/mycook/Rakefile
|
1388
1677
|
- test/stub/rails_apps/2.3/mycook/app/controllers/application_controller.rb
|
1389
1678
|
- test/stub/rails_apps/2.3/mycook/app/controllers/recipes_controller.rb
|
1390
1679
|
- test/stub/rails_apps/2.3/mycook/app/controllers/uploads_controller.rb
|
@@ -1426,6 +1715,7 @@ files:
|
|
1426
1715
|
- test/stub/rails_apps/2.3/mycook/public/robots.txt
|
1427
1716
|
- test/stub/rails_apps/2.3/mycook/public/uploads.html
|
1428
1717
|
- test/stub/rails_apps/2.3/mycook/public/welcome/cached.html
|
1718
|
+
- test/stub/rails_apps/2.3/mycook/Rakefile
|
1429
1719
|
- test/stub/rails_apps/2.3/mycook/script/about
|
1430
1720
|
- test/stub/rails_apps/2.3/mycook/script/console
|
1431
1721
|
- test/stub/rails_apps/2.3/mycook/script/dbconsole
|
@@ -1446,85 +1736,59 @@ files:
|
|
1446
1736
|
- test/stub/rails_apps/2.3/mycook/tmp/pids/useless.txt
|
1447
1737
|
- test/stub/rails_apps/2.3/mycook/tmp/sessions/useless.txt
|
1448
1738
|
- test/stub/rails_apps/2.3/mycook/tmp/sockets/useless.txt
|
1449
|
-
- test/stub/
|
1450
|
-
- test/stub/rails_apps/3.0/empty/Gemfile.lock
|
1451
|
-
- test/stub/rails_apps/3.0/empty/Rakefile
|
1452
|
-
- test/stub/rails_apps/3.0/empty/app/controllers/application_controller.rb
|
1453
|
-
- test/stub/rails_apps/3.0/empty/app/helpers/application_helper.rb
|
1454
|
-
- test/stub/rails_apps/3.0/empty/app/views/layouts/application.html.erb
|
1455
|
-
- test/stub/rails_apps/3.0/empty/config.ru
|
1456
|
-
- test/stub/rails_apps/3.0/empty/config/application.rb
|
1457
|
-
- test/stub/rails_apps/3.0/empty/config/boot.rb
|
1458
|
-
- test/stub/rails_apps/3.0/empty/config/database.yml
|
1459
|
-
- test/stub/rails_apps/3.0/empty/config/environment.rb
|
1460
|
-
- test/stub/rails_apps/3.0/empty/config/environments/development.rb
|
1461
|
-
- test/stub/rails_apps/3.0/empty/config/environments/production.rb
|
1462
|
-
- test/stub/rails_apps/3.0/empty/config/environments/test.rb
|
1463
|
-
- test/stub/rails_apps/3.0/empty/config/initializers/backtrace_silencers.rb
|
1464
|
-
- test/stub/rails_apps/3.0/empty/config/initializers/inflections.rb
|
1465
|
-
- test/stub/rails_apps/3.0/empty/config/initializers/mime_types.rb
|
1466
|
-
- test/stub/rails_apps/3.0/empty/config/initializers/passenger.rb
|
1467
|
-
- test/stub/rails_apps/3.0/empty/config/initializers/secret_token.rb
|
1468
|
-
- test/stub/rails_apps/3.0/empty/config/initializers/session_store.rb
|
1469
|
-
- test/stub/rails_apps/3.0/empty/config/locales/en.yml
|
1470
|
-
- test/stub/rails_apps/3.0/empty/config/routes.rb
|
1471
|
-
- test/stub/rails_apps/3.0/empty/db/seeds.rb
|
1472
|
-
- test/stub/rails_apps/3.0/empty/doc/README_FOR_APP
|
1473
|
-
- test/stub/rails_apps/3.0/empty/public/404.html
|
1474
|
-
- test/stub/rails_apps/3.0/empty/public/422.html
|
1475
|
-
- test/stub/rails_apps/3.0/empty/public/500.html
|
1476
|
-
- test/stub/rails_apps/3.0/empty/public/favicon.ico
|
1477
|
-
- test/stub/rails_apps/3.0/empty/public/index.html
|
1478
|
-
- test/stub/rails_apps/3.0/empty/public/robots.txt
|
1479
|
-
- test/stub/rails_apps/3.0/empty/script/rails
|
1480
|
-
- test/stub/rails_apps/3.0/empty/test/performance/browsing_test.rb
|
1481
|
-
- test/stub/rails_apps/3.0/empty/test/test_helper.rb
|
1482
|
-
- test/stub/spawn_server.rb
|
1739
|
+
- test/stub/start_error.pl
|
1483
1740
|
- test/stub/upload_data.txt
|
1484
|
-
- test/stub/vendor_rails/minimal/README
|
1485
1741
|
- test/stub/vendor_rails/minimal/actionmailer/lib/action_mailer.rb
|
1486
1742
|
- test/stub/vendor_rails/minimal/actionpack/lib/action_controller.rb
|
1487
1743
|
- test/stub/vendor_rails/minimal/actionpack/lib/action_pack.rb
|
1488
1744
|
- test/stub/vendor_rails/minimal/actionpack/lib/action_view.rb
|
1489
1745
|
- test/stub/vendor_rails/minimal/activerecord/lib/active_record.rb
|
1490
1746
|
- test/stub/vendor_rails/minimal/activeresource/lib/active_resource.rb
|
1491
|
-
- test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb
|
1492
1747
|
- test/stub/vendor_rails/minimal/activesupport/lib/active_support/whiny_nil.rb
|
1748
|
+
- test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb
|
1493
1749
|
- test/stub/vendor_rails/minimal/railties/lib/dispatcher.rb
|
1494
1750
|
- test/stub/vendor_rails/minimal/railties/lib/initializer.rb
|
1495
1751
|
- test/stub/vendor_rails/minimal/railties/lib/ruby_version_check.rb
|
1752
|
+
- test/stub/vendor_rails/minimal/README
|
1496
1753
|
- test/stub/wsgi/passenger_wsgi.py
|
1497
1754
|
- test/stub/wsgi/public/wsgi-snake.jpg
|
1498
1755
|
- test/stub/zsfa/header.png
|
1499
1756
|
- test/stub/zsfa/index.html
|
1500
1757
|
- test/stub/zsfa/zsfa.png
|
1501
|
-
- doc/Users guide Apache.html
|
1502
|
-
- doc/Users guide Nginx.html
|
1503
|
-
- doc/Users guide Standalone.html
|
1504
|
-
- doc/Security of user switching support.html
|
1505
|
-
- doc/Architectural overview.html
|
1506
1758
|
homepage: http://www.modrails.com/
|
1507
1759
|
licenses: []
|
1760
|
+
|
1508
1761
|
post_install_message:
|
1509
1762
|
rdoc_options: []
|
1510
|
-
|
1763
|
+
|
1764
|
+
require_paths:
|
1511
1765
|
- lib
|
1512
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1766
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1513
1767
|
none: false
|
1514
|
-
requirements:
|
1515
|
-
- -
|
1516
|
-
- !ruby/object:Gem::Version
|
1517
|
-
|
1518
|
-
|
1768
|
+
requirements:
|
1769
|
+
- - ">="
|
1770
|
+
- !ruby/object:Gem::Version
|
1771
|
+
hash: 3
|
1772
|
+
segments:
|
1773
|
+
- 0
|
1774
|
+
version: "0"
|
1775
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1519
1776
|
none: false
|
1520
|
-
requirements:
|
1521
|
-
- -
|
1522
|
-
- !ruby/object:Gem::Version
|
1523
|
-
|
1777
|
+
requirements:
|
1778
|
+
- - ">"
|
1779
|
+
- !ruby/object:Gem::Version
|
1780
|
+
hash: 25
|
1781
|
+
segments:
|
1782
|
+
- 1
|
1783
|
+
- 3
|
1784
|
+
- 1
|
1785
|
+
version: 1.3.1
|
1524
1786
|
requirements: []
|
1787
|
+
|
1525
1788
|
rubyforge_project: passenger
|
1526
|
-
rubygems_version: 1.8.
|
1789
|
+
rubygems_version: 1.8.15
|
1527
1790
|
signing_key:
|
1528
1791
|
specification_version: 3
|
1529
1792
|
summary: Easy and robust Ruby web application deployment
|
1530
1793
|
test_files: []
|
1794
|
+
|