Re: [Django] #9119: [patch] Admin change list does not allow custom get parameters

2009-05-17 Thread Django
#9119: [patch] Admin change list does not allow custom get parameters
---+
  Reporter:  fas   | Owner:  fas
 
Status:  assigned  | Milestone:  1.1
 
 Component:  django.contrib.admin  |   Version:  1.0
 
Resolution:|  Keywords:  admin, query, get, 
parameter, filter
 Stage:  Someday/Maybe | Has_patch:  1  
 
Needs_docs:  0 |   Needs_tests:  0  
 
Needs_better_patch:  0 |  
---+
Changes (by Jameson):

  * stage:  Design decision needed => Someday/Maybe
  * needs_tests:  1 => 0
  * milestone:  => 1.1

Comment:

 I have to say that this was just the information i was looking for,
 [http://www.sharevouchers.co.uk/2009/04/10/symnatec-coupons Norton 360 3.0
 Coupon] and its very useful. I would like to gotel the yacht.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #9004: 1.0 porting guide lists non-existant database backend functions

2009-05-17 Thread Django
#9004: 1.0 porting guide lists non-existant database backend functions
+---
  Reporter:  nicklane   | Owner:  nobody
Status:  new| Milestone:
 Component:  Documentation  |   Version:  SVN   
Resolution: |  Keywords:
 Stage:  Accepted   | Has_patch:  0 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by daemondazz):

 * cc: da (removed)
 * cc: daemondazz (added)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11104: HAVING filter screws with extra() SQL parameter ordering

2009-05-17 Thread Django
#11104: HAVING filter screws with extra() SQL parameter ordering
--+-
  Reporter:  miracle2k| Owner: 
Status:  new  | Milestone: 
 Component:  ORM aggregation  |   Version:  SVN
Resolution:   |  Keywords: 
 Stage:  Accepted | Has_patch:  0  
Needs_docs:  0|   Needs_tests:  0  
Needs_better_patch:  0|  
--+-
Changes (by russellm):

  * needs_better_patch:  => 0
  * stage:  Unreviewed => Accepted
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 A related use case, reported in #7:

 {{{
 Book.objects.extra(
 select={'date': "DATE_FORMAT(timestamp, '%s')"},
 select_params=('%%H',),
 where=["DATE_FORMAT(timestamp, '%%H:%%i') > '%s'"],
 params=['22:00']).values('date').annotate(cnt=Count('id'))
 }}}

 the resulting sql query is:

 {{{
 SELECT DATE_FORMAT(timestamp, '%H') AS `date`, COUNT(id) AS `cnt`
 FROM `books`
 WHERE DATE_FORMAT(timestamp, '%H:%i') > '%H'
 GROUP BY DATE_FORMAT(timestamp, '22:00')
 ORDER BY timestamp ASC
 }}}

 The placeholder values '%H' and '22:00' are interchanged, which is
 obviously a result of using the GROUP BY here on a user-defined variable
 with placeholder (--> 'date')

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #9004: 1.0 porting guide lists non-existant database backend functions

2009-05-17 Thread Django
#9004: 1.0 porting guide lists non-existant database backend functions
+---
  Reporter:  nicklane   | Owner:  nobody
Status:  new| Milestone:
 Component:  Documentation  |   Version:  SVN   
Resolution: |  Keywords:
 Stage:  Accepted   | Has_patch:  0 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by daemondazz):

 * cc: da (added)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #6737: Add Field default_error_messages feature to Forms class

2009-05-17 Thread Django
#6737: Add Field default_error_messages feature to Forms class
-+--
  Reporter:  nicklane| Owner:  nobody
Status:  new | Milestone:
 Component:  Forms   |   Version:  SVN   
Resolution:  |  Keywords:
 Stage:  Design decision needed  | Has_patch:  1 
Needs_docs:  1   |   Needs_tests:  1 
Needs_better_patch:  0   |  
-+--
Changes (by daemondazz):

 * cc: daemondazz (added)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11117: placeholder confusion when using aggregated query with extra

2009-05-17 Thread Django
#7: placeholder confusion when using aggregated query with extra
--+-
  Reporter:  slid...@web.de   | Owner:  nobody
Status:  closed   | Milestone:
 Component:  ORM aggregation  |   Version:  1.0   
Resolution:  duplicate|  Keywords:
 Stage:  Unreviewed   | Has_patch:  0 
Needs_docs:  0|   Needs_tests:  0 
Needs_better_patch:  0|  
--+-
Changes (by russellm):

  * status:  new => closed
  * needs_better_patch:  => 0
  * component:  Database layer (models, ORM) => ORM aggregation
  * needs_tests:  => 0
  * needs_docs:  => 0
  * resolution:  => duplicate

Comment:

 I'm going to close this as a dupe of #11104. It's not a literal duplicate
 - the problem that is being described is different - but the underlying
 cause (mishandling of SQL params) is the same. I'll put a link on #11104
 to ensure that this problem is also fixed.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #6191: Admin delete view doesn't show all items in some circumstances

2009-05-17 Thread Django
#6191: Admin delete view doesn't show all items in some circumstances
---+
  Reporter:  nicklane  | Owner:  nobody 
Status:  new   | Milestone: 
 Component:  django.contrib.admin  |   Version:  SVN
Resolution:|  Keywords:  nfa-someday
 Stage:  Accepted  | Has_patch:  1  
Needs_docs:  0 |   Needs_tests:  0  
Needs_better_patch:  1 |  
---+
Changes (by daemondazz):

 * cc: daemondazz (added)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Django] #11136: add button to related field in admin to be put only if user is authorized to add

2009-05-17 Thread Django
#11136: add button to related field in admin to be put only if user is 
authorized
to add
--+-
 Reporter:  sergio|   Owner:  nobody
   Status:  new   |   Milestone:
Component:  django.contrib.admin  | Version:  1.0   
 Keywords:  add button|   Stage:  Unreviewed
Has_patch:  0 |  
--+-
 Here is the example situation:

 {{{
 - my model is composed of two classes A and B
 - class A has a field being a foreign key to a B class field
 - I have permission to add A elements, but not to add B elements
 - in the admin, when I add an A element, I see the '+' button on the
 foreign key field to B even though I do not have the rights to create
 a B element
 - therefore, I think I can add the element, but when I click on +, I get a
 pop-up with permission denied
 }}}

 it would be nicer not to show at all the "+"; better user experience

 have a look at the second part of this thread:
 http://groups.google.com/group/django-
 users/browse_thread/thread/ceef2d6fd5f5a528

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11135: 'was_published_today' in Tutorial 2

2009-05-17 Thread Django
#11135: 'was_published_today' in Tutorial 2
+---
  Reporter:  Marcin Pekalski   | Owner:  
nobody  
Status:  closed | Milestone:
  
 Component:  Documentation  |   Version:  
1.0 
Resolution:  invalid|  Keywords:  
tutorial
 Stage:  Unreviewed | Has_patch:  0 
  
Needs_docs:  0  |   Needs_tests:  0 
  
Needs_better_patch:  0  |  
+---
Changes (by kmtracey):

  * status:  new => closed
  * needs_better_patch:  => 0
  * resolution:  => invalid
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 Why do you think the quotes should be removed?  was_published_today, as
 set up in the first part of the tutorial, is a method of the Poll model,
 not an independent callable.  The way it is specified in list display in
 the 2nd part of the tutorial matches how it should be based on the doc
 under list_display here:
 http://docs.djangoproject.com/en/dev/ref/contrib/admin/#modeladmin-
 options.

 Also, when the method is defined in the 1st part of the tutorial 'import
 datetime' is shown as part of the code snippet for adding the
 was_published_today method.  It is not necessary to repeat that in part 2
 -- the code should already be there from completing part 1, where it was
 explicitly noted that 'import datetime' is needed for that bit of code.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Django] #11135: 'was_published_today' in Tutorial 2

2009-05-17 Thread Django
#11135: 'was_published_today' in Tutorial 2
---+
 Reporter:  Marcin Pekalski   |   Owner:  nobody
   Status:  new|   Milestone:
Component:  Documentation  | Version:  1.0   
 Keywords:  tutorial   |   Stage:  Unreviewed
Has_patch:  0  |  
---+
 The line

 list_display = ('question', 'pub_date', 'was_published_today')

 should be changed to

 list_display = ('question', 'pub_date', was_published_today)

 [no ' ' over was_published_today]

 Moreover, I think there should be a word or two that datetime sould be
 imported in models.py

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10933: Avoid " TypeError: Cannot convert Decimal("0.0000") to Decimal " when the decimal module has been reloaded

2009-05-17 Thread Django
#10933: Avoid " TypeError: Cannot convert Decimal("0.") to Decimal  " when 
the
decimal module has been reloaded
---+
  Reporter:  gagravarr | Owner:  nobody
Status:  new   | Milestone:
 Component:  Database layer (models, ORM)  |   Version:  1.0   
Resolution:|  Keywords:
 Stage:  Unreviewed| Has_patch:  1 
Needs_docs:  0 |   Needs_tests:  0 
Needs_better_patch:  0 |  
---+
Changes (by orzel):

  * needs_better_patch:  => 0
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 hello. I'm hit by this same problem. I'm using django trunk (mainly
 because I hoped this bug was fixed), and python 2.6.2.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11084: After r10737, ImageField sets height and width on model creation, every lookup

2009-05-17 Thread Django
#11084: After r10737, ImageField sets height and width on model creation, every
lookup
---+
  Reporter:  Mnewman   | Owner:  nobody
Status:  new   | Milestone:  1.1   
 Component:  File uploads/storage  |   Version:  SVN   
Resolution:|  Keywords:
 Stage:  Accepted  | Has_patch:  0 
Needs_docs:  1 |   Needs_tests:  1 
Needs_better_patch:  1 |  
---+
Changes (by Alex):

  * stage:  Unreviewed => Accepted
  * milestone:  => 1.1

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11084: After r10737, ImageField sets height and width on model creation, every lookup

2009-05-17 Thread Django
#11084: After r10737, ImageField sets height and width on model creation, every
lookup
---+
  Reporter:  Mnewman   | Owner:  nobody
Status:  new   | Milestone:
 Component:  File uploads/storage  |   Version:  SVN   
Resolution:|  Keywords:
 Stage:  Unreviewed| Has_patch:  0 
Needs_docs:  1 |   Needs_tests:  1 
Needs_better_patch:  1 |  
---+
Changes (by Mnewman):

  * version:  1.0 => SVN

Comment:

 My test, which checks if the dimensions are accessed after the python
 object is initialized, passes with this patch, but the second problem,
 which is that the image height and width are calculated every time the
 object is puled from the database, isn't fixed.

 I am going to look into writing more tests for this problem.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Django] #11134: Signals don't work properly when they are being disconnected during their processing

2009-05-17 Thread Django
#11134: Signals don't work properly when they are being disconnected during 
their
processing
---+
 Reporter:  Honza_Kral |   Owner:  nobody
   Status:  new|   Milestone:
Component:  Uncategorized  | Version:  SVN   
 Keywords: |   Stage:  Unreviewed
Has_patch:  1  |  
---+
 This happens because {{{disconnect()}}} method does {{{del
 self.receivers[index]}}} while {{{self.receivers}}} are eing iterated over
 in {{{_live_receivers()}}}.

 The attached patch has tests and a fix, the tests fail for me without the
 fix, passes after the fix is applied.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10866: datetime_safe should zero-pad old years

2009-05-17 Thread Django
#10866: datetime_safe should zero-pad old years
+---
  Reporter:  Eric Floehr   | Owner:  
nobody 
Status:  new| Milestone:
 
 Component:  Core framework |   Version:  
SVN
Resolution: |  Keywords:  
datetime_safe date datetime
 Stage:  Unreviewed | Has_patch:  1 
 
Needs_docs:  0  |   Needs_tests:  0 
 
Needs_better_patch:  0  |  
+---
Comment (by kmtracey):

 #11132 reported this as old dates output by dumpdata cannot be loaded by
 loaddata, and proposed the same patch.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11132: dumpdata with a year<1000 can't be loaded with loaddata

2009-05-17 Thread Django
#11132: dumpdata with a year<1000 can't be loaded with loaddata
-+--
  Reporter:  wardi   | Owner:  nobody
Status:  closed  | Milestone:
 Component:  Core framework  |   Version:  1.0   
Resolution:  duplicate   |  Keywords:  date dumpdata loaddata
 Stage:  Unreviewed  | Has_patch:  1 
Needs_docs:  0   |   Needs_tests:  0 
Needs_better_patch:  0   |  
-+--
Changes (by kmtracey):

  * status:  new => closed
  * needs_better_patch:  => 0
  * resolution:  => duplicate
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 #10866 proposes the same change.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Django] #11133: contrib.auth.tests to work without contrib.site installed

2009-05-17 Thread Django
#11133: contrib.auth.tests to work without contrib.site installed
--+-
 Reporter:  hvendelbo |   Owner:  nobody
   Status:  new   |   Milestone:
Component:  Contrib apps  | Version:  1.0   
 Keywords:  auth,test |   Stage:  Unreviewed
Has_patch:  1 |  
--+-
 the LoginTest assumeds that the site contrib app is installed

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #6286: tutorial part 3 - Design your urls misses admin views

2009-05-17 Thread Django
#6286: tutorial part 3 - Design your urls misses admin views
+---
  Reporter:  Bashar | Owner:  stugots 
Status:  closed | Milestone:  
 Component:  Documentation  |   Version:  SVN 
Resolution:  fixed  |  Keywords:  tutorial
 Stage:  Ready for checkin  | Has_patch:  1   
Needs_docs:  0  |   Needs_tests:  0   
Needs_better_patch:  0  |  
+---
Changes (by kmtracey):

  * status:  assigned => closed
  * resolution:  => fixed

Comment:

 This was addressed independently in r10727 by just not dropping the admin
 line from the list.  If it turns out people get confused trying to access
 admin before they've created the views to match what they've put in
 urls.py then we can add a note about that later.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #9535: File uploads documentation is patchy

2009-05-17 Thread Django
#9535: File uploads documentation is patchy
+---
  Reporter:  Daniel Pope   | Owner:  
jacob
Status:  assigned   | Milestone:  
1.1  
 Component:  Documentation  |   Version:  
1.0  
Resolution: |  Keywords:
   
 Stage:  Accepted   | Has_patch:  0 
   
Needs_docs:  0  |   Needs_tests:  0 
   
Needs_better_patch:  0  |  
+---
Comment (by Alex):

 r10816 refs this.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10400: File upload documentation should emphasize the need to add multipart/form-data

2009-05-17 Thread Django
#10400: File upload documentation should emphasize the need to add 
multipart/form-
data
+---
  Reporter:  claudep| Owner:  nobody
Status:  closed | Milestone:
 Component:  Documentation  |   Version:  1.0   
Resolution:  fixed  |  Keywords:
 Stage:  Ready for checkin  | Has_patch:  1 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Comment (by kmtracey):

 Note I didn't used the metadata target version of the patch because it
 seems to reference model fields, yet this doc is strictly about forms, so
 shouldn't the pointers reference form fields?  Feel free to open another
 ticket to get the references in, but either point them to form fields or
 explain why they should go to `~django.db.models.FileField`, e.g. ... that
 doesn't look right to me when the code examples are just using form
 fields.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10817 - in django/branches/releases/1.0.X: . docs/topics/http

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 13:47:32 -0500 (Sun, 17 May 2009)
New Revision: 10817

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/topics/http/file-uploads.txt
Log:
[1.0.X] Fixed #10400: Added a note in the file uploads doc about the correct 
form type needed for file uploads to work. Thanks claudep and timo. 

r10816 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810,10812,10814
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810,10812,10814,10816

Modified: django/branches/releases/1.0.X/docs/topics/http/file-uploads.txt
===
--- django/branches/releases/1.0.X/docs/topics/http/file-uploads.txt
2009-05-17 18:45:25 UTC (rev 10816)
+++ django/branches/releases/1.0.X/docs/topics/http/file-uploads.txt
2009-05-17 18:47:32 UTC (rev 10817)
@@ -30,6 +30,10 @@
 other ``FileField`` subclass) in the form. So the data from the above form 
would
 be accessible as ``request.FILES['file']``.
 
+Note that ``request.FILES`` will 

[Changeset] r10816 - django/trunk/docs/topics/http

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 13:45:25 -0500 (Sun, 17 May 2009)
New Revision: 10816

Modified:
   django/trunk/docs/topics/http/file-uploads.txt
Log:
Fixed #10400: Added a note in the file uploads doc about the correct form type 
needed for file uploads to work.  Thanks claudep and timo.


Modified: django/trunk/docs/topics/http/file-uploads.txt
===
--- django/trunk/docs/topics/http/file-uploads.txt  2009-05-17 18:11:58 UTC 
(rev 10815)
+++ django/trunk/docs/topics/http/file-uploads.txt  2009-05-17 18:45:25 UTC 
(rev 10816)
@@ -30,6 +30,10 @@
 other ``FileField`` subclass) in the form. So the data from the above form 
would
 be accessible as ``request.FILES['file']``.
 
+Note that ``request.FILES`` will only contain data if the request method was 
+``POST`` and the  that posted the request has the attribute
+``enctype="multipart/form-data"``. Otherwise, ``request.FILES`` will be empty.
+
 Most of the time, you'll simply pass the file data from ``request`` into the
 form as described in :ref:`binding-uploaded-files`. This would look
 something like::


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10815 - in django/branches/releases/1.0.X: . docs/topics/forms

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 13:11:58 -0500 (Sun, 17 May 2009)
New Revision: 10815

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/topics/forms/index.txt
Log:
[1.0.X] Fixed #10817 -- Corrected some grammar in the forms doc. Thanks 
nickretall...@gmail.com.

r10814 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810,10812
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810,10812,10814

Modified: django/branches/releases/1.0.X/docs/topics/forms/index.txt
===
--- django/branches/releases/1.0.X/docs/topics/forms/index.txt  2009-05-17 
18:10:10 UTC (rev 10814)
+++ django/branches/releases/1.0.X/docs/topics/forms/index.txt  2009-05-17 
18:11:58 UTC (rev 10815)
@@ -19,9 +19,9 @@
 number of common form-related tasks. Using it, you can:
 
 1. Display an HTML form with automatically generated form widgets.
-2. Checking submitted data against a set of validation rules.
-3. Redisplaying a form in the case of validation 

[Changeset] r10814 - django/trunk/docs/topics/forms

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 13:10:10 -0500 (Sun, 17 May 2009)
New Revision: 10814

Modified:
   django/trunk/docs/topics/forms/index.txt
Log:
Fixed #10817 -- Corrected some grammar in the forms doc.  Thanks 
nickretall...@gmail.com.


Modified: django/trunk/docs/topics/forms/index.txt
===
--- django/trunk/docs/topics/forms/index.txt2009-05-17 18:06:12 UTC (rev 
10813)
+++ django/trunk/docs/topics/forms/index.txt2009-05-17 18:10:10 UTC (rev 
10814)
@@ -19,9 +19,9 @@
 number of common form-related tasks. Using it, you can:
 
 1. Display an HTML form with automatically generated form widgets.
-2. Checking submitted data against a set of validation rules.
-3. Redisplaying a form in the case of validation errors.
-4. Converting submitted form data to the relevant Python data types.
+2. Check submitted data against a set of validation rules.
+3. Redisplay a form in the case of validation errors.
+4. Convert submitted form data to the relevant Python data types.
 
 Overview
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10813 - in django/branches/releases/1.0.X: . docs/howto/deployment

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 13:06:12 -0500 (Sun, 17 May 2009)
New Revision: 10813

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/howto/deployment/index.txt
   django/branches/releases/1.0.X/docs/howto/deployment/modwsgi.txt
Log:
[1.0.X] Fixed #10846: Corrected typo in modwsgi.txt and updated reference to 
deployment in The Django Book. Thanks timo.

r10812 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810,10812

Modified: django/branches/releases/1.0.X/docs/howto/deployment/index.txt
===
--- django/branches/releases/1.0.X/docs/howto/deployment/index.txt  
2009-05-17 18:04:29 UTC (rev 10812)
+++ django/branches/releases/1.0.X/docs/howto/deployment/index.txt  
2009-05-17 18:06:12 UTC (rev 10813)
@@ -21,7 +21,7 @@
 
 .. seealso::
 
-* `Chapter 20 of The Django Book`_ discusses deployment and especially
+* `Chapter 12 of The Django Book`_ discusses 

[Changeset] r10812 - django/trunk/docs/howto/deployment

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 13:04:29 -0500 (Sun, 17 May 2009)
New Revision: 10812

Modified:
   django/trunk/docs/howto/deployment/index.txt
   django/trunk/docs/howto/deployment/modwsgi.txt
Log:
Fixed #10846: Corrected typo in modwsgi.txt and updated reference to deployment 
in The Django Book.  Thanks timo.


Modified: django/trunk/docs/howto/deployment/index.txt
===
--- django/trunk/docs/howto/deployment/index.txt2009-05-17 17:57:41 UTC 
(rev 10811)
+++ django/trunk/docs/howto/deployment/index.txt2009-05-17 18:04:29 UTC 
(rev 10812)
@@ -21,7 +21,7 @@
 
 .. seealso::
 
-* `Chapter 20 of The Django Book`_ discusses deployment and especially
+* `Chapter 12 of The Django Book`_ discusses deployment and especially
   scaling in more detail.
   
-.. _chapter 20 of the django book: http://djangobook.com/en/1.0/chapter20/
+.. _chapter 12 of the django book: http://djangobook.com/en/2.0/chapter12/

Modified: django/trunk/docs/howto/deployment/modwsgi.txt
===
--- django/trunk/docs/howto/deployment/modwsgi.txt  2009-05-17 17:57:41 UTC 
(rev 10811)
+++ django/trunk/docs/howto/deployment/modwsgi.txt  2009-05-17 18:04:29 UTC 
(rev 10812)
@@ -31,7 +31,7 @@
 
 WSGIScriptAlias / /path/to/mysite/apache/django.wsgi
 
-The first bit aboveis the url you want to be serving your application at (``/``
+The first bit above is the url you want to be serving your application at 
(``/``
 indicates the root url), and the second is the location of a "WSGI file" -- see
 below -- on your system, usually inside of your project. This tells Apache
 to serve any request below the given URL using the WSGI application defined by 
that file.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10811 - in django/branches/releases/1.0.X: . docs/intro docs/topics

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:57:41 -0500 (Sun, 17 May 2009)
New Revision: 10811

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/intro/tutorial02.txt
   django/branches/releases/1.0.X/docs/topics/auth.txt
Log:
[1.0.X] Fixed #10855: Reference doc on creating superusers in the tutorial at 
the point where an account is needed, so that readers who neglected to create 
one earlier (or who forgot the password) don't get stuck or think they have to 
start all over. Thanks cwolf127 and timo. 

r10810 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808,10810

Modified: django/branches/releases/1.0.X/docs/intro/tutorial02.txt
===
--- django/branches/releases/1.0.X/docs/intro/tutorial02.txt2009-05-17 
17:54:51 UTC (rev 10810)
+++ django/branches/releases/1.0.X/docs/intro/tutorial02.txt2009-05-17 
17:57:41 UTC (rev 10811)
@@ -83,7 +83,9 @@
 
 
 Now, try logging in. 

[Django] #11132: dumpdata with a year<1000 can't be loaded with loaddata

2009-05-17 Thread Django
#11132: dumpdata with a year<1000 can't be loaded with loaddata
+---
 Reporter:  wardi   |   Owner:  nobody
   Status:  new |   Milestone:
Component:  Core framework  | Version:  1.0   
 Keywords:  date dumpdata loaddata  |   Stage:  Unreviewed
Has_patch:  1   |  
+---
 running dumpdata on a date of 0001-01-01 gives the string "   1-01-01"
 which can't be loaded with loaddata

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10810 - in django/trunk/docs: intro topics

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:54:51 -0500 (Sun, 17 May 2009)
New Revision: 10810

Modified:
   django/trunk/docs/intro/tutorial02.txt
   django/trunk/docs/topics/auth.txt
Log:
Fixed #10855: Reference doc on creating superusers in the tutorial at the point 
where an account is needed, so that readers who neglected to create one earlier 
(or who forgot the password) don't get stuck or think they have to start all 
over.  Thanks cwolf127 and timo.


Modified: django/trunk/docs/intro/tutorial02.txt
===
--- django/trunk/docs/intro/tutorial02.txt  2009-05-17 17:45:12 UTC (rev 
10809)
+++ django/trunk/docs/intro/tutorial02.txt  2009-05-17 17:54:51 UTC (rev 
10810)
@@ -86,7 +86,9 @@
 
 
 Now, try logging in. (You created a superuser account in the first part of this
-tutorial, remember?) You should see the Django admin index page:
+tutorial, remember?  If you didn't create one or forgot the password you can 
+:ref:`create another one `.) You should see 
+the Django admin index page:
 
 .. image:: _images/admin02t.png
:alt: Django admin index page

Modified: django/trunk/docs/topics/auth.txt
===
--- django/trunk/docs/topics/auth.txt   2009-05-17 17:45:12 UTC (rev 10809)
+++ django/trunk/docs/topics/auth.txt   2009-05-17 17:54:51 UTC (rev 10810)
@@ -398,6 +398,8 @@
 :class:`~django.contrib.auth.models.AnonymousUser` objects on your own, but
 they're used by Web requests, as explained in the next section.
 
+.. _topics-auth-creating-superusers:
+
 Creating superusers
 ---
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10809 - in django/branches/releases/1.0.X: . docs/intro

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:45:12 -0500 (Sun, 17 May 2009)
New Revision: 10809

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/intro/tutorial02.txt
Log:
[1.0.X] Fixed #10925 -- Clarified the location of some code referenced in the 
tutorial. Thanks rm and timo. 

r10808 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805,10808

Modified: django/branches/releases/1.0.X/docs/intro/tutorial02.txt
===
--- django/branches/releases/1.0.X/docs/intro/tutorial02.txt2009-05-17 
17:43:15 UTC (rev 10808)
+++ django/branches/releases/1.0.X/docs/intro/tutorial02.txt2009-05-17 
17:45:12 UTC (rev 10809)
@@ -341,7 +341,7 @@
 an arbitrary method is not supported. Also note that the column header for
 ``was_published_today`` is, by default, the name of the method (with
 underscores replaced with spaces). But you can change that by giving that
-method a ``short_description`` attribute::
+method (in 

[Changeset] r10808 - django/trunk/docs/intro

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:43:15 -0500 (Sun, 17 May 2009)
New Revision: 10808

Modified:
   django/trunk/docs/intro/tutorial02.txt
Log:
Fixed #10925 -- Clarified the location of some code referenced in the tutorial. 
 Thanks rm and timo.


Modified: django/trunk/docs/intro/tutorial02.txt
===
--- django/trunk/docs/intro/tutorial02.txt  2009-05-17 17:36:04 UTC (rev 
10807)
+++ django/trunk/docs/intro/tutorial02.txt  2009-05-17 17:43:15 UTC (rev 
10808)
@@ -344,7 +344,7 @@
 an arbitrary method is not supported. Also note that the column header for
 ``was_published_today`` is, by default, the name of the method (with
 underscores replaced with spaces). But you can change that by giving that
-method a ``short_description`` attribute::
+method (in ``models.py``) a ``short_description`` attribute::
 
 def was_published_today(self):
 return self.pub_date.date() == datetime.date.today()


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10807 - django/trunk/docs/topics

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:36:04 -0500 (Sun, 17 May 2009)
New Revision: 10807

Modified:
   django/trunk/docs/topics/testing.txt
Log:
Fixed #10971 -- Corrected code example involving redirect_chain in the testing 
doc. Thanks yourcelf.


Modified: django/trunk/docs/topics/testing.txt
===
--- django/trunk/docs/topics/testing.txt2009-05-17 17:28:34 UTC (rev 
10806)
+++ django/trunk/docs/topics/testing.txt2009-05-17 17:36:04 UTC (rev 
10807)
@@ -514,7 +514,7 @@
 If you had an url ``/redirect_me/`` that redirected to ``/next/``, that
 redirected to ``/final/``, this is what you'd see::
 
->>> response = c.get('/redirect_me/')
+>>> response = c.get('/redirect_me/', follow=True)
 >>> response.redirect_chain
 [(u'http://testserver/next/', 302), (u'http://testserver/final/', 
302)]
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10806 - in django/branches/releases/1.0.X: . docs/ref

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:28:34 -0500 (Sun, 17 May 2009)
New Revision: 10806

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/ref/databases.txt
Log:
[1.0.X] Fixed #11031 -- Added doc for some additional roles needed when testing 
Oracle. Thanks JirkaV and Matt Boersma.

r10805 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799,10801,10805

Modified: django/branches/releases/1.0.X/docs/ref/databases.txt
===
--- django/branches/releases/1.0.X/docs/ref/databases.txt   2009-05-17 
17:24:59 UTC (rev 10805)
+++ django/branches/releases/1.0.X/docs/ref/databases.txt   2009-05-17 
17:28:34 UTC (rev 10806)
@@ -413,6 +413,8 @@
 * DROP USER
 * CREATE TABLESPACE
 * DROP TABLESPACE
+* CONNECT WITH ADMIN OPTION
+* RESOURCE WITH ADMIN OPTION
 
 Connecting to the database
 --


--~--~-~--~~~---~--~~
You received this message because you are 

[Changeset] r10805 - django/trunk/docs/ref

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:24:59 -0500 (Sun, 17 May 2009)
New Revision: 10805

Modified:
   django/trunk/docs/ref/databases.txt
Log:
Fixed #11031 -- Added doc for some additional roles needed when testing Oracle. 
 Thanks JirkaV and Matt Boersma.


Modified: django/trunk/docs/ref/databases.txt
===
--- django/trunk/docs/ref/databases.txt 2009-05-17 17:13:33 UTC (rev 10804)
+++ django/trunk/docs/ref/databases.txt 2009-05-17 17:24:59 UTC (rev 10805)
@@ -493,6 +493,8 @@
 * DROP USER
 * CREATE TABLESPACE
 * DROP TABLESPACE
+* CONNECT WITH ADMIN OPTION
+* RESOURCE WITH ADMIN OPTION
 
 Connecting to the database
 --


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11034: Typo in admin actions documentation

2009-05-17 Thread Django
#11034: Typo in admin actions documentation
+---
  Reporter:  anonymous  | Owner:  nobody
Status:  closed | Milestone:
 Component:  Documentation  |   Version:
Resolution:  fixed  |  Keywords:  typo  
 Stage:  Ready for checkin  | Has_patch:  1 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by kmtracey):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in r10804.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10804 - django/trunk/docs/ref/contrib/admin

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 12:13:33 -0500 (Sun, 17 May 2009)
New Revision: 10804

Modified:
   django/trunk/docs/ref/contrib/admin/actions.txt
Log:
Fixed #11034: Corrected serialization example in admin actions doc.  Thanks 
timo and kaikuehne.


Modified: django/trunk/docs/ref/contrib/admin/actions.txt
===
--- django/trunk/docs/ref/contrib/admin/actions.txt 2009-05-17 16:57:50 UTC 
(rev 10803)
+++ django/trunk/docs/ref/contrib/admin/actions.txt 2009-05-17 17:13:33 UTC 
(rev 10804)
@@ -216,7 +216,7 @@
 
 def export_as_json(modeladmin, request, queryset):
 response = HttpResponse(mimetype="text/javascript")
-serialize.serialize(queryset, stream=response)
+serializers.serialize("json", queryset, stream=response)
 return response
 
 Generally, something like the above isn't considered a great idea. Most of the


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11054: Small typo in docs/howto/auth-remote-user.txt

2009-05-17 Thread Django
#11054: Small typo in docs/howto/auth-remote-user.txt
+---
  Reporter:  Jan Hülsbergen | Owner:  nobody
Status:  closed | Milestone:
 Component:  Documentation  |   Version:  1.1-beta-1
Resolution:  fixed  |  Keywords:  typo  
 Stage:  Ready for checkin  | Has_patch:  1 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by kmtracey):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in r10803.  (Why doesn't the post-commit hook like me?)

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10803 - django/trunk/docs/howto

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:57:50 -0500 (Sun, 17 May 2009)
New Revision: 10803

Modified:
   django/trunk/docs/howto/auth-remote-user.txt
Log:
Fixed #11054 -- Corrected typo in auth-remote-user.txt.  Thanks Jan 
H?\195?\188lsbergen.


Modified: django/trunk/docs/howto/auth-remote-user.txt
===
--- django/trunk/docs/howto/auth-remote-user.txt2009-05-17 16:53:38 UTC 
(rev 10802)
+++ django/trunk/docs/howto/auth-remote-user.txt2009-05-17 16:57:50 UTC 
(rev 10803)
@@ -22,7 +22,7 @@
 Django, ``REMOTE_USER`` is made available in the :attr:`request.META
 ` attribute.  Django can be configured to make
 use of the ``REMOTE_USER`` value using the ``RemoteUserMiddleware`` and
-``RemoteUserBackend`` classes found in :mod:`django.contirb.auth`.
+``RemoteUserBackend`` classes found in :mod:`django.contrib.auth`.
 
 Configuration
 =


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10802 - in django/branches/releases/1.0.X: . django/contrib/gis django/contrib/gis/geos django/contrib/gis/templates/gis/admin django/core/files django/template django/test django/utils d

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:53:38 -0500 (Sun, 17 May 2009)
New Revision: 10802

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/django/contrib/gis/geos/libgeos.py
   django/branches/releases/1.0.X/django/contrib/gis/measure.py
   
django/branches/releases/1.0.X/django/contrib/gis/templates/gis/admin/openlayers.html
   django/branches/releases/1.0.X/django/core/files/uploadhandler.py
   django/branches/releases/1.0.X/django/template/defaulttags.py
   django/branches/releases/1.0.X/django/test/_doctest.py
   django/branches/releases/1.0.X/django/utils/feedgenerator.py
   django/branches/releases/1.0.X/django/views/generic/create_update.py
   django/branches/releases/1.0.X/docs/internals/contributing.txt
   django/branches/releases/1.0.X/tests/modeltests/get_object_or_404/models.py
   django/branches/releases/1.0.X/tests/regressiontests/templates/loaders.py
Log:
[1.0.X] Fixed #11066 -- Corrected 11 duplicate "the"s found in docs and code 
comments. Thanks kaikuehne. 

Merge of applicable parts of r10801 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799
   + 

Re: [Django] #11066: Fix the the Documentation

2009-05-17 Thread Django
#11066: Fix the the Documentation
+---
  Reporter:  kaikuehne  | Owner:  nobody
Status:  closed | Milestone:
 Component:  Documentation  |   Version:  SVN   
Resolution:  fixed  |  Keywords:  typo  
 Stage:  Ready for checkin  | Has_patch:  1 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by Alex):

  * status:  new => closed
  * resolution:  => fixed

Comment:

 Fixed in r10801.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10801 - in django/trunk: django/contrib/csrf django/contrib/gis django/contrib/gis/db/backend/spatialite django/contrib/gis/geos django/contrib/gis/templates/gis/admin django/core/files d

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:45:28 -0500 (Sun, 17 May 2009)
New Revision: 10801

Modified:
   django/trunk/django/contrib/csrf/tests.py
   django/trunk/django/contrib/gis/db/backend/spatialite/creation.py
   django/trunk/django/contrib/gis/geos/libgeos.py
   django/trunk/django/contrib/gis/measure.py
   django/trunk/django/contrib/gis/templates/gis/admin/openlayers.html
   django/trunk/django/core/files/uploadhandler.py
   django/trunk/django/template/defaulttags.py
   django/trunk/django/test/_doctest.py
   django/trunk/django/utils/feedgenerator.py
   django/trunk/django/views/generic/create_update.py
   django/trunk/docs/internals/contributing.txt
   django/trunk/docs/ref/authbackends.txt
   django/trunk/docs/ref/contrib/admin/actions.txt
   django/trunk/tests/modeltests/get_object_or_404/models.py
   django/trunk/tests/regressiontests/templates/loaders.py
Log:
Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments.  
Thanks kaikuehne.


Modified: django/trunk/django/contrib/csrf/tests.py
===
--- django/trunk/django/contrib/csrf/tests.py   2009-05-17 16:33:00 UTC (rev 
10800)
+++ django/trunk/django/contrib/csrf/tests.py   2009-05-17 16:45:28 UTC (rev 
10801)
@@ -59,7 +59,7 @@
 # Check the post processing
 def test_process_response_no_session(self):
 """
-Check the the post-processor does nothing if no session active
+Check the post-processor does nothing if no session active
 """
 req = self._get_GET_no_session_request()
 resp = self._get_post_form_response()

Modified: django/trunk/django/contrib/gis/db/backend/spatialite/creation.py
===
--- django/trunk/django/contrib/gis/db/backend/spatialite/creation.py   
2009-05-17 16:33:00 UTC (rev 10800)
+++ django/trunk/django/contrib/gis/db/backend/spatialite/creation.py   
2009-05-17 16:45:28 UTC (rev 10801)
@@ -15,7 +15,7 @@
 if settings.DATABASE_ENGINE != 'sqlite3':
 raise Exception('SpatiaLite database creation only supported on 
sqlite3 platform.')
 
-# Getting the test database name using the the SQLite backend's
+# Getting the test database name using the SQLite backend's
 # `_create_test_db`.  Unless `TEST_DATABASE_NAME` is defined,
 # it returns ":memory:".
 db_name = connection.creation._create_test_db(verbosity, autoclobber)

Modified: django/trunk/django/contrib/gis/geos/libgeos.py
===
--- django/trunk/django/contrib/gis/geos/libgeos.py 2009-05-17 16:33:00 UTC 
(rev 10800)
+++ django/trunk/django/contrib/gis/geos/libgeos.py 2009-05-17 16:45:28 UTC 
(rev 10801)
@@ -30,7 +30,7 @@
 else:
 raise ImportError('Unsupported OS "%s"' % os.name)
 
-# Using the ctypes `find_library` utility to find the the path to the GEOS
+# Using the ctypes `find_library` utility to find the path to the GEOS
 # shared library.  This is better than manually specifiying each library name
 # and extension (e.g., libgeos_c.[so|so.1|dylib].).
 if lib_names:

Modified: django/trunk/django/contrib/gis/measure.py
===
--- django/trunk/django/contrib/gis/measure.py  2009-05-17 16:33:00 UTC (rev 
10800)
+++ django/trunk/django/contrib/gis/measure.py  2009-05-17 16:45:28 UTC (rev 
10801)
@@ -41,7 +41,7 @@
 class MeasureBase(object):
 def default_units(self, kwargs):
 """
-Return the unit value and the the default units specified
+Return the unit value and the default units specified
 from the given keyword arguments dictionary.
 """
 val = 0.0

Modified: django/trunk/django/contrib/gis/templates/gis/admin/openlayers.html
===
--- django/trunk/django/contrib/gis/templates/gis/admin/openlayers.html 
2009-05-17 16:33:00 UTC (rev 10800)
+++ django/trunk/django/contrib/gis/templates/gis/admin/openlayers.html 
2009-05-17 16:45:28 UTC (rev 10801)
@@ -15,7 +15,7 @@
 
 

[Changeset] r10800 - in django/branches/releases/1.0.X: . docs/howto

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:33:00 -0500 (Sun, 17 May 2009)
New Revision: 10800

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/howto/custom-template-tags.txt
Log:
[1.0.X] Fixed #11130 -- Corrected code example in custom template tag doc. 
Thanks phyfus.

r10799 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797,10799

Modified: django/branches/releases/1.0.X/docs/howto/custom-template-tags.txt
===
--- django/branches/releases/1.0.X/docs/howto/custom-template-tags.txt  
2009-05-17 16:31:02 UTC (rev 10799)
+++ django/branches/releases/1.0.X/docs/howto/custom-template-tags.txt  
2009-05-17 16:33:00 UTC (rev 10800)
@@ -543,7 +543,7 @@
 
 class FormatTimeNode(template.Node):
 def __init__(self, date_to_be_formatted, format_string):
-self.date_to_be_formatted = Variable(date_to_be_formatted)
+self.date_to_be_formatted = template.Variable(date_to_be_formatted)
 self.format_string = 

[Changeset] r10799 - django/trunk/docs/howto

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:31:02 -0500 (Sun, 17 May 2009)
New Revision: 10799

Modified:
   django/trunk/docs/howto/custom-template-tags.txt
Log:
Fixed #11130 -- Corrected code example in custom template tag doc.  Thanks 
phyfus.


Modified: django/trunk/docs/howto/custom-template-tags.txt
===
--- django/trunk/docs/howto/custom-template-tags.txt2009-05-17 16:22:44 UTC 
(rev 10798)
+++ django/trunk/docs/howto/custom-template-tags.txt2009-05-17 16:31:02 UTC 
(rev 10799)
@@ -543,7 +543,7 @@
 
 class FormatTimeNode(template.Node):
 def __init__(self, date_to_be_formatted, format_string):
-self.date_to_be_formatted = Variable(date_to_be_formatted)
+self.date_to_be_formatted = template.Variable(date_to_be_formatted)
 self.format_string = format_string
 
 def render(self, context):


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10798 - in django/branches/releases/1.0.X: . docs/topics/db

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:22:44 -0500 (Sun, 17 May 2009)
New Revision: 10798

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/topics/db/models.txt
Log:
[1.0.X] Fixed #11106 -- Corrected typo in models doc. Thanks mnieber. 

r10797 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795
   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795,10797

Modified: django/branches/releases/1.0.X/docs/topics/db/models.txt
===
--- django/branches/releases/1.0.X/docs/topics/db/models.txt2009-05-17 
16:20:11 UTC (rev 10797)
+++ django/branches/releases/1.0.X/docs/topics/db/models.txt2009-05-17 
16:22:44 UTC (rev 10798)
@@ -507,7 +507,7 @@
 many-to-many-related model::
 
 # Find all the groups with a member whose name starts with 'Paul'
->>> Groups.objects.filter(members__name__startswith='Paul')
+>>> Group.objects.filter(members__name__startswith='Paul')
 []
 
 As you are using an intermediate model, you can also query on its attributes::



Re: [Django] #11130: incorrect namespace error in django/docs/howto/custom-template-tags.txt code example

2009-05-17 Thread Django
#11130: incorrect namespace error in django/docs/howto/custom-template-tags.txt
code example
+---
  Reporter:  phyfus | Owner:  nobody
Status:  new| Milestone:  1.1   
 Component:  Documentation  |   Version:  SVN   
Resolution: |  Keywords:
 Stage:  Ready for checkin  | Has_patch:  1 
Needs_docs:  0  |   Needs_tests:  0 
Needs_better_patch:  0  |  
+---
Changes (by Alex):

  * stage:  Unreviewed => Ready for checkin

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10797 - django/trunk/docs/topics/db

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:20:11 -0500 (Sun, 17 May 2009)
New Revision: 10797

Modified:
   django/trunk/docs/topics/db/models.txt
Log:
Fixed #11106 -- Corrected typo in models doc.  Thanks mnieber.


Modified: django/trunk/docs/topics/db/models.txt
===
--- django/trunk/docs/topics/db/models.txt  2009-05-17 16:15:16 UTC (rev 
10796)
+++ django/trunk/docs/topics/db/models.txt  2009-05-17 16:20:11 UTC (rev 
10797)
@@ -507,7 +507,7 @@
 many-to-many-related model::
 
 # Find all the groups with a member whose name starts with 'Paul'
->>> Groups.objects.filter(members__name__startswith='Paul')
+>>> Group.objects.filter(members__name__startswith='Paul')
 []
 
 As you are using an intermediate model, you can also query on its attributes::


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



[Changeset] r10796 - in django/branches/releases/1.0.X: . docs/topics/forms

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:15:16 -0500 (Sun, 17 May 2009)
New Revision: 10796

Modified:
   django/branches/releases/1.0.X/
   django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt
Log:
[1.0.X] Fixed #11128 -- Misc. fixes and improvements to the model forms doc. 
Thanks Ramiro and Alex. 

r10795 from trunk.



Property changes on: django/branches/releases/1.0.X
___
Name: svnmerge-integrated
   - 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791

   + 
/django/trunk:1-9097,9099-9102,9104-9109,9111,9113-9144,9146-9151,9153-9156,9158-9159,9161-9187,9189-9247,9249-9262,9264-9277,9279-9298,9301-9302,9305-9331,9333-9343,9345,9347,9350-9352,9355-9396,9399-9462,9466-9469,9471-9488,9491-9526,9529,9533-9536,9539-9550,9556-9557,9559-9560,9562-9568,9570-9591,9595-9619,9621-9624,9626-9636,9638-9642,9644-9645,9647-9689,9691-9699,9703-9706,9709-9713,9716-9723,9725-9726,9730-9738,9740-9741,9750-9751,9757-9758,9761-9762,9767-9768,9770-9780,9782-9784,9789-9790,9793-9798,9801-9802,9806-9807,9809-9813,9821-9837,9842-9843,9847-9859,9861,9863-9875,9877-9881,9883-9887,9899-9903,9906-9909,9912,9914,9916-9917,9919-9920,9922-9927,9929,9931-9937,9939,9942-9943,9945-9950,9953-9954,9956-9962,9966-9977,9979-9984,9986-9988,9990-10001,10003-10004,10007,10009-10010,10013-10017,10019-10020,10022-10025,10031,10036-10041,10049-10052,10054-10061,10066-10069,10071-10076,10078-10079,10085-10087,10104,10106,10125-10127,10136,10138-10140,10143,10145-10147,10149-10160,10163-10167,10170,10173,10175-10176,10180,10185,10189,10192-10196,10198-10221,10223-10228,10230-10234,10236-10247,10250-10257,10259-10270,10273-10274,10276-10280,10282-10314,10316,10319-10322,10324-10325,10328-10329,10333-10344,10348-10351,10353-10356,10358-10363,10365-10368,10371-10380,10386-10407,10411,10413-10427,10429-10437,10440-10442,10444-10445,10447-10450,10452-10453,10457-10464,10466-10467,10469-10480,10482-10485,10489-10492,10495-10497,10499-10505,10508-10509,10511-10514,10517-10520,10524-10525,10528,10530-10537,10539-10548,10550-10557,10561,10563-10564,10567-10571,10573-10574,10576-10578,10580-10589,10591-10592,10595-10596,10599-10601,10603-10620,10624-10626,10631,10639-10641,10643,10646,10652-10655,10659-10660,10666-10669,10675,10682-10690,10693,10697-10704,10707,10713-10714,10723,10725,10727,10729,10732,10743-10750,10752-10760,10768,10770,10772,10774,10777,10782,10787,10789,10791,10795

Modified: django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt
===
--- django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt 
2009-05-17 16:12:05 UTC (rev 10795)
+++ django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt 
2009-05-17 16:15:16 UTC (rev 10796)
@@ -368,10 +368,10 @@
 
 You can override the ``clean()`` method on a model form to provide additional
 validation in the same way you can on a normal form. However, by default the
-``clean()`` method validates the uniqueness of fields that are marked as unique
-or unique_together on the model. Therefore, if you would like to override

[Changeset] r10795 - django/trunk/docs/topics/forms

2009-05-17 Thread noreply

Author: kmtracey
Date: 2009-05-17 11:12:05 -0500 (Sun, 17 May 2009)
New Revision: 10795

Modified:
   django/trunk/docs/topics/forms/modelforms.txt
Log:
Fixed #11128 -- Misc. fixes and improvements to the model forms doc.  Thanks 
Ramiro and Alex.


Modified: django/trunk/docs/topics/forms/modelforms.txt
===
--- django/trunk/docs/topics/forms/modelforms.txt   2009-05-16 19:01:51 UTC 
(rev 10794)
+++ django/trunk/docs/topics/forms/modelforms.txt   2009-05-17 16:12:05 UTC 
(rev 10795)
@@ -400,10 +400,10 @@
 
 You can override the ``clean()`` method on a model form to provide additional
 validation in the same way you can on a normal form. However, by default the
-``clean()`` method validates the uniqueness of fields that are marked as unique
-or unique_together on the model. Therefore, if you would like to override
-the ``clean()`` method and maintain the default validation, you must call the
-parent class's ``clean()`` method.
+``clean()`` method validates the uniqueness of fields that are marked as
+``unique``, ``unique_together`` or ``unique_for_date|month|year`` on the model.
+Therefore, if you would like to override the ``clean()`` method and maintain 
the
+default validation, you must call the parent class's ``clean()`` method.
 
 Form inheritance
 
@@ -515,22 +515,6 @@
 
 .. _saving-objects-in-the-formset:
 
-Overriding clean() method
--
-
-You can override the ``clean()`` method to provide custom validation to
-the whole formset at once. By default, the ``clean()`` method will validate
-that none of the data in the formsets violate the unique constraints on your
-model (both field ``unique`` and model ``unique_together``). To maintain this
-default behavior be sure you call the parent's ``clean()`` method::
-
-class MyModelFormSet(BaseModelFormSet):
-def clean(self):
-super(MyModelFormSet, self).clean()
-# example custom validation across forms in the formset:
-for form in self.forms:
-# your custom formset validation
-
 Saving objects in the formset
 -
 
@@ -615,19 +599,25 @@
 ``formset.save()`` to save the data into the database. (This was described
 above, in :ref:`saving-objects-in-the-formset`.)
 
-
 Overiding ``clean()`` on a ``model_formset``
 
 
 Just like with ``ModelForms``, by default the ``clean()`` method of a
-``model_formset`` will validate that none of the items in the formset validate
-the unique constraints on your model(either unique or unique_together).  If you
-want to overide the ``clean()`` method on a ``model_formset`` and maintain this
-validation, you must call the parent classes ``clean`` method.
+``model_formset`` will validate that none of the items in the formset violate
+the unique constraints on your model (either ``unique``, ``unique_together`` or
+``unique_for_date|month|year``).  If you want to overide the ``clean()`` method
+on a ``model_formset`` and maintain this validation, you must call the parent
+classes ``clean`` method::
 
+class MyModelFormSet(BaseModelFormSet):
+def clean(self):
+super(MyModelFormSet, self).clean()
+# example custom validation across forms in the formset:
+for form in self.forms:
+# your custom formset validation
 
 Using a custom queryset
-~~~
+---
 
 As stated earlier, you can override the default queryset used by the model
 formset::
@@ -650,8 +640,10 @@
 cases in this example.
 
 Using the formset in the template
-~
+-
 
+.. highlight:: html+django
+
 There are three ways to render a formset in a Django template.
 
 First, you can let the formset do most of the work::
@@ -705,6 +697,8 @@
 assumes a primary key named ``id``. If you've explicitly defined your own
 primary key that isn't called ``id``, make sure it gets rendered.)
 
+.. highlight:: python
+
 Inline formsets
 ===
 
@@ -745,7 +739,7 @@
 
 To resolve this, you can use ``fk_name`` to ``inlineformset_factory``::
 
->>> FrienshipFormSet = inlineformset_factory(Friend, Friendship, 
fk_name="from_friend")
+>>> FriendshipFormSet = inlineformset_factory(Friend, Friendship, 
fk_name="from_friend")
 
 Using an inline formset in a view
 -


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #11131: Add watchlist to Trac

2009-05-17 Thread Django
#11131: Add watchlist to Trac
--+-
  Reporter:  sampablokuper| Owner:  nobody
Status:  new  | Milestone:
 Component:  Django Web site  |   Version:  1.0   
Resolution:   |  Keywords:
 Stage:  Unreviewed   | Has_patch:  0 
Needs_docs:  0|   Needs_tests:  0 
Needs_better_patch:  0|  
--+-
Changes (by ramiro):

  * needs_better_patch:  => 0
  * needs_tests:  => 0
  * needs_docs:  => 0

Comment:

 You don't need to comment on the bugs to receive email notifications,
 simply add the username you registered to the `cc` field of the tickets
 you want to track.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---



Re: [Django] #10608: Support RequestSite along with Sites.objects.get_current() in contrib

2009-05-17 Thread Django
#10608: Support RequestSite along with Sites.objects.get_current() in contrib
---+
  Reporter:  hvendelbo | Owner:  nobody
Status:  new   | Milestone:  1.2   
 Component:  Contrib apps  |   Version:  1.0   
Resolution:|  Keywords:
 Stage:  Accepted  | Has_patch:  1 
Needs_docs:  0 |   Needs_tests:  0 
Needs_better_patch:  1 |  
---+
Comment (by arthurk):

 Even if the request would be in scope, it wouldn't work correctly for some
 methods. For example the FlatPageSitemap method returns
 current_site.flatpage_set.all(). It would result in an error if the Sites
 framework wouldn't be installed, because the Request object doesn't have a
 flatpage_set.

-- 
Ticket URL: 
Django 
The Web framework for perfectionists with deadlines.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~--~~~~--~~--~--~---