webkitpdf.php
[app.webkitpdf] / webkitpdf.php
1 <?php
2
3 // a simple service to run webkitpdf and return the PDF...
4 // note - this will only run on localhost by default...
5
6 // needs pear in the 
7 // test:  http://localhost/webkitpdf.php
8
9 // create a simple file:
10 /*
11 ini_set('include_path', 
12             dirname(__FILE__). ':' . 
13             dirname(__FILE__).'/pear:' . 
14             ini_get('include_path'));
15
16 require_once 'webkitpdf.php';
17 new WebkitPdf();
18 */
19
20
21
22 class WebkitPdf
23 {
24     
25     function WebkitPdf()
26     {
27         if (empty($_REQUEST['url'])) {
28             $this->h404();
29         }
30         
31         require_once 'System.php';
32         $xvfb = 
33         
34     }
35     
36 }