<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com.do/group/django-developers</id>
  <title type="text">Django developers Google Group</title>
  <subtitle type="text">
  Discussion group for Django developers. This group is used for discussion of developing Django itself, not user questions; Please use django-users for issues regarding using the framework, questions for the Django user community outreach, etc.
  </subtitle>
  <link href="/group/django-developers/feed/atom_v1_0_msgs.xml" rel="self" title="Django developers feed"/>
  <updated>2009-01-07T01:43:09Z</updated>
  <generator uri="http://groups.google.com.do" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Malcolm Tredinnick</name>
  <email>malc...@pointy-stick.com</email>
  </author>
  <updated>2009-01-07T01:43:09Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/6356d87372352eab/d0bbfbe5840f3d4f?show_docid=d0bbfbe5840f3d4f</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/6356d87372352eab/d0bbfbe5840f3d4f?show_docid=d0bbfbe5840f3d4f"/>
  <title type="text">Re: Ticket 8764 (Mixing args and **kwargs in reverse() function)</title>
  <summary type="html" xml:space="preserve">
  Could you please be slightly less dismissive of the implementation &lt;br&gt; efforts? &amp;quot;Lazy&amp;quot;, &amp;quot;silly&amp;quot;, &amp;quot;not pythonic&amp;quot;, &amp;quot;fundamental flaw&amp;quot; tend to &lt;br&gt; disregard the enormous efforts a number of people have put into making &lt;br&gt; that functionality work. We don&#39;t actually just make stuff up after a &lt;br&gt; few beers and commit the first thing that runs, you know. I don&#39;t think
  </summary>
  </entry>
  <entry>
  <author>
  <name>Killarny</name>
  <email>killa...@gmail.com</email>
  </author>
  <updated>2009-01-06T23:38:34Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/6356d87372352eab/7301194f2569376b?show_docid=7301194f2569376b</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/6356d87372352eab/7301194f2569376b?show_docid=7301194f2569376b"/>
  <title type="text">Ticket 8764 (Mixing args and **kwargs in reverse() function)</title>
  <summary type="html" xml:space="preserve">
  The above ticket was opened a while back concerning the inability to &lt;br&gt; define views that use both positional arguments and keyword arguments &lt;br&gt; when expecting to use reverse() to match urls tied to those views. &lt;br&gt; &lt;p&gt;I don&#39;t understand the rational here for not fixing this issue. The &lt;br&gt; decision not to allow mixing args and kwargs seems like a lazy way to
  </summary>
  </entry>
  <entry>
  <author>
  <name>Killarny</name>
  <email>killa...@gmail.com</email>
  </author>
  <updated>2009-01-06T23:32:25Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/a47ea704dca70d16/dfa5d05d50239ee4?show_docid=dfa5d05d50239ee4</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/a47ea704dca70d16/dfa5d05d50239ee4?show_docid=dfa5d05d50239ee4"/>
  <title type="text">Re: ticket 8764 (Mixing args and **kwargs in reverse() function)</title>
  <summary type="html" xml:space="preserve">
  The above ticket was opened a while back concerning the inability to &lt;br&gt; define views that use both positional arguments and keyword arguments &lt;br&gt; when expecting to use reverse() to match urls tied to those views. &lt;br&gt; &lt;p&gt;I don&#39;t understand the rational here for not fixing this issue. The &lt;br&gt; decision not to allow mixing args and kwargs seems like a lazy way to
  </summary>
  </entry>
  <entry>
  <author>
  <name>Malcolm Tredinnick</name>
  <email>malc...@pointy-stick.com</email>
  </author>
  <updated>2009-01-06T23:46:50Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/ce05c9bd425e49c8?show_docid=ce05c9bd425e49c8</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/ce05c9bd425e49c8?show_docid=ce05c9bd425e49c8"/>
  <title type="text">Re: making some generic views more generic</title>
  <summary type="html" xml:space="preserve">
  to filter the queryset appropriately and then call an existing generic &lt;br&gt; view. That&#39;s the normal approach when you need more filtering: filter &lt;br&gt; the queryset and then pass of the existing view, perhaps after also &lt;br&gt; updating extra_context. Your code seems quite long and has wrapped &lt;br&gt; fairly horribly in the email, so my eyes were watering a bit too much to
  </summary>
  </entry>
  <entry>
  <author>
  <name>cipher</name>
  <email>cipherz...@gmail.com</email>
  </author>
  <updated>2009-01-06T23:36:10Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/55b5381abb1caf3e?show_docid=55b5381abb1caf3e</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/55b5381abb1caf3e?show_docid=55b5381abb1caf3e"/>
  <title type="text">Re: making some generic views more generic</title>
  <summary type="html" xml:space="preserve">
  Sorry, here is an example of item_list &lt;br&gt; &lt;p&gt;urlpatterns = patterns(&#39;&#39;, &lt;br&gt; (r&#39;^products/$&#39;, &lt;br&gt; item_list,{ &lt;br&gt; &#39;template_object_name&#39; : &#39;product&#39;, &lt;br&gt; &#39;queryset&#39; : Product.objects.all() &lt;br&gt; }), &lt;br&gt; (r&#39;^products/(?P&amp;lt;category__pk&amp;gt; \d+)/$&#39;, &lt;br&gt; item_list,{ &lt;br&gt; &#39;template_object_name&#39; : &#39;product&#39;, &lt;br&gt; &#39;queryset&#39; : Product.objects.all()
  </summary>
  </entry>
  <entry>
  <author>
  <name>Malcolm Tredinnick</name>
  <email>malc...@pointy-stick.com</email>
  </author>
  <updated>2009-01-06T23:36:00Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/50d64ca1e2b43c2d/f132f621300a8fde?show_docid=f132f621300a8fde</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/50d64ca1e2b43c2d/f132f621300a8fde?show_docid=f132f621300a8fde"/>
  <title type="text">Re: Some tickets that should perhaps get looked at before 1.1</title>
  <summary type="html" xml:space="preserve">
  It&#39;s already being looked at. It&#39;s assigned to me for that reason. As I &lt;br&gt; mentioned in the last substantive comment on the ticket, solving it has &lt;br&gt; revealed some other problems with imports that I&#39;m slowly working &lt;br&gt; through as time permits. &lt;br&gt; Regards, &lt;br&gt; Malcolm
  </summary>
  </entry>
  <entry>
  <author>
  <name>Russell Keith-Magee</name>
  <email>freakboy3...@gmail.com</email>
  </author>
  <updated>2009-01-06T22:45:22Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/9bd952c1cd2b3644?show_docid=9bd952c1cd2b3644</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/9bd952c1cd2b3644?show_docid=9bd952c1cd2b3644"/>
  <title type="text">Re: #3566 Aggregations: Call for testing</title>
  <summary type="html" xml:space="preserve">
  Thanks Ian. &lt;br&gt; Russ %-)
  </summary>
  </entry>
  <entry>
  <author>
  <name>cipher</name>
  <email>cipherz...@gmail.com</email>
  </author>
  <updated>2009-01-06T22:43:21Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/3d4584882cb923ff?show_docid=3d4584882cb923ff</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/3d4584882cb923ff?show_docid=3d4584882cb923ff"/>
  <title type="text">Re: making some generic views more generic</title>
  <summary type="html" xml:space="preserve">
  I also would like to request another view. &lt;br&gt; &lt;p&gt;def item_list(request,queryset,ext ra_context={}, &lt;br&gt; item_template=None,template_na me=None, &lt;br&gt; template_object_name=&#39;object&#39;, template_content_name=&#39;items&#39;, &lt;br&gt; page=None,paginate_by=None, &lt;br&gt; mimetype=None,allow_empty=True , &lt;br&gt; template_loader=loader,context _processors=None,
  </summary>
  </entry>
  <entry>
  <author>
  <name>Ian Kelly</name>
  <email>ian.g.ke...@gmail.com</email>
  </author>
  <updated>2009-01-06T19:19:57Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/fd3a09d78650097e?show_docid=fd3a09d78650097e</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/fd3a09d78650097e?show_docid=fd3a09d78650097e"/>
  <title type="text">Re: #3566 Aggregations: Call for testing</title>
  <summary type="html" xml:space="preserve">
  The &amp;quot;ORA-00972: identifier is too long&amp;quot; error is caused by the column &lt;br&gt; alias names not being truncated to an acceptable length &lt;br&gt; (&amp;quot;book__publisher__num_awards_ _min&amp;quot; in this case). The call to &lt;br&gt; perform the truncation is django.db.backends.util.trunca te_name(alias, &lt;br&gt; connection.ops.max_name_length ()). &lt;br&gt; The &amp;quot;ORA-00923: FROM keyword not found where expected&amp;quot; is caused by
  </summary>
  </entry>
  <entry>
  <author>
  <name>Bob Thomas</name>
  <email>robert.w.tho...@gmail.com</email>
  </author>
  <updated>2009-01-06T19:16:41Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/ae525f270ed46933/5a339c6d64d40868?show_docid=5a339c6d64d40868</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/ae525f270ed46933/5a339c6d64d40868?show_docid=5a339c6d64d40868"/>
  <title type="text">Re: CSRF / SafeForm</title>
  <summary type="html" xml:space="preserve">
  I added a ticket (with patch) for implementing the template tag: &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://code.djangoproject.com/ticket/9977&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; It also adds a CSRF context processor, which is used by the tag. &lt;br&gt; &lt;p&gt;The diff doesn&#39;t look quite right. There obviously needs to be an &lt;br&gt; empty __init__.py file added to the templatetags folder for it to
  </summary>
  </entry>
  <entry>
  <author>
  <name>Gabe</name>
  <email>gget...@gmail.com</email>
  </author>
  <updated>2009-01-06T19:01:54Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/f4f680cc5b1aeb98?show_docid=f4f680cc5b1aeb98</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/00eb2d00bca81238/f4f680cc5b1aeb98?show_docid=f4f680cc5b1aeb98"/>
  <title type="text">making some generic views more generic</title>
  <summary type="html" xml:space="preserve">
  Hello, &lt;br&gt; &lt;p&gt;I really like the generic view feature of Django. It&#39;s been a handy &lt;br&gt; way to save a lot of work. Lately though, I&#39;ve been finding myself &lt;br&gt; often wanting to display a list of objects filtered by some field. The &lt;br&gt; documentation suggests handling this by writing a small view that &lt;br&gt; filters the objects and then calling the generic view from within
  </summary>
  </entry>
  <entry>
  <author>
  <name>mrts</name>
  <email>m...@mrts.pri.ee</email>
  </author>
  <updated>2009-01-06T17:05:59Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/50d64ca1e2b43c2d/69e18e4d5c80f8e7?show_docid=69e18e4d5c80f8e7</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/50d64ca1e2b43c2d/69e18e4d5c80f8e7?show_docid=69e18e4d5c80f8e7"/>
  <title type="text">Some tickets that should perhaps get looked at before 1.1</title>
  <summary type="html" xml:space="preserve">
  As the list seems to be resuming from holiday hibernation, I risk &lt;br&gt; causing another &amp;quot;don&#39;t you dare to push us&amp;quot; flame-bombing :) by &lt;br&gt; proposing that the following get looked at before 1.1: &lt;br&gt; &lt;p&gt;* `__import__(mod, {}, {}, [&#39;&#39;])` causes double import of modules [1] &lt;br&gt; &lt;p&gt;After discussions on python-dev, an idiom emerged for a clean fix.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Jacob Kaplan-Moss</name>
  <email>jacob.kaplanm...@gmail.com</email>
  </author>
  <updated>2009-01-06T16:20:44Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/1ad495e30f946b2c/008846bb945560b7?show_docid=008846bb945560b7</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/1ad495e30f946b2c/008846bb945560b7?show_docid=008846bb945560b7"/>
  <title type="text">Re: Session-based messages (Contrib-05, #4604)</title>
  <summary type="html" xml:space="preserve">
  I&#39;d like to see this moved into an external app so that we can &lt;br&gt; de-couple it from the 1.1 release. If it proves to be popular and &lt;br&gt; stable, we could then consider it for 1.2. &lt;br&gt; Jacob
  </summary>
  </entry>
  <entry>
  <author>
  <name>Russell Keith-Magee</name>
  <email>freakboy3...@gmail.com</email>
  </author>
  <updated>2009-01-06T11:14:35Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/6eea3cc90dcddee2?show_docid=6eea3cc90dcddee2</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/6eea3cc90dcddee2?show_docid=6eea3cc90dcddee2"/>
  <title type="text">Re: #3566 Aggregations: Call for testing</title>
  <summary type="html" xml:space="preserve">
  Do you have any particular fields in mind? Any custom field deriving &lt;br&gt; from the basic Django numeric and date/time types shouldn&#39;t require &lt;br&gt; any special handling, but I&#39;d appreciate any bug report to the &lt;br&gt; contrary. If you have a use case for non numeric/date/time types, I&#39;d &lt;br&gt; be interested to see what we can do to accomodate your needs.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Alex Gaynor</name>
  <email>alex.gay...@gmail.com</email>
  </author>
  <updated>2009-01-06T10:55:09Z</updated>
  <id>http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/5215d063d82ebfb1?show_docid=5215d063d82ebfb1</id>
  <link href="http://groups.google.com.do/group/django-developers/browse_thread/thread/73709a583c2279d4/5215d063d82ebfb1?show_docid=5215d063d82ebfb1"/>
  <title type="text">Re: #3566 Aggregations: Call for testing</title>
  <summary type="html" xml:space="preserve">
  Well the queries themselves will execute fine, and then you will just back &lt;br&gt; whatever type your database returned, you&#39;ll need to do some coercion &lt;br&gt; yourself. &lt;br&gt; &lt;p&gt;Alex &lt;br&gt; &lt;p&gt;-- &lt;br&gt; &amp;quot;I disapprove of what you say, but I will defend to the death your right to &lt;br&gt; say it.&amp;quot; --Voltaire &lt;br&gt; &amp;quot;The people&#39;s good is the highest law.&amp;quot;--Cicero
  </summary>
  </entry>
</feed>
