Re: GSoC Idea

2019-02-03 Thread PARTH PATIL
Hey, can you elaborate on what your idea is? On Thursday, January 31, 2019 at 4:54:36 PM UTC+5:30, gaurav jain wrote: > > from django.db import models > from django.contrib.auth.models import User > > class CommenInfo(models.Model): > archived = models.BooleanField(default=False) > created

GSoC Idea

2019-01-31 Thread gaurav jain
from django.db import models from django.contrib.auth.models import User class CommenInfo(models.Model): archived = models.BooleanField(default=False) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) def delete(self): se

Re: Interested in GSoC idea "Replace Form Media Class"

2015-03-16 Thread Varun Sharma
Thanks Tim for letting me know. I think I should better work on "Test framework cleanup" idea :) On Sat, Mar 14, 2015 at 04:01:53PM -0700, Tim Graham wrote: > Jannis Leidel, who's worked a fair bit on django-compressor, said this: > "I’m not convinced that this is feasible in the way the OP prop

Re: Interested in GSoC idea "Replace Form Media Class"

2015-03-14 Thread Tim Graham
Jannis Leidel, who's worked a fair bit on django-compressor, said this: "I’m not convinced that this is feasible in the way the OP proposed it. Porting over pipeline or compressor will just bring all of their downsides into Django’s code. And besides, the frontend tech world is currently in a s

Re: Interested in GSoC idea "Replace Form Media Class"

2015-03-13 Thread Varun Sharma
Hi Tim, Sorry for such a late response, I was caught up in the midterms. The project idea is like this: Right now we have a Media class which is used to fetch the form assets but is not very popular. In order to replace it with a new preprocessor, I see two viable solutions: 1. Creating a new ap

Re: Interested in GSoC idea "Replace Form Media Class"

2015-02-24 Thread Tim Graham
Hi Varun, Thanks for your interest. If you want feedback, you'll need to describe your ideas in more detail. Tim On Monday, February 23, 2015 at 10:31:34 PM UTC-5, Varun Sharma wrote: > > Hi everyone, > > I've been pondering over the django codebase and GSoC ideas for some time > now. I find t

Interested in GSoC idea "Replace Form Media Class"

2015-02-23 Thread Varun Sharma
Hi everyone, I've been pondering over the django codebase and GSoC ideas for some time now. I find the idea of replacing Media class really interesting. As mentioned in the ticket #22298 discussion, it will be really usefull to replace the Media class