Call the test program outtest instead of Convert; fix some of the debug prints

This commit is contained in:
akkana%netscape.com 1999-09-17 20:09:42 +00:00
Родитель ee712ef0b4
Коммит 7800f2f0cd
4 изменённых файлов: 16 добавлений и 6 удалений

Просмотреть файл

@ -95,13 +95,18 @@ nsresult HTML2text(int toHTML)
rv = NS_NewNavHTMLDTD(&dtd);
if (NS_FAILED(rv))
{
printf("Couldn't create new content sink: 0x%x\n", rv);
printf("Couldn't create new HTML DTD: 0x%x\n", rv);
return rv;
}
parser->RegisterDTD(dtd);
parser->Parse(inString, 0, "text/html", PR_FALSE, PR_TRUE);
rv = parser->Parse(inString, 0, "text/html", PR_FALSE, PR_TRUE);
if (NS_FAILED(rv))
{
printf("Parse() failed! 0x%x\n", rv);
return rv;
}
printf("Output string is: %s\n-------------------- \n",
outString.ToNewCString());

Просмотреть файл

@ -22,7 +22,7 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
PROGRAM = Convert
PROGRAM = outtest
CPPSRCS = \
Convert.cpp \

Просмотреть файл

@ -95,13 +95,18 @@ nsresult HTML2text(int toHTML)
rv = NS_NewNavHTMLDTD(&dtd);
if (NS_FAILED(rv))
{
printf("Couldn't create new content sink: 0x%x\n", rv);
printf("Couldn't create new HTML DTD: 0x%x\n", rv);
return rv;
}
parser->RegisterDTD(dtd);
parser->Parse(inString, 0, "text/html", PR_FALSE, PR_TRUE);
rv = parser->Parse(inString, 0, "text/html", PR_FALSE, PR_TRUE);
if (NS_FAILED(rv))
{
printf("Parse() failed! 0x%x\n", rv);
return rv;
}
printf("Output string is: %s\n-------------------- \n",
outString.ToNewCString());

Просмотреть файл

@ -22,7 +22,7 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
PROGRAM = Convert
PROGRAM = outtest
CPPSRCS = \
Convert.cpp \