summaryrefslogtreecommitdiff
path: root/www/rt36/files/multiple-lib-RT_pm_in
diff options
context:
space:
mode:
authorDoug Barton <dougb@FreeBSD.org>2011-09-30 09:12:36 +0000
committerDoug Barton <dougb@FreeBSD.org>2011-09-30 09:12:36 +0000
commit9766a65fd0afeee48b78ea6bda3a90fa11014f9e (patch)
tree9f0601049fddfc73cec41ed94307f3abadf1b46b /www/rt36/files/multiple-lib-RT_pm_in
parent- s,net/py-zopeInterface,devel/py-zopeInterface, (diff)
As previously advertised, delete ports that have
vulnerabilities listed in portaudit, and those that depend on them - part 1 math/mupad Relies on xpm, vulnerable since 2004-09-15 net-p2p/torrentflux Vulnerable since 2006-10-07 net/tptest Vulnerable since 2009-12-17 security/pgp6 Vulnerable since 2005-07-31 www/p5-RTx-RightsMatrix Only works with www/rt36, which is FORBIDDEN www/p5-RTx-Shredder Only works with www/rt36, which is FORBIDDEN www/p5-RTx-Statistics Only works with www/rt36, which is FORBIDDEN www/plone Vulnerable since 2011-02-10 www/pyblosxom Vulnerable since 2009-02-11 www/rt36 Vulnerable since 2009-12-09 www/zope-archetypes Depends on www/plone, which is FORBIDDEN www/zope-calendaring Depends on www/plone, which is FORBIDDEN www/zope-coreblog2 Depends on www/plone, which is FORBIDDEN www/zope-i18nlayer Depends on www/plone, which is FORBIDDEN www/zope-plonelanguagetool Depends on www/plone, which is FORBIDDEN www/zope-simpleblog Depends on www/plone, which is FORBIDDEN
Notes
Notes: svn path=/head/; revision=282655
Diffstat (limited to 'www/rt36/files/multiple-lib-RT_pm_in')
-rw-r--r--www/rt36/files/multiple-lib-RT_pm_in63
1 files changed, 0 insertions, 63 deletions
diff --git a/www/rt36/files/multiple-lib-RT_pm_in b/www/rt36/files/multiple-lib-RT_pm_in
deleted file mode 100644
index 0cbeb31f238c..000000000000
--- a/www/rt36/files/multiple-lib-RT_pm_in
+++ /dev/null
@@ -1,63 +0,0 @@
---- lib/RT.pm.in.orig Mon Nov 6 21:09:32 2006
-+++ lib/RT.pm.in Mon Apr 30 23:04:45 2007
-@@ -98,6 +98,60 @@
- # via the web interface)
- $MasonSessionDir = '@MASON_SESSION_PATH@';
-
-+=item import
-+
-+Allow override of various internal paths.
-+
-+ RT->import (
-+ RT_INSTANCE_PATH => '/usr/local/rt/stuff',
-+ SITE_CONFIG_FILE => '/etc/stuff.pm',
-+ ...
-+ );
-+
-+If RT_INSTANCE_PATH is set in the arguments (or in %ENV)
-+then it replaces the old value of $BasePath in the following
-+variables:
-+ $SITE_CONFIG_FILE
-+ $LocalPath
-+ $LocalEtcPath
-+ $LocalLexiconPath
-+ $MasonLocalComponentRoot
-+ $MasonDataDir
-+ $MasonSessionDir
-+
-+Beyond that, those individual values can be set explicitly
-+by arguments.
-+
-+=cut
-+
-+sub import {
-+no strict 'refs';
-+ shift;
-+ my %args = @_;
-+ return unless ( scalar (keys %args) || $ENV{RT_INSTANCE_PATH} );
-+
-+ my @variables = qw (
-+ SITE_CONFIG_FILE
-+ LocalPath
-+ LocalEtcPath
-+ LocalLexiconPath
-+ MasonLocalComponentRoot
-+ MasonDataDir
-+ MasonSessionDir
-+ );
-+
-+ my $RT_INSTANCE_PATH = $args{RT_INSTANCE_PATH} || $ENV{RT_INSTANCE_PATH};
-+ if ($RT_INSTANCE_PATH) {
-+ foreach my $vref (@variables) {
-+ $$vref =~ s/^\Q$BasePath\E/$RT_INSTANCE_PATH/;
-+ }
-+ }
-+ foreach my $vref (@variables) {
-+ $$vref = $args{$vref} if defined ( $args{$vref} );
-+ }
-+
-+use strict 'refs';
-+}
-
-
- =head1 NAME