mirror of
https://github.com/boostorg/website.git
synced 2026-01-29 20:12:14 +00:00
- Move some pages to the wiki. - Try to make the documentation pages a little easier to maintain. - Adjust the header so that it's more consisten and less likely to intefere with the rest of the page. - Some prep for 1.43 which shouldn't turn up on the actual pages. [SVN r61781]
10 lines
370 B
PHP
10 lines
370 B
PHP
<?php
|
|
require_once(dirname(__FILE__) . '/../common/code/boost_archive.php');
|
|
|
|
display_from_archive(
|
|
get_archive_location('@^[/]([^/]+)[/](.*)$@',$_SERVER["PATH_INFO"]),
|
|
array(
|
|
//~ array(version-regex,path-regex,raw|simple|text|cpp|boost_book_html|boost_libs_html,mime-type[,preprocess hook]),
|
|
array('@.*@','@[.](html|htm)$@i','boost_book_html','text/html'),
|
|
));
|