Re: ANN: Django 1.3 released

2011-03-24 Thread Aryeh Leib Taurog
On Mar 23, 8:15 am, James Bennett  wrote:
> Django 1.3 has been officially released.

I have created a windows compiled html "help" file of the django 1.3
documentation.
It is available at http://www.aryehleib.com/CHM.html

I've also made available there chm files for earlier django releases
and for a snapshot from svn trunk which I try to keep relatively
current.

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread Sam Walters
Hi fellow Django users.

Its great news that 1.3 is out.
I have been using the development branch on one machine for a month or
so before this release so fiddling with some of the new features.

Very happy about the class based views.
Static file handling is so-so, *never really had issues with the old
system anyway.
Configurable delete-cascade will save writing my own delete() for some
complex scenarios.
New template tags are all pretty useful too.

Time to start using some of the new features in live projects &
testing existing projects for compatibility errors on 1.3=)

The only 'recent' issue that caused me trouble at first (project is
heavily ajaxed) and with the release of 2.5 i had to fix up the ajax
for csrf headers:

eg: (for prototype js)

function getCookie(name) {
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');

for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i].strip();
if (cookie.substring(0, name.length + 1) == (name + '=')) {
cookieValue =
decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}

function requestPage(event) {
var element = event.element();
var url = '/'+element.identify()+'/';
new Ajax.Updater('content', url, {
method: 'post',
requestHeaders: {'X-CSRFToken':getCookie('csrftoken') },
});
}

Will see how it goes. Very appreciative of the effort to develop any
new version of django.

Cheers

sam_W

On Wed, Mar 23, 2011 at 10:35 PM, Xavier Ordoquy <xordo...@linovia.com> wrote:
> Hi there
>
> I just checked with Chrome (10.0.648.151 / osx) and it worked with sha & md5.
> The issue seems to be on your side.
>
> Regards,
> Xavier.
>
> Le 23 mars 2011 à 12:01, Chris Matthews a écrit :
>
>> Thanks it was.
>> Chrome consistently downloaded it with only 799,034 bytes. I used Windows 
>> Internet Explorer which downloaded 6,504,003 bytes and the SHA1 is correct 
>> and 7Zip is happy with it.
>> PS: I am not punting Internet Explorer ;-)
>>
>> -Original Message-
>> From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] 
>> On Behalf Of Russell Keith-Magee
>> Sent: 23 March 2011 12:47
>> To: django-users@googlegroups.com
>> Subject: Re: ANN: Django 1.3 released
>>
>> On Wed, Mar 23, 2011 at 6:25 PM, Chris Matthews <ch...@bbd.co.za> wrote:
>>> I must add my SHA1 on Django-1.3.tar.gz is
>>> 63e62f9a4834c1c8dbb591aac4ef2b1b84c5ea63 (on all of the downloads I did).
>>>
>>
>> In which case, there's something going screwy with your downloads. The
>> correct SHA1 for Django-1.3.tar.gz, as documented [1] is:
>>
>> f8814d5e1412bb932318db5130260da5bf053ff7
>>
>> [1] http://media.djangoproject.com/pgp/Django-1.3.checksum.txt
>>
>> A number of people validated this independently during the release
>> process, and I've just revalidated it. There's obviously something
>> going wrong with your download.
>>
>> Yours,
>> Russ Magee %-)
>>
>> --
>> 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 this group, send email to 
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/django-users?hl=en.
>>
>> --
>> 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 this group, send email to 
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at 
>> http://groups.google.com/group/django-users?hl=en.
>>
>
> --
> 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 this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>
>

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread Xavier Ordoquy
Hi there

I just checked with Chrome (10.0.648.151 / osx) and it worked with sha & md5.
The issue seems to be on your side.

Regards,
Xavier.

Le 23 mars 2011 à 12:01, Chris Matthews a écrit :

> Thanks it was.
> Chrome consistently downloaded it with only 799,034 bytes. I used Windows 
> Internet Explorer which downloaded 6,504,003 bytes and the SHA1 is correct 
> and 7Zip is happy with it. 
> PS: I am not punting Internet Explorer ;-)
> 
> -Original Message-
> From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
> Behalf Of Russell Keith-Magee
> Sent: 23 March 2011 12:47
> To: django-users@googlegroups.com
> Subject: Re: ANN: Django 1.3 released
> 
> On Wed, Mar 23, 2011 at 6:25 PM, Chris Matthews <ch...@bbd.co.za> wrote:
>> I must add my SHA1 on Django-1.3.tar.gz is
>> 63e62f9a4834c1c8dbb591aac4ef2b1b84c5ea63 (on all of the downloads I did).
>> 
> 
> In which case, there's something going screwy with your downloads. The
> correct SHA1 for Django-1.3.tar.gz, as documented [1] is:
> 
> f8814d5e1412bb932318db5130260da5bf053ff7
> 
> [1] http://media.djangoproject.com/pgp/Django-1.3.checksum.txt
> 
> A number of people validated this independently during the release
> process, and I've just revalidated it. There's obviously something
> going wrong with your download.
> 
> Yours,
> Russ Magee %-)
> 
> -- 
> 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 this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
> 
> -- 
> 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 this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
> 

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



RE: ANN: Django 1.3 released

2011-03-23 Thread Chris Matthews
Thanks it was.
Chrome consistently downloaded it with only 799,034 bytes. I used Windows 
Internet Explorer which downloaded 6,504,003 bytes and the SHA1 is correct and 
7Zip is happy with it. 
PS: I am not punting Internet Explorer ;-)

-Original Message-
From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
Behalf Of Russell Keith-Magee
Sent: 23 March 2011 12:47
To: django-users@googlegroups.com
Subject: Re: ANN: Django 1.3 released

On Wed, Mar 23, 2011 at 6:25 PM, Chris Matthews <ch...@bbd.co.za> wrote:
> I must add my SHA1 on Django-1.3.tar.gz is
> 63e62f9a4834c1c8dbb591aac4ef2b1b84c5ea63 (on all of the downloads I did).
>

In which case, there's something going screwy with your downloads. The
correct SHA1 for Django-1.3.tar.gz, as documented [1] is:

f8814d5e1412bb932318db5130260da5bf053ff7

[1] http://media.djangoproject.com/pgp/Django-1.3.checksum.txt

A number of people validated this independently during the release
process, and I've just revalidated it. There's obviously something
going wrong with your download.

Yours,
Russ Magee %-)

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread Russell Keith-Magee
On Wed, Mar 23, 2011 at 6:25 PM, Chris Matthews  wrote:
> I must add my SHA1 on Django-1.3.tar.gz is
> 63e62f9a4834c1c8dbb591aac4ef2b1b84c5ea63 (on all of the downloads I did).
>

In which case, there's something going screwy with your downloads. The
correct SHA1 for Django-1.3.tar.gz, as documented [1] is:

f8814d5e1412bb932318db5130260da5bf053ff7

[1] http://media.djangoproject.com/pgp/Django-1.3.checksum.txt

A number of people validated this independently during the release
process, and I've just revalidated it. There's obviously something
going wrong with your download.

Yours,
Russ Magee %-)

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



RE: ANN: Django 1.3 released

2011-03-23 Thread Chris Matthews
I must add my SHA1 on Django-1.3.tar.gz is 
63e62f9a4834c1c8dbb591aac4ef2b1b84c5ea63 (on all of the downloads I did).

From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
Behalf Of Chris Matthews
Sent: 23 March 2011 12:20
To: django-users@googlegroups.com
Subject: RE: ANN: Django 1.3 released

Well done! Thanks for all the hard work.
I downloaded my version from http://www.djangoproject.com/download/ and Chrome 
says it comes from http://media.djangoproject.com/releases/1.3/Django-1.3.tar.gz

7zip says "Data error in Django-1.3.tar' File is broken". I have downloaded it 
a few times with the same result.



From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
Behalf Of Sultan Imanhodjaev
Sent: 23 March 2011 12:02
To: django-users@googlegroups.com
Subject: Re: ANN: Django 1.3 released

Wow!!! Congratulations people, thanks to developers!
On Wed, Mar 23, 2011 at 3:59 PM, Marco 
<chopin1...@gmail.com<mailto:chopin1...@gmail.com>> wrote:
so happy
On Wed, Mar 23, 2011 at 5:34 PM, bruno desthuilliers 
<bruno.desthuilli...@gmail.com<mailto:bruno.desthuilli...@gmail.com>> wrote:
On 23 mar, 07:15, James Bennett 
<ubernost...@gmail.com<mailto:ubernost...@gmail.com>> wrote:
> It's here!
>
> Django 1.3 has been officially released.
Yay great ! Congrats guys.

--
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<mailto:django-users@googlegroups.com>.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com<mailto:django-users%2bunsubscr...@googlegroups.com>.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



--
LinuX
Violin
Canon EOS
--
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<mailto:django-users@googlegroups.com>.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com<mailto:django-users%2bunsubscr...@googlegroups.com>.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



--
Kind regards,
Sultan Imanhodjaev
+996 779 230 968
--
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.
--
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



RE: ANN: Django 1.3 released

2011-03-23 Thread Chris Matthews
Well done! Thanks for all the hard work.
I downloaded my version from http://www.djangoproject.com/download/ and Chrome 
says it comes from http://media.djangoproject.com/releases/1.3/Django-1.3.tar.gz

7zip says "Data error in Django-1.3.tar' File is broken". I have downloaded it 
a few times with the same result.



From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On 
Behalf Of Sultan Imanhodjaev
Sent: 23 March 2011 12:02
To: django-users@googlegroups.com
Subject: Re: ANN: Django 1.3 released

Wow!!! Congratulations people, thanks to developers!
On Wed, Mar 23, 2011 at 3:59 PM, Marco 
<chopin1...@gmail.com<mailto:chopin1...@gmail.com>> wrote:
so happy
On Wed, Mar 23, 2011 at 5:34 PM, bruno desthuilliers 
<bruno.desthuilli...@gmail.com<mailto:bruno.desthuilli...@gmail.com>> wrote:
On 23 mar, 07:15, James Bennett 
<ubernost...@gmail.com<mailto:ubernost...@gmail.com>> wrote:
> It's here!
>
> Django 1.3 has been officially released.
Yay great ! Congrats guys.

--
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<mailto:django-users@googlegroups.com>.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com<mailto:django-users%2bunsubscr...@googlegroups.com>.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



--
LinuX
Violin
Canon EOS
--
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<mailto:django-users@googlegroups.com>.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com<mailto:django-users%2bunsubscr...@googlegroups.com>.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



--
Kind regards,
Sultan Imanhodjaev
+996 779 230 968
--
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread Andre Lopes
I'm kind of sad :)

I have installed 1.2 one day ago... :O

Just kidding.

Congratulations to all people involved.


Best Regards,



On Wed, Mar 23, 2011 at 10:02 AM, Sultan Imanhodjaev
 wrote:
> Wow!!! Congratulations people, thanks to developers!
>
> On Wed, Mar 23, 2011 at 3:59 PM, Marco  wrote:
>>
>> so happy
>>
>> On Wed, Mar 23, 2011 at 5:34 PM, bruno desthuilliers
>>  wrote:
>>>
>>> On 23 mar, 07:15, James Bennett  wrote:
>>> > It's here!
>>> >
>>> > Django 1.3 has been officially released.
>>>
>>> Yay great ! Congrats guys.
>>>
>>> --
>>> 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 this group, send email to
>>> django-users+unsubscr...@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/django-users?hl=en.
>>>
>>
>>
>>
>> --
>> LinuX
>> Violin
>> Canon EOS
>>
>> --
>> 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 this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>
>
>
> --
> Kind regards,
> Sultan Imanhodjaev
> +996 779 230 968
>
> --
> 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 this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread Sultan Imanhodjaev
Wow!!! Congratulations people, thanks to developers!

On Wed, Mar 23, 2011 at 3:59 PM, Marco  wrote:

> so happy
>
> On Wed, Mar 23, 2011 at 5:34 PM, bruno desthuilliers <
> bruno.desthuilli...@gmail.com> wrote:
>
>> On 23 mar, 07:15, James Bennett  wrote:
>> > It's here!
>> >
>> > Django 1.3 has been officially released.
>>
>> Yay great ! Congrats guys.
>>
>> --
>> 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 this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
>
>
> --
> LinuX
> Violin
> Canon EOS
>
> --
> 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 this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>



-- 
Kind regards,
Sultan Imanhodjaev
+996 779 230 968

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread Marco
so happy

On Wed, Mar 23, 2011 at 5:34 PM, bruno desthuilliers <
bruno.desthuilli...@gmail.com> wrote:

> On 23 mar, 07:15, James Bennett  wrote:
> > It's here!
> >
> > Django 1.3 has been officially released.
>
> Yay great ! Congrats guys.
>
> --
> 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 this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>


-- 
LinuX
Violin
Canon EOS

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: ANN: Django 1.3 released

2011-03-23 Thread bruno desthuilliers
On 23 mar, 07:15, James Bennett  wrote:
> It's here!
>
> Django 1.3 has been officially released.

Yay great ! Congrats guys.

-- 
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 this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.