[geeklog-cvs] geeklog-1.3 config.php,1.115,1.116

tony at iowaoutdoors.org tony at iowaoutdoors.org
Fri Jun 4 17:51:16 EDT 2004


Update of /var/cvs/geeklog-1.3
In directory www:/tmp/cvs-serv22490

Modified Files:
	config.php 
Log Message:
Added PDF settings

Index: config.php
===================================================================
RCS file: /var/cvs/geeklog-1.3/config.php,v
retrieving revision 1.115
retrieving revision 1.116
diff -C2 -d -r1.115 -r1.116
*** config.php	29 May 2004 15:46:55 -0000	1.115
--- config.php	4 Jun 2004 21:51:14 -0000	1.116
***************
*** 300,303 ****
--- 300,327 ----
  
  // +---------------------------------------------------------------------------+
+ // | PDF SETTINGS                                                              |
+ // +---------------------------------------------------------------------------+
+ 
+ // Your system must have htmldoc installed.  If you don't have it, you may
+ // download it from http://www.easysw.com/htmldoc/ and yes, it runs on windows
+ // and *nix
+ 
+ // Enables the PDF generator feature.  
+ $_CONF['pdf_enabled'] = false;
+ // Absolute path to the htmldoc binary
+ $_CONF['path_to_htmldoc'] = '/path/to/htmldoc';
+ // Path where we will store the generated PDF's
+ $_CONF['path_pdf'] = $_CONF['path'] . 'pdfs/';
+ // If you want a logo added to the top of your PDF's, provide the full file
+ // system path here.
+ $_CONF['pdf_logo'] = '';
+ // Font point size (sorry no customization of font type yet)
+ $_CONF['pdf_font_size'] = 9;
+ // PDF's are generated and kept however many days you specify below.  If this
+ // is left blank or set to 0 it will default back to 1
+ $_CONF['days_to_keep'] = 1;
+ 
+ 
+ // +---------------------------------------------------------------------------+
  // | SEARCH SETTINGS                                                           |
  // |                                                                           |




More information about the geeklog-cvs mailing list