summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorjake%acutex.net <>2001-10-16 04:18:00 +0200
committerjake%acutex.net <>2001-10-16 04:18:00 +0200
commit729242dbf8a8e224f2a1f5580fbd972bb18646f0 (patch)
treeb6d5de00376d52908db9838b20ff825f3695d705 /docs
parent02fc8c76dca81000971f91d442cfabb3dea7fda6 (diff)
downloadbugzilla-729242dbf8a8e224f2a1f5580fbd972bb18646f0.tar.gz
bugzilla-729242dbf8a8e224f2a1f5580fbd972bb18646f0.tar.xz
Recompiling docs to pick up last two changes
Diffstat (limited to 'docs')
-rw-r--r--docs/html/Bugzilla-Guide.html7
-rw-r--r--docs/html/bzhacking.html3
-rw-r--r--docs/html/stepbystep.html4
-rw-r--r--docs/txt/Bugzilla-Guide.txt5
4 files changed, 11 insertions, 8 deletions
diff --git a/docs/html/Bugzilla-Guide.html b/docs/html/Bugzilla-Guide.html
index ca916f417..186d93fb9 100644
--- a/docs/html/Bugzilla-Guide.html
+++ b/docs/html/Bugzilla-Guide.html
@@ -4693,7 +4693,7 @@ COLOR="#000000"
CLASS="PROGRAMLISTING"
>bash# mkdir /usr/bonsaitools
bash# mkdir /usr/bonsaitools/bin
-bash# ln -s /usr/bin/perl /usr/bosaitools/bin/perl
+bash# ln -s /usr/bin/perl /usr/bonsaitools/bin/perl
</PRE
></FONT
></TD
@@ -16034,7 +16034,8 @@ to&nbsp;reformat&nbsp;the&nbsp;entire&nbsp;file&nbsp;:).<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;($var)&nbsp;{<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&nbsp;"The&nbsp;variable&nbsp;is&nbsp;true";<br>
-&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else&nbsp;{<br>
+&nbsp;&nbsp;&nbsp;&nbsp;}<br>
+&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;{<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&nbsp;"Try&nbsp;again";<br>
&nbsp;&nbsp;&nbsp;&nbsp;}<br>
<br>
@@ -17226,4 +17227,4 @@ NAME="ZARRO-BOOGS-FOUND"
></DIV
></BODY
></HTML
->
+> \ No newline at end of file
diff --git a/docs/html/bzhacking.html b/docs/html/bzhacking.html
index 5bb15b44f..3d7d43884 100644
--- a/docs/html/bzhacking.html
+++ b/docs/html/bzhacking.html
@@ -121,7 +121,8 @@ to&nbsp;reformat&nbsp;the&nbsp;entire&nbsp;file&nbsp;:).<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;if&nbsp;($var)&nbsp;{<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&nbsp;"The&nbsp;variable&nbsp;is&nbsp;true";<br>
-&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;else&nbsp;{<br>
+&nbsp;&nbsp;&nbsp;&nbsp;}<br>
+&nbsp;&nbsp;&nbsp;&nbsp;else&nbsp;{<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print&nbsp;"Try&nbsp;again";<br>
&nbsp;&nbsp;&nbsp;&nbsp;}<br>
<br>
diff --git a/docs/html/stepbystep.html b/docs/html/stepbystep.html
index b6e8e223a..8b94d8564 100644
--- a/docs/html/stepbystep.html
+++ b/docs/html/stepbystep.html
@@ -1282,7 +1282,7 @@ COLOR="#000000"
CLASS="PROGRAMLISTING"
>bash# mkdir /usr/bonsaitools
bash# mkdir /usr/bonsaitools/bin
-bash# ln -s /usr/bin/perl /usr/bosaitools/bin/perl
+bash# ln -s /usr/bin/perl /usr/bonsaitools/bin/perl
</PRE
></FONT
></TD
@@ -2336,4 +2336,4 @@ VALIGN="top"
></DIV
></BODY
></HTML
->
+> \ No newline at end of file
diff --git a/docs/txt/Bugzilla-Guide.txt b/docs/txt/Bugzilla-Guide.txt
index 17caf5ddd..ab66dcba7 100644
--- a/docs/txt/Bugzilla-Guide.txt
+++ b/docs/txt/Bugzilla-Guide.txt
@@ -1451,7 +1451,7 @@ Chapter 3. Installation
"/opt/perl". As root, run these commands:
bash# mkdir /usr/bonsaitools
bash# mkdir /usr/bonsaitools/bin
-bash# ln -s /usr/bin/perl /usr/bosaitools/bin/perl
+bash# ln -s /usr/bin/perl /usr/bonsaitools/bin/perl
Alternately, you can simply run this perl one-liner to change your
path to perl in all the files in your Bugzilla installation:
@@ -5898,7 +5898,8 @@ D.5. Hacking Bugzilla
indentation level as that statement, for example:
if ($var) {
print "The variable is true";
- } else {
+ }
+ else {
print "Try again";
}
- NOT -