You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain meta-predicates like page/4 are defined in html_write.pl and used elsewhere (for instance, in http_header.pl). They are explicitly imported in http_head but not exported in html_write.
This results in socket connection errors when you run in a server in SWI Prolog with autoloading disabled:
page//2 is the same as page/4. Ok, it would be more elegant to use page//2 consistently but that is detail. The imports are generated automatically and this code doesn't yet handle DCGs separately.
Note that autoload/2 is interpreted as use_module/2 if autoloading is disabled.
Certain meta-predicates like page/4 are defined in
html_write.pl
and used elsewhere (for instance, inhttp_header.pl
). They are explicitly imported in http_head but not exported in html_write.This results in socket connection errors when you run in a server in SWI Prolog with autoloading disabled:
The text was updated successfully, but these errors were encountered: