(file) Return to attach.cgi CVS log (file) (dir) Up to [RizwankCVS] / geekymedia_web / twiki / bin

 1 rizwank 1.1 #!/usr/bin/perl -wT
 2             #
 3             # TWiki Collaboration Platform, http://TWiki.org/
 4             #
 5             # Copyright (C) 1999-2004 Peter Thoeny, peter@thoeny.com
 6             #
 7             # For licensing info read license.txt file in the TWiki root.
 8             # This program is free software; you can redistribute it and/or
 9             # modify it under the terms of the GNU General Public License
10             # as published by the Free Software Foundation; either version 2
11             # of the License, or (at your option) any later version.
12             #
13             # This program is distributed in the hope that it will be useful,
14             # but WITHOUT ANY WARRANTY; without even the implied warranty of
15             # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16             # GNU General Public License for more details, published at 
17             # http://www.gnu.org/copyleft/gpl.html
18             
19             BEGIN {
20                 # Set default current working directory (needed for mod_perl)
21                 if( $ENV{"SCRIPT_FILENAME"} && $ENV{"SCRIPT_FILENAME"} =~ /^(.+)\/[^\/]+$/ ) {
22 rizwank 1.1         chdir $1;
23                 }
24                 # Set library paths in @INC at compile time
25                 unshift @INC, '.';
26                 require 'setlib.cfg';
27             }
28             
29             use CGI::Carp qw( fatalsToBrowser );
30             use CGI;
31             use TWiki::UI::Upload;
32             
33             my $query = new CGI;
34             my $thePathInfo = $query->path_info(); 
35             my $theRemoteUser = $query->remote_user();
36             my $theTopic = $query->param( 'topic' );
37             my $theUrl = $query->url;
38             
39             my( $topic, $webName, $dummy, $userName ) = 
40               TWiki::initialize( $thePathInfo, $theRemoteUser, $theTopic, $theUrl, $query );
41             
42             TWiki::UI::Upload::attach( $webName, $topic, $userName, $query );
43 rizwank 1.1 
44             

Rizwan Kassim
Powered by
ViewCVS 0.9.2