On Tue, 10 Aug 1999, Vadim Chekan wrote:
> I want to ask:
> 1. about delimiter in configuration: is it necessery?
Which delimiter is that? The ':' delimiter?
> 2. which parameter we need in "server"
I'd include username/password for sure.
I'd probably include bad_extensions, bad_querystr, limit_urls_to,
exclude_urls, http_proxy, http_proxy_exclude, limit_normalized,
remove_default_doc, and timeout.
I guess allow_virtual_hosts, and the local_* attributes would be useful as
well. (Long list, huh?)
> 2. which clause we need except "server" ( "<url>" ?)
I think many people would like URL. That obviously requires many more
changes than <server>
> Waiting for your feedback
It looks good, though I haven't tried it yet. One snag that I realized is:
+extern FILE* yyin;
+extern yyparse(void*);
+if ((yyin=fopen(filename,"r"))==NULL)
+ return NOTOK;
+
+yyparse(this);
+fclose(yyin);
+return OK;
Right now the HTML parser has been rewritten to use the Configuration
parser and '=' as a delimiter between attributes and values. Doesn't this
change restrict the Configuration code to reading in a file from disk?
-Geoff
------------------------------------
To unsubscribe from the htdig3-dev mailing list, send a message to
[EMAIL PROTECTED] containing the single word "unsubscribe" in
the SUBJECT of the message.