diff options
author | bugreport%peshkin.net <> | 2004-03-26 13:17:56 +0000 |
---|---|---|
committer | bugreport%peshkin.net <> | 2004-03-26 13:17:56 +0000 |
commit | 59fb407f187933e5c8efa45207568284eff2c189 (patch) | |
tree | 12f61626964adfa43ff6c3b8c5d6e584e097193c | |
parent | 6bc11c20a6d37811b878c9e5e296a35153c07198 (diff) | |
download | bugs-59fb407f187933e5c8efa45207568284eff2c189.tar bugs-59fb407f187933e5c8efa45207568284eff2c189.tar.gz bugs-59fb407f187933e5c8efa45207568284eff2c189.tar.bz2 bugs-59fb407f187933e5c8efa45207568284eff2c189.tar.xz bugs-59fb407f187933e5c8efa45207568284eff2c189.zip |
Bug 177224: Update installation docs to note XUL and RDF MIME types
patch by mkanat
r=justdave, a=justdave
-rw-r--r-- | docs/xml/installation.xml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml index fde5ee764..cd786221c 100644 --- a/docs/xml/installation.xml +++ b/docs/xml/installation.xml @@ -1,5 +1,5 @@ <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> --> -<!-- $Id: installation.xml,v 1.69 2004/03/25 11:19:00 jocuri%softhome.net Exp $ --> +<!-- $Id: installation.xml,v 1.70 2004/03/26 05:17:56 bugreport%peshkin.net Exp $ --> <chapter id="installing-bugzilla"> <title>Installing Bugzilla</title> @@ -1334,6 +1334,30 @@ compromised. For this reason it is recommended that you create a user account for each daemon. </para> + </section> + <section id="apache-addtype"> + <title>Serving Alternate Formats with the right MIME type</title> + + <para> + Some Bugzilla pages have alternate formats, other than just plain + <acronym>HTML</acronym>. In particular, a few Bugzilla pages can + output their contents as either <acronym>XUL</acronym> (a special + Mozilla format, that looks like a program <acronym>GUI</acronym>) + or <acronym>RDF</acronym> (a type of structured <acronym>XML</acronym> + that can be read by various programs). + </para> + <para> + In order for your users to see these pages correctly, Apache must + send them with the right <acronym>MIME</acronym> type. To do this, + add the following lines to your Apache configuration, either in the + <computeroutput><VirtualHost></computeroutput> section for your + Bugzilla, or in the <computeroutput><Directory></computeroutput> + section for your Bugzilla: + </para> + <para> + <screen>AddType application/vnd.mozilla.xul+xml .xul +AddType text/xml .rdf</screen> + </para> </section> </section> |