2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-30 08:22:18 +00:00
Files
website/development/testing_results.php
Daniel James f0aab8ced9 Website: Remove version-regex.
It isn't used anywhere and didn't work.

[SVN r79661]
2012-07-22 07:22:38 +00:00

16 lines
481 B
PHP

<?php
require_once(dirname(__FILE__) . '/../common/code/boost_archive.php');
display_from_archive(
array(
//~ array(path-regex,raw|simple|text|cpp|boost_book_html|boost_libs_html,mime-type),
),
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
)
);