Your message dated Tue, 18 Apr 2006 08:59:08 +0200
with message-id <[EMAIL PROTECTED]>
and subject line [Fwd: Re: [l2h] Re: Bug#355487: table displayed incorrect]
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: latex2html

Bug Description:

if i convert the following code with latex2html, the output of the table does not look like expected (compared to output of pdflatex). the generated html table has severe syntax errors.


\documentclass[austrian]{report}
\usepackage[]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{babel}
\setlength\parskip{\smallskipamount}%abstand zw par
\setlength\parindent{0pt}%kein einzug bei paragraph
\usepackage{graphics}
\usepackage{rawfonts}
\usepackage{pictex}
\usepackage{graphicx}

\usepackage{longtable} % fuer Mehrseitige Tabellen usecases
\usepackage{colortbl}  %f"ur farbige tabellen usecases

\newcommand{\makeusecase}[8]{

    \begin {tabular}
    {|>{\columncolor[rgb]{.8,.8,.8}} p{3.5cm} p{11.0cm}|}
    \multicolumn{2}{|>{\columncolor[cmyk]{.7,.3,0,0}}c}
    {\color{white}\textsf{UseCase: #1 }} \\
    Kurzbeschreibung    &   #2\\
    Akteure             &   #3\\
    Vorbedingung        &   #4\\
    Ausl\"oser            &   #5\\
    Nachbedingung       &   #6\\
    Essentieller Ablauf &   #7\\
    \hline
    \end{tabular}
}

\begin{document}


\makeusecase
    {home} %1
    {Startseite} %2
    {beliebiger User} %3
    {Die Applikation \litf ist korrekt am Server installiert.} %4
    {Im Browser wird die \litf Startseite angezeigt.} %5
    {Die Startseite wird korrekt angezeigt} %6
    {\begin{enumerate}
        \item Starten eines Browsers (z.B. firefox)
        \item Eingabe der korrekten url
        \item Das php script index.php wird aufgerufen.
        \item Die Begr"u"sungsseite wird angezeigt und es sind die links:
home, search, export, help, about sichtbar.
    \end {enumerate}} %7

\end{document}



--- End Message ---
--- Begin Message ---
Hi,

upstream doesn't consider this a bug. Please have a look at his comments
in the attached mail.

I'm closing this bug now.

If you have any further questions, please feel free to ask, and please
direct it directly to [email protected] (upstream) if appropriate.

Thanks,

bye,
  Roland
--- Begin Message ---
Hi Roland,

On 17/04/2006, at 12:22 AM, Roland Stigge wrote:

Hi,

a Debian user reported the following:

if i convert the following code with latex2html, the output of the table
does not look like expected (compared to output of pdflatex). the
generated html table has severe syntax errors.

It sure does, because
 1.  colortbl  package is not supported; hence
 2.  \columncolor   command is not known .

but also,
 3.   you'll need to remove the % parts in the usage
of  \makeusecase  :

\makeusecase
    {home} %1
    {Startseite} %2
    {beliebiger User} %3
    {Die Applikation xyz ist korrekt am Server installiert.} %4
    {Im Browser wird die xyz Startseite angezeigt.} %5
    {Die Startseite wird korrekt angezeigt} %6
    {\begin{enumerate}
        \item Starten eines Browsers (z.B. firefox)
        \item Eingabe der korrekten url
        \item Das php script index.php wird aufgerufen.
\item Die Begr"u"sungsseite wird angezeigt und es sind die links:
                home, search, export, help, about sichtbar.
    \end {enumerate}} %7

\makeusecase
    {home}
    {Startseite}
    {beliebiger User}
    {Die Applikation xyz ist korrekt am Server installiert.}
    {Im Browser wird die xyz Startseite angezeigt.}
    {Die Startseite wird korrekt angezeigt}
    {\begin{enumerate}
        \item Starten eines Browsers (z.B. firefox)
        \item Eingabe der korrekten url
        \item Das php script index.php wird aufgerufen.
\item Die Begr"u"sungsseite wird angezeigt und es sind die links:
                home, search, export, help, about sichtbar.
    \end {enumerate}}


Now the table should process OK, but without the desired colour-scheme.



\end{document}


Thanks for considering...

Hope this helps,

        Ross Moore


bye,
  Roland
_______________________________________________
latex2html mailing list
[email protected]
http://tug.org/mailman/listinfo/latex2html

--- End Message ---

--- End Message ---

Reply via email to