Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64916 - website/public_html/beta/common/code
From: dnljms_at_[hidden]
Date: 2010-08-19 04:08:34


Author: danieljames
Date: 2010-08-19 04:08:31 EDT (Thu, 19 Aug 2010)
New Revision: 64916
URL: http://svn.boost.org/trac/boost/changeset/64916

Log:
Oops. Fix file name.
Added:
   website/public_html/beta/common/code/boost_filter_boost_book_html.php (contents, props changed)
      - copied, changed from r64915, /website/public_html/beta/common/code/boost_filter_boost_boost_html.php
Removed:
   website/public_html/beta/common/code/boost_filter_boost_boost_html.php
Text files modified:
   website/public_html/beta/common/code/boost_archive.php | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: website/public_html/beta/common/code/boost_archive.php
==============================================================================
--- website/public_html/beta/common/code/boost_archive.php (original)
+++ website/public_html/beta/common/code/boost_archive.php 2010-08-19 04:08:31 EDT (Thu, 19 Aug 2010)
@@ -101,7 +101,7 @@
     }
 
     $last_modified = max(
- strtotime("Thu, 19 Aug 2010 08:54:00 +0100"),
+ strtotime("Thu, 19 Aug 2010 09:06:00 +0100"),
         filemtime($check_file));
 
     if (!conditional_get($last_modified))

Copied: website/public_html/beta/common/code/boost_filter_boost_book_html.php (from r64915, /website/public_html/beta/common/code/boost_filter_boost_boost_html.php)
==============================================================================

Deleted: website/public_html/beta/common/code/boost_filter_boost_boost_html.php
==============================================================================
--- website/public_html/beta/common/code/boost_filter_boost_boost_html.php 2010-08-19 04:08:31 EDT (Thu, 19 Aug 2010)
+++ (empty file)
@@ -1,39 +0,0 @@
-<?php
-/*
- Copyright 2005-2008 Redshift Software, Inc.
- Distributed under the Boost Software License, Version 1.0.
- (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
-*/
-
-require_once(dirname(__FILE__).'/boost_filters.php');
-
-function boost_book_html_filter($params) {
- html_init($params);
- display_template($params['template'],
- new boost_archive_render_callbacks('boost_book_html_filter_content', $params));
-}
-
-function boost_book_html_filter_content($params)
-{
- $text = prepare_html($params['content']);
-
- $text = substr($text,strpos($text,'<div class="spirit-nav">'));
- $text = substr($text,0,strpos($text,'</body>'));
- $text = str_replace('<hr>','',$text);
- $text = str_replace('<table width="100%">','<table class="footer-table">',$text);
- $text = str_replace('<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%">','<table class="footer-table">',$text);
- $text = preg_replace(
- '@[\s]+(border|cellpadding|cellspacing|width|height|valign|frame|rules|naturalsizeflag|background)=[^\s>]+@i',
- '',
- $text );
- ##
- for ($i = 0; $i < 8; $i++) {
- $text = preg_replace(
- '@<img src="[\./a-z]*images/(prev|up|home|next|tip|note|warning|important|caution|sidebar|hint|alert)\.png" alt="([^"]+)"([ /]*)>@Ssm',
- '<img src="/gfx/space.png" alt="${2}" class="${1}_image" />',
- $text );
- }
- ##
-
- print $text;
-}


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk