2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-27 19:32:16 +00:00
Files
website/development/testing_results.php
Daniel James 666b0354df Fix more php 5.3 issues.
Php code in site-tools still requires 5.4, but that's normally not run on the server.
2014-08-07 21:27:43 +01:00

18 lines
510 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|boost_book_html|boost_libs_html,mime-type),
)
);