Mark Lavin

Results 77 comments of Mark Lavin

The backend work is in place for this and I've been doing some work to support this in the front end editor. Right now it's really awkward and I'm not...

If I'm understanding this correctly, I can see how this would be useful but it makes the preview impossible since the preview view won't have the additional context provided by...

I read this as you wanted to include all of the outer context from the original template into the scribble context. If that's the case, the preview view won't have...

There are a couple of apps that do this now which we could look at using or use as a starting point. They are all pretty much named django-seo: http://github.com/redsolution/django-seo...

This might be feasible with @ironfroggy's change which is landing in v0.8. I've used https://github.com/tstone/jquery-markedit which did the job nicely.

This would give a speed improvement but it would also take away a feature. If you use the `render_pagelet` template tag then the pagelet is rendered with request context. That...

With the change from #19 the `prefix` argument could be passed to `mkdtemp` to make these directories easy to find/clean up. Looking through my current `/tmp/` folder that appears to...

Django already has a [`FILE_UPLOAD_TEMP_DIR`](https://docs.djangoproject.com/en/stable/ref/settings/#file-upload-temp-dir) setting as well. That could be used here in place of adding a new setting. Though this isn't relative to the system temp. Seems like...

> If I understood you correctly you are suggesting to make the folder names something like "myproject_13ADsfa" ... Yes that would be the result of my suggestion. While having multiple...

Some pieces of this template and the documentation point towards using single master for multiple environments which in my experience has been a rare step. Typically we have a master...