You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs@httpd.apache.org by Hiroaki KAWAI <ha...@bcl.t.u-tokyo.ac.jp> on 2002/09/16 12:36:48 UTC

modification - 2.0/manual/install.xml

This looks better, doesn't it? ;-)
--

Index: install.xml
===================================================================
RCS file: /home/cvspublic/httpd-2.0/docs/manual/install.xml,v
retrieving revision 1.3
diff -u -r1.3 install.xml
--- install.xml	15 Sep 2002 01:03:37 -0000	1.3
+++ install.xml	16 Sep 2002 10:34:13 -0000
@@ -90,33 +90,26 @@
 
     <p>The following requirements exist for building Apache:</p>
 
-    <ul>
-      <li>Disk Space<br />
-      <br />
-       Make sure you have at least 50 MB of temporary free disk
+    <dl>
+      <dt>Disk Space</dt>
+      <dd>Make sure you have at least 50 MB of temporary free disk
       space available. After installation Apache occupies
       approximately 10 MB of disk space. The actual disk space
       requirements will vary considerably based on your chosen
-      configuration options and any third-party modules.<br />
-      <br />
-      </li>
+      configuration options and any third-party modules.</dd>
 
-      <li>ANSI-C Compiler and Build System<br />
-      <br />
-       Make sure you have an ANSI-C compiler installed. The <a
+      <dt>ANSI-C Compiler and Build System</dt>
+      <dd>Make sure you have an ANSI-C compiler installed. The <a
       href="http://www.gnu.org/software/gcc/gcc.html">GNU C
       compiler (GCC)</a> from the <a
       href="http://www.gnu.org/">Free Software Foundation (FSF)</a>
       is recommended (version 2.7.2 is fine). If you don't have GCC
       then at least make sure your vendor's compiler is ANSI
       compliant. In addition, your <code>PATH</code> must contain
-      basic build tools such as <code>make</code>.<br />
-      <br />
-      </li>
+      basic build tools such as <code>make</code>.</dd>
 
-      <li>Accurate time keeping<br />
-      <br />
-       Elements of the HTTP protocol are expressed as the time of
+      <dt>Accurate time keeping</dt>
+      <dd>Elements of the HTTP protocol are expressed as the time of
       day. So, it's time to investigate setting some time
       synchronization facility on your system. Usually the ntpdate
       or xntpd programs are used for this purpose which are based
@@ -125,14 +118,11 @@
       href="news:comp.protocols.time.ntp">comp.protocols.time.ntp</a>
       and the <a href="http://www.eecis.udel.edu/~ntp/">NTP
       homepage</a> for more details about NTP software and public
-      time servers.<br />
-      <br />
-      </li>
+      time servers.</dd>
 
-      <li><a href="http://www.perl.org/">Perl 5</a>
-      [OPTIONAL]<br />
-      <br />
-       For some of the support scripts like <a
+      <dt><a href="http://www.perl.org/">Perl 5</a>
+      [OPTIONAL]</dt>
+      <dd>For some of the support scripts like <a
       href="programs/apxs.html">apxs</a> or <a
       href="programs/dbmmanage.html">dbmmanage</a> (which are
       written in Perl) the Perl 5 interpreter is required (versions
@@ -143,10 +133,8 @@
       installed (perhaps a Perl 4 from the vendor and a Perl 5 from
       your own), then it is recommended to use the --with-perl
       option (see below) to make sure the correct one is selected
-      by ./configure.<br />
-      <br />
-      </li>
-    </ul>
+      by ./configure.</dd>
+    </dl>
 </section>
 
 <section id="download"><title>Download</title>


--
Hiroaki Kawai
Department of Complexity Science and Engineering,
 The University of Tokyo
http://www.bcl.t.u-tokyo.ac.jp
mailto:hawk@bcl.t.u-tokyo.ac.jp

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by André Malo <nd...@perlig.de>.
* Jan Faerber  wrote:

> Thank you a lot and sorry about my misspelling of your name Hiroaki!
> I hope find a solution on my PC with WindowsMilleniumEdition to
> install and work with a diff-tool.

You may find <http://unxutils.sourceforge.net/> useful. The package
contains a lot of unix "standard" tools compiled for win32 including
diff and patch. 

nd
-- 
Gefunden auf einer "Webdesigner"-Seite:
        > Programmierung in HTML, XML, WML, CGI, FLASH <

# André Malo # http://www.perlig.de/ #

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Jan Faerber <ao...@aon.at>.
Thank you a lot and sorry about my misspelling of your name Hiroaki!
I hope find a solution on my PC with WindowsMilleniumEdition to install and
work with a diff-tool.
Yours Jan

> There are already nothing left to mention for me... ;-)
> Thank you, Thom & Erik.

> But the draft of my reply mail was:
> "Jan Faerber " <ao...@aon.at> wrote:

> It's a format of 'diff -u' output(or 'cvs diff -u').
> 'diff' is a common command in Unix, you might know.
> The lines starting with '-' means that the lines are to be removed,
> and those with '+' are to be added.
>
> The content of the change can be applied to the file
> with 'patch' command. Cut the lines below "Index:..."
> in a file (for example install.patch), and then run following
> patch command in the same directory that the install.xml is in.
> $ patch < install.patch

> More detailed and full information is described at
> http://apache-server.com/tutorials/ATdocs-project.html


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Hiroaki KAWAI <ha...@bcl.t.u-tokyo.ac.jp>.
There are already nothing left to mention for me... ;-)
Thank you, Thom & Erik.

But the draft of my reply mail was:
"Jan Faerber " <ao...@aon.at> wrote:

> Dear Hirokai!
> Please answer a general question!
> Why do you start some of your lines with "-"- and some with a "+"-character?
> Is this a kind of value like "this is fine" and "this is not so good"?
> Yours sincerely
> Jan

It's a format of 'diff -u' output(or 'cvs diff -u'). 
'diff' is a common command in Unix, you might know.
The lines starting with '-' means that the lines are to be removed, 
and those with '+' are to be added.

The content of the change can be applied to the file
with 'patch' command. Cut the lines below "Index:..."
in a file (for example install.patch), and then run following
patch command in the same directory that the install.xml is in.
$ patch < install.patch

More detailed and full information is described at
http://apache-server.com/tutorials/ATdocs-project.html

Hiroaki Kawai
Department of Complexity Science and Engineering,
 The University of Tokyo
http://www.bcl.t.u-tokyo.ac.jp
mailto:hawk@bcl.t.u-tokyo.ac.jp

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Jan Faerber <ao...@aon.at>.

> * Jan Faerber  (aon.964605784@aon.at) wrote :
> > Dear Hirokai!
> > Please answer a general question!
> > Why do you start some of your lines with "-"- and some with a
"+"-character?
> > Is this a kind of value like "this is fine" and "this is not so good"?
>
> These are markers from diff, which is a tool used to produce patches.
> the - means remove this line, and the + means add this line.
> Your question to Joshua regarding the @@ -10,12 +10,13 lines in the cvs
> commit emails also comes from this, and is used to indicate where the
change
> is in the file and how many lines have been removed and added.
> Cheers,
> -Thom


Thank you Thom!
There are a lot of utilities for diff'ing and patching XML files.
Hope I´ll find a good one.
Yours Jan


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Jan Faerber <ao...@aon.at>.
> Jan,
>
> you can find an easy to understand description of the basic Apache
> working model in Ken Coar's Documentation Project Tutorial under
>
>     >> http://apache-server.com/tutorials/ATdocs-project.html
>
> Especially the section about patches should help you to find answers:
>
>    >> http://apache-server.com/tutorials/ATdocs-project.html#patches
>
> Erik


Thanks Erik!

http://lists.w3.org/Archives/Public/xmlschema-dev/2002Jul/0128.html
http://www.informaticsgroup.co.uk/Courses/CodeLookup/HOLAB13A!OpenDocument
http://www.asp.net/download.aspx
http://www.xmlforasp.net/codeSection.aspx?csID=84

These are the links I visited right now after two Goggle-searches. I tried
to install something from there but I hope to find some help in this
tutorials you mentioned above.

Yours Jan


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Erik Abele <er...@codefaktor.de>.
Thom May wrote:
> * Jan Faerber  (aon.964605784@aon.at) wrote :
> 
>>Dear Hirokai!
>>Please answer a general question!
>>Why do you start some of your lines with "-"- and some with a "+"-character?
>>Is this a kind of value like "this is fine" and "this is not so good"?
>
> These are markers from diff, which is a tool used to produce patches.
> the - means remove this line, and the + means add this line.
> Your question to Joshua regarding the @@ -10,12 +10,13 lines in the cvs
> commit emails also comes from this, and is used to indicate where the change
> is in the file and how many lines have been removed and added.
> Cheers,
> -Thom
> 

Jan,

you can find an easy to understand description of the basic Apache 
working model in Ken Coar's Documentation Project Tutorial under

    >> http://apache-server.com/tutorials/ATdocs-project.html

Especially the section about patches should help you to find answers:

   >> http://apache-server.com/tutorials/ATdocs-project.html#patches

Erik


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Thom May <th...@planetarytramp.net>.
* Jan Faerber  (aon.964605784@aon.at) wrote :
> Dear Hirokai!
> Please answer a general question!
> Why do you start some of your lines with "-"- and some with a "+"-character?
> Is this a kind of value like "this is fine" and "this is not so good"?

These are markers from diff, which is a tool used to produce patches.
the - means remove this line, and the + means add this line.
Your question to Joshua regarding the @@ -10,12 +10,13 lines in the cvs
commit emails also comes from this, and is used to indicate where the change
is in the file and how many lines have been removed and added.
Cheers,
-Thom

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Jan Faerber <ao...@aon.at>.
Dear Hirokai!
Please answer a general question!
Why do you start some of your lines with "-"- and some with a "+"-character?
Is this a kind of value like "this is fine" and "this is not so good"?
Yours sincerely
Jan
----- Original Message -----
From: "Hiroaki KAWAI" <ha...@bcl.t.u-tokyo.ac.jp>
To: <do...@httpd.apache.org>
Sent: Monday, September 16, 2002 12:36 PM
Subject: modification - 2.0/manual/install.xml


> This looks better, doesn't it? ;-)
> --
>
> Index: install.xml
> ===================================================================
> RCS file: /home/cvspublic/httpd-2.0/docs/manual/install.xml,v
> retrieving revision 1.3
> diff -u -r1.3 install.xml
> --- install.xml 15 Sep 2002 01:03:37 -0000 1.3
> +++ install.xml 16 Sep 2002 10:34:13 -0000
> @@ -90,33 +90,26 @@
>
>      <p>The following requirements exist for building Apache:</p>
>
> -    <ul>
> -      <li>Disk Space<br />
> -      <br />
> -       Make sure you have at least 50 MB of temporary free disk
> +    <dl>
> +      <dt>Disk Space</dt>
> +      <dd>Make sure you have at least 50 MB of temporary free disk
>        space available. After installation Apache occupies
>        approximately 10 MB of disk space. The actual disk space
>        requirements will vary considerably based on your chosen
> -      configuration options and any third-party modules.<br />
> -      <br />
> -      </li>
> +      configuration options and any third-party modules.</dd>
>
> -      <li>ANSI-C Compiler and Build System<br />
> -      <br />
> -       Make sure you have an ANSI-C compiler installed. The <a
> +      <dt>ANSI-C Compiler and Build System</dt>
> +      <dd>Make sure you have an ANSI-C compiler installed. The <a
>        href="http://www.gnu.org/software/gcc/gcc.html">GNU C
>        compiler (GCC)</a> from the <a
>        href="http://www.gnu.org/">Free Software Foundation (FSF)</a>
>        is recommended (version 2.7.2 is fine). If you don't have GCC
>        then at least make sure your vendor's compiler is ANSI
>        compliant. In addition, your <code>PATH</code> must contain
> -      basic build tools such as <code>make</code>.<br />
> -      <br />
> -      </li>
> +      basic build tools such as <code>make</code>.</dd>
>
> -      <li>Accurate time keeping<br />
> -      <br />
> -       Elements of the HTTP protocol are expressed as the time of
> +      <dt>Accurate time keeping</dt>
> +      <dd>Elements of the HTTP protocol are expressed as the time of
>        day. So, it's time to investigate setting some time
>        synchronization facility on your system. Usually the ntpdate
>        or xntpd programs are used for this purpose which are based
> @@ -125,14 +118,11 @@
>        href="news:comp.protocols.time.ntp">comp.protocols.time.ntp</a>
>        and the <a href="http://www.eecis.udel.edu/~ntp/">NTP
>        homepage</a> for more details about NTP software and public
> -      time servers.<br />
> -      <br />
> -      </li>
> +      time servers.</dd>
>
> -      <li><a href="http://www.perl.org/">Perl 5</a>
> -      [OPTIONAL]<br />
> -      <br />
> -       For some of the support scripts like <a
> +      <dt><a href="http://www.perl.org/">Perl 5</a>
> +      [OPTIONAL]</dt>
> +      <dd>For some of the support scripts like <a
>        href="programs/apxs.html">apxs</a> or <a
>        href="programs/dbmmanage.html">dbmmanage</a> (which are
>        written in Perl) the Perl 5 interpreter is required (versions
> @@ -143,10 +133,8 @@
>        installed (perhaps a Perl 4 from the vendor and a Perl 5 from
>        your own), then it is recommended to use the --with-perl
>        option (see below) to make sure the correct one is selected
> -      by ./configure.<br />
> -      <br />
> -      </li>
> -    </ul>
> +      by ./configure.</dd>
> +    </dl>
>  </section>
>
>  <section id="download"><title>Download</title>
>
>
> --
> Hiroaki Kawai
> Department of Complexity Science and Engineering,
>  The University of Tokyo
> http://www.bcl.t.u-tokyo.ac.jp
> mailto:hawk@bcl.t.u-tokyo.ac.jp
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
> For additional commands, e-mail: docs-help@httpd.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


Re: modification - 2.0/manual/install.xml

Posted by Astrid Kessler <ke...@kess-net.de>.
> This looks better, doesn't it? ;-)

Sure :-)
Committed. Thx.

Kess

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org