hi i don't have a proper solution for this. i see your point though i think the real issue for a user is basically: "where am i?".
i have enclosed an example which might be too much but i think the problem should be solved along those lines. the file is a heavily heavily edited (to save kb) version of /docs/1.0/guide/install.html. it should "run standalone" :) what i have done, is: - boldfaced the h1, h2, h3, h4 (which i think we should have done anyway). - included the path/breadcrumb for (_only_) this particular item : APACHE_SRC (the styles for this local path/breadcrumb is of course the same as the one at the top of the page) so what you get is first of all more visible section headers (because they are bold) and secondly a complete path for the current chosen item. with that path (and its links) close to you, it's easier to see where you actually are and therefore easier to navigate the content _and_ therefore easier to understand the context. well, click on APACHE_SRC in the table of contents and you see what i mean. this solution is not so visibly seperated as you requested, but on the other hand it is user-friendly IMO. in fact, having just taken a look at it again i think it looks rather cool, also because it will (should) scale well if there's a long path. ./allan Per Einar Ellefsen wrote: > > Hi everyone, > > I guess this is more a question for the design department :) > > I have been working on the content quite a bit this week-end, and have > become concerned with one thing: it's impossible to see any difference > between the different title tags: <h1>, <h2>, <h3>, etc.. all look the > same! This is a problem because it means you can't get an idea of the > section hierarchy while reading the document, only in the TOC. > > I suggest that you either: > - make them different sizes > - make them more or less emphasized > - make them different colours (I prefer not, I think the colours is good as > it is) > > I actually like their look, but I think it should be possible to tell them > apart. > > -- > Per Einar Ellefsen > [EMAIL PROTECTED] > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED]Title: mod_perl Installation
Table of ContentsA Summary of a Basic mod_perl InstallationThe following 10 commands summarize the execution steps required to build and install a basic mod_perl enabled Apache server on almost any standard flavor of Unix OS.
Of course you should replace x.xx and x.x.x with the real version numbers of mod_perl and Apache. All that's left is to add a few configuration lines to If you have stumbled upon a problem at any of the above steps, don't despair, the next sections will explain in detail each and every step. Of course there is a way of installing mod_perl in only a couple of minutes if you are using a Linux distribution that uses RPM packages:
or apt system:
These should set up both Apache and mod_perl correctly for your system. Using a packaged distribution can make installing and reinstalling a lot quicker and easier. (Note that the filenames will vary, and xx.xx will differ.) Since mod_perl can be configured in many different ways (features can be enabled or disabled, directories can be modified, etc.) it's preferable to use a manual installation, as a prepackaged version might not suit your needs. Manual installation will allow you to make the fine tuning for the best performance as well. In this chapter we will talk extensively about the prepackaged versions, and ways to prepare your own packages for reuse on many machines. The Gory DetailsWe saw that the basic mod_perl installation is quite simple and takes
about 10 commands. You can copy and paste them from these pages. The
parameter To accomplish this you will need to understand various techniques for mod_perl configuration and building. You need to know what configuration parameters are available to you and when and how to use them. As with Perl, with mod_perl simple things are simple. But when you need to accomplish more complicated tasks you may have to invest some time to gain a deeper understanding of the process. In this chapter I will take the following route. I'll start with a detailed explanation of the four stages of the mod_perl installation process, then continue with the different paths each installation might take according to your goal, followed by a few copy-and-paste real world installation scenarios. Towards the end of the chapter I will show you various approaches that make the installations easier, automating most of the steps. Finally I'll cover some of the general issues that can cause new users to stumble while installing mod_perl. We can clearly separate the installation process into the following stages:
Source Configuration (perl Makefile.PL ...)Before building and installing mod_perl you have to configure it. You configure mod_perl just like any other Perl module:
In this section we will go through most of the parameters mod_perl can accept and explain each one of them. First let's see what configuration mechanisms we have available.
Basically they all define a special set of parameters to be passed to
The source configuration mechanism in Apache 1.3 provides four major features (which of course are available to mod_perl):
Taking these four features together provides a way to integrate mod_perl into Apache in a very clean and smooth way. No patching of the Apache source tree is needed in the standard situation and in the APXS situation not even the Apache source tree is needed. To benefit from the above features a new hybrid build environment was
created for the Apache side of mod_perl. The Apache-side consists of
the mod_perl C source files which have to be compiled into the
This approach is problematic in several ways. It is very restrictive and not very clean because it assumes that mod_perl is the only third-party module which has to be integrated into Apache. The new approach described below avoids these problems. It prepares only the src/modules/perl/ subtree inside the Apache source tree without adjusting or editing anything else. This way, no conflicts can occur. Instead, mod_perl is activated later (when the Apache source tree is configured, via APACI calls) and then it configures itself. We will return to each of the above configuration mechanisms when describing different installation passes, once the overview of the four building steps is completed. Configuration parametersThe command
APACHE_SRC
If you specify neither the etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. etc. Last modified Mon Apr 1 16:57:57 2002 | |||||||||||||||||||||||||
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
