| I have a website with the following structure:
twiki/bin/view/SIG/index.html->Documentation.html->XXX.html->YYYYYPreviousVersions.html
twiki/pub/SIG/XXX/*.pdf
twiki/pub/SIG/YYYYYPreviousVersions/*.pdf
All of the html files are in the twiki/bin/view/SIG directory. The links
indicated above indicate the site hierarchy where no directory structure
exists. There are many other links in the various pages which arent to be
copied. All of the data files (.pdf) are organized in the twiki/pub/SIG
sub-directories. I only want to copy links and data within the
twiki/bin/view/SIG directory, twiki/pub/SIG directory, and
twiki/pub/SIG sub-directories. Additionally, I want to limit the mirror
to portions of the site, specifically, SIG->Documentation,
SIG->Documentation->XXX and SIG->Documentation->XXX->YYYYYPreviousVersions.
Im starting with the Documentation page and trying to use filters to select
one XXX page and linked YYYYYPreviousVersion pages. The problem Im having is
the twiki/pub/SIG/YYYYYPreviousVersions/*.pdf files are being interpreted
as external files and are not copied.
Heres the filter:
-*
+*.png +*.gif +*.jpg +*.css +*.js -ad.doubleclick.net/*
-mime:application/foobar
+*/twiki/bin/view/SIG/Documentation*
+*/twiki/bin/view/SIG/XXX*[]
+*/twiki/bin/view/SIG/XXX/*
+*/twiki/bin/view/SIG/*[0-9]PreviousVersions*
+*.pdf
| |