]> git.lyx.org Git - lyx.git/blobdiff - lib/examples/listerrors.lyx
Add some material to the section on tex2lyx that explains the need for layout files...
[lyx.git] / lib / examples / listerrors.lyx
index 48999af139fe9902df484d03dfdd64e488c23e12..9baaecffec0908957197b45e6ac15bbccf5ffd33 100644 (file)
@@ -1,5 +1,8 @@
-#LyX 1.2 created this file. For more info see http://www.lyx.org/
-\lyxformat 220
+#LyX 1.6.0 created this file. For more info see http://www.lyx.org/
+\lyxformat 345
+\begin_document
+\begin_header
+\use_default_options false
 \textclass literate-article
 \begin_preamble
 %
 \end_preamble
 \language english
 \inputencoding auto
-\fontscheme pslatex
+\font_roman times
+\font_sans helvet
+\font_typewriter courier
+\font_default_family default
+\font_sc false
+\font_osf false
+\font_sf_scale 100
+\font_tt_scale 100
 \graphics default
 \paperfontsize default
-\spacing single 
-\papersize Default
-\paperpackage a4
-\use_geometry 0
+\spacing single
+\use_hyperref false
+\papersize default
+\use_geometry false
 \use_amsmath 0
-\use_natbib 0
-\use_numerical_citations 0
+\use_esint 0
+\cite_engine basic
+\use_bibtopic false
 \paperorientation portrait
 \secnumdepth 3
 \tocdepth 3
 \paragraph_separation indent
 \defskip medskip
 \quotes_language english
-\quotes_times 2
 \papercolumns 1
 \papersides 1
 \paperpagestyle default
+\tracking_changes false
+\output_changes false
+\author ""
+\end_header
 
-\layout Title
+\begin_body
 
+\begin_layout Title
 LyX listerrors:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 rewritten in Python
-\layout Author
+\end_layout
 
+\begin_layout Author
 Kayvan A.
  Sylvan
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Flex URL
+status collapsed
+
+\begin_layout Plain Layout
 
-\begin_inset LatexCommand \url{mailto:kayvan@sylvan.com}
+mailto:kayvan@sylvan.com
+\end_layout
 
-\end_inset 
+\end_inset
 
 
-\layout Date
+\end_layout
 
+\begin_layout Date
 3/15/2002
-\layout Abstract
+\end_layout
 
+\begin_layout Abstract
 The listerrors program used to be compiled as a C program and installed
  as 
-\emph on 
+\emph on
 BINDIR/listerrors
-\emph default 
+\emph default
  along with LyX in order to perform some simple re-formatting of noweb and
  GCC error messages.
  This document describes and implements the Python version of the same program.
-\layout Standard
+\end_layout
 
+\begin_layout Standard
+\begin_inset CommandInset toc
+LatexCommand tableofcontents
 
-\begin_inset LatexCommand \tableofcontents{}
+\end_inset
 
-\end_inset 
 
+\end_layout
 
-\layout Section
-
+\begin_layout Section
 Introduction
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The motivation for this program was Bugzilla bug 190
 \begin_inset Foot
-collapsed true
-
-\layout Standard
+status collapsed
 
+\begin_layout Plain Layout
 Visit 
-\begin_inset LatexCommand \url{http://bugzilla.lyx.org/show_bug.cgi?id=190}
+\begin_inset Flex URL
+status collapsed
+
+\begin_layout Plain Layout
 
-\end_inset 
+http://bugzilla.lyx.org/show_bug.cgi?id=190
+\end_layout
+
+\end_inset
 
  for the details.
-\end_inset 
+\end_layout
+
+\end_inset
 
  dealing with the 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 listerrors
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  executable.
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 What is 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 listerrors
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
 ? Usually, LyX has great support for parsing of error messages.
  For each error in the log file, LyX pops up an error box at that location
@@ -120,736 +159,1177 @@ listerrors
  (similar to LaTeX errors).
  When dealing with Literate Programs, you have 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 noweb
 \begin_inset Foot
-collapsed true
-
-\layout Standard
+status collapsed
 
+\begin_layout Plain Layout
 See 
-\begin_inset LatexCommand \url{http://www.eecs.harvard.edu/~nr/noweb}
+\begin_inset Flex URL
+status collapsed
 
-\end_inset 
+\begin_layout Plain Layout
+
+http://www.eecs.harvard.edu/~nr/noweb
+\end_layout
+
+\end_inset
 
  for more information about noweb.
-\end_inset 
+\end_layout
+
+\end_inset
 
 
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  as well as gcc error messages (and potentially others).
  The listerrors program attempts to standardize these error messages to
  a format that LyX can parse and react to.
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 In a nutshell, the problems with the old implementation of listerrors that
  bug 190 refers to were::
-\layout Enumerate
+\end_layout
 
+\begin_layout Enumerate
 It was a C program and it was installed in the user path in the same directory
  as LyX.
  Having such a generically named binary in, for example, 
-\emph on 
+\emph on
 /usr/bin
-\emph default 
+\emph default
 , was potentially confusing.
-\layout Enumerate
+\end_layout
 
+\begin_layout Enumerate
 It required that noweb be installed on the compiling machine (the source
  was extracted by noweb from 
-\emph on 
+\emph on
 SRCDIR/examples/Literate.lyx
-\emph default 
+\emph default
 , compiled and installed by 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 make install
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
 ).
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The new version deals with these problems in the following fashion:
-\layout Enumerate
+\end_layout
 
+\begin_layout Enumerate
 Both the example file (this document) and the program are to be added to
  the LyX CVS repository.
-\layout Enumerate
+\end_layout
 
+\begin_layout Enumerate
 The program itself will be installed in 
-\emph on 
+\emph on
 SHAREDIR/lyx/scripts
-\emph default 
+\emph default
 , along with other LyX-specific helper scripts.
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 In the design and implementation of this new 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 listerrors
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
 , the Python
 \begin_inset Foot
-collapsed true
-
-\layout Standard
+status collapsed
 
+\begin_layout Plain Layout
 See the Python home page (
-\begin_inset LatexCommand \url{http://www.python.org}
+\begin_inset Flex URL
+status collapsed
+
+\begin_layout Plain Layout
 
-\end_inset 
+http://www.python.org
+\end_layout
+
+\end_inset
 
 ) for more information.
-\end_inset 
+\end_layout
+
+\end_inset
 
  language was chosen since it is fully multi-platform and provides a very
  uniform and easy to read syntax.
  This re-write also simplifies the code for 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 listerrors
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  greatly.
  Python is installed by default on all modern Linux systems and is freely
  available for all other platforms.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<listerrors>>=
-\newline 
-#!/usr/bin/python
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+#!/usr/bin/python -tt
+\begin_inset Newline newline
+\end_inset
+
 """reformat noweb and compiler errors for LyX.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 Expects to read from stdin and output to stdout.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 """
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 __author__ = "Kayvan A.
  Sylvan <kayvan@sylvan.com>"
-\newline 
-__date__ = "$Date: 2002/03/25 23:29:30 $"
-\newline 
-__version__ = "$Revision: 1.2 $"
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+__date__ = "$Date: 2005/07/18 09:42:26 $"
+\begin_inset Newline newline
+\end_inset
+
+__version__ = "$Revision: 1.5 $"
+\begin_inset Newline newline
+\end_inset
+
 __credits__ = """Edmar Wienskoski Jr.
  <edmar-w-jr@technologist.com>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     original Literate support for LyX.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 Bernard Michael Hurley <berhardh@westherts.ac.uk>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     modifications to original listerrors."""
-\newline 
-__copyright__ = "Copyright 2002 - The LyX team."
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+__copyright__ = "Copyright 2002 - Kayvan Sylvan."
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 import sys, string
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 <<Function Bodies>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 if __name__ == "__main__":
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   main()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Section
+\end_layout
 
+\begin_layout Section
 LaTeX style error message
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The following function mimics the TeX error message format.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 def write_error(msg, tool = "noweb", line_number = 1):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   """Write out the given message in TeX error style.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   called like: write_error(msg, tool, line_number)."""
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   print "! Build Error: ==> %s ==>
-\backslash 
+\backslash
 n" % (tool),
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   print " ...
-\backslash 
+\backslash
 n
-\backslash 
+\backslash
 nl.%d ...
-\backslash 
+\backslash
 n" % (line_number),
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if type(msg) == type("str"): # simple string
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     print msg
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   else: # some kind of list (sequence or tuple)
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     for m in msg:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
         if m != "": print m,
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     print
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 @ %def write_error
-\layout Section
+\end_layout
 
+\begin_layout Section
 Filtering errors
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The only complication in our filtering code is that some parsers might need
  to push back lines that are read in to be read again later.
  We solve this problem by implementing a 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 getline
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  and 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 pushline
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  set of functions:
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 __lines = [] # lines pushed back
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 def getline(file = sys.stdin):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   """read a line from internal stack or from file.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   optional file argument defaults to sys.stdin."""
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   global __lines
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   lines = __lines
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if lines:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     line = lines.pop()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   else:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     line = file.readline()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   return line
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 @ %def getline
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 And now for the corresponding pushline function:
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 def pushline(line):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   "push a line onto the pushback stack."
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   global __lines
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   lines = __lines
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   lines.append(line)
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 @ %def pushline
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The main() entry point function is extremely simple.
  Note that this version of 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 listerrors
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  takes no options and simply filters, attempting simply to match against
  the known error message patterns.
  The listerrors C program handled a single-character command-line argument
  that the current code no longer needs.
  
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 def main():
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   """Entry point for listerrors.
  Takes no options.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   Reads stdin and writes to stdout.
  Filter errors"""
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   while 1:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     line = getline()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     if line == "": break
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     <<Check line against patterns and take action>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @ %def main
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 For each line read in, we need to find out if it matches any of our tools
  (noweb, gcc, etc.) and act accordingly.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Check line against patterns and take action>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 try_patterns_dispatch = [ noweb_try, gcc_try, xlc_try ]
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 for predicate in try_patterns_dispatch:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if predicate(line): break
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Section
+\end_layout
 
+\begin_layout Section
 Different Error Formats
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The following sections handle the various error message formats that we
  recognize in this program.
  
-\layout Subsection
+\end_layout
 
+\begin_layout Subsection
 noweb errors
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 Noweb errors are output on a single line, so examining just the current
  line is enough.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 def noweb_try(line):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   """see if line is a noweb error.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   Returns 1 on success, 0 otherwise.
  Outputs on stdout."""
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   retval = 0
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   <<Look for the unescaped angle-brackets in documentation>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   <<Look for anything with double angle brackets>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   <<Last ditch effort scan for specific strings>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   return retval
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 @ %def noweb_try
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 First, we look for the 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 unescaped < < in documentation chunk
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  message.
  This is the only message with an associated line number from noweb.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Look for the unescaped angle-brackets in documentation>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 if string.find(line, ": unescaped << in documentation chunk") != -1:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   line_parts = string.split(line, ':')
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   num_str = line_parts[1]
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   num_len = len(num_str)
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   i = 0
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   while i < num_len and (num_str[i] in string.digits): i = i + 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if i == num_len:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     write_error(":" + line_parts[2], "noweb", int(num_str))
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     retval = 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 Some noweb messages are simply about undefined scraps.
  These can be seen by looking for matching double-angle-brackets.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Look for anything with double angle brackets>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 if (not retval):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   left = string.find(line, "<<")
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if (left != -1) and ((left + 2) < len(line)) and 
-\backslash 
+\backslash
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
      (string.find(line[left+2:], ">>") != -1):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     write_error(line, "noweb");
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     retval = 1;
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 Finally, here is an additional list of explicit strings to check for.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Last ditch effort scan for specific strings>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 if (not retval):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   msgs_to_try = ("couldn't open file",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "couldn't open temporary file",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "error writing temporary file",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "ill-formed option",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "unknown option",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "Bad format sequence",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "Can't open output file",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "Can't open temporary file",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "Capacity exceeded:",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "Ignoring unknown option -",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "This can't happen:",
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     "non-numeric line number in")
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   for msg in msgs_to_try:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     if string.find(line, msg) != -1:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       write_error(line, "noweb")
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       retval = 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       break
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Subsection
+\end_layout
 
+\begin_layout Subsection
 gcc errors
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The gcc errors can be multi-line, with the following format:
-\layout LyX-Code
+\end_layout
 
+\begin_layout LyX-Code
 foo.c: In function `main': 
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 foo.c:3: `bar' undeclared (first use in this function) 
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 foo.c:3: (Each undeclared identifier is reported only once 
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 foo.c:3: for each function it appears in.) 
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 foo.c:3: parse error before `x'
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 In order to parse this, the gcc error handler has to look ahead and return
  any and all lines that do not match the expected pattern.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 def gcc_try(line):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   """See if line is a gcc error.
  Read ahead to handle all the lines.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   Returns 1 on success, 0 otherwise.
  Outputs on stdout."""
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   retval = 0
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   <<Handle the gcc error message>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   return retval
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
 @ %def gcc_try
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 The error message starts with a gcc header (as above) without an associated
  line number.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Handle the gcc error message>>= 
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 first_space = string.find(line, ' ')
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 if first_space > 1: # The smallest would be "X: "
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if line[first_space - 1] == ':':
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     header_to_see = line[:first_space - 1]
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     next_line = getline()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     if next_line and next_line[:first_space - 1] == header_to_see:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       num_end = first_space
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       while next_line[num_end] in string.digits: num_end = num_end + 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       if num_end > first_space: # good!
-\newline 
+\begin_inset Newline newline
+\end_inset
+
         <<Accumulate gcc error lines and print it>>
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       else: # oops! Not a gcc error.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
         pushline(next_line)
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     elif next_line:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       pushline(next_line) # return this line to input stream
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 At the point in the code that we know that we are in the middle of an error
  message, we do the following:
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Accumulate gcc error lines and print it>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 num_str = next_line[first_space:num_end]
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 msgs = [line[first_space:]]
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 msgs.append(next_line[num_end + 1:])
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 header_to_see = next_line[:num_end]
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 next_line = getline()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 while next_line and next_line[:num_end] == header_to_see:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   msgs.append(next_line[num_end + 1:])
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   next_line = getline()
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 if next_line: pushline(next_line)
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 write_error(msgs, "gcc", int(num_str))
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 retval = 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Subsection
+\end_layout
 
+\begin_layout Subsection
 xlc errors
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 A xlc error message is easy to identify.
  Every error message starts with a quoted string with no spaces, a comma,
  a space, the word 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 line
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
 , a space, and some variable text.
  The following routine tests if a given buffer line matches this criteria
  (this code would probably be simpler if I used the 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 re
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  regexp module, but we don't really need the full regular expression engine
  here).
  
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<Function Bodies>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 def xlc_try(line):
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   """see if line is an xlc error.
-\newline 
+\begin_inset Newline newline
+\end_inset
+
+
+\begin_inset Newline newline
+\end_inset
 
-\newline 
   Returns 1 on success, 0 otherwise.
  Outputs on stdout."""
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   retval = 0
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   if line[0] == '"': # This is the first character of all xlc errors
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     next_quote = string.find(line, '"', 1)
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     first_space = string.find(line, ' ')
-\newline 
+\begin_inset Newline newline
+\end_inset
+
     if (next_quote != -1) and (first_space > next_quote): # no space inisde
  quotes
-\newline 
+\begin_inset Newline newline
+\end_inset
+
       if line[first_space - 1:first_space + 6] == ", line ":
-\newline 
+\begin_inset Newline newline
+\end_inset
+
         num_start = num_end = first_space + 6
-\newline 
+\begin_inset Newline newline
+\end_inset
+
         while line[num_end] in string.digits: num_end = num_end + 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
         if num_end > num_start:
-\newline 
+\begin_inset Newline newline
+\end_inset
+
           write_error(line, "xlc", int(line[num_start : num_end]))
-\newline 
+\begin_inset Newline newline
+\end_inset
+
           retval = 1
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   return retval
-\newline 
+\begin_inset Newline newline
+\end_inset
+
   
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @ %def xlc_try
-\layout Section
+\end_layout
 
+\begin_layout Section
 Extracting the code
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 This project can be tangled from LyX if you set your 
 \begin_inset Quotes eld
-\end_inset 
+\end_inset
 
 Program
 \begin_inset Quotes erd
-\end_inset 
+\end_inset
 
  convertor to call a generic script that always extracts a scrap named 
-\family typewriter 
+\family typewriter
 build-script
-\family default 
+\family default
  and executes it.
  Here is an example of such a generic script:
-\layout LyX-Code
+\end_layout
 
+\begin_layout LyX-Code
 #!/bin/sh
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 notangle -Rbuild-script $1 | env NOWEB_SOURCE=$1 sh
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 This section defines our build-script, which extracts the code.
-\layout Scrap
+\end_layout
 
+\begin_layout Scrap
 <<build-script>>=
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 #!/bin/sh
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 if [ -z "$NOWEB_SOURCE" ]; then NOWEB_SOURCE=listerrors.nw; fi
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 notangle -Rlisterrors ${NOWEB_SOURCE} > listerrors
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 chmod +x listerrors
-\newline 
+\begin_inset Newline newline
+\end_inset
+
 @
-\layout Section
+\end_layout
 
+\begin_layout Section
 Indices
-\layout Standard
+\end_layout
 
+\begin_layout Standard
 This section provides cross-references into the rest of the program.
-\layout Subsection
+\end_layout
 
+\begin_layout Subsection
 Macros
-\layout Standard
-
+\end_layout
 
+\begin_layout Standard
 \begin_inset ERT
-status Collapsed
+status collapsed
 
-\layout Standard
+\begin_layout Plain Layout
 
-\backslash 
+
+\backslash
 nowebchunks
-\end_inset 
+\end_layout
 
+\end_inset
 
-\layout Subsection
 
-Identifiers
-\layout Standard
+\end_layout
 
+\begin_layout Subsection
+Identifiers
+\end_layout
 
+\begin_layout Standard
 \begin_inset ERT
-status Collapsed
+status collapsed
 
-\layout Standard
+\begin_layout Plain Layout
 
-\backslash 
+
+\backslash
 nowebindex
-\end_inset 
+\end_layout
+
+\end_inset
+
 
+\end_layout
 
-\the_end
+\end_body
+\end_document