Webboard: duplicate multiple back slashes

2002-03-05 Thread Aaron Hawley
Author: Aaron Hawley Email: [EMAIL PROTECTED] Message: How do folks handle situations in your string and regular expressions where a web server can handle multiple backslashes in a url? example: http://www.uvm.edu//foo http://www.uvm.edu///foo http://www.uvm.edufoo all equal http://www.uvm

Webboard: duplicate multiple back slashes

2002-03-05 Thread Aaron Hawley
Author: Aaron Hawley Email: [EMAIL PROTECTED] Message: so to follow up: multiple slashes in a url will not allow it to be matched by string and regex commands or robots.txt files. mnoGoSearch needs to convert urls like this: ^(http://.*/)/+(.*) to $1$2 and have that be done repeatedly to a ur

Webboard: duplicate multiple back slashes

2002-03-06 Thread Alexander Barkov
Author: Alexander Barkov Email: [EMAIL PROTECTED] Message: > How do folks handle situations in your string and regular expressions where a web >server can handle multiple backslashes in a url? > > example: > > http://www.uvm.edu//foo > http://www.uvm.edu///foo > http://www.uvm.edufoo > > a

Webboard: duplicate multiple back slashes

2002-03-06 Thread Aaron Hawley
Author: Aaron Hawley Email: [EMAIL PROTECTED] Message: I could indeed disallow that, but what if I still want that URL, just want to make sure double slashes get removed? on another note, we have URLs like this http://www.uvm.edu/foo/?url=http://www.uvm.edu/bar.html so that would be acceptable

Webboard: duplicate multiple back slashes

2002-03-07 Thread Aaron Hawley
Author: Aaron Hawley Email: Message: if anyone thoroughly knowledgable in mnoGo knows that my request is a TODO rather than a HOWTO, let me know. Reply: ___ If you want to unsubscribe send "unsubscri

Webboard: duplicate multiple back slashes

2002-03-12 Thread gluke
Author: gluke Email: [EMAIL PROTECTED] Message: You can write your own Alias prog that can alias urls in the way you want. Read documentation supplied with mnogosearch-3.2.x about aliases for details. Reply: ___