diff options
author | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-10 19:19:39 +0700 |
---|---|---|
committer | Alexander Kriegisch <Alexander@Kriegisch.name> | 2021-04-10 19:19:39 +0700 |
commit | 92edca3ea7a482d59a9086b1cb61413ed8604b67 (patch) | |
tree | d709ab2fd24a563cf626fb5ff354a0972a1dc6a9 /docs/pdGuideDB/ajcore.xml | |
parent | 79c272eb9c158a976b7b3313c50759dd87b1b5fd (diff) | |
download | aspectj-92edca3ea7a482d59a9086b1cb61413ed8604b67.tar.gz aspectj-92edca3ea7a482d59a9086b1cb61413ed8604b67.zip |
Remove indentation from <programlisting> blocks in docs
Many dozens (hundreds?) of documentation code blocks were indented to
match the surrounding XML or just arbitrarily. The thing is: Inside
<programlisting> tags, similar to <pre> tags, line feeds and leading
whitespace are being preserved, which looked very awkward in the HTML
documentation. While a few files were mostly correct in this respect,
which shows that it was meant to be like that, many others were not.
This was tedious, stupid work to fix, but it had to be done.
Please note that the documentation was in no way updated content-wise.
This is also overdue, but not my focus here.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'docs/pdGuideDB/ajcore.xml')
-rw-r--r-- | docs/pdGuideDB/ajcore.xml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/pdGuideDB/ajcore.xml b/docs/pdGuideDB/ajcore.xml index 3ca82849f..7207df3cc 100644 --- a/docs/pdGuideDB/ajcore.xml +++ b/docs/pdGuideDB/ajcore.xml @@ -1,26 +1,26 @@ <chapter id="ajcore" xreflabel="AspectJ Core Files"> <title>AspectJ Core Files</title> - + <sect1 id="ajcore-introduction"> <title>Introduction</title> - + <para> When the compiler terminates abnormally, either because a particular kind of message was issued or an exception was thrown, an AspectJ core file will be produced. You will find it the working directory of the compiler and it will have a name that contains - the date and time that the file was produced + the date and time that the file was produced e.g. <literal>ajcore.20060810.173655.626.txt</literal>. The file contains details of the problem such as the exception thrown as well as information about the environment such as operating system and Java version. When submitting a bug, include this file whenever it is available.</para> - + <sect2 id="configuration" xreflabel="configuration"> <title>Configuring dump files</title> - - <para> By default AspectJ will only create an <literal>ajcore</literal> file - when an unexpected exception is thrown by the weaver or an + + <para> By default AspectJ will only create an <literal>ajcore</literal> file + when an unexpected exception is thrown by the weaver or an <literal>abort</literal> message is issued. However it is possible to disable this feature or enable files to - be produced under different circumstances. The table below lists the System + be produced under different circumstances. The table below lists the System properties that can be used to configure <literal>ajcore</literal> files. </para> <informaltable> <tgroup cols="3"> @@ -52,7 +52,7 @@ </entry> <entry> Message kind for which to generate <literal>ajcore</literal> - e.g. <literal>error</literal>. + e.g. <literal>error</literal>. </entry> </row> <row> @@ -63,7 +63,7 @@ <literal>none</literal> </entry> <entry> - The directory used for ajcore files. + The directory used for ajcore files. </entry> </row> </tbody> @@ -73,7 +73,7 @@ <sect2 id="ajcore-examples" xreflabel="AJCore File Examples"> <title>AJCore File Examples</title> - + <para> Below is an extract from an <literal>ajcore</literal> file. You will see details of the dump configuration as well as the exception (with stack trace) that is the source of the problem and any messages issued by the compiler. Most importantly @@ -191,8 +191,8 @@ java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory at org.aspectj.tools.ajc.Main.run(Main.java:367) at org.aspectj.tools.ajc.Main.runMain(Main.java:246) at org.aspectj.tools.ajc.Main.main(Main.java:86) - ]]></programlisting> - +]]> </programlisting> + </sect2> </sect1> </chapter> |