mirror of
https://github.com/boostorg/website.git
synced 2026-01-27 07:22:15 +00:00
18 lines
478 B
PHP
18 lines
478 B
PHP
<?php
|
|
|
|
require_once(dirname(__FILE__) . '/../common/code/boost.php');
|
|
|
|
$archive = new BoostArchive(array(
|
|
'pattern' => '/^[\/]([^\/]+)[\/](.*)$/',
|
|
'archive_subdir' => false, // the result zips don't have the tag subdir
|
|
'zipfile' => true, // stored as a zipfile
|
|
'archive_dir' => RESULTS_DIR,
|
|
'override_extractor' => 'raw' // we always want raw output
|
|
));
|
|
|
|
$archive->display_from_archive(
|
|
array(
|
|
//~ array(path-regex,raw|simple|text|cpp,mime-type),
|
|
)
|
|
);
|