Performance / Memory/CPU Usage of A Django App with 10,000+ Models in a High Traffic Site

2008-01-13 Thread Sebastian Macias
Hi, I already posted this on the django developers group and wanted to get feedback as well from the community as well. I'm developing a large webapp using django. One of my requirements is that it needs to be able to handle 10,000+ different entities or models that need to be associated with

Re: Django Quizzes or Questionnaires App

2008-01-08 Thread Sebastian Macias
Basically what I'm looking forward is be able to have a schema-less model. Sebastian Macias wrote: > Hello, > > I need to be able to build custom questionnaires with yes/not options, > multiple options and free text options. The answers must be > searchable: > > I need to

Django Quizzes or Questionnaires App

2008-01-08 Thread Sebastian Macias
Hello, I need to be able to build custom questionnaires with yes/not options, multiple options and free text options. The answers must be searchable: I need to query users that took quiz 1 and selected option a and b in question x, took quiz 2 and selected option c or d for in question y.

Looking to Hire 2-3 django Rockstars in San Diego, Solana Beach, CA ...And Remotely.

2007-10-22 Thread Sebastian Macias
://sandiego.craigslist.org/eng/454040216.html Best, Sebastian Macias CTO Positive Digital Solutions http://www.positivedigitalsolutions.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" grou

ObjectPaginator Performance in Busy Sites

2007-08-31 Thread Sebastian Macias
t are your thoughs? Thanks, Sebastian Macias --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from th

Re: Best Practices to Make your Apps Portable

2007-07-27 Thread Sebastian Macias
I just added it to the wiki: http://code.djangoproject.com/wiki/BestPracticesToWorkWith3rdPartyAppsAndMakingYoursPortable It's available in the resources page. http://code.djangoproject.com/wiki/DjangoResources Best, Sebastian Macias On Jul 26, 12:36 pm, Carl Karsten <[EMAIL PROTEC

Re: Best Practices to Make your Apps Portable

2007-07-25 Thread Sebastian Macias
'/var/django_root', '/var/django_root/shared'] + sys.path" PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE championsound.settings PythonDebug On Note how '/var/django_root' and '/var/django_root/shared' are added to the PythonPath Enjoy it! Sebastian Macias On

Best Practices to Make your Apps Portable

2007-07-24 Thread Sebastian Macias
r each app. I'm still new to python and django (and loving them) and maybe these are concerns that are easily addressed by methods I'm still not aware of. Any thoughts will be greatly appreciated. Thanks, Sebastian Macias digital-telepathy inc --~--~-~--~~~---~--

Re: Is there any way to custom group models in the admin panel?

2007-07-18 Thread Sebastian Macias
I just opened a ticket for this. http://code.djangoproject.com/ticket/4918 Sebastian Macias On Jul 12, 6:37 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On 7/12/07,SebastianMacias <[EMAIL PROTECTED]> wrote: > > > > > By default models are

Modifying Model Field Attributes on Run Time

2007-07-18 Thread Sebastian Macias
Is there anyway to modify model field attributes on run time.. What I'm trying to do is to build some logic that will decide whether a model that is related to other model should be edited or not inline in the admin. Basically: "client = models.ForeignKey(Client, unique=True, edit_inline = True,

Is there any way to custom group models in the admin panel?

2007-07-11 Thread Sebastian Macias
By default models are grouped by app. I really need to be able to break down that grouping a little bit more. I will have an app with probably 40-50 models and would like to group those logically instead of having them all listed under my app name. Thanks, Sebastian

Re: User Friendly Parent Categories in Admin Panel

2007-06-13 Thread Sebastian Macias
Thanks Chris. I think this is going to help a lot. I might simplify the model a little and update the wiki so others with the same question can find a quick solution. Sebastian Macias On Jun 12, 6:33 am, "Chris Moffitt" <[EMAIL PROTECTED]> wrote: > You can see the ca

User Friendly Parent Categories in Admin Panel

2007-06-11 Thread Sebastian Macias
like to be able to use some kind of indentations such as: Category 1 Category 1 :: Sub Category 2 Category 3 :: Sub Category 4 Can anybody spare some knowledge and help me out finding out a way to archive this. I can update the wiki with the solution for other django newbies Thanks, Sebastian