I will be delivering a set of static HTML pages on CD-Rom; these pages need to be fully viewable with no Internet access whatsoever.
I'd like to provide a full-text search (Lucene-like) for the content of those pages, which should "just work" from the CD-Rom with no software installation on the client machine.
A search engine implementation in javascript would be the perfect solution, but I have trouble finding any that looks solid / current / popular...?
I did find these: + jsFind + js-search
but both projects seem rather inactive?
Another solution, besides a specific search engine in javascript, would be the ability to access local Lucene indices from javascript: the indices themselves would be built with Lucene and copied to the CD-Rom along with the HTML files.
Edit: built it myself (see below).