From e6d892cfa417d02b44fbdf6166f89ee918512d60 Mon Sep 17 00:00:00 2001 From: "jake%acutex.net" Date: Mon, 15 Oct 2001 19:18:04 +0000 Subject: [PATCH] Recompiling docs to pick up last two changes git-svn-id: svn://10.0.0.236/trunk@105423 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/docs/html/Bugzilla-Guide.html | 7 ++++--- mozilla/webtools/bugzilla/docs/html/bzhacking.html | 3 ++- mozilla/webtools/bugzilla/docs/html/stepbystep.html | 4 ++-- mozilla/webtools/bugzilla/docs/txt/Bugzilla-Guide.txt | 5 +++-- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/mozilla/webtools/bugzilla/docs/html/Bugzilla-Guide.html b/mozilla/webtools/bugzilla/docs/html/Bugzilla-Guide.html index ca916f41756..186d93fb983 100644 --- a/mozilla/webtools/bugzilla/docs/html/Bugzilla-Guide.html +++ b/mozilla/webtools/bugzilla/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
    if ($var) {
        print "The variable is true";
-    } else {
+    }
+    else {
        print "Try again";
    }

@@ -17226,4 +17227,4 @@ NAME="ZARRO-BOOGS-FOUND" > +> \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/docs/html/bzhacking.html b/mozilla/webtools/bugzilla/docs/html/bzhacking.html index 5bb15b44f06..3d7d438849b 100644 --- a/mozilla/webtools/bugzilla/docs/html/bzhacking.html +++ b/mozilla/webtools/bugzilla/docs/html/bzhacking.html @@ -121,7 +121,8 @@ to reformat the entire file :).

    if ($var) {
        print "The variable is true";
-    } else {
+    }
+    else {
        print "Try again";
    }

diff --git a/mozilla/webtools/bugzilla/docs/html/stepbystep.html b/mozilla/webtools/bugzilla/docs/html/stepbystep.html index b6e8e223af2..8b94d85648a 100644 --- a/mozilla/webtools/bugzilla/docs/html/stepbystep.html +++ b/mozilla/webtools/bugzilla/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 +> \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/docs/txt/Bugzilla-Guide.txt b/mozilla/webtools/bugzilla/docs/txt/Bugzilla-Guide.txt index 17caf5ddd53..ab66dcba782 100644 --- a/mozilla/webtools/bugzilla/docs/txt/Bugzilla-Guide.txt +++ b/mozilla/webtools/bugzilla/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 -