Re: Django users

2022-01-28 Thread Kasper Laudrup
On 28/01/2022 21.26, Bernard Mallala wrote: I am thinking about skiing this afternoon Sounds nice. Enjoy and take care of yourself. Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this grou

Re: Django users

2022-01-28 Thread Bernard Mallala
I am thinking about skiing this afternoon On Friday, January 28, 2022 at 12:18:08 PM UTC-7 Kasper Laudrup wrote: > On 28/01/2022 10.12, Anil Choudhari wrote: > > How to connect hive in Django ? > > > > You can't. Better find something else to do. > > Kind regards, > > Kasper Laudrup > -- You re

Re: Django users

2022-01-28 Thread Kasper Laudrup
On 28/01/2022 10.12, Anil Choudhari wrote: How to connect hive in Django ? You can't. Better find something else to do. Kind regards, Kasper Laudrup -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop re

Re: django-users@googlegroups.com

2021-05-03 Thread Kasper Laudrup
On 03/05/2021 07.34, Doang Mawar wrote: > Hello Django community, > > I am faced with some error which is preventing me from proceeding with > learning. > > File "C:\Users\DoangMawarG\Desktop\mysite\book\Bookbank\urls.py", line > 5, in >     path('', views.index, name='index'), > AttributeError:

Re: Django users Group admin

2015-06-12 Thread Russell Keith-Magee
Hi Eike, I'm an admin; feel free to mail me any list admin requests. Yours, Russ Magee %-) On Friday, June 12, 2015, Eike Post wrote: > Hello Django users, > does anybody of you know how to get in touch with the Django user group > admin? > I tried via contact admin and tried emailing to these

Re: [django-users] How to dynamically set crop processor parameters in django-imagekit ?

2013-04-04 Thread CJ Milholland
Not sure if this is the direction you are looking to go but I have had great luck using http://sorl-thumbnail.readthedocs.org/en/latest/examples.html You do your template cropping in the template, This does require you to setup a caching server. Hope this helps! On Thursday, April 4, 2013

Re: [django-users] Limit uploaded image properties

2013-03-26 Thread Avraham Serour
next time consider recommending pillow instead of PIL https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow/2.0.0 On Tue, Mar 26, 2013 at 4:30 AM, Nikolas Stevenson-Molnar < nik.mol...@consbio.org> wrote: > I think you can get at a file's size with the 'size' attribute (in

Re: [django-users] Limit uploaded image properties

2013-03-25 Thread Nikolas Stevenson-Molnar
I think you can get at a file's size with the 'size' attribute (in bytes). Conceivably you could stick it inside a "clean" method for your form and do it that way. class MyForm(forms.Form): ... def clean_image(self): image = self.cleaned_data['image'] if image.size > 1024*1

Re: [django-users] Limit uploaded image properties

2013-03-25 Thread Shawn Milochik
It's easy to do it by file size in your server config. For example, in nginx or Apache. You shouldn't have to set it in Django, and I don't believe Django provides any ability to cap it. https://docs.djangoproject.com/en/dev/topics/http/file-uploads/ -- You received this message because you are

Re: [django-users] Error when registering a new user - Django 1.5

2013-03-23 Thread Russell Keith-Magee
Variations on this problem report have been made a couple of times UserCreateForm is a ModelForm. That means the line in your Meta clause for model=get_user_model() is invoked at the time the module is loaded. However, there's no guarantee at the time that module is loaded that the user model has

Re: [django-users] Error when registering a new user - Django 1.5

2013-03-22 Thread Leonardo S
I did it and aparently it worked: *# forms.py* *class UserCreateForm(UserCreationForm):* * * * def clean_username(self): username = self.cleaned_data["username"] try: self._meta.model._default_manager.get(username=username) except self._meta.model.DoesNotExi

Re: [django-users] Custom signals

2011-01-20 Thread Piotr Zalewa
Yes, that was it! pre_copy.send(type(self), instance=self, ... On 01/20/11 01:37, Łukasz Rekucki wrote: > On 20 January 2011 02:00, Piotr Zalewa wrote: >> I'm trying to add custom signals to my models. >> I'm sure I'm missing some step. >> >> http://paste.pocoo.org/show/323618/ >> > > The "sende

Re: [django-users] Custom signals

2011-01-19 Thread Łukasz Rekucki
On 20 January 2011 02:00, Piotr Zalewa wrote: > I'm trying to add custom signals to my models. > I'm sure I'm missing some step. > > http://paste.pocoo.org/show/323618/ > The "sender" argument in receiver() must match the one in send() (using identity). In receive() you're using a class, while in

Re: Django users in Vietnam?

2008-06-24 Thread Eric Abrahamsen
Aha! So it's you behind the City Weekend website! I always wondered who did that. On Jun 24, 2008, at 3:31 PM, Collin wrote: > > I've been working w/ Django on a project in China for the last four > years at www.exoweb.net and www.ringier.ch. I love it. Now, I'm > responsible for helping launc

Re: [django-users] Re: Spawning long processes

2007-07-05 Thread Simon Drabble
On Thu, 5 Jul 2007, Oliver Charles wrote: > > Just to give an update, I've tried forking the view, and then turning > the child process into a daemon with a double fork, and then exiting > before it gets to the return, and letting the parent do the return, > but this is not working either... > >

Re: [django-users] Re: Including [django-users] in subject line?

2007-06-09 Thread Simon Drabble
On Sun, 10 Jun 2007, Kenneth Gonsalves wrote: > > > On 10-Jun-07, at 7:33 AM, Mike Schinkel wrote: > >> Does anyone know of a free service (or software) that I could proxy >> through >> that would let me add a subject header? Given that it appears to be a >> non-negotiable on the list, that's ab

Re: [django-users] FileBrowser v 2.0

2007-06-07 Thread Michael Trier
Very Nice! Thanks for your work. Michael On 6/7/07, patrick k. <[EMAIL PROTECTED]> wrote: > > > Am 07.06.2007 um 19:24 schrieb Simon Drabble: > > > On Thu, 7 Jun 2007, patrickk wrote: > > > >> > >> I´ve just released a new version of the filebrowser: > >> http://trac.dedhost-sil-076.sil.at/trac

Re: Django Users Portuguese

2007-06-07 Thread Guilherme Mesquita Gondim (semente)
On 6/7/07, Marinho Brandao <[EMAIL PROTECTED]> wrote: > mas também acho que é sempre bom ter variedade e tentar integrar > pessoas, então por esse lado, a idéia da lista é boa. É, este é o objetivo. > Vou entrar na > lista sim, mas minha dedicação vai continuar maior na django-brasil, > pra não

Re: [django-users] FileBrowser v 2.0

2007-06-07 Thread patrick k.
Am 07.06.2007 um 19:24 schrieb Simon Drabble: > On Thu, 7 Jun 2007, patrickk wrote: > >> >> I´ve just released a new version of the filebrowser: >> http://trac.dedhost-sil-076.sil.at/trac/filebrowser/wiki >> >> things to come: >> ### i18n >> ### integration of snipshot and picnik for basic image

Re: Django Users Portuguese

2007-06-07 Thread Marinho Brandao
bom, eu repito minha opinião original: pulverizar os esforços tende a atrapalhar (é que nem pinguim: só sobrevive em grupos unidos, se cada um sai pra um lado, todos morrem). francamente eu sempre temo quando existem vários caminhos, a tendencia é os dois enfraqueceram. mas também acho que é semp

Re: [django-users] FileBrowser v 2.0

2007-06-07 Thread Simon Drabble
On Thu, 7 Jun 2007, patrickk wrote: > > I´ve just released a new version of the filebrowser: > http://trac.dedhost-sil-076.sil.at/trac/filebrowser/wiki > > things to come: > ### i18n > ### integration of snipshot and picnik for basic image-editing > (already working on that one) > > thanks, > patr

Re: Django Users Portuguese

2007-06-07 Thread Guilherme Mesquita Gondim (semente)
On 6/7/07, Nathaniel Whiteinge <[EMAIL PROTECTED]> wrote: > > Have you seen the existing `Django Brasil`__ group? It's got 165 > members and seems pretty active. > > .. __: http://groups.google.com/group/django-brasil Yes, I am member of the Django Brasil. The idea with this group is congregate

Re: Django Users Portuguese

2007-06-07 Thread Nathaniel Whiteinge
Have you seen the existing `Django Brasil`__ group? It's got 165 members and seems pretty active. .. __: http://groups.google.com/group/django-brasil --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" g

Re: Django Users Portuguese

2007-06-06 Thread semente
The group link: http://groups.google.com/group/django-users-portuguese Sorry. --~--~-~--~~~---~--~~ 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

Re: Django users in London want to meet up for beers?

2007-05-15 Thread IT Recruiter
Ideally looking for Django, but as work involves python can train Django if strong in programming. Thanks On 15 May, 09:54, Nic James Ferrier <[EMAIL PROTECTED]> wrote: > To talk django and python? > > Anyone? > > -- > Nic Ferrierhttp://www.tapsellferrier.co.uk --~--~-~--~~--

Re: [Django-users] how about a subject prefix???

2007-01-03 Thread Felix Ingram
On 03/01/07, Honza Král <[EMAIL PROTECTED]> wrote: if you are using gmail, you can set up a filter to put all django related stuff to a specific label, even skip the inbox so that it wouldn't interfere with your normal mail... just search for django-developers@googlegroups.com in To: field... t

Re: [Django-users] how about a subject prefix???

2007-01-03 Thread Honza Král
if you are using gmail, you can set up a filter to put all django related stuff to a specific label, even skip the inbox so that it wouldn't interfere with your normal mail... just search for django-developers@googlegroups.com in To: field... that should do the trick... (if you are using some ot

Re: [Django-users] how about a subject prefix???

2007-01-02 Thread Jacob Kaplan-Moss
On 1/2/07 9:59 PM, LD 'Gus' Landis wrote: Would it be possible to have something like the above subject prefix put on the Django lists? Please? Would help visually enhance Django stuff from other noise. TIA for your consideration. This comes up every few months; please search the archi

Re: [django-users] suggestion

2006-10-16 Thread Marcus Mendes
Thanks so much Sirs. I did a filter at my gmail. Thanks again. Marcus On 10/15/06, Don Arbow <[EMAIL PROTECTED]> wrote: > > On Oct 15, 2006, at 3:18 PM, Marcus Mendes wrote: > > > > Hello all, > > what about if we put "[django-users]" (or something like this) string > > at the begining of subjec

Re: [django-users] suggestion

2006-10-15 Thread Don Arbow
On Oct 15, 2006, at 3:18 PM, Marcus Mendes wrote: > > Hello all, > what about if we put "[django-users]" (or something like this) string > at the begining of subject of our e-mails? It will be more easy to > identify all e-mails tha came from that list. Why clutter the subject lines with redund

Re: [django-users] suggestion

2006-10-15 Thread James Bennett
On 10/15/06, Marcus Mendes <[EMAIL PROTECTED]> wrote: > what about if we put "[django-users]" (or something like this) string > at the begining of subject of our e-mails? It will be more easy to > identify all e-mails tha came from that list. Big -1. I'm not sure that would really make it any "

Re: django-users spam

2006-06-21 Thread Don Arbow
On Jun 21, 2006, at 11:20 AM, Douglas Campos wrote: > Do we have some kind of spam filter at googlegroups? these marketing > spam is very annoying > It's actually not too bad, but I usually report spam to Google abuse. When you read the message at Google, there's a link called "Show Options"

Re: Django users meetup in Palo Alto on April 27th

2006-05-10 Thread Eric Walstad
On Wednesday 10 May 2006 02:09, [EMAIL PROTECTED] wrote: > Eric, > > could you be a bit more specific about what kind of "J2EE" the > application was originally written in? > > Was it using Struts, Spring, EJBs (which version), Hibernate, JSF...? > Or Just plain old JSPs+Servlets? > >   S. Hi Sté

Re: Django users meetup in Palo Alto on April 27th

2006-05-10 Thread [EMAIL PROTECTED]
Eric, could you be a bit more specific about what kind of "J2EE" the application was originally written in? Was it using Struts, Spring, EJBs (which version), Hibernate, JSF...? Or Just plain old JSPs+Servlets? S. Eric Walstad wrote: > Jacob, > > Thanks very much for organizing, and paying f

Re: Django users meetup in Palo Alto on April 27th

2006-04-28 Thread Eric Walstad
Jacob, Thanks very much for organizing, and paying for, the dinner last night. It was a pleasure meeting you and the other guys that showed up. I enjoyed the lively conversations. At dinner I mentioned the application that we recently rolled out, the California Instant Rebates application

Re: Django users meetup in Palo Alto on April 27th

2006-04-14 Thread Jacob Kaplan-Moss
On Apr 13, 2006, at 7:26 PM, Eric Walstad wrote: > I'll be there IF it's on Thursday, April 27 (as mentioned in your > mail to the > django-users list). If it's on Wednesday (as mentioned on your web > page), I > won't be able to make it. Please clarify this. Thanks for catching that; I did

Re: Django users meetup in Palo Alto on April 27th

2006-04-13 Thread Eric Walstad
On Thursday 13 April 2006 15:02, Jacob Kaplan-Moss wrote: > Howdy folks -- > > I'm organizing a Django users meetup in Palo Alto (CA) on April 27th. > > If you live in the area and want to meet up with other Djangonauts > (over free food!), check out the details at http://www.jacobian.org/ > 2006/