Feel proud today, very very proud especially of 0.95 and MR

2006-08-31 Thread antonio
ce for those of you that like the kind of thing that we do at Tabblo (see here: http://app.tabblo.com/studio/view/favorites/antonio for some examples) and after talking to Adrian, we've decided that the simplest most direct thing would be to offer anyone who is so inclined a coupon for a free po

Re: urlify.js blocks out non-English chars - 2nd try?

2006-07-07 Thread Antonio Cavedoni
p://dev.textpattern.com/browser/releases/4.0.3/source/ textpattern/lib/i18n-ascii.txt Also: >>> print slugify_utf8_slug("Δ") Δ So this would be no good. Perhaps I’m missing something but unicodedata won’t cut it. If we’re going the asciify-route, we need a lookup ta

Re: urlify.js blocks out non-English chars - 2nd try?

2006-07-19 Thread Antonio Cavedoni
s import idna >>> p.encode('idna') 'xn--perch-fsa' >>> p.encode('punycode') 'perch-fsa' >>> puny = 'perch-fsa' >>> puny.decode('punycode') u'perch\xe9' >>> print puny.decode(&#x

Re: XHTML vs. HTML4 and csrf middleware in particular

2006-10-17 Thread Antonio Cavedoni
th different MIME types, you may be on a slippery slope there. HTH, -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-devel

Re: XHTML vs. HTML4 and csrf middleware in particular

2006-10-17 Thread Antonio Cavedoni
On 17 Oct 2006, at 12:21, Michael Radziej wrote: > Antonio, you're probably suffering from a severe read-only-first- > paragraph syndrome here. Proposed cure is to read email again until > bottom hits ;-) Michael: you’re right, I’m a moron :-) Sorry for wasting everyone’s

Re: drag-n-drop order_with_respect_to

2006-10-18 Thread Antonio Cavedoni
_with_respect_to > be welcomed? Yeah. I, for one, would very much welcome something like it. BTW: is this code working at the moment? http://code.djangoproject.com/browser/django/trunk/django/contrib/ admin/media/js/admin/ordering.js Cheers. -- Antonio --~--~-~--~~---

Re: Re: How do i run just 1 test module?

2006-11-14 Thread Antonio Cavedoni
or Russ: the testing framework is amazing, it changed completely how I go about designing models for my own apps. Thanks for that! I'm looking forward to the fixtures support. Cheers. -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscr

Re: Feature request for newforms: HTML 4

2006-12-05 Thread Antonio Cavedoni
parser.delete_first_token() return Html4Node(nodelist) class Html4Node(template.Node): def __init__(self, nodelist): self.nodelist = nodelist def render(self, context): output = self.nodelist.render(context) return output.replace(' />', &#x

Re: Re: Re: Feature request for newforms: HTML 4

2006-12-05 Thread Antonio Cavedoni
e > advertise clearly that the Django forms system is going to produce > XHTML and that if you want HTML4 you'll need to use the filter. I posted a tag earlier in this thread that does what you ask (it's pretty trivial). Are my messages coming through, anyway? -- Antonio --~--~--

Re: Re: django.contrib.formtools: High-level abstractions of common form tasks

2006-12-07 Thread Antonio Cavedoni
temporary data in a hidden field? Cheers. -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To un

Re: Re: django.contrib.formtools: High-level abstractions of common form tasks

2006-12-07 Thread Antonio Cavedoni
ndatory in all cases anyway. Cheers. -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To uns

Re: django.contrib.formtools: High-level abstractions of common form tasks

2006-12-08 Thread Antonio Cavedoni
lidated data, you just need to ensure > that it > hasn't changed since you validated it. MAC? An MD5/SHA1 hash, probably? -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django dev

Re: JS Form Validation (was Re: Django and AJAX: Setting aside the conflict)

2005-11-17 Thread Antonio Cavedoni
done in a context of progressive enhancement. What do you guys think? -- Antonio About me: I’ve been hacking with Django for some weeks now, I’ve been developing websites for almost 8 years now and I used to code in PHP/JS/ActionScript/XSLT. I’ve been moving to Python for the last year and

Re: A fix for all that futzing around with paths

2005-11-18 Thread Antonio Cavedoni
set in my .bash_profile to switch from one django project to the other, just so that I don’t have to see or type DJANGO_SETTINGS_MODULE too much. So, any solution that rids me of environment variables is definitely welcome. Cheers. -- Antonio

Re: Ditch pluralisation entirely

2005-11-23 Thread Antonio Cavedoni
ould be fixed by adding or removing an S. +1, let’s get rid of pluralisation altogether. It’s also bad for newcomers: in my first django app I used to have “newss” :-/ Cheers. -- Antonio

Re: Proposal: Django should support unicode strings

2006-01-10 Thread Antonio Cavedoni
I’m willing to help implement it. Maybe we could start a “unicode” branch right after “magic-removal” is merged back into the trunk? -- Antonio

[OT] Re: Proposal: Django should support unicode strings

2006-01-12 Thread Antonio Cavedoni
On 12 Jan 2006, at 14:44, Simon Willison wrote: http://www.flickr.com/services/api/misc.encoding.html ROTFL! Could you make that text a bit bigger? I’m not sure which encoding is expected by the Flickr API :-p -- Antonio

Re: dot can't match in url configuration

2006-01-21 Thread Antonio Cavedoni
se following config: (r'^user/favorate/(?P.*)$', 'test.fav.index'), how about something like this? (r'^user/favorate/(?P[a-zA-Z0-9\.]*)$', 'test.fav.index'), Also: shouldn’t favorate be spelled “favorite”? -- Antonio

Re: magic-removal: "Change subclassing syntax"

2006-01-26 Thread Antonio Cavedoni
, but support can be added in. Cheers. -- Antonio

Restarting the webserver under mod_python

2006-03-05 Thread Antonio Cavedoni
/group/django-developers Cheers. -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe

Re: Django on Google App Engine via SQL (not nonrel)

2010-10-27 Thread Antonio Ognio
help a bit discuss this matters, Antonio Lima-Peru -- You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-develop...@googlegroups.com. To unsubscribe from this group, send email to django

Authentication using email

2008-08-18 Thread Antonio Ognio
ave to make it into the 1.0 release? Is there anything else that can be done to make it happen? Yes, I know there are patches for both issues but I really want to avoid depending on a patched Django. Regards and thanks for your time, Antonio. --~--~-~--~~~---~--~~

Re: Search facility for new documentation

2008-09-02 Thread Antonio Cavedoni
nside is that it's for pay, about $100 a year IIRC. My app would be free anyway. If there's interest I can package and release it. Cheers. -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

Re: Search facility for new documentation

2008-09-02 Thread Antonio Cavedoni
es: http://mytech.it/search/?q=test HTH, -- Antonio --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To u

help with ZINNIA

2014-08-18 Thread antonio vangi
rary: Template library comments not found, tried django.templatetags.comments,django.contrib.admin.templatetags.comments,django.contrib.staticfiles.templatetags.comments,mptt.templatetags.comments,tagging.templatetags.comments,zinnia.templatetags.comments Request Method:GETRequest URL:http://localhost:

Re: Django 1.0 features -- the definitive list

2007-12-08 Thread Antonio Cangiano
On Nov 30, 1:33 am, "Adrian Holovaty" <[EMAIL PROTECTED]> wrote: > I think we ought to call the release 2.0. Adrian, marketing matters. :) How about releasing 1.0 now, 1.2 in a month or so, and then 2.0 when all the features listed above will be implemented? Cheers, Antonio

Hello Django developers

2011-02-06 Thread Juan Antonio Infantes
Hi, My name is Juan Antonio (aka ersame) from Spain and I am a computer science student . I have been enrolled in some Django projects since September 2010. I think it’s time to start contributing in this amazing project. I just want to say hello to everybody and if someone could make a review

Re: Hello Django developers

2011-02-07 Thread Juan Antonio Infantes
Thank you ! :) 2011/2/7 Lachlan Musicman > On Mon, Feb 7, 2011 at 11:40, Russell Keith-Magee > wrote: > > On Mon, Feb 7, 2011 at 6:24 AM, Juan Antonio Infantes > wrote: > >> Hi, > >> > >> My name is Juan Antonio (aka ersame) from Spain and I am a com

reassessing our Operating System

2007-09-17 Thread antonio von carmoducci
Hi Everyone. I'm looking at reassessing our Operating System of choice for our Django site, and I really need some background information (popularity & suitability mainly) If you have a minute spare I'd really appreciate some answers to the following questions: (live publicly viewable sites onl

py2exe + Django 1.6

2014-04-10 Thread Antonio Francisco Martín Romero
Hi everyone, I was using py2exe + Django 1.3 without problems. From Django 1.4 the way to find the commands changed and it tries to find .py files as you can see in the find_commands() function in the file core/management/__init__.py . When you compile Django using py2exe, your don't have .py

Sending messages to the group does not work after a few minutes online

2017-08-05 Thread Luís Antonio De Marchi
I'm using: Django==1.11.3 channels==1.1.6 When the user connects to the websocket, I do the following: @channel_session def connect(self, message, **kwargs): group = Group('user-%s' % user.uuid) # Do not use more than one device. group.send({"close": True}, immediately=True) grou