Bugs item #696027, was opened at 2003-03-02 15:48
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=696027&group_id=4866

Category: WebKit
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Dietmar Schwertberger (dschwertberger)
Assigned to: Nobody/Anonymous (nobody)
Summary: filenamesForBaseNameNew

Initial Comment:
In Application.filenamesForBaseNameNew()
regex matches for self._filesToServeRegexes
are ignored because continue only continues the
inner for loop:

            for regex in self._filesToHideRegexes:
                if regex.match(shortFilename):
                    continue

Could be fixed with:

            shouldServe = 1
            for regex in self._filesToHideRegexes:
                if regex.match(shortFilename):
                    shouldServe = 0
                    break
            if not shouldServe:
                 continue


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=696027&group_id=4866


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Webware-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-devel

Reply via email to