/* Original URL */
/*
...
...
*/
};
int main() {
}
$ g++ test.cc
test.cc:3: ANSI C++ forbids data member `url' with same name as enclosing class
$
=
Wei Ye
__
Do you Yahoo!?
New Yahoo! Photos - easier uploading and sharing.
http://photos.yahoo.com/
2003/06/13 20:24:16
> @@ -753,7 +753,6 @@
>
>if (*val)
> {
> - /* Strip the trailing slashes from directories. */
>char **t, **seps;
>
>seps = sepstring (val);
> @@ -761,10 +760,10 @@
> {
> int len = strlen (*t);
> /* Sk
OTECTED]> wrote:
> oh, i understand your problem. your request seems reasonable. i was
> trying to see if anyone had an idea why it seemed to be more of a
> "feature" than a "bug".
>
> On Thu, 12 Jun 2003, wei ye wrote:
>
> >
> > Please take
> the retrieval. Any other directories will simply be ignored. The
> directories are absolute paths. So, if you wish to download from
> `http://host/people/bozo/' following only links to bozo's colleagues in
> the `/people' directory and the bogus scripts in `/cgi-bin'
.
It's a minor bug, but I hope it could be fix in next version.
Thanks!
static int cmd_directory_vector(...) {
...
if (len > 1)
{
if ((*t)[len - 1] == '/')
(*t)[len - 1] = '\0';
}
...
}
=
Wei Ye
_
BTW, my wget version is 1.8.2.
Thanks!
--- wei ye <[EMAIL PROTECTED]> wrote:
>
> I'm trying to crawl url with --include-directories='/r/'
> parameter.
>
> I expect to crawl '/r/*', but wget gives me '/r*'.
>
> By reading th