| 1 | #! /usr/bin/perl -wT |
|---|
| 2 | # See bottom of file for license and copyright information |
|---|
| 3 | use strict; |
|---|
| 4 | use warnings; |
|---|
| 5 | |
|---|
| 6 | BEGIN { |
|---|
| 7 | if ( defined $ENV{GATEWAY_INTERFACE} || defined $ENV{MOD_PERL} ) { |
|---|
| 8 | $Foswiki::cfg{Engine} = 'Foswiki::Engine::CGI'; |
|---|
| 9 | use CGI::Carp qw(fatalsToBrowser); |
|---|
| 10 | $SIG{__DIE__} = \&CGI::Carp::confess; |
|---|
| 11 | } |
|---|
| 12 | else { |
|---|
| 13 | $Foswiki::cfg{Engine} = 'Foswiki::Engine::CLI'; |
|---|
| 14 | require Carp; |
|---|
| 15 | $SIG{__DIE__} = \&Carp::confess; |
|---|
| 16 | } |
|---|
| 17 | $ENV{FOSWIKI_ACTION} = 'view'; |
|---|
| 18 | @INC = ( '.', grep { $_ ne '.' } @INC ); |
|---|
| 19 | require 'setlib.cfg'; |
|---|
| 20 | } |
|---|
| 21 | |
|---|
| 22 | use Foswiki (); |
|---|
| 23 | use Foswiki::UI (); |
|---|
| 24 | $Foswiki::engine->run(); |
|---|
| 25 | __END__ |
|---|
| 26 | Foswiki - The Free and Open Source Wiki, http://foswiki.org/ |
|---|
| 27 | |
|---|
| 28 | Copyright (C) 2008-2010 Foswiki Contributors. Foswiki Contributors |
|---|
| 29 | are listed in the AUTHORS file in the root of this distribution. |
|---|
| 30 | NOTE: Please extend that file, not this notice. |
|---|
| 31 | |
|---|
| 32 | Additional copyrights apply to some or all of the code in this |
|---|
| 33 | file as follows: |
|---|
| 34 | |
|---|
| 35 | Copyright (C) 1999-2007 Peter Thoeny, peter@thoeny.org |
|---|
| 36 | and TWiki Contributors. All Rights Reserved. TWiki Contributors |
|---|
| 37 | are listed in the AUTHORS file in the root of this distribution. |
|---|
| 38 | |
|---|
| 39 | This program is free software; you can redistribute it and/or |
|---|
| 40 | modify it under the terms of the GNU General Public License |
|---|
| 41 | as published by the Free Software Foundation; either version 2 |
|---|
| 42 | of the License, or (at your option) any later version. For |
|---|
| 43 | more details read LICENSE in the root of this distribution. |
|---|
| 44 | |
|---|
| 45 | This program is distributed in the hope that it will be useful, |
|---|
| 46 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 47 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 48 | |
|---|
| 49 | As per the GPL, removal of this notice is prohibited. |
|---|