summaryrefslogtreecommitdiffstats
path: root/docs/sgml/installation.sgml
diff options
context:
space:
mode:
authormbarnson%sisna.com <>2002-11-05 12:11:25 +0100
committermbarnson%sisna.com <>2002-11-05 12:11:25 +0100
commit44cff78e55370b0d26517dc867fbf7047414d46e (patch)
tree649b5c48e362ea8afc227bcc7ed52d0cbc6ddc18 /docs/sgml/installation.sgml
parentf578f85e55cf5bf4467d2a282e12057a069bd8e2 (diff)
downloadbugzilla-44cff78e55370b0d26517dc867fbf7047414d46e.tar.gz
bugzilla-44cff78e55370b0d26517dc867fbf7047414d46e.tar.xz
Removed binmode references on Win32 documentation.
See bug 155743.
Diffstat (limited to 'docs/sgml/installation.sgml')
-rw-r--r--docs/sgml/installation.sgml52
1 files changed, 0 insertions, 52 deletions
diff --git a/docs/sgml/installation.sgml b/docs/sgml/installation.sgml
index 0af9c4bf6..07ab699b4 100644
--- a/docs/sgml/installation.sgml
+++ b/docs/sgml/installation.sgml
@@ -1898,58 +1898,6 @@ system ("C:\\perl\\bin\\perl", "processmail", @ARGLIST);
</para>
</step>
- <step>
- <para>Add
- <function>binmode()</function>
-
- calls so attachments will work (
- <ulink url="http://bugzilla.mozilla.org/show_bug.cgi?id=62000">bug
- 62000</ulink>
-
- ).</para>
-
- <para>Because Microsoft Windows based systems handle binary files
- different than Unix based systems, you need to add the following
- lines to
- <filename>createattachment.cgi</filename>
-
- and
- <filename>showattachment.cgi</filename>
-
- before the
- <function>require 'CGI.pl';</function>
-
- line.</para>
-
- <para>
- <programlisting>
-<![CDATA[
-binmode(STDIN);
-binmode(STDOUT);
-]]>
- </programlisting>
- </para>
-
- <note>
- <para>According to
- <ulink url="http://bugzilla.mozilla.org/show_bug.cgi?id=62000">
- bug 62000</ulink>
-
- , the perl documentation says that you should always use
- <function>binmode()</function>
-
- when dealing with binary files, but never when dealing with text
- files. That seems to suggest that rather than arbitrarily putting
-
- <function>binmode()</function>
-
- at the beginning of the attachment files, there should be logic
- to determine if
- <function>binmode()</function>
-
- is needed or not.</para>
- </note>
- </step>
</procedure>
<tip>