staticgenerator icon indicating copy to clipboard operation
staticgenerator copied to clipboard

StaticGenerator for Django

Results 7 staticgenerator issues
Sort by recently updated
recently updated
newest added

In order to publish static pages, **staticgenerator** makes a fake request (using its `DummyHandler`) to the generated page. It doesn't provide a `REMOTE_ADDR` or a `request.REQUEST` field. This can cause...

AttributeError is being raised when `quick_publish` is called passing a path processed by a [class-based generic view](https://docs.djangoproject.com/en/1.3/topics/class-based-views/). The error occurs exactily in [this line](https://github.com/django/django/blob/1.3/django/views/generic/base.py#L61), using Django 1.3, in an attempt...

Fixes warning on install

When a view sends a 302 redirect header, static generator raises an error: The requested page("/url/to/content/") returned http code 302. Static Generation failed. This occurs on calling "quick_publish". Is this...

Hi, I think that due to a difference on how [os.rename](http://docs.python.org/library/os.html#os.rename) works on Unix and Windows the following exception raises: ``` Traceback (most recent call last): File "c:\python27\lib\site-packages\django\core\servers\basehttp.py", line 280,...

If you don't have a value in settings.SERVER_NAME and aren't using django.contrib.sites, staticgenerator assumes localhost, but not before it issues a warning...by using a print statement. Since mod_wsgi doesn't let...

If you append a GET request to the url, like '?page=2' the original url is delivered.