Re: Redesign of djangoproject.com?

2012-04-29 Thread rikuthero...@gmail.com
The one that Giovanni did is really nice, I like it! 2012/4/29 Juan Pablo Martínez > http://imgur.com/a/186fh > nice :) > > On Sun, Apr 29, 2012 at 4:07 PM, Giovanni Collazo wrote: > >> I liked what Dana Woodman did, so I did a design based on that. >> >> Here: http://imgur.com/a/186fh >> >> --

Inconsistent humanize naturaltime (#18202)

2012-04-28 Thread rikuthero...@gmail.com
Hi folks, I was about to start fixing ticket #18202, and I have a little doubt of how to focus that ticket. The workaround proposed by "oradoe" seems good and works fine, but that will allow to show only one level, like "10 minutes ago", "2 hours ago" o

Re: #17028 - diveintopython.org links now dead

2011-10-12 Thread rikuthero...@gmail.com
Hello, Sorry, it seems that I miss that last point. I'll try to re-read the contribution docs and work better in the proper way. Thanks and sorry again. 2011/10/12 Russell Keith-Magee > On Wed, Oct 12, 2011 at 5:37 PM, rikuthero...@gmail.com > wrote: > > Hello, > >

Re: #17028 - diveintopython.org links now dead

2011-10-12 Thread rikuthero...@gmail.com
Those mirrors are from Dive into Python 3, is not the one linked from the Django docs. 2011/10/12 Dougal Matthews > Mirrors are appearing in a number of places for this and the html5 > version. Its hard to know which are more likely to stick around. > > http://diveintopython3.ep.io/ > https://g

Re: #17028 - diveintopython.org links now dead

2011-10-12 Thread rikuthero...@gmail.com
eremy Dunck > How about: > http://web.archive.org/web/20110726001211/http://diveintopython.org/ > ? > > On Wed, Oct 12, 2011 at 2:37 AM, rikuthero...@gmail.com > wrote: > > Hello, > > > > As described on the ticket [1], it seems that diveintopython.org is > dea

#17028 - diveintopython.org links now dead

2011-10-12 Thread rikuthero...@gmail.com
Hello, As described on the ticket [1], it seems that diveintopython.org is dead, so I changed every occurence for the mirror http://diveintopython.nfshost.com/, that it seems to be the most updated. The changes are on the patch attached in the ticket [2]. Best regards [1] https://code.djangopro

#16869 - BaseGenericInlineFormSet does not use form's save() method

2011-10-12 Thread rikuthero...@gmail.com
Hello, As described on the ticket [1], I attach a patch that changes the behaviour of "save_new" method in order to use the form's "save" method. Is the patch correct, or there's something to improve? Thanks in advance [1] https://code.djangoproject.com/ticket/16869 [2] https://code.djangoprojec

Re: 'ascii' codec can't encode characters in position 0-8: ordinal not in range(128)

2011-02-22 Thread rikuthero...@gmail.com
The problem is, I think, that you're trying to insert a non-ascii string, inside an ascii string: def __unicode__(self): return 'name: {0}, url: {1}'.format(self.name, self.url) Probably, self.name is an unicode string, and you're trying to put it on a non-unicode string. Try this: def _