This repository has been archived by the owner on Dec 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
MEDUSA_URL_PREFIX, and exception handling + logging fixes when running in multiprocessing #13
Open
hyperair
wants to merge
24
commits into
mtigas:master
Choose a base branch
from
hyperair:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kezabelle
added a commit
to kezabelle/django-jackfrost
that referenced
this pull request
Jun 1, 2015
This adds an optional MEDUSA_URL_PREFIX setting option that causes Django's URL reversing to render URLS prefixed with this string. This is necessary when hosting Django projects on a URI path other than /, as a proper WSGI environment is not present to tell Django what URL prefix to use.
On typical Renderer implementations, get_paths() uses Django's URL reversing, which is affected by the set_script_prefix() call, so ensure that's pre-cached first.
This avoids skipping up to 4 pages per failed page.
Most of these are duplicated across the various StaticSiteRenderer classes, which makes it rather hard to patch the default behaviour. This deduplicates the code from the various .generate() implementations into a single base class, allowing render_path() to be overridden easily while still retaining the MEDUSA_MULTITHREAD logic.
The django.test.client and output path generation logic is common across all the renderers. This commit only updates DiskStaticSiteRenderer, the others will be ported in coming commits.
This allows us to override it in derived renderers, e.g. in the S3 renderer when we need to force everything onto index.html.
In Python 2.6, logging.Handler isn't a new-style class.
This avoids an exception in Python 2.6 upon exiting caused by the still-active QueueListener thread.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On setups where a Django project is hosted on a non-root URI, it is necessary to prefix reversed absolute URIs with the script prefix in the statically generated pages in order to avoid broken links.