Changes between Version 37 and Version 38 of TracWikiPrintPlugin


Ignore:
Timestamp:
Feb 8, 2013, 2:16:41 AM (11 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracWikiPrintPlugin

    v37 v38  
    5757 * Printable HTML
    5858
    59 If you're behind a proxy, add something like this to your .wsgi file so resources can be downloaded when creating pdfs:
     59If you're behind a proxy, add something like this to your .wsgi file so '''remote''' resources can be downloaded when creating pdfs:
    6060
    6161{{{
     
    6464os.environ['no_proxy'] = '.company.com'
    6565}}}
     66
     67If you're using apache with authentication, add something like this to your apache .conf file so '''local''' resources can be downloaded when creating pdfs (where `your.ip.address` is replaced with the output of `hostname -i`):
     68{{{
     69...
     70 Require valid-user
     71 Order deny,allow
     72 Deny from all
     73 Allow from 127.0.0.1
     74 Allow from your.ip.address
     75 Satisfy any
     76...
     77}}}
     78
    6679Additional options can be set by creating a ''wikiprint'' section in ''trac.ini'':
    6780