Ondrej, I wrote a program to download the pages from the following urls: procedure TDocumentationForm.ExecuteThread(Thread: TSimpleThread); begin if not Thread.Terminated then DocLoadUrl(Thread, 'http://www.freepascal.org/docs-html/rtl/index.html' , 'rtl'); if not Thread.Terminated then DocLoadUrl(Thread, 'http://www.freepascal.org/docs-html/fcl/index.html' , 'fcl'); if not Thread.Terminated then DocLoadUrl(Thread, ' http://lazarus-ccr.sourceforge.net/docs/lcl/index.html' , 'lcl'); end; And what this does is request the each of those three pages, then it follows every possible link in each of those pages recursively. So to answer your question, I am using the documentation at:
http://www.freepascal.org/docs-html/rtl http://www.freepascal.org/docs-html/fcl http://lazarus-ccr.sourceforge.net/docs/lcl
-- _______________________________________________ Lazarus mailing list Lazarus@lists.lazarus.freepascal.org http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus