Changeset 1162

Show
Ignore:
Timestamp:
05/26/08 15:14:15 (5 months ago)
Author:
dom
Message:

Install signal handlers in reindex.pl and CGI scripts to allow
temporary files (eg from Plucene) to be cleaned up. (fixes #247)

Location:
trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/Changes

    r1141 r1162  
    1313        Include map link URLs in RDF output. (#26) 
    1414        Hide historic versions of nodes from search engines. (#207) 
     15        Install signal handlers in reindex.pl and CGI scripts to allow 
     16          temporary files (eg from Plucene) to be cleaned up. (#247) 
    1517 
    16180.61    4 July 2007 
  • trunk/examples/reindex.pl

    r604 r1162  
    33use strict; 
    44use warnings; 
     5use sigtrap die => 'normal-signals';                                             
    56 
    67use OpenGuides::Config; 
  • trunk/newpage.cgi

    r1086 r1162  
    33use warnings; 
    44use strict; 
     5use sigtrap die => 'normal-signals';                                             
    56 
    67use CGI; 
  • trunk/preferences.cgi

    r1085 r1162  
    33use warnings; 
    44use strict; 
     5use sigtrap die => 'normal-signals';                                             
    56 
    67use CGI; 
  • trunk/search.cgi

    r716 r1162  
    33use warnings; 
    44use strict; 
     5use sigtrap die => 'normal-signals';                                             
    56 
    67use CGI; 
  • trunk/wiki.cgi

    r1142 r1162  
    33use strict; 
    44use warnings; 
     5use sigtrap die => 'normal-signals';                                             
    56 
    67use vars qw( $VERSION );