On 2007-10-29, at 18:42 EDT, Benjamin Shine wrote:
On Oct 29, 2007, at 3:27 PM, P T Withington wrote:
Comments:
1) I wonder why you have to use such a complex pattern set to list
the images, when the pattern to exclude them is simple (uses **).
It actually makes sense -- I don't want to include *any* images when
I'm excluding images, so the simple pattern is enough. When I do
want to grab images, I only want to grab *particular* images; I do
not want to grab images from, for example,
docs/src/deployers/images/layercake.png
although I do want to grab
docs/deployers/images/layercake.png
Rather than listing exactly which ones I want to exclude, I'm
listing exactly which ones I want to include, so that it's future-
proofed; we won't accidentally start grabbing some new images source
directory.
But will you miss images if someone creates a new intermediate
directory?
Seems what you really want to do is make sure you copy all the images
that are referenced by the documentation... But that is for another
day.