
pgollucci at apache
May 10, 2009, 9:45 PM
Post #1 of 1
(536 views)
Permalink
|
|
svn commit: r773461 - in /perl/modperl/docs/trunk: bin/makeindex httpd.conf
|
|
Author: pgollucci Date: Mon May 11 04:45:38 2009 New Revision: 773461 URL: http://svn.apache.org/viewvc?rev=773461&view=rev Log: more cleanups of ancient things Modified: perl/modperl/docs/trunk/bin/makeindex perl/modperl/docs/trunk/httpd.conf Modified: perl/modperl/docs/trunk/bin/makeindex URL: http://svn.apache.org/viewvc/perl/modperl/docs/trunk/bin/makeindex?rev=773461&r1=773460&r2=773461&view=diff ============================================================================== --- perl/modperl/docs/trunk/bin/makeindex (original) +++ perl/modperl/docs/trunk/bin/makeindex Mon May 11 04:45:38 2009 @@ -38,26 +38,12 @@ # # both can be set in the user's startup file -# on daedalus (the production server) we cannot modify the config file -# so we do it here BEGIN { require Sys::Hostname; my $hostname = Sys::Hostname::hostname(); - if ($hostname && ($hostname eq 'minotaur.apache.org' || - $hostname eq 'daedalus.apache.org')) { + if ($hostname && ($hostname eq 'minotaur.apache.org') { $ENV{MODPERL_SITE} = "http://perl.apache.org/"; - $ENV{SWISH_BINARY_PATH} = "/home/perlwww/bin/swish-e"; - -# unshift @INC, -# qw( -# /home/stas/lib/perl5/5.00503 -# /home/stas/lib/perl5/site_perl/5.005 -# /home/stas/lib/perl5/site_perl/ -# /home/stas/lib/perl5/site_perl/ -# /home/stas/lib/perl5/ -# ); - } } @@ -70,7 +56,7 @@ my $cwd = Cwd::fastcwd(); chdir "$Bin/../dst_html/search"; -my $swish_binary = $ENV{SWISH_BINARY_PATH} || './swish-e'; +my $swish_binary = $ENV{SWISH_BINARY_PATH} || '/usr/local/bin/swish-e'; die "Cannot find swish-e at $swish_binary: $!" unless -x $swish_binary; $ENV{SPIDER_QUIET} = !$verbose_level; Modified: perl/modperl/docs/trunk/httpd.conf URL: http://svn.apache.org/viewvc/perl/modperl/docs/trunk/httpd.conf?rev=773461&r1=773460&r2=773461&view=diff ============================================================================== --- perl/modperl/docs/trunk/httpd.conf (original) +++ perl/modperl/docs/trunk/httpd.conf Mon May 11 04:45:38 2009 @@ -7,7 +7,6 @@ ServerName perl.apache.org ServerAlias apache.perl.org perl-new.apache.org perl.*.apache.org XBithack Full - Redirect permanent /from-cvs/ http://cvs.apache.org/snapshots/ # Documentation included in the old site. Redirect permanent /guide http://perl.apache.org/docs/1.0/guide # Distributed with mod_perl @@ -23,7 +22,6 @@ # FAQs Redirect permanent /faq/mod_perl_cgi.html http://perl.apache.org/docs/index.html - Redirect permanent /mod_perl_cvs.html http://perl.apache.org/contribute/cvs_howto.html Redirect permanent /faq/index.html http://perl.apache.org/docs/index.html Redirect permanent /tuning/index.html http://perl.apache.org/docs/index.html Redirect permanent /faq/mod_perl_api.html http://perl.apache.org/docs/index.html @@ -93,7 +91,7 @@ # Misc Redirect permanent /bench.txt http://www.chamas.com/bench/ - Redirect permanent /email-etiquette.pod http://perl.apache.org/maillist/email-etiquette.pod.orig + Redirect permanent /email-etiquette.pod http://perl.apache.org/maillist/email-etiquette.pod Redirect permanent /embperl.html http://perl.apache.org/embperl/ Redirect permanent /faqs.html http://perl.apache.org/docs/offsite/index.html --------------------------------------------------------------------- To unsubscribe, e-mail: docs-cvs-unsubscribe[at]perl.apache.org For additional commands, e-mail: docs-cvs-help[at]perl.apache.org
|