User Johnd - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:15:14Zhttp://stackoverflow.com/feeds/user/102503http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/837828/how-to-use-a-slug-in-django4how to use a slug in djangoJohnd2009-05-08T01:17:11Z2009-09-26T04:36:35Z
<p>I am trying to create a SlugField in Django.</p>
<p>I created this simple model:</p>
<pre><code>from django.db import models
class test(models.Model):
q = models.CharField(max_length=30)
s = models.SlugField()
</code></pre>
<p>I then do this:</p>
<pre><code>>>> from mysite.books.models import test
>>> t=test(q="aa a a a", s="b b b b")
>>> t.s
'b b b b'
>>> t.save()
>>> t.s
'b b b b'
>>>
</code></pre>
<p>I was expecting b-b-b-b</p>
http://stackoverflow.com/questions/846727/is-it-safe-to-refactor-my-django-models0is it safe to refactor my django models?Johnd2009-05-11T04:43:09Z2009-06-28T17:00:02Z
<p>My model is similar to this. Is this ok or should I make the common base class abstract? What are the differcenes between this or makeing it abstract and not having an extra table? It seems odd that there is only one primary key now that I have factored stuff out.</p>
<pre><code>class Input(models.Model):
details = models.CharField(max_length=1000)
user = models.ForeignKey(User)
pub_date = models.DateTimeField('date published')
rating = models.IntegerField()
def __unicode__(self):
return self.details
class Case(Input):
title = models.CharField(max_length=200)
views = models.IntegerField()
class Argument(Input):
case = models.ForeignKey(Case)
side = models.BooleanField()
</code></pre>
<p>is this ok to factor stuff out intpu Input? I noticed Cases and Arguments share a primary Key.</p>
<p>like this:</p>
<pre><code> CREATE TABLE "cases_input" (
"id" integer NOT NULL PRIMARY KEY,
"details" varchar(1000) NOT NULL,
"user_id" integer NOT NULL REFERENCES "auth_user" ("id"),
"pub_date" datetime NOT NULL,
"rating" integer NOT NULL
)
;
CREATE TABLE "cases_case" (
"input_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "cases_input" ("id"),
"title" varchar(200) NOT NULL,
"views" integer NOT NULL
)
;
CREATE TABLE "cases_argument" (
"input_ptr_id" integer NOT NULL PRIMARY KEY REFERENCES "cases_input" ("id"),
"case_id" integer NOT NULL REFERENCES "cases_case" ("input_ptr_id"),
"side" bool NOT NULL
)
</code></pre>
http://stackoverflow.com/questions/854905/how-to-use-plone-as-a-framework1how to use plone as a frameworkJohnd2009-05-12T21:15:18Z2009-06-15T17:36:21Z
<p>I am creating a web app that allows people to debate topics. I started prototyping with Django and have a functional app. I have not yet decided on what framework to use.</p>
<p>I've read about Plone the app and Plone the framework. I just can't seem to find any online documentation on using Plone as a framework. I'm looking for a tutorial or something that will show me how to build a web app starting with Plone. I just want to evaluate Plone before I choose my framework.</p>
<p>Anyone have any refs or recommendations on learning how to use Plone as a framework?</p>
http://stackoverflow.com/questions/912540/multiple-exclude2multiple excludeJohnd2009-05-26T20:22:06Z2009-05-26T21:28:09Z
<p>is there a way to do a query and exclude a list of things instead of calling exclude multiple times?</p>
http://stackoverflow.com/questions/900651/where-do-functions-that-dont-display-go-in-django0where do functions that don't display go in djangoJohnd2009-05-23T01:46:21Z2009-05-23T14:02:52Z
<p>I have some links on an html page like , , currently I handle them as so</p>
<pre><code><p> <a href="/cases/{{case.id}}/case_rate/-">rate down</a>
</code></pre>
<p>and have a url.py entry:</p>
<pre><code> (r'^cases/(?P<case_id>\d+)/case_rate/(?P<oper>.)$', 'mysite.cases.views.case_rate'),
</code></pre>
<p>then I have a view function that handles the logic and hits the DB, then does this:</p>
<pre><code>return HttpResponseRedirect(request.META.get('HTTP_REFERER','/'))
</code></pre>
<p>I's there a better way to do this? I can see how this would be OK because it does have to redraw the screen to show the new rating...</p>
http://stackoverflow.com/questions/846727/is-it-safe-to-refactor-my-django-models/900773#9007730Answer by Johnd for is it safe to refactor my django models?Johnd2009-05-23T03:16:12Z2009-05-23T03:16:12Z<p>From: <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#abstract-base-classes" rel="nofollow">django web site</a></p>
<p>Abstract base classes are useful when you want to put some common information into a number of other models. You write your base class and put abstract=True in the Meta class. This model will then not be used to create any database table. Instead, when it is used as a base class for other models, its fields will be added to those of the child class. </p>
http://stackoverflow.com/questions/860245/mix-in-vs-inheritance3mix-in vs inheritanceJohnd2009-05-13T20:31:55Z2009-05-14T04:18:33Z
<p>what is the difference between mix-in and inheritance</p>
http://stackoverflow.com/questions/844879/accurate-page-view-count4accurate page view countJohnd2009-05-10T07:36:41Z2009-05-11T12:55:59Z
<p>What is a good approach to keeping accurate counts of how many times a page has been viewed</p>
<p>I'm using Django. Specifically, I don't want refreshing the page to up the count.</p>
http://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django0how to do a select max in django Johnd2009-05-10T02:58:13Z2009-05-10T23:47:53Z
<p>I have a list of objects how can I run a query to give the max value of a field:</p>
<p>I'm using this code:</p>
<pre><code>def get_best_argument(self):
try:
arg = self.argument_set.order_by('-rating')[0].details
except IndexError:
return 'no posts'
return arg
</code></pre>
<p>rating is an integer</p>
http://stackoverflow.com/questions/845901/how-can-i-change-to-way-a-boolean-prints-in-a-django-template0how can I change to way a boolean prints in a django templateJohnd2009-05-10T19:14:56Z2009-05-10T21:35:49Z
<p>I have some django code that prints a BooleanField</p>
<p>it is rendered as True or False, can I change the label to be Agree/Disagree or do I need to write logic for that in the template?</p>
http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845870#8458700Answer by Johnd for finding object count where a field is unique in djangoJohnd2009-05-10T18:55:17Z2009-05-10T18:55:17Z<p>I am using these method on the Case object:</p>
<pre><code> def users_agree(self):
return self.argument_set.filter(side=True).values('user').distinct()
def users_disagree(self):
return self.argument_set.filter(side=False).values('user').distinct()
</code></pre>
<p>my template code calls count() on them</p>
http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django0finding object count where a field is unique in djangoJohnd2009-05-10T17:29:58Z2009-05-10T18:55:17Z
<p>I have a model that is something like this:</p>
<pre><code>class Input(models.Model):
details = models.CharField(max_length=1000)
user = models.ForeignKey(User)
class Case(Input):
title = models.CharField(max_length=200)
views = models.IntegerField()
class Argument(Input):
case = models.ForeignKey(Case)
side = models.BooleanField()
</code></pre>
<p>A user can submit many args, per case. I want to be able to say how many users have submitted side=true arguments.</p>
<p>I mean if 1 user had 10 args and another user had 2 args (both side=true)
I'd want to count to be 2 not 12.</p>
http://stackoverflow.com/questions/844142/where-to-put-method-that-works-on-a-model1where to put method that works on a modelJohnd2009-05-09T21:47:00Z2009-05-10T09:22:00Z
<p>I'm working with Django.</p>
<p>I have a model called Agrument. Arguments have sides and owners. I have a function that returns back the side of the most recent argument of a certain user.</p>
<p>like obj.get_current_side(username)</p>
<p>I've added this to the actual Argument model like this</p>
<pre><code> def get_current_side(self, user):
return self.argument_set.latest('pub_date').side
</code></pre>
<p>I am starting to think this doesn't make sense because there may not be an instance of an Argument. Is this a place I would use a class method? I thought about making a util class, but I'm thinking that it makes sense to be associated with the Argument class.</p>
http://stackoverflow.com/questions/841958/should-i-create-form-objects-or-generate-them-from-model0Should I create form objects or generate them from modelJohnd2009-05-08T21:44:25Z2009-05-08T21:56:04Z
<p>I recently found out that I can generate forms from models. I've read the docs and am wondering why someone would opt not to do this in favor creating their own form objects.</p>
http://stackoverflow.com/questions/831875/using-django-how-to-create-method-in-model-to-return-query-data1using django, how to create method in model to return query dataJohnd2009-05-06T21:31:33Z2009-05-07T19:01:29Z
<p>In the following code, I'm tyring to create the method show_pro that will show all Arguments for the Case that are pro. </p>
<p>I am getting this error:</p>
<pre><code>>>> Case.objects.all()[0].show_pro()
Traceback (most recent call last):
File "<console>", line 1, in <module>
File "/home/john/mysite/../mysite/cases/models.py", line 23, in show_pro
return self.objects.filter(argument__side__contains='p')
File "/usr/lib/python2.5/site-packages/django/db/models/manager.py", line 151, in __get__
raise AttributeError, "Manager isn't accessible via %s instances" % type.__name__
AttributeError: Manager isn't accessible via Case instances
</code></pre>
<p>here is the code: </p>
<pre><code>from django.db import models
from django.contrib.auth.models import User
import datetime
SIDE_CHOICES = (
('p', 'pro'),
('c', 'con'),
('u', 'undecided'),
)
class Case(models.Model):
question = models.CharField(max_length=200)
owner = models.ForeignKey(User)
pub_date = models.DateTimeField('date published')
rating = models.IntegerField()
def __unicode__(self):
return self.question
def was_published_today(self):
return self.put_date.date() == datetime.date.today()
def show_pro(self):
return self.objects.filter(argument__side__contains='p')
class Argument(models.Model):
case = models.ForeignKey(Case)
reason = models.CharField(max_length=200)
rating = models.IntegerField()
owner = models.ForeignKey(User)
side = models.CharField(max_length=1, choices=SIDE_CHOICES)
def __unicode__(self):
return self.reason
</code></pre>
http://stackoverflow.com/questions/912540/multiple-exclude/912856#912856Comment by Johnd on multiple excludeJohnd2009-05-29T13:11:53Z2009-05-29T13:11:53ZI do it with a list of objects_to_exclude directly, I don't use the o.name:
ignore_tags = request.user.ignore_tags.all()
case_list = Case.objects.exclude(tags__in = ignore_tags))
http://stackoverflow.com/questions/912540/multiple-exclude/912569#912569Comment by Johnd on multiple excludeJohnd2009-05-26T20:48:11Z2009-05-26T20:48:11ZI have a model that has a tags manytomany field. the user can have a large amount of ignore tags. I want to dynamically exclude the objects that the user doesn't want to see. I won't know how many times to call exclude till run time. http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-djangoComment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-26T19:40:19Z2009-05-26T19:40:19ZI didn't know python has a keyword case. Can you refer me to docs on this? http://stackoverflow.com/questions/101268/hidden-features-of-python/101447#101447Comment by Johnd on Hidden features of PythonJohnd2009-05-23T21:14:51Z2009-05-23T21:14:51Zvetler,
the questions asks for "lesser-known but useful features of the Python programming language."
How do you measure 'lesser-known but useful features'? I mean how are any of these responses hidden features?http://stackoverflow.com/questions/860245/mix-in-vs-inheritance/860312#860312Comment by Johnd on mix-in vs inheritanceJohnd2009-05-13T20:44:15Z2009-05-13T20:44:15Zwhat is the diff between a mixin and an abstract class?http://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django/844614#844614Comment by Johnd on how to do a select max in django Johnd2009-05-11T18:46:24Z2009-05-11T18:46:24Zadam, I was just wondering if there is a better wayhttp://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django/844614#844614Comment by Johnd on how to do a select max in django Johnd2009-05-11T07:32:08Z2009-05-11T07:32:08ZI need the actuall argument object that has that Max, so I can print the details field. The args.aggregate(Max('rating')) call just returns the highest rating. I'm looking for the arg with the highest rating.
http://stackoverflow.com/questions/836946/basic-yet-thorough-assembly-tutorial-linux/840910#840910Comment by Johnd on Basic yet thorough assembly tutorial (linux)?Johnd2009-05-10T23:22:57Z2009-05-10T23:22:57ZProfessional Assembly Language is a great book, I recommend it, toohttp://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782Comment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-10T18:44:05Z2009-05-10T18:44:05Z
def get_users_agree(self):
return self.argument_set.filter(side=True).values('user').distinct()
do you see an issue with this?
http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782Comment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-10T18:30:23Z2009-05-10T18:30:23ZI'm gong to call this on a instance of a Case object, so I don't think I'll need to specify a casehttp://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782Comment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-10T18:28:34Z2009-05-10T18:28:34Zoh yea, sorry
this looks goodhttp://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782Comment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-10T18:24:57Z2009-05-10T18:24:57ZNameError: name 'this_case' is not defined
http://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django/844614#844614Comment by Johnd on how to do a select max in django Johnd2009-05-10T18:19:52Z2009-05-10T18:19:52Zyea I made that change in my codehttp://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782Comment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-10T18:16:33Z2009-05-10T18:16:33ZCome to think of it, this should probably be done of the Case object. Like 'for this case show me how many users are on what side'http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845723#845723Comment by Johnd on finding object count where a field is unique in djangoJohnd2009-05-10T18:12:24Z2009-05-10T18:12:24Zarg and case extend input
arg isa input
case isa input