Re: [Django] #10559: Documentation fix in comments customization page

2009-03-19 Thread Django
#10559: Documentation fix in comments customization page --+- Reporter: thejaswi_puthraya| Owner: nobody Status: new | Milestone

Re: [Django] #8928: Make a WSGI compatibility layer for Django middleware

2009-03-19 Thread Django
#8928: Make a WSGI compatibility layer for Django middleware +--- Reporter: simon | Owner: nobody Status: new| Milestone: Component: Uncategorized |

[Changeset] r10105 - django/trunk/django/db/backends/sqlite3

2009-03-19 Thread noreply
Author: jbronn Date: 2009-03-19 22:57:21 -0500 (Thu, 19 Mar 2009) New Revision: 10105 Modified: django/trunk/django/db/backends/sqlite3/base.py Log: Fixed #9628 -- Use `pysqlite2` for database backend, if installed. Modified: django/trunk/django/db/backends/sqlite3/base.py ==

[Changeset] r10104 - in django/trunk: django/db/models django/db/models/fields tests/regressiontests/custom_managers_regress

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 22:57:12 -0500 (Thu, 19 Mar 2009) New Revision: 10104 Modified: django/trunk/django/db/models/base.py django/trunk/django/db/models/fields/related.py django/trunk/tests/regressiontests/custom_managers_regress/models.py Log: Fixed #2698 -- Fixed deleti

Re: [Django] #9628: Using pysqlite2 instead of sqlite3 when needed

2009-03-19 Thread Django
#9628: Using pysqlite2 instead of sqlite3 when needed ---+ Reporter: mdh | Owner: jbronn Status: assigned | Milestone: 1.1 Compone

Re: [Django] #10559: Documentation fix in comments customization page

2009-03-19 Thread Django
#10559: Documentation fix in comments customization page --+- Reporter: thejaswi_puthraya| Owner: nobody Status: new | Milestone

Re: [Django] #10559: Documentation fix in comments customization page

2009-03-19 Thread Django
#10559: Documentation fix in comments customization page --+- Reporter: thejaswi_puthraya| Owner: nobody Status: new | Milestone

Re: [Django] #9958: Split contrib.comments CommentForm class to allow easier customization

2009-03-19 Thread Django
#9958: Split contrib.comments CommentForm class to allow easier customization --+- Reporter: arne | Owner: nobody Status: new | Mil

Re: [Django] #9958: Split contrib.comments CommentForm class to allow easier customization

2009-03-19 Thread Django
#9958: Split contrib.comments CommentForm class to allow easier customization --+- Reporter: arne | Owner: nobody Status: new | Mil

[Django] #10559: Documentation fix in comments customization page

2009-03-19 Thread Django
#10559: Documentation fix in comments customization page +--- Reporter: thejaswi_puthraya | Owner: nobody Status: new | Milestone: 1.1 Compone

Re: [Django] #9284: BaseModelFormSet and BaseInlineFormSet should call ModelForm.save() when saving objects

2009-03-19 Thread Django
#9284: BaseModelFormSet and BaseInlineFormSet should call ModelForm.save() when saving objects -+-- Reporter: dro...@gmail.com| Owner: nobody Status: reopened| Milest

Re: [Django] #9303: comment templatetags should be independent of Comment model

2009-03-19 Thread Django
#9303: comment templatetags should be independent of Comment model --+- Reporter: thejaswi_puthraya| Owner: nobody Status: reopened

Re: [Django] #9303: comment templatetags should be independent of Comment model

2009-03-19 Thread Django
#9303: comment templatetags should be independent of Comment model --+- Reporter: thejaswi_puthraya| Owner: nobody Status: reopened

Re: [Django] #10548: BaseCommentAbstractModel does not include is_public field needed for template tags

2009-03-19 Thread Django
#10548: BaseCommentAbstractModel does not include is_public field needed for template tags --+- Reporter: carljm | Owner: nobody Status: closed | Mileston

Re: [Django] #8630: Improve the comments framework customizability

2009-03-19 Thread Django
#8630: Improve the comments framework customizability --+- Reporter: thejaswi_puthraya| Owner: carljm Status: closed | Milestone:

[Changeset] r10103 - django/trunk/django/contrib/gis/tests

2009-03-19 Thread noreply
Author: jbronn Date: 2009-03-19 21:50:48 -0500 (Thu, 19 Mar 2009) New Revision: 10103 Modified: django/trunk/django/contrib/gis/tests/__init__.py Log: GeoDjango test suite now takes advantage of `importlib` added in r10088. Modified: django/trunk/django/contrib/gis/tests/__init__.py

[Changeset] r10102 - django/trunk/django/contrib/gis/maps/google

2009-03-19 Thread noreply
Author: jbronn Date: 2009-03-19 21:10:47 -0500 (Thu, 19 Mar 2009) New Revision: 10102 Modified: django/trunk/django/contrib/gis/maps/google/gmap.py Log: Fixed #10480 -- made `icons` a property to add more flexibility. Modified: django/trunk/django/contrib/gis/maps/google/gmap.py

Re: [Django] #10556: FastCGI import error after [10088]

2009-03-19 Thread Django
#10556: FastCGI import error after [10088] +--- Reporter: Boo| Owner: nobody Status: closed | Milestone: 1.1 beta Component: HTTP handling | Version:

Re: [Django] #9666: ssi tag don't works with context variables

2009-03-19 Thread Django
#9666: ssi tag don't works with context variables --+- Reporter: andrews | Owner: nobody Status: new | Milestone: 1.1 Component: T

[Changeset] r10101 - django/trunk/django/core/servers

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 20:43:35 -0500 (Thu, 19 Mar 2009) New Revision: 10101 Modified: django/trunk/django/core/servers/fastcgi.py Log: Fixed #10556 -- Fixed a problem in the fastcgi server after r10088. Thanks, Boo. Modified: django/trunk/django/core/servers/fastcgi.py

[Changeset] r10100 - django/trunk/django/test

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 20:37:34 -0500 (Thu, 19 Mar 2009) New Revision: 10100 Modified: django/trunk/django/test/testcases.py Log: Python 2.3 fix: assertTrue *still* doesn't exist in Python 2.3 The tests and testing framework should use failUnless() instead. Modified: django/tru

[Changeset] r10099 - in django/trunk: django/db/models tests/regressiontests/queries

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 20:37:11 -0500 (Thu, 19 Mar 2009) New Revision: 10099 Modified: django/trunk/django/db/models/base.py django/trunk/tests/regressiontests/queries/models.py Log: Fixed #10547 -- Worked around some odd behaviour in Python 2.3 and 2.4. Calling the super() v

[Changeset] r10098 - django/trunk/django/utils

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 19:58:35 -0500 (Thu, 19 Mar 2009) New Revision: 10098 Modified: django/trunk/django/utils/_threading_local.py Log: More typo fixing. :-( I'm crawling into my hole now. Modified: django/trunk/django/utils/_threading_local.py ===

[Changeset] r10097 - django/trunk/django/utils

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 19:56:56 -0500 (Thu, 19 Mar 2009) New Revision: 10097 Modified: django/trunk/django/utils/_threading_local.py Log: Whoops. I left some debugging printing in r10096. Nothing to see here. Modified: django/trunk/django/utils/_threading_local.py ==

[Changeset] r10096 - django/trunk/django/utils

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 19:51:54 -0500 (Thu, 19 Mar 2009) New Revision: 10096 Modified: django/trunk/django/utils/_threading_local.py Log: Fixed database backend creation for Python 2.3. Previously on "things we changed in the recent past" the database connection setup was ch

Re: [Django] #9101: Improved salt generation for django.contrib.auth

2009-03-19 Thread Django
#9101: Improved salt generation for django.contrib.auth -+-- Reporter: toxik | Owner: nobody Status: new | Milestone: 1.1 Component: Authentication |

Re: [Django] #10547: Delayed Loading Model Update Causes Recursive Errors

2009-03-19 Thread Django
#10547: Delayed Loading Model Update Causes Recursive Errors ---+ Reporter: megaman...@gmail.com | Owner: mtredinnick Status: assigned | Milestone:

Re: [Django] #10558: 10470 and 10472 error. need to enter false in lieu of true.

2009-03-19 Thread Django
#10558: 10470 and 10472 error. need to enter false in lieu of true. +--- Reporter: anonymous | Owner: nobody Status: closed | Milestone:

[Django] #10558: 10470 and 10472 error. need to enter false in lieu of true.

2009-03-19 Thread Django
#10558: 10470 and 10472 error. need to enter false in lieu of true. ---+ Reporter: anonymous | Owner: nobody Status: new| Milestone: Component: django.con

Re: [Django] #10146: Support for contrib/markdown extension_configs in settings.py

2009-03-19 Thread Django
#10146: Support for contrib/markdown extension_configs in settings.py ---+ Reporter: bdejong | Owner: nobody Status: new | Milestone:

[Changeset] r10095 - in django/trunk/docs: ref topics/http

2009-03-19 Thread noreply
Author: lukeplant Date: 2009-03-19 18:28:16 -0500 (Thu, 19 Mar 2009) New Revision: 10095 Modified: django/trunk/docs/ref/settings.txt django/trunk/docs/topics/http/middleware.txt Log: Updated all refs to default middleware in docs. (adding CSRF, removing XView which is no longer a default)

[Django] #10557: FormWizard should not output raw HTML for previous_fields

2009-03-19 Thread Django
#10557: FormWizard should not output raw HTML for previous_fields ---+ Reporter: Matthew Flanagan | Owner: nobody Status: new| Milestone: Component: dj

[Changeset] r10094 - in django/trunk: django/conf django/conf/project_template docs/ref/contrib docs/releases

2009-03-19 Thread noreply
Author: lukeplant Date: 2009-03-19 18:14:20 -0500 (Thu, 19 Mar 2009) New Revision: 10094 Modified: django/trunk/django/conf/global_settings.py django/trunk/django/conf/project_template/settings.py django/trunk/docs/ref/contrib/csrf.txt django/trunk/docs/releases/1.1-alpha-1.txt Log: A

Re: [Django] #5833: [newforms-admin] Custom FilterSpecs

2009-03-19 Thread Django
#5833: [newforms-admin] Custom FilterSpecs ---+ Reporter: Honza_Kral| Owner: jkocherhans Status: assigned | Milestone:

Re: [Django] #4656: Allow In-depth serialization by specifying depth to follow relationship

2009-03-19 Thread Django
#4656: Allow In-depth serialization by specifying depth to follow relationship -+-- Reporter: jay.m.mar...@gmail.com | Owner: nobody Status: new | Milestone:

[Django] #10556: FastCGI import error after [10088]

2009-03-19 Thread Django
#10556: FastCGI import error after [10088] ---+ Reporter: Boo| Owner: nobody Status: new| Milestone: 1.1 beta Component: HTTP handling | Version: SVN Keywords:

Re: [Django] #3672: newforms: DateField doesn't handle date output formats

2009-03-19 Thread Django
#3672: newforms: DateField doesn't handle date output formats +--- Reporter: ores...@gmail.com | Owner: ajs Status: new| Milesto

[Changeset] r10093 - django/trunk/docs/ref/models

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 17:46:49 -0500 (Thu, 19 Mar 2009) New Revision: 10093 Modified: django/trunk/docs/ref/models/options.txt Log: Fixed #10546 -- Fixed a docs typo noticed by carljm. Modified: django/trunk/docs/ref/models/options.txt ==

[Changeset] r10092 - django/trunk/tests/modeltests/defer

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 17:46:28 -0500 (Thu, 19 Mar 2009) New Revision: 10092 Modified: django/trunk/tests/modeltests/defer/models.py Log: Added a test for defer() / only() to make sure saving continues to work. Modified: django/trunk/tests/modeltests/defer/models.py

Re: [Django] #3011: Allow for extendable auth_user module

2009-03-19 Thread Django
#3011: Allow for extendable auth_user module +--- Reporter: nowell strite | Owner: dan Status: assigned | Milestone: Component: Contrib apps | Versi

Re: [Django] #4604: session-based messages

2009-03-19 Thread Django
#4604: session-based messages --+- Reporter: Sean Patrick Hogan | Owner: SmileyChris Status: new | Milestone: 1.2 Component: Contr

Re: [Django] #6735: Class-based generic views

2009-03-19 Thread Django
#6735: Class-based generic views +--- Reporter: jkocherhans| Owner: telenieko Status: assigned | Milestone: 1.1 beta Component: Generic views | Version: SVN

Re: [Django] #17: Metasystem optimization: Share select_related in memory

2009-03-19 Thread Django
#17: Metasystem optimization: Share select_related in memory ---+ Reporter: adrian| Owner: PhiR Status: assigned | Milestone:

Re: [Django] #10508: Missing syntax highlighting in view code snippets in formset documentation

2009-03-19 Thread Django
#10508: Missing syntax highlighting in view code snippets in formset documentation --+- Reporter: Paul Menzel | Owner: nobody Status: new |

Re: [Django] #10547: Delayed Loading Model Update Causes Recursive Errors

2009-03-19 Thread Django
#10547: Delayed Loading Model Update Causes Recursive Errors ---+ Reporter: megaman...@gmail.com | Owner: nobody Status: new | Milestone:

Re: [Django] #9977: CSRFMiddleware needs template tag

2009-03-19 Thread Django
#9977: CSRFMiddleware needs template tag -+-- Reporter: bthomas | Owner: nobody Status: new | Milestone: Component: Uncategorized

Re: [Django] #10554: Response.set_cookie should allow setting two cookies of the same name.

2009-03-19 Thread Django
#10554: Response.set_cookie should allow setting two cookies of the same name. +--- Reporter: jdunck | Owner: nobody Status: new| Milestone: Component:

Re: [Django] #10555: Documentation version warning not showing up correctly in Firefox 3.0.7

2009-03-19 Thread Django
#10555: Documentation version warning not showing up correctly in Firefox 3.0.7 +--- Reporter: belm...@gmail.com | Owner: nobody Status: closed | Milestone: Com

Re: [Django] #10555: Documentation version warning not showing up correctly in Firefox 3.0.7

2009-03-19 Thread Django
#10555: Documentation version warning not showing up correctly in Firefox 3.0.7 +--- Reporter: belm...@gmail.com | Owner: nobody Status: closed | Milestone: Com

[Django] #10555: Documentation version warning not showing up correctly in Firefox 3.0.7

2009-03-19 Thread Django
#10555: Documentation version warning not showing up correctly in Firefox 3.0.7 ---+ Reporter: belm...@gmail.com | Owner: nobody Status: new| Milestone: Component: Documentation

Re: [Django] #9517: Minor: HTML showing up on documentation page

2009-03-19 Thread Django
#9517: Minor: HTML showing up on documentation page --+- Reporter: robballou| Owner: nobody Status: new | Milestone: 1.1 Component: Django Web site |

Re: [Django] #9193: Mac Documentation Issue

2009-03-19 Thread Django
#9193: Mac Documentation Issue +--- Reporter: jlev | Owner: nobody Status: closed | Milestone: 1.1 Component: Documentation | Version: 1.0

[Django] #10554: Response.set_cookie should allow setting two cookies of the same name.

2009-03-19 Thread Django
#10554: Response.set_cookie should allow setting two cookies of the same name. -+-- Reporter: jdunck |Owner: nobody Status: new|Milestone: Component:

Re: [Django] #10553: Inconsistent use of "URLconf" in docs/topics/http/urls.txt

2009-03-19 Thread Django
#10553: Inconsistent use of "URLconf" in docs/topics/http/urls.txt +--- Reporter: rduffield | Owner: nobody Status: new| Milestone: Component: Documentatio

Re: [Django] #3237: [patch] CIDR in INTERNAL_IPS

2009-03-19 Thread Django
#3237: [patch] CIDR in INTERNAL_IPS --+- Reporter: Jeremy Dunck | Owner: nobody Status: reopened | Milestone: Component:

Re: [Django] #6903: Go back to old change_list view after hitting save

2009-03-19 Thread Django
#6903: Go back to old change_list view after hitting save -+-- Reporter: jarrow | Owner: ramiro Status: new | Milestone: 1.1 beta Component:

[Django] #10553: Inconsistent use of "URLconf" in docs/topics/http/urls.txt

2009-03-19 Thread Django
#10553: Inconsistent use of "URLconf" in docs/topics/http/urls.txt ---+ Reporter: rduffield | Owner: nobody Status: new| Milestone: Component: Documentation | Version: 1.0

Re: [Django] #6903: Go back to old change_list view after hitting save

2009-03-19 Thread Django
#6903: Go back to old change_list view after hitting save -+-- Reporter: jarrow | Owner: ramiro Status: new | Milestone: 1.1 beta Component:

[Django] #10552: Built-in template fails "lowdly" with exception

2009-03-19 Thread Django
#10552: Built-in template fails "lowdly" with exception -+-- Reporter: powerfox | Owner: nobody Status: new | Milestone: Component: Template system | Version: SVN

Re: [Django] #10197: Annotate breaks pickling of QuerySet

2009-03-19 Thread Django
#10197: Annotate breaks pickling of QuerySet ---+ Reporter: ja...@thelances.net | Owner: nobody Status: new | Milestone: 1.1

Re: [Django] #9977: CSRFMiddleware needs template tag

2009-03-19 Thread Django
#9977: CSRFMiddleware needs template tag -+-- Reporter: bthomas | Owner: nobody Status: new | Milestone: Component: Uncategorized

Re: [Django] #6903: Go back to old change_list view after hitting save

2009-03-19 Thread Django
#6903: Go back to old change_list view after hitting save -+-- Reporter: jarrow | Owner: ramiro Status: new | Milestone: 1.1 beta Component:

Re: [Django] #9977: CSRFMiddleware needs template tag

2009-03-19 Thread Django
#9977: CSRFMiddleware needs template tag -+-- Reporter: bthomas | Owner: nobody Status: new | Milestone: Component: Uncategorized

Re: [Django] #10550: Broken link

2009-03-19 Thread Django
#10550: Broken link ---+ Reporter: Doug Carter | Owner: nobody Status: closed| Milestone: Component: Uncategorized |

Re: [Django] #10222: [patch] Add line_merge to GEOS geometries under django.contrib.gis

2009-03-19 Thread Django
#10222: [patch] Add line_merge to GEOS geometries under django.contrib.gis ---+ Reporter: psmith| Owner: jbronn Status: assigned | Milestone: 1.1 Component:

Re: [Django] #10547: Delayed Loading Model Update Causes Recursive Errors

2009-03-19 Thread Django
#10547: Delayed Loading Model Update Causes Recursive Errors ---+ Reporter: megaman...@gmail.com | Owner: nobody Status: new | Milestone:

[Django] #10551: tiny bug in doc - form Textarea

2009-03-19 Thread Django
#10551: tiny bug in doc - form Textarea --+- Reporter: adrian_...@yahoo.com | Owner: nobody Status: new | Milestone: Component: Documentation | Version: 1.0

Re: [Django] #10550: Broken link

2009-03-19 Thread Django
#10550: Broken link ---+ Reporter: Doug Carter | Owner: nobody Status: new | Milestone: Component: Uncategorized |

[Django] #10550: Broken link

2009-03-19 Thread Django
#10550: Broken link --+- Reporter: Doug Carter | Owner: nobody Status: new | Milestone: Component: Uncategorized | Version: 1.0 Ke

[Django] #10549: BooleanField.formfield() does not handle choices correct. [PATCH]

2009-03-19 Thread Django
#10549: BooleanField.formfield() does not handle choices correct. [PATCH] --+- Reporter: sebastian_noack | Owner: nobody Status: new | Milestone: Component:

Re: [Django] #10061: incorrect logout link in admin

2009-03-19 Thread Django
#10061: incorrect logout link in admin ---+ Reporter: lashni| Owner: Alex Status: reopened | Milestone: 1.1 Component: django.contrib.admin |

Re: [Django] #8630: Improve the comments framework customizability

2009-03-19 Thread Django
#8630: Improve the comments framework customizability --+- Reporter: thejaswi_puthraya| Owner: carljm Status: closed | Milestone:

[Django] #10548: BaseCommentAbstractModel does not include is_public field needed for template tags

2009-03-19 Thread Django
#10548: BaseCommentAbstractModel does not include is_public field needed for template tags -+-- Reporter: carljm | Owner: nobody Status: new | Milestone: Com

Re: [Django] #9977: CSRFMiddleware needs template tag

2009-03-19 Thread Django
#9977: CSRFMiddleware needs template tag -+-- Reporter: bthomas | Owner: nobody Status: new | Milestone: Component: Uncategorized

Re: [Django] #10547: Delayed Loading Model Update Causes Recursive Errors

2009-03-19 Thread Django
#10547: Delayed Loading Model Update Causes Recursive Errors ---+ Reporter: megaman...@gmail.com | Owner: nobody Status: new | Milestone:

Re: [Django] #10547: Delayed Loading Model Update Causes Recursive Errors

2009-03-19 Thread Django
#10547: Delayed Loading Model Update Causes Recursive Errors ---+ Reporter: megaman...@gmail.com | Owner: nobody Status: new | Milestone:

Re: [Django] #10531: Choices template display example needed

2009-03-19 Thread Django
#10531: Choices template display example needed +--- Reporter: paulbury | Owner: kc9ddi Status: new| Milestone: Component: Uncategorized | Version:

Re: [Django] #10531: Choices template display example needed

2009-03-19 Thread Django
#10531: Choices template display example needed +--- Reporter: paulbury | Owner: anonymous Status: assigned | Milestone: Component: Uncategorized | Ve

[Django] #10547: Delayed Loading Model Update Causes Recursive Errors

2009-03-19 Thread Django
#10547: Delayed Loading Model Update Causes Recursive Errors --+- Reporter: megaman...@gmail.com | Owner: nobody Status: new | Milestone: Component: Database la

Re: [Django] #10546: "managed=True" should be "managed=False" in new doc note in r10089

2009-03-19 Thread Django
#10546: "managed=True" should be "managed=False" in new doc note in r10089 +--- Reporter: carljm | Owner: nobody Status: new| Milestone: 1.1 Componen

Re: [Django] #8630: Improve the comments framework customizability

2009-03-19 Thread Django
#8630: Improve the comments framework customizability --+- Reporter: thejaswi_puthraya| Owner: carljm Status: reopened | Milestone:

Re: [Django] #10529: Generic Inline fails (unexpected keyword argument `prefix`)

2009-03-19 Thread Django
#10529: Generic Inline fails (unexpected keyword argument `prefix`) -+-- Reporter: leitjohn| Owner: leitjohn Status: closed | Milestone: Component: Forms |

[Django] #10546: "managed=True" should be "managed=False" in new doc note in r10089

2009-03-19 Thread Django
#10546: "managed=True" should be "managed=False" in new doc note in r10089 ---+ Reporter: carljm | Owner: nobody Status: new| Milestone: Component: Documentation | Versio

Re: [Django] #10541: cannot save file from a pipe

2009-03-19 Thread Django
#10541: cannot save file from a pipe ---+ Reporter: liangent | Owner: nobody Status: new | Milestone: Component: File uploads/storage |

Re: [Django] #10541: cannot save file from a pipe

2009-03-19 Thread Django
#10541: cannot save file from a pipe ---+ Reporter: liangent | Owner: nobody Status: new | Milestone: Component: File uploads/storage |

Re: [Django] #9447: ifequal should be chainable(and,or)

2009-03-19 Thread Django
#9447: ifequal should be chainable(and,or) -+-- Reporter: hybrid.ba...@gmail.com | Owner: nobody Status: new | Milestone: Component: Te

Re: [Django] #5691: Add the active language to generate the cache key

2009-03-19 Thread Django
#5691: Add the active language to generate the cache key -+-- Reporter: aa...@apsl.net | Owner: aaloy Status: assigned| Milestone:

Re: [Django] #10540: Remove small documentation redundancy redundancy

2009-03-19 Thread Django
#10540: Remove small documentation redundancy redundancy +--- Reporter: llimllib | Owner: nobody Status: new| Milestone: Component: Documentation

Re: [Django] #10543: Something like Jobeet from Symfony

2009-03-19 Thread Django
#10543: Something like Jobeet from Symfony +--- Reporter: jorgelb| Owner: nobody Status: closed | Milestone: Component: Do

[Changeset] r10091 - django/trunk/django/db/models

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 04:43:45 -0500 (Thu, 19 Mar 2009) New Revision: 10091 Modified: django/trunk/django/db/models/query.py Log: Typo fix for an error path in r100090. Modified: django/trunk/django/db/models/query.py

Re: [Django] #10545: Developing custom tag - setting context is missing a limitation

2009-03-19 Thread Django
#10545: Developing custom tag - setting context is missing a limitation +--- Reporter: yaniv.ha...@gmail.com | Owner: nobody Status: new| Milestone:

[Changeset] r10090 - in django/trunk: django/db/models django/db/models/sql docs/ref/models tests/modeltests tests/modeltests/defer tests/regressiontests/queries

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 04:06:04 -0500 (Thu, 19 Mar 2009) New Revision: 10090 Added: django/trunk/tests/modeltests/defer/ django/trunk/tests/modeltests/defer/__init__.py django/trunk/tests/modeltests/defer/models.py Modified: django/trunk/django/db/models/base.py djang

[Django] #10545: Developing custom tag - setting context is missing a limitation

2009-03-19 Thread Django
#10545: Developing custom tag - setting context is missing a limitation ---+ Reporter: yaniv.ha...@gmail.com | Owner: nobody Status: new| Milestone: Component: Documentation

[Changeset] r10089 - in django/trunk/docs: ref/models topics/db

2009-03-19 Thread noreply
Author: mtredinnick Date: 2009-03-19 04:04:19 -0500 (Thu, 19 Mar 2009) New Revision: 10089 Modified: django/trunk/docs/ref/models/options.txt django/trunk/docs/topics/db/models.txt Log: Added some documentation explaining "managed=False" vs. "proxy=True". These features look similar, but t

Re: [Django] #10544: Saving ModelForm to update exisitng record generates No {model} matches the given query.

2009-03-19 Thread Django
#10544: Saving ModelForm to update exisitng record generates No {model} matches the given query. +--- Reporter: mcwong644 | Owner: nobody Status: closed | Milestone:

Re: [Django] #10543: Something like Jobeet from Symfony

2009-03-19 Thread Django
#10543: Something like Jobeet from Symfony +--- Reporter: jorgelb| Owner: nobody Status: closed | Milestone: Component: Do

[Django] #10544: Saving ModelForm to update exisitng record generates No {model} matches the given query.

2009-03-19 Thread Django
#10544: Saving ModelForm to update exisitng record generates No {model} matches the given query. ---+ Reporter: mcwong644 | Owner: nobody Status: new| Milestone: Component: Unca

[Django] #10543: Something like Jobeet from Symfony

2009-03-19 Thread Django
#10543: Something like Jobeet from Symfony -+-- Reporter: jorgelb | Owner: nobody Status: new | Milestone: Component: Documentation| Version: