2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-26 07:02:23 +00:00
Files
website/development/testing_results.php
Daniel James 6f6ff826b3 Hack the documentation code to server from unzipped files.
This is going to break the beta documentation. But that's okay, since it's the
beta site. Hopefully it might reduce the load on the server, which is still
high.


[SVN r64631]
2010-08-06 10:01:39 +00:00

16 lines
443 B
PHP

<?php
require_once(dirname(__FILE__) . '/../common/code/boost_archive.php');
display_from_archive(
get_archive_location(
'/^[\/]([^\/]+)[\/](.*)$/',$_SERVER["PATH_INFO"],
false, // the result zips don't have the tag subdir
true, // stored as a zipfile
RESULTS_DIR
),
array(
//~ array(version-regex,path-regex,raw|simple|text|cpp|boost_book_html|boost_libs_html,mime-type),
),
'raw' // we always want raw output
);