mirror of
https://github.com/boostorg/website.git
synced 2026-01-27 19:32:16 +00:00
12 lines
279 B
PHP
12 lines
279 B
PHP
<?php
|
|
require_once(dirname(__FILE__) . '/../common/code/archive_file.php');
|
|
|
|
$_file = new archive_file(
|
|
'/^[\/]([^\/]+)[\/](.*)$/',$_SERVER["PATH_INFO"],
|
|
true, // we always want raw output
|
|
false, // the result zips don't have the tag subdir
|
|
RESULTS_DIR."/",
|
|
""
|
|
);
|
|
?>
|