ANN: Django-Shorty 0.1.0 released

2012-03-13 Thread andrea mucci
Hi All i'm happy to announce the release of Django-Shorty 0.1.0 is a simple GPL3 app for building "private" Django shortening Url service. this release offer: - Bijective encode/decode slug - Django admin interface integration - 301 HTTP Status Code - Password protected URL redirection - URL mo

Re: Django for Enterprise

2012-04-10 Thread andrea mucci
hi ivo the problem is not if Django is a good framework for huge project, but if you or your devs have experience to design and maintain some "big" projects. with python and django have a lot of projects with huge traffic or huge database design, so i think is possible to create something very "

Re: Django for Enterprise

2012-04-10 Thread andrea mucci
find good developers. > > > Att > Ivo Marcelo Leonardi Zaniolo > Sent from mobile > > On Apr 10, 2012 5:11 PM, "andrea mucci" wrote: > hi ivo > > the problem is not if Django is a good framework for huge project, but if you > or your devs have experienc

Re: [JOB] Urgent - PHP/Python Developer needed

2012-04-10 Thread andrea mucci
hi Cal > Our solutions are high volume (peaking at around 5000 requests/minute), with > extremely large databases (400 million+ rows) and large content servers > (15TB+ of media files). If you put in the hands of a junior dev this, your customer has to pay more for damages over wage offered th

Re: [JOB] Urgent - PHP/Python Developer needed

2012-04-10 Thread andrea mucci
> anyway, the fact that there is someone who has a salary so painful not > exclude that the offer is "bad" cheers, El 10/04/2012, a las 23:18, Cal Leeming [Simplicity Media Ltd] escribió: > > > On Tue, Apr 10, 2012 at 10:12 PM, andrea mucci wrote: > hi Cal > >> O

Re: Django tutorial

2012-04-10 Thread andrea mucci
hi Ed you have configured the DB with the sqlite3 driver and you point the NAME db to a mysql folder. you need to put the folder for your sqlite database. cheers, El 10/04/2012, a las 23:15, Ed McLaughlin escribió: > DATABASES = { >'default': { >'ENGINE': 'django.db.backends.sqlite3'

Re: Django tutorial

2012-04-10 Thread andrea mucci
a good solution could be: SITE_ROOT = os.path.realpath(os.path.dirname(__file__)) DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'NAME': os.path.join(SITE_ROOT,'sqlite.db'),

Re: Template inheritance and passing variables

2012-04-10 Thread andrea mucci
Hi in django documentation https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs Note The include tag should be considered as an implementation of "render this subtemplate and include the HTML", not as "parse this subtemplate and include its contents as if it were part of t

Re: Is it a good practice to delegate views based on GET / POST?

2012-04-10 Thread andrea mucci
hi this is something personal choice i prefer to check GET and POST directly from the view method, but in some case is useful to part the GET and the POST view for readable and clean coding El 11/04/2012, a las 01:21, John Yeukhon Wong escribió: > 3/4 down the page > http://www.djangobook.com

Re: Admin site not working

2012-04-15 Thread andrea mucci
hi have you make a syncdb? El 15/04/2012, a las 15:17, mohamed elsebaey escribió: > Hi, > I'm a new user for django, I started using the tutorial for ver 1.4 > with > python 2.7.1 on mac 10.7.3 > when i try to open the admin site it' gives me the following error > > > DoesNotExist at /admin/

Re: Missing manage.py

2012-04-16 Thread andrea mucci
hi could you post django version python version you use virtualenv? if yes what version and the code you use to generate the project cheers El 16/04/2012, a las 13:26, Faeez Abd Rahman escribió: > Hi, > > I have a problem whenever I create a new project using the start project > command, no m

Re: High Traffic

2012-04-16 Thread andrea mucci
hi Yarden how many users have you in your database? you use mod_fcgi or mod_python? ( more recommendable will be mod_fcgi or mod_fcgid ) Django is framework that suppert very very large traffic. you can see an example here http://instagram-engineering.tumblr.com/post/13649370142/what-powers-inst

Re: High Traffic

2012-04-16 Thread andrea mucci
tried to switch to nginx+fcgi. and tried ubuntu srrver as well. same results. > > any ideas? > > On 16 באפר 2012 23:18, "andrea mucci" wrote: > hi Yarden > > how many users have you in your database? > you use mod_fcgi or mod_python? ( more recommendable will b

Re: Newbie form question

2012-07-02 Thread Andrea Mucci
hi the approach is correct, i think the problem is with the Field name have you used choices = ... ? if yes cloud you change the name of this field? cheers, 2012/7/2 Russ Abbott > As a Django newbie I apologize if this is a trivial question. > > I'd like to use a form field as an element

Re: Step up to the plate

2012-09-06 Thread andrea mucci
Hi Alex if you need some help contact me to and.mu...@gmail.com have a nice day El 07/09/2012, a las 00:18, Alex Glaros escribió: > Dear Django Group, > > Can you spare a few lines of code? > > Our nonprofit has a great idea to help the unemployed and spur innovation at > the same time. > >

Re: Staticfiles on shared hosting using FCGI

2012-01-27 Thread Andrea Mucci
Have you try this '%s/your_static_folder'%os.path.dirname(__file__) You crete a folder in the same position of settimg.py El 14/01/2012, a las 08:06, Tundebabzy escribió: > I am stuck after running collectstatic. I don't know how to point the > server to STATIC_ROOT. > Can someone give assista

Re: steps to connect as client to a tcp/ip server

2013-05-28 Thread andrea mucci
Hi Chiara The best solution is make two different projects one is your socket server and the other is the Django project. is not a good idea connect with socket directly to Django, this will be cause some large delays and in case of connection fails? what is the timeout of the socket connection?

Merry Xmass

2015-12-24 Thread Andrea Mucci
Merry Xmass to all and all your family Have a good djangoized new year -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.