Re: How do you pass a search word to the Euphoria documentation index.html search box?
- Posted by petelomax Dec 27, 2011
- 1683 views
K_D_R said...
My experience is limited to Linux.
My experience is limited to Windows.
What happens if you type
epiphany http://openeuphoria.org/search/results.wc?manual=1&s=repeat
in a terminal? (you may need to supply the full path)
In windows, on a very old version of Eu Help, probably 2.3, I ended up doing:
constant lib="abcdeghoprstuz" constant redirect="<html><head>"& "<meta http-equiv=refresh content=\"0;"& "url=file://localhost/%s/HTML/lib_%s_%s.htm#%s\">"& "</head></html>" ... fn = open(redirectfilepath,"w") puts(fn,sprintf(redirect,{helpfilepath,lib[i-1],lib[i],name})) close(fn) ... void = shellExecute(NULL, "open", helpfilepath, NULL, NULL, SW_SHOWNORMAL)
Not that I expect that to be much help.
Pete