User Johnd - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:15:14Z http://stackoverflow.com/feeds/user/102503 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/837828/how-to-use-a-slug-in-django 4 how to use a slug in django Johnd 2009-05-08T01:17:11Z 2009-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>&gt;&gt;&gt; from mysite.books.models import test &gt;&gt;&gt; t=test(q="aa a a a", s="b b b b") &gt;&gt;&gt; t.s 'b b b b' &gt;&gt;&gt; t.save() &gt;&gt;&gt; t.s 'b b b b' &gt;&gt;&gt; </code></pre> <p>I was expecting b-b-b-b</p> http://stackoverflow.com/questions/846727/is-it-safe-to-refactor-my-django-models 0 is it safe to refactor my django models? Johnd 2009-05-11T04:43:09Z 2009-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-framework 1 how to use plone as a framework Johnd 2009-05-12T21:15:18Z 2009-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-exclude 2 multiple exclude Johnd 2009-05-26T20:22:06Z 2009-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-django 0 where do functions that don't display go in django Johnd 2009-05-23T01:46:21Z 2009-05-23T14:02:52Z <p>I have some links on an html page like , , currently I handle them as so</p> <pre><code>&lt;p&gt; &lt;a href="/cases/{{case.id}}/case_rate/-"&gt;rate down&lt;/a&gt; </code></pre> <p>and have a url.py entry:</p> <pre><code> (r'^cases/(?P&lt;case_id&gt;\d+)/case_rate/(?P&lt;oper&gt;.)$', '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#900773 0 Answer by Johnd for is it safe to refactor my django models? Johnd 2009-05-23T03:16:12Z 2009-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-inheritance 3 mix-in vs inheritance Johnd 2009-05-13T20:31:55Z 2009-05-14T04:18:33Z <p>what is the difference between mix-in and inheritance</p> http://stackoverflow.com/questions/844879/accurate-page-view-count 4 accurate page view count Johnd 2009-05-10T07:36:41Z 2009-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-django 0 how to do a select max in django Johnd 2009-05-10T02:58:13Z 2009-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-template 0 how can I change to way a boolean prints in a django template Johnd 2009-05-10T19:14:56Z 2009-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#845870 0 Answer by Johnd for finding object count where a field is unique in django Johnd 2009-05-10T18:55:17Z 2009-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-django 0 finding object count where a field is unique in django Johnd 2009-05-10T17:29:58Z 2009-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-model 1 where to put method that works on a model Johnd 2009-05-09T21:47:00Z 2009-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-model 0 Should I create form objects or generate them from model Johnd 2009-05-08T21:44:25Z 2009-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-data 1 using django, how to create method in model to return query data Johnd 2009-05-06T21:31:33Z 2009-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>&gt;&gt;&gt; Case.objects.all()[0].show_pro() Traceback (most recent call last): File "&lt;console&gt;", line 1, in &lt;module&gt; 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#912856 Comment by Johnd on multiple exclude Johnd 2009-05-29T13:11:53Z 2009-05-29T13:11:53Z I 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#912569 Comment by Johnd on multiple exclude Johnd 2009-05-26T20:48:11Z 2009-05-26T20:48:11Z I 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-django Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-26T19:40:19Z 2009-05-26T19:40:19Z I 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#101447 Comment by Johnd on Hidden features of Python Johnd 2009-05-23T21:14:51Z 2009-05-23T21:14:51Z vetler, the questions asks for &quot;lesser-known but useful features of the Python programming language.&quot; 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#860312 Comment by Johnd on mix-in vs inheritance Johnd 2009-05-13T20:44:15Z 2009-05-13T20:44:15Z what is the diff between a mixin and an abstract class? http://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django/844614#844614 Comment by Johnd on how to do a select max in django Johnd 2009-05-11T18:46:24Z 2009-05-11T18:46:24Z adam, I was just wondering if there is a better way http://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django/844614#844614 Comment by Johnd on how to do a select max in django Johnd 2009-05-11T07:32:08Z 2009-05-11T07:32:08Z I 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#840910 Comment by Johnd on Basic yet thorough assembly tutorial (linux)? Johnd 2009-05-10T23:22:57Z 2009-05-10T23:22:57Z Professional Assembly Language is a great book, I recommend it, too http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782 Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-10T18:44:05Z 2009-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#845782 Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-10T18:30:23Z 2009-05-10T18:30:23Z I'm gong to call this on a instance of a Case object, so I don't think I'll need to specify a case http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782 Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-10T18:28:34Z 2009-05-10T18:28:34Z oh yea, sorry this looks good http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782 Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-10T18:24:57Z 2009-05-10T18:24:57Z NameError: name 'this_case' is not defined http://stackoverflow.com/questions/844591/how-to-do-a-select-max-in-django/844614#844614 Comment by Johnd on how to do a select max in django Johnd 2009-05-10T18:19:52Z 2009-05-10T18:19:52Z yea I made that change in my code http://stackoverflow.com/questions/845717/finding-object-count-where-a-field-is-unique-in-django/845782#845782 Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-10T18:16:33Z 2009-05-10T18:16:33Z Come 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#845723 Comment by Johnd on finding object count where a field is unique in django Johnd 2009-05-10T18:12:24Z 2009-05-10T18:12:24Z arg and case extend input arg isa input case isa input