summaryrefslogtreecommitdiff
path: root/pod/perlfaq3.pod
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-03-27 03:11:55 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-27 03:11:55 +0000
commitf224927c1e379a33cd6d5e0a5d25d0ecb9c9d964 (patch)
tree55ba224e3f1d9432bc440fe41284cf6eb4c75e04 /pod/perlfaq3.pod
parent1577cd8083ce36a55c5a17443a5fe2c735f08e36 (diff)
downloadperl-f224927c1e379a33cd6d5e0a5d25d0ecb9c9d964.tar.gz
More URL "whitespacing".
p4raw-id: //depot/perl@15543
Diffstat (limited to 'pod/perlfaq3.pod')
-rw-r--r--pod/perlfaq3.pod26
1 files changed, 13 insertions, 13 deletions
diff --git a/pod/perlfaq3.pod b/pod/perlfaq3.pod
index 980e344f8b..2ac18e7004 100644
--- a/pod/perlfaq3.pod
+++ b/pod/perlfaq3.pod
@@ -185,13 +185,13 @@ If you want an IDE, check the following:
ActiveState's cross-platform (as of April 2001 Windows and Linux),
multi-language IDE has Perl support, including a regular expression
debugger and remote debugging
-(http://www.ActiveState.com/Products/Komodo/index.html). (Visual
+( http://www.ActiveState.com/Products/Komodo/index.html ). (Visual
Perl, a Visual Studio.NET plug-in is currently (early 2001) in beta
( http://www.ActiveState.com/Products/VisualPerl/index.html )).
=item The Object System
-(http://www.castlelink.co.uk/object_system/) is a Perl web
+( http://www.castlelink.co.uk/object_system/ ) is a Perl web
applications development IDE, apparently for any platform
that runs Perl.
@@ -204,7 +204,7 @@ under Windows 95/98/NT/2000.
=item PerlBuilder
-(http://www.solutionsoft.com/perl.htm) is an integrated development
+( http://www.solutionsoft.com/perl.htm ) is an integrated development
environment for Windows that supports Perl development.
=item visiPerl+
@@ -239,8 +239,8 @@ do not work since they insert all sorts of behind-the-scenes
information, although some allow you to save files as "Text
Only". You can also download text editors designed
specifically for programming, such as Textpad
-(http://www.textpad.com/) and UltraEdit
-(http://www.ultraedit.com), among others.
+( http://www.textpad.com/ ) and UltraEdit
+( http://www.ultraedit.com/ ), among others.
If you are using MacOS, the same concerns apply. MacPerl
(for Classic environments) comes with a simple editor.
@@ -287,7 +287,7 @@ win32: http://www.cs.vu.nl/%7Etmgil/vi.html
For vi lovers in general, Windows or elsewhere:
http://www.thomer.com/thomer/vi/vi.html
-nvi (http://www.bostic.com/vi/, available from CPAN in src/misc/) is
+nvi ( http://www.bostic.com/vi/ , available from CPAN in src/misc/) is
yet another vi clone, unfortunately not available for Windows, but in
UNIX platforms you might be interested in trying it out, firstly because
strictly speaking it is not a vi clone, it is the real vi, or the new
@@ -315,9 +315,9 @@ http://www.slickedit.com/
There is also a toyedit Text widget based editor written in Perl
that is distributed with the Tk module on CPAN. The ptkdb
-(http://world.std.com/~aep/ptkdb/) is a Perl/tk based debugger that
+( http://world.std.com/~aep/ptkdb/ ) is a Perl/tk based debugger that
acts as a development environment of sorts. Perl Composer
-(http://perlcomposer.sourceforge.net/vperl.html) is an IDE for Perl/Tk
+( http://perlcomposer.sourceforge.net/vperl.html ) is an IDE for Perl/Tk
GUI creation.
In addition to an editor/IDE you might be interested in a more
@@ -331,17 +331,17 @@ from the Cygwin package ( http://sources.redhat.com/cygwin/ )
=item Ksh
-from the MKS Toolkit (http://www.mks.com/), or the Bourne shell of
+from the MKS Toolkit ( http://www.mks.com/ ), or the Bourne shell of
the U/WIN environment ( http://www.research.att.com/sw/tools/uwin/ )
=item Tcsh
-ftp://ftp.astron.com/pub/tcsh/, see also
+ftp://ftp.astron.com/pub/tcsh/ , see also
http://www.primate.wisc.edu/software/csh-tcsh-book/
=item Zsh
-ftp://ftp.blarg.net/users/amol/zsh/, see also http://www.zsh.org/
+ftp://ftp.blarg.net/users/amol/zsh/ , see also http://www.zsh.org/
=back
@@ -643,7 +643,7 @@ you> because the process start-up overhead is where the bottleneck is.
There are two popular ways to avoid this overhead. One solution
involves running the Apache HTTP server (available from
-http://www.apache.org/) with either of the mod_perl or mod_fastcgi
+http://www.apache.org/ ) with either of the mod_perl or mod_fastcgi
plugin modules.
With mod_perl and the Apache::Registry module (distributed with
@@ -655,7 +655,7 @@ anything a module written in C can. For more on mod_perl, see
http://perl.apache.org/
With the FCGI module (from CPAN) and the mod_fastcgi
-module (available from http://www.fastcgi.com/) each of your Perl
+module ( available from http://www.fastcgi.com/ ) each of your Perl
programs becomes a permanent CGI daemon process.
Both of these solutions can have far-reaching effects on your system