Hi all,

I've got a set of new modules that do things like session handling, URI
rewriting, authentication, etc. I've got a set of tests to prevent some rewrite
problems that look like this:

    if ($uri =~ m|^/cgi-bin/|) {
        return DECLINED;
    if ($uri =~ m|^/icons/|) {
        return DECLINED;
etc.

This is done to allow access to /cgi-bin and /icons and the like without
rewriting the URI. UserDir is the same way. The problem is the fact that now
folks can't ajust the conf file without ajusting the module, too. I guess I
could slurp up the config file on load and figure it out for myself, but that
doesn't seem very healthy or very efficient. What I'd like is a method:

  $r->get_aliases

But I don't guess that exists, huh? Any thoughts?

----
Rodney Broom


Reply via email to