Opened 16 years ago

Closed 15 years ago

Last modified 12 years ago

#8826 closed (fixed)

URLField links to the current website cause page loading problem when useing Django developing server.

Reported by: ruserious Owned by: Kevin Kubasik
Component: Documentation Version: dev
Severity: Keywords: URLField kkmegapatch
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description


Change History (8)

comment:1 by Malcolm Tredinnick, 16 years ago

Please provide some details about the problem you are reporting. It is not at all clear from the title what the issue is.

comment:2 by Malcolm Tredinnick, 16 years ago

milestone: 1.0

comment:3 by Russell Keith-Magee, 16 years ago

I think I can fill in the blanks here - if you have a URLField that is validating, and you are using the development server, and you submit a URL to the URLfield that is served by the development server, you will get a deadlock because the post accepting the URLfield data will lock the server, preventing the URLfield from being validated because the request that validates the URL field cannot be served.

This is one of those edge cases that would be fixed by making the development server multithreaded. However, it is very much an edge case; IMHO, it's worth documenting as an unfortunate edge case, but doesn't really require a fix.

comment:4 by Jacob, 15 years ago

Component: FormsDocumentation
milestone: 1.1
Triage Stage: UnreviewedAccepted

comment:5 by Kevin Kubasik, 15 years ago

Owner: changed from nobody to Kevin Kubasik
Status: newassigned

As a way to learn the django doc system. If there's no objection I'd like to document this.

comment:6 by Kevin Kubasik, 15 years ago

Keywords: kkmegapatch added

Doc in kevins megapatch

comment:7 by Jacob, 15 years ago

Resolution: fixed
Status: assignedclosed

(In [10303]) A whole lotta documentation fixes: Fixes #8704, #8826, #8980, #9243, #9343, #9529,

comment:12 by Jacob, 12 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top