added plugins to their own module
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 10 Feb 2001 17:54:50 +0000 (17:54 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 10 Feb 2001 17:54:50 +0000 (17:54 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1121 7612ce4b-ef26-0410-bec9-ea0150e637f0

plugins/README.plugins [deleted file]
plugins/index.php [deleted file]
plugins/make_archive.pl [deleted file]

diff --git a/plugins/README.plugins b/plugins/README.plugins
deleted file mode 100644 (file)
index ea62502..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-Plugins
-=======
-
-To understand more about plugins, read doc/plugin.txt
-
-For the impatient, here is an extremely brief overview of how to
-install plugins.
-
-  1.  Change to the plugins directory.
-
-        $ cd plugins/
-
-  2.  Unarchive the plugin.
-
-        $ tar -zxvf /home/me/myplugin.tar.gz
-
-  3.  Note the directory that the plugin was created into.  For this
-      example, we will assume it was put in the directory: myplugin/.
-
-  4.  Go to the config directory and run conf.pl
-
-        $ cd ../../config/
-        $ ./conf.pl
-
-  5.  Choose option 8 and proceed to add the new plugin following
-      the instructions there.  Save and exit, and your plugin should
-      be in place.
diff --git a/plugins/index.php b/plugins/index.php
deleted file mode 100644 (file)
index 9d9ed2c..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-/**
- ** index.php
- **
- ** This file simply takes any attempt to view source files
- ** and sends those people to the login screen. At this
- ** point no attempt is made to see if the person is logged
- ** or not.
- **/
-
-header("Location:../index.php");
-
-/** pretty impressive huh? **/
-?>
diff --git a/plugins/make_archive.pl b/plugins/make_archive.pl
deleted file mode 100755 (executable)
index 3a3bf17..0000000
+++ /dev/null
@@ -1,144 +0,0 @@
-#!/usr/bin/perl
-#
-# This all could (maybe) be done in a shell script, but I suck at those.
-
-$i = 0;
-$Verbose = 0;
-$Plugin = "";
-$Version = "";
-
-foreach $arg (@ARGV)
-{
-    if ($arg eq "-v")
-    {
-        $Verbose = 1;
-    }
-    elsif ($Plugin eq "")
-    {
-        $Plugin = $arg;
-    }
-    elsif ($Version eq "")
-    {
-        $Version = $arg;
-    }
-    else
-    {
-        print "Unrecognized argument:  $arg\n";
-       exit(0);
-    }
-}
-
-if ($Version eq "")
-{
-    print "Syntax:  make_archive.pl [-v] plugin_name version.number\n";
-    print "-v = be verbose\n";
-    exit(0);
-}
-
-
-print "Reformatting plugin name and version number.\n" if ($Verbose);
-$Plugin =~ s/\///g;
-$Version =~ s/\./_/g;
-
-VerifyInfo($Plugin, $Version);
-
-print "Getting file list.\n" if ($Verbose);
-@Files = RecurseDir($Plugin);
-
-$QuietString = " > /dev/null 2> /dev/null" if (! $Verbose);
-
-print "\n\n" if ($Verbose);
-print "Creating $Plugin-$Version.tar.gz\n";
-system("tar cvfz $Plugin-$Version.tar.gz $Plugin" . FindTarExcludes(@Files)
-    . $QuietString);
-    
-print "\n\n" if ($Verbose);
-print "Creating $Plugin-$Version.zip\n";
-system("zip -r $Plugin-$Version.zip $Plugin/" . FindZipExcludes(@Files)
-    . $QuietString);
-
-
-
-sub VerifyInfo
-{
-    local ($Plugin, $Version) = @_;
-    
-    if (! -e $Plugin && ! -d $Plugin)
-    {
-        print "The $Plugin directory doesn't exist, " .
-           "or else it is not a directory.\n";
-        exit(0);
-    }
-}
-
-
-sub FindTarExcludes
-{
-    local (@Files) = @_;
-    
-    $ExcludeStr = "";
-    
-    foreach $File (@Files)
-    {
-        if ($File =~ /^(.*\/CVS)\/$/)
-       {
-           $ExcludeStr .= " $1";
-       }
-    }
-    
-    if ($ExcludeStr ne "")
-    {
-        $ExcludeStr = " --exclude" . $ExcludeStr;
-    }
-    
-    return $ExcludeStr;
-}
-
-sub FindZipExcludes
-{
-    local (@Files) = @_;
-    
-    $ExcludeStr = "";
-    
-    foreach $File (@Files)
-    {
-        if ($File =~ /^(.*\/CVS)\/$/)
-       {
-           $ExcludeStr .= " $1/ $1/*";
-       }
-    }
-    
-    if ($ExcludeStr ne "")
-    {
-        $ExcludeStr = " -x" . $ExcludeStr;
-    }
-    
-    return $ExcludeStr;
-}
-
-sub RecurseDir
-{
-    local ($Dir) = @_;
-    local (@Files, @Results);
-    
-    opendir(DIR, $Dir);
-    @Files = readdir(DIR);
-    closedir(DIR);
-    
-    @Results = ("$Dir/");
-    
-    foreach $file (@Files)
-    {
-        next if ($file =~ /^[\.]+/);
-        if (-d "$Dir/$file")
-       {
-           push (@Results, RecurseDir("$Dir/$file"));
-       }
-       else
-       {
-           push (@Results, "$Dir/$file");
-       }
-    }
-    
-    return @Results;
-}