Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
bce64834
Commit
bce64834
authored
Jan 27, 2014
by
Gervase Markham
Committed by
Gervase Markham
Jan 27, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 962571 - Fix syntax highlighting of code blocks. r=LpSolit, a=justdave.
parent
10cc520e
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
92 additions
and
81 deletions
+92
-81
customization.rst
docs/en/rst/customization.rst
+1
-1
installation.rst
docs/en/rst/installation.rst
+74
-67
modules.rst
docs/en/rst/modules.rst
+7
-7
troubleshooting.rst
docs/en/rst/troubleshooting.rst
+10
-6
No files found.
docs/en/rst/customization.rst
View file @
bce64834
.. highlight:: perl
.. _customization:
...
...
docs/en/rst/installation.rst
View file @
bce64834
This diff is collapsed.
Click to expand it.
docs/en/rst/modules.rst
View file @
bce64834
.. highlight:: console
.. _install-perlmodules-manual:
...
...
@@ -17,12 +17,12 @@ apply this magic incantation, as root:
::
bash
# tar -xzvf <module>.tar.gz
bash
# cd <module>
bash
# perl Makefile.PL
bash
# make
bash
# make test
bash
# make install
# tar -xzvf <module>.tar.gz
# cd <module>
# perl Makefile.PL
# make
# make test
# make install
.. note:: In order to compile source code under Windows you will need to obtain
a 'make' utility. The :command:`nmake` utility provided with
...
...
docs/en/rst/troubleshooting.rst
View file @
bce64834
.. highlight:: console
.. _troubleshooting:
...
...
@@ -55,7 +55,7 @@ Bugzilla.
::
bash
$ ./testserver.pl http://landfill.bugzilla.org/bugzilla-tip
$ ./testserver.pl http://landfill.bugzilla.org/bugzilla-tip
TEST-OK Webserver is running under group id in $webservergroup.
TEST-OK Got ant picture.
TEST-OK Webserver is executing CGIs.
...
...
@@ -97,23 +97,27 @@ To fix this, go to
:file:`<path-to-perl>/lib/DBD/sponge.pm`
in your Perl installation and replace
::
.. code-block:: perl
my $numFields;
if ($attribs->{'NUM_OF_FIELDS'}) {
$numFields = $attribs->{'NUM_OF_FIELDS'};
} elsif ($attribs->{'NAME'}) {
}
elsif ($attribs->{'NAME'}) {
$numFields = @{$attribs->{NAME}};
}
with
::
.. code-block:: perl
my $numFields;
if ($attribs->{'NUM_OF_FIELDS'}) {
$numFields = $attribs->{'NUM_OF_FIELDS'};
} elsif ($attribs->{'NAMES'}) {
}
elsif ($attribs->{'NAMES'}) {
$numFields = @{$attribs->{NAMES}};
}
(note the S added to NAME.)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment