Wed Nov 9 00:23:06 UTC 2005 Alberto Bertogli <albertogli@telpin.com.ar>
* Add some checks to the multidir handling.
Check if the entry is a directory and doesn't begin with a dot.
Besides, sort it so the listing appears in predictable order.
{
hunk ./darcsweb.cgi 1782
+ entries.sort()
hunk ./darcsweb.cgi 1784
- rdir = c.multidir + '/' + name
+ if name.startswith('.'):
+ continue
+ fulldir = c.multidir + '/' + name
+ if not os.path.isdir(fulldir):
+ continue
+
+ rdir = fulldir
}