passenger 3.0.18 → 3.0.19

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/NEWS CHANGED
@@ -1,3 +1,12 @@
1
+ Release 3.0.19
2
+ --------------
3
+
4
+ * Nginx security fix: do not display Nginx version when
5
+ server_tokens are off.
6
+ * Fixed compilation problems on some systems.
7
+ * Fixed some Union Station-related bugs.
8
+
9
+
1
10
  Release 3.0.18
2
11
  --------------
3
12
 
@@ -5693,7 +5693,7 @@ has no effect.</p></div>
5693
5693
  <div id="footnotes"><hr></div>
5694
5694
  <div id="footer">
5695
5695
  <div id="footer-text">
5696
- Last updated 2012-10-30 14:24:33 CET
5696
+ Last updated 2013-01-08 23:47:06 CET
5697
5697
  </div>
5698
5698
  </div>
5699
5699
  <script>/*! jQuery v1.7.1 jquery.com | jquery.org/license */
@@ -4474,7 +4474,7 @@ has no effect.</p></div>
4474
4474
  <div id="footnotes"><hr></div>
4475
4475
  <div id="footer">
4476
4476
  <div id="footer-text">
4477
- Last updated 2012-10-30 14:24:33 CET
4477
+ Last updated 2013-01-08 23:47:06 CET
4478
4478
  </div>
4479
4479
  </div>
4480
4480
  <script>/*! jQuery v1.7.1 jquery.com | jquery.org/license */
@@ -1127,7 +1127,7 @@ use the <span class="monospaced">-p</span> option, e.g.:</p></div>
1127
1127
  <div id="footnotes"><hr></div>
1128
1128
  <div id="footer">
1129
1129
  <div id="footer-text">
1130
- Last updated 2012-10-30 14:24:33 CET
1130
+ Last updated 2013-01-08 23:47:06 CET
1131
1131
  </div>
1132
1132
  </div>
1133
1133
  <script>/*! jQuery v1.7.1 jquery.com | jquery.org/license */
@@ -1769,11 +1769,11 @@ init_module(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec *
1769
1769
 
1770
1770
  fprintf(stderr, "Output of 'uname -a' follows:\n");
1771
1771
  fflush(stderr);
1772
- system("uname -a >&2");
1772
+ ::system("uname -a >&2");
1773
1773
 
1774
1774
  fprintf(stderr, "\nOutput of 'ulimit -a' follows:\n");
1775
1775
  fflush(stderr);
1776
- system("ulimit -a >&2");
1776
+ ::system("ulimit -a >&2");
1777
1777
 
1778
1778
  return DECLINED;
1779
1779
 
@@ -304,7 +304,7 @@ abortHandler(int signo, siginfo_t *info, void *ctx) {
304
304
  end = appendText(end, "crash-watch --dump ");
305
305
  end = appendULL(end, (unsigned long long) getpid());
306
306
  *end = '\0';
307
- system(messageBuf);
307
+ ::system(messageBuf);
308
308
  _exit(1);
309
309
  }
310
310
  #endif
@@ -26,7 +26,7 @@
26
26
  #define _PASSENGER_CONSTANTS_H_
27
27
 
28
28
  /* Don't forget to update lib/phusion_passenger.rb too. */
29
- #define PASSENGER_VERSION "3.0.18"
29
+ #define PASSENGER_VERSION "3.0.19"
30
30
 
31
31
  #define FEEDBACK_FD 3
32
32
 
@@ -534,13 +534,13 @@ removeDirTree(const string &path) {
534
534
  snprintf(command, sizeof(command), "chmod -R u+rwx \"%s\" 2>/dev/null", path.c_str());
535
535
  command[sizeof(command) - 1] = '\0';
536
536
  do {
537
- result = system(command);
537
+ result = ::system(command);
538
538
  } while (result == -1 && errno == EINTR);
539
539
 
540
540
  snprintf(command, sizeof(command), "rm -rf \"%s\"", path.c_str());
541
541
  command[sizeof(command) - 1] = '\0';
542
542
  do {
543
- result = system(command);
543
+ result = ::system(command);
544
544
  } while (result == -1 && errno == EINTR);
545
545
  if (result == -1) {
546
546
  char message[1024];
@@ -474,13 +474,13 @@ passenger_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
474
474
  prev->upstream_config.ignore_client_abort, 0);
475
475
 
476
476
  ngx_conf_merge_msec_value(conf->upstream_config.connect_timeout,
477
- prev->upstream_config.connect_timeout, 600000);
477
+ prev->upstream_config.connect_timeout, 12000000);
478
478
 
479
479
  ngx_conf_merge_msec_value(conf->upstream_config.send_timeout,
480
- prev->upstream_config.send_timeout, 600000);
480
+ prev->upstream_config.send_timeout, 12000000);
481
481
 
482
482
  ngx_conf_merge_msec_value(conf->upstream_config.read_timeout,
483
- prev->upstream_config.read_timeout, 600000);
483
+ prev->upstream_config.read_timeout, 12000000);
484
484
 
485
485
  ngx_conf_merge_size_value(conf->upstream_config.send_lowat,
486
486
  prev->upstream_config.send_lowat, 0);
@@ -26,6 +26,7 @@
26
26
  */
27
27
 
28
28
  #include <nginx.h>
29
+ #include <ngx_http.h>
29
30
  #include "ngx_http_passenger_module.h"
30
31
  #include "ContentHandler.h"
31
32
  #include "StaticContentHandler.h"
@@ -1196,9 +1197,11 @@ process_header(ngx_http_request_t *r)
1196
1197
  ngx_table_elt_t *h;
1197
1198
  ngx_http_upstream_header_t *hh;
1198
1199
  ngx_http_upstream_main_conf_t *umcf;
1200
+ ngx_http_core_loc_conf_t *clcf;
1199
1201
  passenger_loc_conf_t *slcf;
1200
1202
 
1201
1203
  umcf = ngx_http_get_module_main_conf(r, ngx_http_upstream_module);
1204
+ clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
1202
1205
  slcf = ngx_http_get_module_loc_conf(r, ngx_http_passenger_module);
1203
1206
 
1204
1207
  for ( ;; ) {
@@ -1280,9 +1283,17 @@ process_header(ngx_http_request_t *r)
1280
1283
  h->key.len = sizeof("Server") - 1;
1281
1284
  h->key.data = (u_char *) "Server";
1282
1285
  if( slcf->show_version_in_header == 0 ) {
1283
- h->value.data = (u_char *) (NGINX_VER " + Phusion Passenger (mod_rails/mod_rack)");
1286
+ if (clcf->server_tokens) {
1287
+ h->value.data = (u_char *) (NGINX_VER " + Phusion Passenger");
1288
+ } else {
1289
+ h->value.data = (u_char *) ("nginx + Phusion Passenger");
1290
+ }
1284
1291
  } else {
1285
- h->value.data = (u_char *) (NGINX_VER " + Phusion Passenger " PASSENGER_VERSION " (mod_rails/mod_rack)");
1292
+ if (clcf->server_tokens) {
1293
+ h->value.data = (u_char *) (NGINX_VER " + Phusion Passenger " PASSENGER_VERSION);
1294
+ } else {
1295
+ h->value.data = (u_char *) ("nginx + Phusion Passenger " PASSENGER_VERSION);
1296
+ }
1286
1297
  }
1287
1298
  h->value.len = ngx_strlen(h->value.data);
1288
1299
  h->lowcase_key = (u_char *) "server";
@@ -25,9 +25,9 @@ module PhusionPassenger
25
25
  ###### Version numbers ######
26
26
 
27
27
  # Phusion Passenger version number. Don't forget to edit ext/common/Constants.h too.
28
- VERSION_STRING = '3.0.18'
28
+ VERSION_STRING = '3.0.19'
29
29
 
30
- PREFERRED_NGINX_VERSION = '1.2.4'
30
+ PREFERRED_NGINX_VERSION = '1.2.6'
31
31
  PREFERRED_PCRE_VERSION = '8.31'
32
32
  STANDALONE_INTERFACE_VERSION = 1
33
33
 
@@ -1,5 +1,5 @@
1
1
  # Phusion Passenger - http://www.modrails.com/
2
- # Copyright (c) 2010 Phusion
2
+ # Copyright (c) 2010, 2011, 2012 Phusion
3
3
  #
4
4
  # "Phusion Passenger" is a trademark of Hongli Lai & Ninh Bui.
5
5
  #
@@ -54,11 +54,12 @@ class AnalyticsLogging < ActiveSupport::LogSubscriber
54
54
  AnalyticsLogging.attach_to(:active_support, subscriber)
55
55
  end
56
56
 
57
- if defined?(ActionDispatch::ShowExceptions)
57
+ if defined?(ActionDispatch::DebugExceptions)
58
+ exceptions_middleware = ActionDispatch::DebugExceptions
59
+ elsif defined?(ActionDispatch::ShowExceptions)
58
60
  exceptions_middleware = ActionDispatch::ShowExceptions
59
- if defined?(ActionDispatch::DebugExceptions)
60
- exceptions_middleware = ActionDispatch::DebugExceptions
61
- end
61
+ end
62
+ if exceptions_middleware
62
63
  Rails.application.middleware.insert_after(
63
64
  exceptions_middleware,
64
65
  ExceptionLogger, analytics_logger)
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: passenger
3
3
  version: !ruby/object:Gem::Version
4
- hash: 35
4
+ hash: 33
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 0
9
- - 18
10
- version: 3.0.18
9
+ - 19
10
+ version: 3.0.19
11
11
  platform: ruby
12
12
  authors:
13
13
  - Phusion - http://www.phusion.nl/
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-10-30 00:00:00 Z
18
+ date: 2013-01-08 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: rake
@@ -126,9 +126,9 @@ files:
126
126
  - lib/phusion_passenger/abstract_request_handler.rb
127
127
  - lib/phusion_passenger/abstract_server.rb
128
128
  - lib/phusion_passenger/abstract_server_collection.rb
129
+ - lib/phusion_passenger/admin_tools.rb
129
130
  - lib/phusion_passenger/admin_tools/memory_stats.rb
130
131
  - lib/phusion_passenger/admin_tools/server_instance.rb
131
- - lib/phusion_passenger/admin_tools.rb
132
132
  - lib/phusion_passenger/analytics_logger.rb
133
133
  - lib/phusion_passenger/app_process.rb
134
134
  - lib/phusion_passenger/classic_rails/application_spawner.rb
@@ -152,6 +152,7 @@ files:
152
152
  - lib/phusion_passenger/message_client.rb
153
153
  - lib/phusion_passenger/native_support.rb
154
154
  - lib/phusion_passenger/packaging.rb
155
+ - lib/phusion_passenger/platform_info.rb
155
156
  - lib/phusion_passenger/platform_info/apache.rb
156
157
  - lib/phusion_passenger/platform_info/binary_compatibility.rb
157
158
  - lib/phusion_passenger/platform_info/compiler.rb
@@ -160,7 +161,6 @@ files:
160
161
  - lib/phusion_passenger/platform_info/operating_system.rb
161
162
  - lib/phusion_passenger/platform_info/ruby.rb
162
163
  - lib/phusion_passenger/platform_info/zlib.rb
163
- - lib/phusion_passenger/platform_info.rb
164
164
  - lib/phusion_passenger/plugin.rb
165
165
  - lib/phusion_passenger/public_api.rb
166
166
  - lib/phusion_passenger/rack/application_spawner.rb
@@ -180,12 +180,12 @@ files:
180
180
  - lib/phusion_passenger/standalone/stop_command.rb
181
181
  - lib/phusion_passenger/standalone/utils.rb
182
182
  - lib/phusion_passenger/standalone/version_command.rb
183
+ - lib/phusion_passenger/utils.rb
183
184
  - lib/phusion_passenger/utils/file_system_watcher.rb
184
185
  - lib/phusion_passenger/utils/hosts_file_parser.rb
185
186
  - lib/phusion_passenger/utils/rewindable_input.rb
186
187
  - lib/phusion_passenger/utils/tmpdir.rb
187
188
  - lib/phusion_passenger/utils/unseekable_socket.rb
188
- - lib/phusion_passenger/utils.rb
189
189
  - lib/phusion_passenger/wsgi/application_spawner.rb
190
190
  - lib/phusion_passenger/wsgi/request_handler.py
191
191
  - lib/phusion_passenger/templates/app_exited_during_initialization.html.erb
@@ -232,10 +232,19 @@ files:
232
232
  - doc/ApplicationPool algorithm.txt
233
233
  - doc/Architectural overview.idmap.txt
234
234
  - doc/Architectural overview.txt
235
+ - doc/Security of user switching support.idmap.txt
236
+ - doc/Security of user switching support.txt
237
+ - doc/Users guide Apache.idmap.txt
238
+ - doc/Users guide Apache.txt
239
+ - doc/Users guide Nginx.idmap.txt
240
+ - doc/Users guide Nginx.txt
241
+ - doc/Users guide Standalone.idmap.txt
242
+ - doc/Users guide Standalone.txt
235
243
  - doc/definitions.h
236
244
  - doc/images/by_sa.png
237
245
  - doc/images/conservative_spawning.png
238
246
  - doc/images/conservative_spawning.svg
247
+ - doc/images/icons/README
239
248
  - doc/images/icons/callouts/1.png
240
249
  - doc/images/icons/callouts/10.png
241
250
  - doc/images/icons/callouts/11.png
@@ -258,7 +267,6 @@ files:
258
267
  - doc/images/icons/next.png
259
268
  - doc/images/icons/note.png
260
269
  - doc/images/icons/prev.png
261
- - doc/images/icons/README
262
270
  - doc/images/icons/tip.png
263
271
  - doc/images/icons/up.png
264
272
  - doc/images/icons/warning.png
@@ -273,14 +281,6 @@ files:
273
281
  - doc/images/spawn_server_architecture.svg
274
282
  - doc/images/typical_isolated_web_application.png
275
283
  - doc/images/typical_isolated_web_application.svg
276
- - doc/Security of user switching support.idmap.txt
277
- - doc/Security of user switching support.txt
278
- - doc/Users guide Apache.idmap.txt
279
- - doc/Users guide Apache.txt
280
- - doc/Users guide Nginx.idmap.txt
281
- - doc/Users guide Nginx.txt
282
- - doc/Users guide Standalone.idmap.txt
283
- - doc/Users guide Standalone.txt
284
284
  - doc/users_guide_snippets/analysis_and_system_maintenance.txt
285
285
  - doc/users_guide_snippets/appendix_a_about.txt
286
286
  - doc/users_guide_snippets/appendix_b_terminology.txt
@@ -295,6 +295,7 @@ files:
295
295
  - man/passenger-memory-stats.8
296
296
  - man/passenger-status.8
297
297
  - man/passenger-stress-test.1
298
+ - debian/README.Debian
298
299
  - debian/changelog
299
300
  - debian/compat
300
301
  - debian/control
@@ -306,37 +307,26 @@ files:
306
307
  - debian/passenger.conf
307
308
  - debian/passenger.load
308
309
  - debian/prerm
309
- - debian/README.Debian
310
310
  - debian/rules
311
311
  - debian/watch
312
312
  - helper-scripts/passenger-spawn-server
313
313
  - helper-scripts/prespawn
314
- - ext/common/AccountsDatabase.cpp
315
- - ext/common/AgentBase.cpp
316
- - ext/common/AgentsStarter.cpp
317
- - ext/common/BCrypt.cpp
318
- - ext/common/Logging.cpp
319
- - ext/common/LoggingAgent/FilterSupport.cpp
320
- - ext/common/LoggingAgent/Main.cpp
321
- - ext/common/Utils/Base64.cpp
322
- - ext/common/Utils/CachedFileStat.cpp
323
- - ext/common/Utils/IOUtils.cpp
324
- - ext/common/Utils/MD5.cpp
325
- - ext/common/Utils/StrIntUtils.cpp
326
- - ext/common/Utils/SystemTime.cpp
327
- - ext/common/Utils.cpp
328
- - ext/common/Watchdog.cpp
329
- - ext/common/Blowfish.c
330
314
  - ext/common/AbstractSpawnManager.h
331
315
  - ext/common/Account.h
316
+ - ext/common/AccountsDatabase.cpp
332
317
  - ext/common/AccountsDatabase.h
318
+ - ext/common/AgentBase.cpp
333
319
  - ext/common/AgentBase.h
320
+ - ext/common/AgentsStarter.cpp
334
321
  - ext/common/AgentsStarter.h
322
+ - ext/common/AgentsStarter.hpp
335
323
  - ext/common/ApplicationPool/Client.h
336
324
  - ext/common/ApplicationPool/Interface.h
337
325
  - ext/common/ApplicationPool/Pool.h
338
326
  - ext/common/ApplicationPool/Server.h
327
+ - ext/common/BCrypt.cpp
339
328
  - ext/common/BCrypt.h
329
+ - ext/common/Blowfish.c
340
330
  - ext/common/Blowfish.h
341
331
  - ext/common/Constants.h
342
332
  - ext/common/EventedClient.h
@@ -346,10 +336,13 @@ files:
346
336
  - ext/common/FileDescriptor.h
347
337
  - ext/common/HelperAgent/BacktracesServer.h
348
338
  - ext/common/IniFile.h
339
+ - ext/common/Logging.cpp
349
340
  - ext/common/Logging.h
350
341
  - ext/common/LoggingAgent/DataStoreId.h
342
+ - ext/common/LoggingAgent/FilterSupport.cpp
351
343
  - ext/common/LoggingAgent/FilterSupport.h
352
344
  - ext/common/LoggingAgent/LoggingServer.h
345
+ - ext/common/LoggingAgent/Main.cpp
353
346
  - ext/common/LoggingAgent/RemoteSender.h
354
347
  - ext/common/MessageChannel.h
355
348
  - ext/common/MessageClient.h
@@ -365,52 +358,59 @@ files:
365
358
  - ext/common/SpawnManager.h
366
359
  - ext/common/StaticString.h
367
360
  - ext/common/StringListCreator.h
361
+ - ext/common/Utils.cpp
362
+ - ext/common/Utils.h
363
+ - ext/common/Utils/Base64.cpp
368
364
  - ext/common/Utils/Base64.h
369
365
  - ext/common/Utils/BlockingQueue.h
370
366
  - ext/common/Utils/BufferedIO.h
367
+ - ext/common/Utils/CachedFileStat.cpp
371
368
  - ext/common/Utils/CachedFileStat.h
369
+ - ext/common/Utils/CachedFileStat.hpp
372
370
  - ext/common/Utils/Dechunker.h
373
371
  - ext/common/Utils/FileChangeChecker.h
374
372
  - ext/common/Utils/HttpHeaderBufferer.h
373
+ - ext/common/Utils/IOUtils.cpp
375
374
  - ext/common/Utils/IOUtils.h
375
+ - ext/common/Utils/MD5.cpp
376
376
  - ext/common/Utils/MD5.h
377
377
  - ext/common/Utils/MemZeroGuard.h
378
378
  - ext/common/Utils/MessageIO.h
379
379
  - ext/common/Utils/ProcessMetricsCollector.h
380
380
  - ext/common/Utils/ScopeGuard.h
381
+ - ext/common/Utils/StrIntUtils.cpp
382
+ - ext/common/Utils/StrIntUtils.h
381
383
  - ext/common/Utils/StreamBoyerMooreHorspool.h
382
384
  - ext/common/Utils/StringMap.h
383
- - ext/common/Utils/StrIntUtils.h
385
+ - ext/common/Utils/SystemTime.cpp
384
386
  - ext/common/Utils/SystemTime.h
385
387
  - ext/common/Utils/Timer.h
388
+ - ext/common/Utils/VariantMap.h
389
+ - ext/common/Utils/utf8.h
386
390
  - ext/common/Utils/utf8/checked.h
387
391
  - ext/common/Utils/utf8/core.h
388
392
  - ext/common/Utils/utf8/unchecked.h
389
- - ext/common/Utils/utf8.h
390
- - ext/common/Utils/VariantMap.h
391
- - ext/common/Utils.h
392
- - ext/common/AgentsStarter.hpp
393
- - ext/common/Utils/CachedFileStat.hpp
393
+ - ext/common/Watchdog.cpp
394
394
  - ext/apache2/Bucket.cpp
395
- - ext/apache2/Configuration.cpp
396
- - ext/apache2/HelperAgent.cpp
397
- - ext/apache2/Hooks.cpp
398
395
  - ext/apache2/Bucket.h
396
+ - ext/apache2/Configuration.cpp
399
397
  - ext/apache2/Configuration.h
398
+ - ext/apache2/Configuration.hpp
400
399
  - ext/apache2/DirectoryMapper.h
400
+ - ext/apache2/HelperAgent.cpp
401
+ - ext/apache2/Hooks.cpp
401
402
  - ext/apache2/Hooks.h
402
- - ext/apache2/Configuration.hpp
403
403
  - ext/apache2/mod_passenger.c
404
404
  - ext/nginx/Configuration.c
405
- - ext/nginx/ContentHandler.c
406
- - ext/nginx/ngx_http_passenger_module.c
407
- - ext/nginx/StaticContentHandler.c
408
- - ext/nginx/HelperAgent.cpp
409
405
  - ext/nginx/Configuration.h
406
+ - ext/nginx/ContentHandler.c
410
407
  - ext/nginx/ContentHandler.h
411
- - ext/nginx/ngx_http_passenger_module.h
408
+ - ext/nginx/HelperAgent.cpp
412
409
  - ext/nginx/ScgiRequestParser.h
410
+ - ext/nginx/StaticContentHandler.c
413
411
  - ext/nginx/StaticContentHandler.h
412
+ - ext/nginx/ngx_http_passenger_module.c
413
+ - ext/nginx/ngx_http_passenger_module.h
414
414
  - ext/nginx/config
415
415
  - ext/boost/algorithm/string/case_conv.hpp
416
416
  - ext/boost/algorithm/string/compare.hpp
@@ -434,6 +434,7 @@ files:
434
434
  - ext/boost/algorithm/string/sequence_traits.hpp
435
435
  - ext/boost/algorithm/string/yes_no_type.hpp
436
436
  - ext/boost/assert.hpp
437
+ - ext/boost/bind.hpp
437
438
  - ext/boost/bind/arg.hpp
438
439
  - ext/boost/bind/bind.hpp
439
440
  - ext/boost/bind/bind_cc.hpp
@@ -445,7 +446,6 @@ files:
445
446
  - ext/boost/bind/mem_fn_template.hpp
446
447
  - ext/boost/bind/placeholders.hpp
447
448
  - ext/boost/bind/storage.hpp
448
- - ext/boost/bind.hpp
449
449
  - ext/boost/call_traits.hpp
450
450
  - ext/boost/checked_delete.hpp
451
451
  - ext/boost/concept/assert.hpp
@@ -456,6 +456,7 @@ files:
456
456
  - ext/boost/concept/detail/has_constraints.hpp
457
457
  - ext/boost/concept/usage.hpp
458
458
  - ext/boost/concept_check.hpp
459
+ - ext/boost/config.hpp
459
460
  - ext/boost/config/abi/borland_prefix.hpp
460
461
  - ext/boost/config/abi/borland_suffix.hpp
461
462
  - ext/boost/config/abi/msvc_prefix.hpp
@@ -520,7 +521,6 @@ files:
520
521
  - ext/boost/config/suffix.hpp
521
522
  - ext/boost/config/user.hpp
522
523
  - ext/boost/config/warning_disable.hpp
523
- - ext/boost/config.hpp
524
524
  - ext/boost/cstdint.hpp
525
525
  - ext/boost/current_function.hpp
526
526
  - ext/boost/date_time/adjust_functors.hpp
@@ -629,13 +629,13 @@ files:
629
629
  - ext/boost/exception/to_string.hpp
630
630
  - ext/boost/exception/to_string_stub.hpp
631
631
  - ext/boost/exception_ptr.hpp
632
+ - ext/boost/function.hpp
632
633
  - ext/boost/function/detail/function_iterate.hpp
633
634
  - ext/boost/function/detail/maybe_include.hpp
634
635
  - ext/boost/function/detail/prologue.hpp
635
636
  - ext/boost/function/function_base.hpp
636
637
  - ext/boost/function/function_fwd.hpp
637
638
  - ext/boost/function/function_template.hpp
638
- - ext/boost/function.hpp
639
639
  - ext/boost/function_equal.hpp
640
640
  - ext/boost/get_pointer.hpp
641
641
  - ext/boost/implicit_cast.hpp
@@ -645,6 +645,7 @@ files:
645
645
  - ext/boost/io/ios_state.hpp
646
646
  - ext/boost/io_fwd.hpp
647
647
  - ext/boost/is_placeholder.hpp
648
+ - ext/boost/iterator.hpp
648
649
  - ext/boost/iterator/detail/config_def.hpp
649
650
  - ext/boost/iterator/detail/config_undef.hpp
650
651
  - ext/boost/iterator/detail/enable_if.hpp
@@ -658,7 +659,6 @@ files:
658
659
  - ext/boost/iterator/iterator_traits.hpp
659
660
  - ext/boost/iterator/reverse_iterator.hpp
660
661
  - ext/boost/iterator/transform_iterator.hpp
661
- - ext/boost/iterator.hpp
662
662
  - ext/boost/lexical_cast.hpp
663
663
  - ext/boost/limits.hpp
664
664
  - ext/boost/make_shared.hpp
@@ -772,9 +772,9 @@ files:
772
772
  - ext/boost/none.hpp
773
773
  - ext/boost/none_t.hpp
774
774
  - ext/boost/operators.hpp
775
+ - ext/boost/optional.hpp
775
776
  - ext/boost/optional/optional.hpp
776
777
  - ext/boost/optional/optional_fwd.hpp
777
- - ext/boost/optional.hpp
778
778
  - ext/boost/preprocessor/arithmetic/add.hpp
779
779
  - ext/boost/preprocessor/arithmetic/dec.hpp
780
780
  - ext/boost/preprocessor/arithmetic/detail/div_base.hpp
@@ -931,6 +931,7 @@ files:
931
931
  - ext/boost/src/pthread/timeconv.inl
932
932
  - ext/boost/src/tss_null.cpp
933
933
  - ext/boost/static_assert.hpp
934
+ - ext/boost/thread.hpp
934
935
  - ext/boost/thread/barrier.hpp
935
936
  - ext/boost/thread/condition.hpp
936
937
  - ext/boost/thread/condition_variable.hpp
@@ -965,7 +966,6 @@ files:
965
966
  - ext/boost/thread/thread_time.hpp
966
967
  - ext/boost/thread/tss.hpp
967
968
  - ext/boost/thread/xtime.hpp
968
- - ext/boost/thread.hpp
969
969
  - ext/boost/throw_exception.hpp
970
970
  - ext/boost/token_functions.hpp
971
971
  - ext/boost/token_iterator.hpp
@@ -1037,16 +1037,16 @@ files:
1037
1037
  - ext/boost/type_traits/remove_reference.hpp
1038
1038
  - ext/boost/type_traits/type_with_alignment.hpp
1039
1039
  - ext/boost/units/detail/utility.hpp
1040
+ - ext/boost/utility.hpp
1040
1041
  - ext/boost/utility/addressof.hpp
1041
1042
  - ext/boost/utility/base_from_member.hpp
1042
1043
  - ext/boost/utility/binary.hpp
1043
1044
  - ext/boost/utility/compare_pointees.hpp
1044
1045
  - ext/boost/utility/enable_if.hpp
1045
- - ext/boost/utility.hpp
1046
1046
  - ext/boost/visit_each.hpp
1047
1047
  - ext/boost/weak_ptr.hpp
1048
- - ext/google/ChangeLog
1049
1048
  - ext/google/COPYING
1049
+ - ext/google/ChangeLog
1050
1050
  - ext/google/dense_hash_map
1051
1051
  - ext/google/dense_hash_set
1052
1052
  - ext/google/sparse_hash_map
@@ -1056,17 +1056,17 @@ files:
1056
1056
  - ext/google/sparsehash/sparsehashtable.h
1057
1057
  - ext/google/sparsetable
1058
1058
  - ext/google/type_traits.h
1059
- - ext/libev/LICENSE
1060
1059
  - ext/libev/Changes
1061
- - ext/libev/README
1060
+ - ext/libev/LICENSE
1062
1061
  - ext/libev/Makefile.am
1063
1062
  - ext/libev/Makefile.in
1063
+ - ext/libev/README
1064
1064
  - ext/libev/aclocal.m4
1065
- - ext/libev/libev.m4
1066
1065
  - ext/libev/autogen.sh
1067
1066
  - ext/libev/config.guess
1068
1067
  - ext/libev/config.h.in
1069
1068
  - ext/libev/config.sub
1069
+ - ext/libev/libev.m4
1070
1070
  - ext/libev/configure
1071
1071
  - ext/libev/configure.ac
1072
1072
  - ext/libev/install-sh
@@ -1074,18 +1074,18 @@ files:
1074
1074
  - ext/libev/missing
1075
1075
  - ext/libev/mkinstalldirs
1076
1076
  - ext/libev/ev++.h
1077
- - ext/libev/ev.h
1078
- - ext/libev/ev_vars.h
1079
- - ext/libev/ev_wrap.h
1080
- - ext/libev/event.h
1081
1077
  - ext/libev/ev.c
1078
+ - ext/libev/ev.h
1082
1079
  - ext/libev/ev_epoll.c
1083
1080
  - ext/libev/ev_kqueue.c
1084
1081
  - ext/libev/ev_poll.c
1085
1082
  - ext/libev/ev_port.c
1086
1083
  - ext/libev/ev_select.c
1084
+ - ext/libev/ev_vars.h
1087
1085
  - ext/libev/ev_win32.c
1086
+ - ext/libev/ev_wrap.h
1088
1087
  - ext/libev/event.c
1088
+ - ext/libev/event.h
1089
1089
  - ext/oxt/backtrace.hpp
1090
1090
  - ext/oxt/dynamic_thread_group.hpp
1091
1091
  - ext/oxt/macros.hpp
@@ -1105,8 +1105,8 @@ files:
1105
1105
  - ext/oxt/detail/spin_lock_pthreads.hpp
1106
1106
  - ext/oxt/detail/tracable_exception_disabled.hpp
1107
1107
  - ext/oxt/detail/tracable_exception_enabled.hpp
1108
- - ext/ruby/passenger_native_support.c
1109
1108
  - ext/ruby/extconf.rb
1109
+ - ext/ruby/passenger_native_support.c
1110
1110
  - dev/copy_boost_headers.rb
1111
1111
  - dev/find_owner_pipe_leaks.rb
1112
1112
  - dev/render_error_pages.rb
@@ -1114,17 +1114,17 @@ files:
1114
1114
  - resources/union_station_gateway.crt
1115
1115
  - test/config.yml.example
1116
1116
  - test/support/allocate_memory.c
1117
- - test/support/valgrind.h
1118
1117
  - test/support/apache2_controller.rb
1119
1118
  - test/support/multipart.rb
1120
1119
  - test/support/nginx_controller.rb
1121
1120
  - test/support/test_helper.rb
1121
+ - test/support/valgrind.h
1122
1122
  - test/tut/tut.h
1123
1123
  - test/tut/tut_reporter.h
1124
1124
  - test/cxx/ApplicationPool_PoolTest.cpp
1125
1125
  - test/cxx/ApplicationPool_PoolTestCases.cpp
1126
- - test/cxx/ApplicationPool_Server_PoolTest.cpp
1127
1126
  - test/cxx/ApplicationPool_ServerTest.cpp
1127
+ - test/cxx/ApplicationPool_Server_PoolTest.cpp
1128
1128
  - test/cxx/Base64Test.cpp
1129
1129
  - test/cxx/BufferedIOTest.cpp
1130
1130
  - test/cxx/CachedFileStatTest.cpp
@@ -1150,15 +1150,15 @@ files:
1150
1150
  - test/cxx/StringMapTest.cpp
1151
1151
  - test/cxx/SystemTimeTest.cpp
1152
1152
  - test/cxx/TestSupport.cpp
1153
+ - test/cxx/TestSupport.h
1153
1154
  - test/cxx/UtilsTest.cpp
1154
1155
  - test/cxx/VariantMapTest.cpp
1155
- - test/cxx/TestSupport.h
1156
1156
  - test/oxt/backtrace_test.cpp
1157
+ - test/oxt/counter.hpp
1157
1158
  - test/oxt/dynamic_thread_group_test.cpp
1158
1159
  - test/oxt/oxt_test_main.cpp
1159
1160
  - test/oxt/spin_lock_test.cpp
1160
1161
  - test/oxt/syscall_interruption_test.cpp
1161
- - test/oxt/counter.hpp
1162
1162
  - test/ruby/abstract_request_handler_spec.rb
1163
1163
  - test/ruby/abstract_server_collection_spec.rb
1164
1164
  - test/ruby/abstract_server_spec.rb
@@ -1212,6 +1212,7 @@ files:
1212
1212
  - test/stub/nginx/win-utf
1213
1213
  - test/stub/rack/config.ru
1214
1214
  - test/stub/rack/public/rack.jpg
1215
+ - test/stub/rails_apps/1.2/empty/Rakefile
1215
1216
  - test/stub/rails_apps/1.2/empty/app/controllers/application.rb
1216
1217
  - test/stub/rails_apps/1.2/empty/app/helpers/application_helper.rb
1217
1218
  - test/stub/rails_apps/1.2/empty/config/boot.rb
@@ -1231,7 +1232,6 @@ files:
1231
1232
  - test/stub/rails_apps/1.2/empty/public/favicon.ico
1232
1233
  - test/stub/rails_apps/1.2/empty/public/images/rails.png
1233
1234
  - test/stub/rails_apps/1.2/empty/public/robots.txt
1234
- - test/stub/rails_apps/1.2/empty/Rakefile
1235
1235
  - test/stub/rails_apps/1.2/empty/script/about
1236
1236
  - test/stub/rails_apps/1.2/empty/script/breakpointer
1237
1237
  - test/stub/rails_apps/1.2/empty/script/console
@@ -1246,6 +1246,7 @@ files:
1246
1246
  - test/stub/rails_apps/1.2/empty/script/runner
1247
1247
  - test/stub/rails_apps/1.2/empty/script/server
1248
1248
  - test/stub/rails_apps/1.2/empty/test/test_helper.rb
1249
+ - test/stub/rails_apps/2.0/empty/Rakefile
1249
1250
  - test/stub/rails_apps/2.0/empty/app/controllers/application.rb
1250
1251
  - test/stub/rails_apps/2.0/empty/app/helpers/application_helper.rb
1251
1252
  - test/stub/rails_apps/2.0/empty/config/boot.rb
@@ -1268,7 +1269,6 @@ files:
1268
1269
  - test/stub/rails_apps/2.0/empty/public/favicon.ico
1269
1270
  - test/stub/rails_apps/2.0/empty/public/images/rails.png
1270
1271
  - test/stub/rails_apps/2.0/empty/public/robots.txt
1271
- - test/stub/rails_apps/2.0/empty/Rakefile
1272
1272
  - test/stub/rails_apps/2.0/empty/script/about
1273
1273
  - test/stub/rails_apps/2.0/empty/script/console
1274
1274
  - test/stub/rails_apps/2.0/empty/script/destroy
@@ -1283,6 +1283,7 @@ files:
1283
1283
  - test/stub/rails_apps/2.0/empty/script/runner
1284
1284
  - test/stub/rails_apps/2.0/empty/script/server
1285
1285
  - test/stub/rails_apps/2.0/empty/test/test_helper.rb
1286
+ - test/stub/rails_apps/2.2/empty/Rakefile
1286
1287
  - test/stub/rails_apps/2.2/empty/app/controllers/application.rb
1287
1288
  - test/stub/rails_apps/2.2/empty/app/helpers/application_helper.rb
1288
1289
  - test/stub/rails_apps/2.2/empty/config/boot.rb
@@ -1307,7 +1308,6 @@ files:
1307
1308
  - test/stub/rails_apps/2.2/empty/public/favicon.ico
1308
1309
  - test/stub/rails_apps/2.2/empty/public/images/rails.png
1309
1310
  - test/stub/rails_apps/2.2/empty/public/robots.txt
1310
- - test/stub/rails_apps/2.2/empty/Rakefile
1311
1311
  - test/stub/rails_apps/2.2/empty/script/about
1312
1312
  - test/stub/rails_apps/2.2/empty/script/console
1313
1313
  - test/stub/rails_apps/2.2/empty/script/dbconsole
@@ -1324,6 +1324,7 @@ files:
1324
1324
  - test/stub/rails_apps/2.2/empty/script/server
1325
1325
  - test/stub/rails_apps/2.2/empty/test/performance/browsing_test.rb
1326
1326
  - test/stub/rails_apps/2.2/empty/test/test_helper.rb
1327
+ - test/stub/rails_apps/2.3/empty/Rakefile
1327
1328
  - test/stub/rails_apps/2.3/empty/app/controllers/application_controller.rb
1328
1329
  - test/stub/rails_apps/2.3/empty/app/helpers/application_helper.rb
1329
1330
  - test/stub/rails_apps/2.3/empty/config/boot.rb
@@ -1348,7 +1349,6 @@ files:
1348
1349
  - test/stub/rails_apps/2.3/empty/public/favicon.ico
1349
1350
  - test/stub/rails_apps/2.3/empty/public/images/rails.png
1350
1351
  - test/stub/rails_apps/2.3/empty/public/robots.txt
1351
- - test/stub/rails_apps/2.3/empty/Rakefile
1352
1352
  - test/stub/rails_apps/2.3/empty/script/about
1353
1353
  - test/stub/rails_apps/2.3/empty/script/console
1354
1354
  - test/stub/rails_apps/2.3/empty/script/dbconsole
@@ -1361,6 +1361,7 @@ files:
1361
1361
  - test/stub/rails_apps/2.3/empty/script/server
1362
1362
  - test/stub/rails_apps/2.3/empty/test/performance/browsing_test.rb
1363
1363
  - test/stub/rails_apps/2.3/empty/test/test_helper.rb
1364
+ - test/stub/rails_apps/2.3/foobar/Rakefile
1364
1365
  - test/stub/rails_apps/2.3/foobar/app/controllers/application_controller.rb
1365
1366
  - test/stub/rails_apps/2.3/foobar/app/controllers/bar_controller_1.rb
1366
1367
  - test/stub/rails_apps/2.3/foobar/app/controllers/bar_controller_2.rb
@@ -1375,7 +1376,6 @@ files:
1375
1376
  - test/stub/rails_apps/2.3/foobar/config/initializers/inflections.rb
1376
1377
  - test/stub/rails_apps/2.3/foobar/config/initializers/mime_types.rb
1377
1378
  - test/stub/rails_apps/2.3/foobar/config/routes.rb
1378
- - test/stub/rails_apps/2.3/foobar/Rakefile
1379
1379
  - test/stub/rails_apps/2.3/foobar/script/about
1380
1380
  - test/stub/rails_apps/2.3/foobar/script/console
1381
1381
  - test/stub/rails_apps/2.3/foobar/script/dbconsole
@@ -1390,6 +1390,7 @@ files:
1390
1390
  - test/stub/rails_apps/2.3/foobar/script/process/spawner
1391
1391
  - test/stub/rails_apps/2.3/foobar/script/runner
1392
1392
  - test/stub/rails_apps/2.3/foobar/script/server
1393
+ - test/stub/rails_apps/2.3/mycook/Rakefile
1393
1394
  - test/stub/rails_apps/2.3/mycook/app/controllers/application_controller.rb
1394
1395
  - test/stub/rails_apps/2.3/mycook/app/controllers/recipes_controller.rb
1395
1396
  - test/stub/rails_apps/2.3/mycook/app/controllers/uploads_controller.rb
@@ -1431,7 +1432,6 @@ files:
1431
1432
  - test/stub/rails_apps/2.3/mycook/public/robots.txt
1432
1433
  - test/stub/rails_apps/2.3/mycook/public/uploads.html
1433
1434
  - test/stub/rails_apps/2.3/mycook/public/welcome/cached.html
1434
- - test/stub/rails_apps/2.3/mycook/Rakefile
1435
1435
  - test/stub/rails_apps/2.3/mycook/script/about
1436
1436
  - test/stub/rails_apps/2.3/mycook/script/console
1437
1437
  - test/stub/rails_apps/2.3/mycook/script/dbconsole
@@ -1452,9 +1452,13 @@ files:
1452
1452
  - test/stub/rails_apps/2.3/mycook/tmp/pids/useless.txt
1453
1453
  - test/stub/rails_apps/2.3/mycook/tmp/sessions/useless.txt
1454
1454
  - test/stub/rails_apps/2.3/mycook/tmp/sockets/useless.txt
1455
+ - test/stub/rails_apps/3.0/empty/Gemfile
1456
+ - test/stub/rails_apps/3.0/empty/Gemfile.lock
1457
+ - test/stub/rails_apps/3.0/empty/Rakefile
1455
1458
  - test/stub/rails_apps/3.0/empty/app/controllers/application_controller.rb
1456
1459
  - test/stub/rails_apps/3.0/empty/app/helpers/application_helper.rb
1457
1460
  - test/stub/rails_apps/3.0/empty/app/views/layouts/application.html.erb
1461
+ - test/stub/rails_apps/3.0/empty/config.ru
1458
1462
  - test/stub/rails_apps/3.0/empty/config/application.rb
1459
1463
  - test/stub/rails_apps/3.0/empty/config/boot.rb
1460
1464
  - test/stub/rails_apps/3.0/empty/config/database.yml
@@ -1470,36 +1474,33 @@ files:
1470
1474
  - test/stub/rails_apps/3.0/empty/config/initializers/session_store.rb
1471
1475
  - test/stub/rails_apps/3.0/empty/config/locales/en.yml
1472
1476
  - test/stub/rails_apps/3.0/empty/config/routes.rb
1473
- - test/stub/rails_apps/3.0/empty/config.ru
1474
1477
  - test/stub/rails_apps/3.0/empty/db/seeds.rb
1475
1478
  - test/stub/rails_apps/3.0/empty/doc/README_FOR_APP
1476
- - test/stub/rails_apps/3.0/empty/Gemfile
1477
- - test/stub/rails_apps/3.0/empty/Gemfile.lock
1478
1479
  - test/stub/rails_apps/3.0/empty/public/404.html
1479
1480
  - test/stub/rails_apps/3.0/empty/public/422.html
1480
1481
  - test/stub/rails_apps/3.0/empty/public/500.html
1481
1482
  - test/stub/rails_apps/3.0/empty/public/favicon.ico
1482
1483
  - test/stub/rails_apps/3.0/empty/public/index.html
1483
1484
  - test/stub/rails_apps/3.0/empty/public/robots.txt
1484
- - test/stub/rails_apps/3.0/empty/Rakefile
1485
1485
  - test/stub/rails_apps/3.0/empty/script/rails
1486
1486
  - test/stub/rails_apps/3.0/empty/test/performance/browsing_test.rb
1487
1487
  - test/stub/rails_apps/3.0/empty/test/test_helper.rb
1488
1488
  - test/stub/spawn_server.rb
1489
1489
  - test/stub/upload_data.txt
1490
+ - test/stub/vendor_rails/minimal/README
1490
1491
  - test/stub/vendor_rails/minimal/actionmailer/lib/action_mailer.rb
1491
1492
  - test/stub/vendor_rails/minimal/actionpack/lib/action_controller.rb
1492
1493
  - test/stub/vendor_rails/minimal/actionpack/lib/action_pack.rb
1493
1494
  - test/stub/vendor_rails/minimal/actionpack/lib/action_view.rb
1494
1495
  - test/stub/vendor_rails/minimal/activerecord/lib/active_record.rb
1495
1496
  - test/stub/vendor_rails/minimal/activeresource/lib/active_resource.rb
1496
- - test/stub/vendor_rails/minimal/activesupport/lib/active_support/whiny_nil.rb
1497
1497
  - test/stub/vendor_rails/minimal/activesupport/lib/active_support.rb
1498
+ - test/stub/vendor_rails/minimal/activesupport/lib/active_support/whiny_nil.rb
1498
1499
  - test/stub/vendor_rails/minimal/railties/lib/dispatcher.rb
1499
1500
  - test/stub/vendor_rails/minimal/railties/lib/initializer.rb
1500
1501
  - test/stub/vendor_rails/minimal/railties/lib/ruby_version_check.rb
1501
- - test/stub/vendor_rails/minimal/README
1502
1502
  - test/stub/wsgi/passenger_wsgi.py
1503
+ - test/stub/wsgi/passenger_wsgi.pyc
1503
1504
  - test/stub/wsgi/public/wsgi-snake.jpg
1504
1505
  - test/stub/zsfa/header.png
1505
1506
  - test/stub/zsfa/index.html