$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r61980 - website/public_html/beta/common/code
From: daniel_james_at_[hidden]
Date: 2010-05-15 06:46:33
Author: danieljames
Date: 2010-05-15 06:46:33 EDT (Sat, 15 May 2010)
New Revision: 61980
URL: http://svn.boost.org/trac/boost/changeset/61980
Log:
Pull more out of the extractors.
Text files modified: 
   website/public_html/beta/common/code/boost_archive.php |    52 ++++++++++++++++----------------------- 
   1 files changed, 21 insertions(+), 31 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-05-15 06:46:33 EDT (Sat, 15 May 2010)
@@ -114,8 +114,9 @@
         $extractor_name = $this->extractor_.'_filter';
         $this->extractor_instance_ = new $extractor_name;
 
-        // Note: this sets $this->content_:
-        if(!$this->extractor_instance_->extract($this, $unzip)) {
+        // Note: this sets $this->content_ with either the content or an error
+        // message:
+        if(!extract_file($unzip, $this->content_)) {
             file_not_found($this->file_, $this->content_);
             return;
         }
@@ -156,14 +157,6 @@
     }
 }
 
-class filter_base
-{
-    function extract($archive, $unzip) {}
-    function init($archive) {}
-    function content($archive) {}
-    function render($archive) {}
-};
-
 function display_raw_file($archive, $unzip) {
     header('Content-type: '.$archive->type_);
     ## header('Content-Disposition: attachment; filename="downloaded.pdf"');
@@ -178,28 +171,25 @@
         echo 'Error extracting file: '.unzip_error($exit_status);
 };
 
-class extract_filter_base extends filter_base
-{
-    function extract($archive, $unzip) {
-        $file_handle = popen($unzip,'r');
-        $text = '';
-        while ($file_handle && !feof($file_handle)) {
-            $text .= fread($file_handle,8*1024);
-        }
-        $exit_status = pclose($file_handle);
+function extract_file($unzip, &$content) {
+    $file_handle = popen($unzip,'r');
+    $text = '';
+    while ($file_handle && !feof($file_handle)) {
+        $text .= fread($file_handle,8*1024);
+    }
+    $exit_status = pclose($file_handle);
 
-        if($exit_status == 0) {
-            $archive->content_ = $text;
-            return true;
-        }
-        else {
-            $archive->content_ = strstr($_SERVER['HTTP_HOST'], 'beta') ? unzip_error($exit_status) : null;
-            return false;
-        }
+    if($exit_status == 0) {
+        $content = $text;
+        return true;
     }
-};
+    else {
+        $content = strstr($_SERVER['HTTP_HOST'], 'beta') ? unzip_error($exit_status) : null;
+        return false;
+    }
+}
 
-class text_filter extends extract_filter_base
+class text_filter
 {
     function init($archive)
     {
@@ -219,7 +209,7 @@
     }
 }
 
-class cpp_filter extends extract_filter_base
+class cpp_filter
 {
     function init($archive)
     {
@@ -250,7 +240,7 @@
     }
 }
 
-class html_base_filter extends extract_filter_base
+class html_base_filter
 {
     function init($archive)
     {