> >> Just added to CVS. Use '--no-image-alt' form the command line or
> >> ... you will have to download the CVS tree and compile it to > > That change is in the parser, which is python -- so you don't have to > > recompile, just copy it to the right place. (There may be a few > > strings that start with "@" that you have to replace by hand.) On Thu, 09 Dec 2004 17:03:10 -0600, R Keating <[EMAIL PROTECTED]> wrote: > I greped through all the directories under parser/python/* and couldn't > find anything like "image_al". (You only need to worry about the PyPlucker subdirectory (and its own subdirectories). The stuff directly inside parser/python is for running it under java. http://cvs.plkr.org/index.cgi/parser/python/PyPlucker/?sortby=date#dirlist ) You will probably need to download new copies of the most recently changed files (or make the changes yourself -- selecting the diff will show you how). > Then I greped for [img] and found the following files. > python/PyPlucker/PluckerDocs.py > python/PyPlucker/PluckerDocs.pyc > python/PyPlucker/TextParser.py > python/PyPlucker/TextParser.pyc You can ignore the .pyc Python is byte-compiled, like java. The pyc will load a little faster, but if you delete it (or modify the .py), it will just be recreated the next time you run the program. You probably also want Spider.py -- that is normally where the plucker program starts, and where it parses command line options. Assuming that your python files are up to date (including Spider.py) all you have to do is change the way you call it -- add that command line option. If you want to tweak things yourself, then yes -- those are the right files to look in. For instance, do you want to keep the alt attribute if it isn't junk? Good luck, and feel free to submit patches if you make improvements. -jJ _______________________________________________ plucker-list mailing list [EMAIL PROTECTED] http://lists.rubberchicken.org/mailman/listinfo/plucker-list

