mirror of
https://github.com/boostorg/website.git
synced 2026-01-25 18:52:30 +00:00
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]
16 lines
443 B
PHP
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
|
|
);
|