User f4nt - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T03:58:52Zhttp://stackoverflow.com/feeds/user/14838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1921399/how-can-i-run-multiple-apache-2-instances-on-ubuntu/1931130#19311300Answer by f4nt for How can I run multiple Apache 2 instances on Ubuntu?f4nt2009-12-18T22:49:16Z2009-12-18T22:49:16Z<p>You don't need two instances. You need 2 virtual hosts listening on 2 different IP addresses. Apache can serve multiple SSL certs, just only one per IP address. Otherwise, the cleanest and easiest way to do this in my past has been to duplicate most everything: the binary, the conf path, and init scripts. </p>
http://stackoverflow.com/questions/1930846/django-bbs-sns-pinax/1931102#19311021Answer by f4nt for django bbs sns pinaxf4nt2009-12-18T22:40:16Z2009-12-18T22:40:16Z<p>Pinax could work for your needs. It's open source, built on Django, and has a lot of social media features. However, if you just need a forum I recommend looking at:</p>
<p><a href="http://code.djangoproject.com/wiki/ForumAppsComparison" rel="nofollow">http://code.djangoproject.com/wiki/ForumAppsComparison</a></p>
<p>and selecting what suits your needs best. I don't know what your exact needs are, because you haven't provided any details on what you need. I recommend reading about Pinax, and the other forum software at the link provided and seeing what suits your needs. I can't provide a reason to use one over the other though, due to your vague description of needs.</p>
http://stackoverflow.com/questions/1924293/django-dry-urls-for-model-access/1924409#19244095Answer by f4nt for Django DRY URLs for Model accessf4nt2009-12-17T20:36:28Z2009-12-17T20:41:48Z<p>Use get_model:</p>
<pre><code>from django.db.models import get_model
def my_view(request, model_name, item_slug):
try:
model = get_model('app_name', model_name)
except:
## throw an error
pass
objects = model.objects.get(slug=item_slug)
</code></pre>
<p>Then in urls:</p>
<pre><code> (r'^(?P<model_name>[-\w]+/(?P<slug>[-\w]+)/$', 'model_detail_view', 'model_detail'),
</code></pre>
http://stackoverflow.com/questions/1923165/cant-get-google-map-to-show-up-in-flatpage-using-django-flatpages/1924415#19244150Answer by f4nt for Can't get Google map to show up in Flatpage using Django Flatpagesf4nt2009-12-17T20:37:51Z2009-12-17T20:37:51Z<p>I would suspect that tiny-mce is garbling something up. I'd try to disable tinymce and see if you have the same problem. Also, make sure you're using the 'safe' filter on the text in the templates. Otherwise Django will escape all the HTML.</p>
http://stackoverflow.com/questions/1923948/check-for-a-hidden-form-variable-in-a-view/1924000#19240000Answer by f4nt for Check for a hidden form variable in a viewf4nt2009-12-17T19:26:14Z2009-12-17T19:26:14Z<p>As long as the data is passed to the view in the post you should be able to grab it:</p>
<pre><code>if request.method == "POST":
if "hidden_field_name" in request.POST:
## do something
</code></pre>
http://stackoverflow.com/questions/1891184/how-i-can-get-the-class-of-a-model-in-a-widget-through-modelforms-in-admin/1891263#18912632Answer by f4nt for How i can get the class of a model in a widget through ModelForms in Admin?f4nt2009-12-11T22:24:47Z2009-12-11T22:24:47Z<p>Perhaps looking at the ModelChoiceField form widget would help? <a href="http://code.djangoproject.com/browser/django/trunk/django/forms/models.py#L921" rel="nofollow">http://code.djangoproject.com/browser/django/trunk/django/forms/models.py#L921</a></p>
http://stackoverflow.com/questions/1891139/having-models-declarations-at-two-folders-in-django/1891197#18911970Answer by f4nt for Having models' declarations at two folders in Djangof4nt2009-12-11T22:10:40Z2009-12-11T22:10:40Z<p>Generally people just have one "models" directory, or even sometimes just one models file. If you get to the point that you feel you need 2 full directories for your models, it's probably better to start thinking about breaking your one app, into a couple of small apps instead generally. That being said, there's a number of things that could be potentially wrong just with your setup that we can't see.</p>
<p>Anytime I have an import error though, I drop to a python shell and try to import the item. If it fails, then something is either wrong with the module (you'd be surprised how often I forget __init__.py), or it's not properly in your python path.</p>
http://stackoverflow.com/questions/1891004/inheritance-and-factory-functions-in-python-and-django/1891098#18910982Answer by f4nt for Inheritance and factory functions in Python and Djangof4nt2009-12-11T21:51:31Z2009-12-11T21:51:31Z<p>I think you might have been better off overriding save in your BaseElement instead. Then on save you could set those fields. It'd be something like:</p>
<pre><code>class MyBase(models.Model):
uuid = models.CharField(max_length=64, editable=False, blank=True,
default=lambda:unicode(uuid4()))
objmodule = models.CharField(max_length=255, editable=False, blank=False)
objclass = models.CharField(max_length=255, editable=False, blank=False)
def save(self):
if not self.id:
self.objmodule = unicode(self.__class__.__module__)
self.objclass = unicode(self.__class__.__name__)
self.uuid = unicode(uuid4())
super(self.__class__.__base__, self).save()
class InheritedFromBase(MyBase):
new_field = models.CharField(max_length=100)
</code></pre>
<p>I tested with that and it seemed to do what you're looking for. I was able to create an "InheritedFromBase" object that had the fields you needed, without a lot of code duplication.</p>
http://stackoverflow.com/questions/1772133/pysvn-with-svnssh0pysvn with svn+sshf4nt2009-11-20T17:41:19Z2009-11-20T21:04:51Z
<p>I'm working with pysvn, and I'm trying to find a decent way to handle repositories that are only accessible via svn+ssh. Obviously SSH keys make this all incredibly easy, but I can't guarantee the end user will be using an SSH key. This also has to be able to run without user interaction, because it's going to be doing some svn log parsing.</p>
<p>The big issue is that, with svn+ssh an interactive prompt is popped up for authentication. Obviously I'd like to be able to have pysvn automatically login with a set of given credentials, but set_default_username and set_default_password aren't doing me any good in that respect. If I can't have that, I'd at least like to able to just fail out, and log a message to tell the user to setup an SSH key. However, set_interactive seems to have no bearing on this either, and I'm still prompted for a password with client.log('svn+ssh://path'). </p>
<p>Any thoughts on how to tackle this issue? Is it even really possible to handle this without SSH keys, since it's SSH that's throwing the prompts?</p>
http://stackoverflow.com/questions/243750/how-can-i-automate-running-commands-remotely-over-ssh6How can I automate running commands remotely over SSH?f4nt2008-10-28T15:30:10Z2009-11-09T08:57:27Z
<p>I've searched around a bit for similar questions, but other than running one command or perhaps a few command with items such as:</p>
<p>ssh user@host -t sudo su -</p>
<p>However, what if I essentially need to run a script on (let's say) 15 servers at once. Is this doable in bash? In a perfect world I need to avoid installing applications if at all possible to pull this off. For argument's sake, let's just say that I need to do the following across 10 hosts:</p>
<ol>
<li>Deploy a new Tomcat container</li>
<li>Deploy an application in the container, and configure it</li>
<li>Configure an Apache vhost</li>
<li>Reload Apache</li>
</ol>
<p>I have a script that does all of that, but it relies on me logging into all the servers, pulling a script down from a repo, and then running it. If this isn't doable in bash, what alternatives do you suggest? Do I need a bigger hammer, such as Perl (Python might be preferred since I can guarantee Python is on all boxes in a RHEL environment thanks to yum/up2date)? If anyone can point to me to any useful information it'd be greatly appreciated, especially if it's doable in bash. I'll settle for Perl or Python, but I just don't know those as well (working on that). Thanks!</p>
http://stackoverflow.com/questions/1297426/django-rss-feed-problems0Django RSS Feed Problemsf4nt2009-08-19T01:40:49Z2009-10-15T11:00:01Z
<p>I'm working on a blogging application, and trying to made just a simple RSS feed system function. However, I'm running into an odd bug that doesn't make a lot of sense to me. I understand what's likely going on, but I don't understand why. My RSS Feed class is below:</p>
<pre><code>class RSSFeed(Feed):
title = settings.BLOG_NAME
description = "Recent Posts"
def items(self):
return Story.objects.all().order_by('-created')[:10]
def link(self, obj):
return obj.get_absolute_url()
</code></pre>
<p>However I received the following error (full stack trace at <a href="http://dpaste.com/82510/" rel="nofollow">http://dpaste.com/82510/</a>):</p>
<pre><code>AttributeError: 'NoneType' object has no attribute 'startswith'
</code></pre>
<p>That leads me to believe that it's not receiving any objects whatsoever. However, I can drop to a shell and grab those Story objects, and I can iterate through them returning the absolute url without any problems. So it would seem both portions of the Feed work, just not when it's in feed form. Furthermore, I added some logging, and can confirm that the items function is <em>never</em> entered when visiting the feeds link. I'm hoping I'm just overlooking something simple. Thanks in advance for any/all help.</p>
http://stackoverflow.com/questions/1568058/django-how-do-i-make-fields-non-editable-by-default-in-an-inline-model-formset/1568238#15682380Answer by f4nt for Django: How do I make fields non-editable by default in an inline model formset?f4nt2009-10-14T18:50:04Z2009-10-14T18:50:04Z<p>I think you might be able to override the init function of your form that is used in a formset. There you could check for initial_data, and dynamically build your forms like you're hoping to do. At least, it sounds plausible in my head.</p>
http://stackoverflow.com/questions/1297426/django-rss-feed-problems/1297451#12974510Answer by f4nt for Django RSS Feed Problemsf4nt2009-08-19T01:51:59Z2009-08-19T01:51:59Z<p>Changing to:</p>
<pre><code>class RSSFeed(Feed):
title = settings.BLOG_NAME
link = "/blog/"
description = "Recent Posts"
def items(self):
return Story.objects.all().order_by('-created')[:10]
</code></pre>
<p>Fixed it. Not sure I totally understand it.. but whatev. :)</p>
http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget0Django ModelForm CheckBox Widgetf4nt2009-08-12T19:26:34Z2009-08-13T01:41:00Z
<p>I'm currently have an issue, and likely overlooking something very trivial. I have a field in my model that should allow for multiple choices via a checkbox form (it doesn't have to be a checkbox in the admin screen, just in the form area that the end-user will see). Currently I have the field setup like so:</p>
<pre><code># Type of Media
MEDIA_CHOICES = (
('1', 'Magazine'),
('2', 'Radio Station'),
('3', 'Journal'),
('4', 'TV Station'),
('5', 'Newspaper'),
('6', 'Website'),
)
media_choice = models.CharField(max_length=25,
choices=MEDIA_CHOICES)
</code></pre>
<p>I need to take that and make a checkbox selectable field in a form out of it though. When I create a ModelForm, it wants to do a drop down box. So I naturally overrode that field, and I get my checkbox that I want. However, when the form's submitted, it would appear that nothing useful is saved when I look at the admin screen. The database does however show that I have a number of things selected, which is a positive sign. However, how can I get that to reflect in the admin screen properly?</p>
<p>Edit: FWIW I'll gladly accept documentation links as answers, because it would seem I'm just glossing over something obvious.</p>
http://stackoverflow.com/questions/1089304/how-to-make-custom-photoeffects-in-django-photologue/1089631#10896311Answer by f4nt for How to make custom PhotoEffects in Django Photologue?f4nt2009-07-06T23:13:11Z2009-07-06T23:13:11Z<p>Looks like you could define another preset effect in the utils file, and then import it into models.py. Then you'd want to add it as an option to the PhotoEffect class in models.py. This would of course make your Photologue a bit custom to your needs though.</p>
http://stackoverflow.com/questions/1084569/django-database-caching2Django Database Cachingf4nt2009-07-05T18:19:09Z2009-07-05T19:19:54Z
<p>I'm working on a small project, and I wanted to provide multiple caching options to the end user. I figured with Django it's pretty simplistic to swap memcached for database or file based caching. My memcached implementation works like a champ without any issues. I placed time stamps on my pages, and curl consistently shows the older timestamps in locations where I want caching to work properly. However, when I switch over to the database caching, I don't get any entries in the database, and caching blatantly doesn't work. </p>
<p>From what I see in the documentation all that should be necessary is to change the backend from:</p>
<pre><code>CACHE_BACKEND = 'memcached://localhost:11211'
</code></pre>
<p>To:</p>
<pre><code>CACHE_BACKEND = 'db://cache_table'
</code></pre>
<p>The table exists after running the required manage.py (createcachetable) line, and I can view it just fine. I'm currently in testing, so I am using sqlite3, but that shouldn't matter as far as I can tell. I can confirm that the table is completely empty, and hasn't been written to at any point. Also, as I stated previously, my timestamps are 'wrong' as well, giving me more evidence that something isn't quite right. </p>
<p>Any thoughts? I'm using sqlite3, Django 1.0.2, python 2.6, serving via Apache currently on an Ubuntu Jaunty machine. I'm sure I'm just glossing over something simple. Thanks for any help provided.</p>
http://stackoverflow.com/questions/992230/django-for-loop-counter-break0django for loop counter breakf4nt2009-06-14T05:15:53Z2009-06-19T13:58:21Z
<p>This is hopefully a quick/easy one. I know a way to work around this via a custom template tag, but I was curious if there were other methods I was over looking. I've created a gallery function of sorts for my blog, and I have a gallery list page that paginates all my galleries. Now, I don't want to show all the photos of each gallery in that list, since if each gallery even has 20 images, then that's 100 images on a page if I paginate at 5 posts. That'd be wasteful, and the wrong way to go about things.</p>
<p>The question I have is, is there a way to just display 3 photos from the photo set? What I'd like to do, but I don't <em>think</em> is possible is something like (pseudocode):</p>
<pre><code>{% for photos in gallery.photo_set %}
{% if forloop.counter lt 3 %}
<img src="{{ photos.url }}">
{% endif %}
{% endfor %}
</code></pre>
<p>Judging from the documentation, unless I'm completely missing it, that's not possible via the templating system. Hence, I can just write my own template tag of sorts to work around it. I could probably do something from the view aspect, but I haven't looked to far into that idea. The other option I have is giving the model a preview field, and allow the user to select the photos they want in the preview field. </p>
<p>Anyways, a few different options, so I thought I'd poll the audience to see how you'd do it. Any opinion is appreciated. Personally, enjoying that there's numerous ways to skin this cat.</p>
http://stackoverflow.com/questions/896532/passing-variables-to-django-comment-views-3Passing Variables to Django Comment Viewsf4nt2009-05-22T05:57:04Z2009-05-23T00:13:38Z
<p>Alright, I know I've asked similar questions, but I feel this is hopefully a bit different. I'm integrating django.comments into my application, and the more I play with it, the more I realize it may not even be worth my while at the end of the day. That aside, I've managed to add Captcha to my comments, and I've learned that customizing the form is a terrible idea (hiding that honeypot is stupidly difficult, and from what I can tell requires JS to hide. Pity.). That's alright though, I've managed to work with it. However, the templates for the comments (preview and posted) are frustrating.</p>
<p>When a user is sent to the preview or posted templates, I'd like my sidebar's that have dynamic data to still be functional, however they're not. Do I have to override/rewrite the comments views to push data to these views? At that point it seems like I'm rewriting a major chunk of the comment system anyway, and it'd almost be beneficial to just write my own in that case. I'm more than willing to do that, and totally understand that I'm not entitled to a perfect comments system from Django. I just want to make sure I'm thinking right, and that if I want more than what I get from the comment views, that rewriting them is my only path.</p>
<p>Surely someone's found a healthier way though, so I thought I'd poll the audience. Any thoughts? If you need more info, just lemme know!</p>
http://stackoverflow.com/questions/849463/django-template-includes0django template includesf4nt2009-05-11T18:41:24Z2009-05-11T19:11:25Z
<p>I'm having an issue with django templates at the moment. I have 3 template files basically:</p>
<ul>
<li>Base</li>
<li>story_list</li>
<li>story_detail</li>
</ul>
<p>Story_list and _detail extend Base, and that works perfectly fine. However, list and detail share some code that extend the base template for my sidebar. I'm basically repeating a chunk of code in both templates, and the programmer in me says that's just wrong. There has to be a better way, I'm sure of it. I've tried includes, however I have in the included file:</p>
<pre><code>{% block item %}
content stuff
{% endblock %}
</code></pre>
<p>for about 3 blocks. The problem is that none of that is being picked up/rendered. If I include the file in a block section that extends base, then it dumps everything properly, but if I don't include it in a block, I get nothing. Is SSI the way to go? I toyed with that, but that didn't seem to work properly either. Any help is appreciated.</p>
http://stackoverflow.com/questions/742974/django-rss-feed-wrong-domain1Django RSS Feed Wrong Domainf4nt2009-04-13T03:36:50Z2009-04-13T18:34:47Z
<p>I have an RSS feed that I'm setting up on my new site using Django. Currently I have an RSS feed being served per user, rather than just one big nasty, global RSS feed. The only problem is that the links that are returned by the RSS feed have the completely wrong domain name in the links. The end path is perfectly correct, and the get_absolute_url method seems to work everything else in my applications, just not here. You would think I'd be getting the default "www.example.com/item/item_id", but instead I get another domain that's hosted on this server. At first I was thinking it was just pulling the hostname of the server, but it's not. It's also not pulling what the SITE_ID is set to either. Django docs say that the feeds will pull the domain from the SITE_ID setting, but it's just not. I've grepped my entire application for the domain it's pulling, and found absolutely nothing. </p>
<p>I'm sure I'm missing something simple, but for the life of me I can't deduce it. The domain it's building the URLs with simply doesn't exist anywhere in the application's code or database. So where on Earth is it coming up with the domain? </p>
<p>UPDATE:</p>
<p>ServerName in Apache was set to the domain that I was seeing being used by the RSS Feeds to build the URLs. I changed that, and restarted Apached, wrong domain still in use. Any other ideas on how to force Django to use the right domain?</p>
http://stackoverflow.com/questions/715889/populating-form-field-based-on-query-slug-factor0Populating form field based on query/slug factorf4nt2009-04-03T21:58:47Z2009-04-03T23:08:36Z
<p>I've seen some similar questions, but nothing that quite pointed me in the direction I was hoping for. I have a situation where I have a standard django form built off of a model. This form has a drop down box where you select an item you want to post a comment on. Now I'd like people to be able to browse by items, and click a link to comment on that particular item. What I'd like is for when a user clicks that link they'll be presented with the same old form, however, the dropbox will be defaulted to the item they wanted to comment on. </p>
<p>Is there a sane way to do this with the existing form?
Should I create a separate form entirely for this need?</p>
<p>As a note, this isn't a true comment system, and isn't intended to be. One idea I had was to construct urls like:</p>
<pre><code>comment/?q=item1
</code></pre>
<p>Catching the 'item1' section, and then over riding the save function to force that into the form, while hiding the company in the form. From a UI standpoint, I'm not ecstatic with that idea though. Any thoughts or ideas?</p>
http://stackoverflow.com/questions/624302/help-me-understand-how-to-use-proxypass/624397#6243971Answer by f4nt for Help me understand how to use ProxyPassf4nt2009-03-08T22:01:23Z2009-03-08T22:01:23Z<p>You should modify your django application to expect to be at /new/auth/login instead of /auth/login. Generally your proxy passes should look like so:</p>
<pre><code>ProxyPass /path http://192.168.0.101/path
ProxyPassReverse /path http://192.168.0.101/path
</code></pre>
<p>That combined with your Django app expecting to be at /new/ should fix your issues.</p>
http://stackoverflow.com/questions/624043/django-login-middleware-not-working-as-expected0django login middleware not working as expectedf4nt2009-03-08T18:24:40Z2009-03-08T18:38:37Z
<p>A quickie, and hopefully an easy one. I'm following the docs at <a href="http://docs.djangoproject.com/en/dev/topics/auth/" rel="nofollow">http://docs.djangoproject.com/en/dev/topics/auth/</a> to get just some simple user authentication in place. I don't have any special requirements at all, I just need to know if a user is logged in or not, that's about it. I'm using the login_required decorator, and it's working exactly as I expected. I'm actually using the 'django.contrib.auth.views.login' for my login view, and the exact form they show in the docs:</p>
<pre><code>{% if form.errors %}
<p>Your username and password didn't match. Please try again.</p>
{% endif %}
<form method="post" action=".">
<table>
<tr>
<td>{{ form.username.label_tag }}</td>
<td>{{ form.username }}</td>
</tr>
<tr>
<td>{{ form.password.label_tag }}</td>
<td>{{ form.password }}</td>
</tr>
</table>
<input type="submit" value="login" />
<input type="hidden" name="next" value="{{ next }}" />
</form>
</code></pre>
<p>What I guess I don't understand is why I can put whatever I want in the user/pass fields, and I never receive an error for invalid user/pass combo. I can put in non-existant users, correct users with right passwords, whatever I want basically, and it sends me off to whatever is in the 'next' variable. This leads me to believe that it's actually not doing anything whatsoever. I've checked what I'm sending via the request variables after logging in, and I'm always showing as an AnonymousUser, even though I "successfully logged in". Am I overlooking something blatantly obvious here? Seems like I've read that page on authentication 6 or 7 times now.</p>
<p>Also, if I login as a user with "Staff Status", I show as authenticated without any issues. If the user doesn't have that status, then it doesn't work. </p>
http://stackoverflow.com/questions/624043/django-login-middleware-not-working-as-expected/624068#6240680Answer by f4nt for django login middleware not working as expectedf4nt2009-03-08T18:38:37Z2009-03-08T18:38:37Z<p>I believe I fixed it:</p>
<p>Right:</p>
<pre><code>url(r'^login/$', 'django.contrib.auth.views.login', {'template_name': 'quiz/quiz_login.html'})
</code></pre>
<p>Wrong:</p>
<pre><code>url(r'^login$', 'django.contrib.auth.views.login', {'template_name': 'quiz/quiz_login.html'})
</code></pre>
<p>Meh.</p>
http://stackoverflow.com/questions/621121/django-forms-newbie-question2Django Forms Newbie Questionf4nt2009-03-07T01:40:11Z2009-03-08T06:56:55Z
<p>Alright, I'm at a loss with the Django Forms, as the documentation just doesn't seem to quite cover what I'm looking for. At least it seems to come to a screeching halt once you get past the most rudimentary of forms. I'm more than willing to take a link to <em>good</em> documentation, or a link to a good book that covers this topic, as an answer. Basically, this is how it breaks down, I have 3 models (quiz, questions, answers). I have 20 questions, with 4 potential answers (multi-choice), per quiz. The numbers can vary, but you get the point. </p>
<p>I need to create a form for these items, much like you'd expect in a multiple choice quiz. However, when I create the form by hand in the templates, rather than using django.forms, I get the following:</p>
<p>invalid literal for int() with base 10: 'test'</p>
<p>So I'm trying to mess with the django.forms, but I guess I'm just not grasping the idea of how to build a proper form out of those. Any help would be greatly appreciated, thanks.</p>
<p>For what it's worth here are the models:</p>
<pre><code>class Quiz(models.Model):
label = models.CharField(blank=True, max_length=400)
slug = models.SlugField()
def __unicode__(self):
return self.label
class Question(models.Model):
label = models.CharField(blank=True, max_length=400)
quiz = models.ForeignKey(Quiz)
def __unicode__(self):
return self.label
class Answer(models.Model):
label = models.CharField(blank=True, max_length=400)
question = models.ForeignKey(Question)
correct = models.BooleanField()
def __unicode__(self):
return self.label
</code></pre>
http://stackoverflow.com/questions/609556/django-admin-inlining-foreign-key-issue0django admin inlining foreign key issuef4nt2009-03-04T07:22:27Z2009-03-04T15:46:04Z
<p>Ok, I'm sure I'm missing something stupidly simple, since nobody else seems to be asking the same question. Either way, the problem's annoying me, so I'll suck up my pride and just ask it. I'm mainly just playing around right now with creating a simple Training/Testing application. For starters, I need to be able to create a quiz type application with 20 some odd multiple choice questions. Hence I basically have 3 models: Quizzes, Questions, and Answers. I want in the admin interface to create a quiz, and inline the quiz and answer elements, but at this point I'm willing to settle for just one almost. The goal is to click "Add Quiz", and be transferred to a page with 20 question fields, with 4 answer fields per each in place. Like I said though, I'll settle for just the 20 questions. Here's what I have currently:</p>
<pre><code>class Quiz(models.Model):
label = models.CharField(blank=true, max_length=50)
class Question(models.Model):
label = models.CharField(blank=true, max_length=50)
quiz = models.ForeignKey(Quiz)
class Answer(models.Model):
label = models.CharField(blank=true, max_length=50)
question = models.ForiegnKey(Question)
class QuestionInline(admin.TabularInline):
model = Question
extra = 20
class QuestionAdmin(admin.ModelAdmin):
inlines = [QuestionInline]
class AnswerInline(admin.TabularInline):
model = Answer
extra = 4
class AnswerAdmin(admin.ModelAdmin):
inlines = [AnswerInline]
class QuizAdmin(admin.ModelAdmin):
inlines = [QuestionInline, AnswerInline]
admin.site.register(Question, QuestionAdmin)
admin.site.register(Answer, AnswerAdmin)
admin.site.register(Quiz, QuizAdmin)
</code></pre>
<p>Anyways, I'm just in a prototyping phase, and admittedly a bit of newb still. Currently receive a:</p>
<pre><code>class 'quizzer.quiz.models.Answer'> has no ForeignKey to <class 'quizzer.quiz.models.Quiz'>
</code></pre>
<p>when I try to add a quiz. Any thoughts? Is this doable, or am I trying to pull too much out of the Django Admin app? And yes, I know it's proper practice to segregate the admin stuff from the models file. </p>
http://stackoverflow.com/questions/348044/what-could-justify-the-complexity-of-plone/476336#4763361Answer by f4nt for What could justify the complexity of Plone?f4nt2009-01-24T17:04:56Z2009-01-24T17:04:56Z<p>From a system administrator standpoint, Plone is just shy of being the absolute devil. Upgrading, maintaining, and installing where you want to install things is all more painful than necessary on the Linux platform. That's just my two cents though, and why I typically prefer to avoid the Zope/Plone stack.</p>
<p>Note: it's better with newer releases, but older releases.... ugh </p>
http://stackoverflow.com/questions/90503/game-development-sound-frameworks4Game Development Sound Frameworksf4nt2008-09-18T06:28:16Z2009-01-21T18:42:51Z
<p>I'm working with a team that's building an engine for a variety of 2D and eventually 3D mini-games. The problem we're facing is a solid, cross-platform, sound API. Obviously, DirectX is out of the question due to our needs for cross-platform capabilities. SDL is nice, and works great, but let's face it SDL_Mixer is a bit limited in what it can do. We're currently using it, but when we eventually expand to 3D, it's going to be a problem.</p>
<p>I've been messing with OpenAL, but most of the documentation I've found is fairly out of date, and doesn't seem to work all that great. I'm willing to learn OpenAL, and fight my way through it, but I'd like to be a bit more certain that I'm not wasting my time. Other than the DevMaster tutorials though, I haven't seen much documentation that's blown me away. If someone has some better material than I've found, that'd be awesome.</p>
<p>I've also seen projects such as FMOD, which seems decent despite the licensing. However, like OpenAL, they have nearly non-existant documentation. Granted, I can pour over the code to deduce my options, but it seems like a bit of a pain considering I might eventually be paying for it.</p>
<p>Anyways, thoughts, comments, concerns? Thanks a lot!</p>
http://stackoverflow.com/questions/391237/pygtk-radio-button-help0pyGTK Radio Button Helpf4nt2008-12-24T10:54:03Z2008-12-24T12:01:52Z
<p>Alright, I'll preface this with the fact that I'm a GTK <em>and</em> Python newb, but I haven't been able to dig up the information I needed. Basically what I have is a list of Radio Buttons, and based on which one is checked, I need to connect a button to a different function. I tried creating all my radio buttons, and then creating a disgusting if/else block checking for sget_active() on each button. The problem is the same button returns true every single time. Any ideas?</p>
<p>Here's the code in use:</p>
<pre><code> #Radio Buttons Center
self.updatePostRadioVBox = gtk.VBox(False, 0)
self.updatePageRadio = gtk.RadioButton(None, "Updating Page")
self.updatePostRadio = gtk.RadioButton(self.updatePageRadio, "Updating Blog Post")
self.pageRadio = gtk.RadioButton(self.updatePageRadio, "New Page")
self.blogRadio = gtk.RadioButton(self.updatePageRadio, "New Blog Post")
self.addSpaceRadio = gtk.RadioButton(self.updatePageRadio, "Add New Space")
self.removePageRadio = gtk.RadioButton(self.updatePageRadio, "Remove Page")
self.removePostRadio = gtk.RadioButton(self.updatePageRadio, "Remove Blog Post")
self.removeSpaceRadio = gtk.RadioButton(self.updatePageRadio, "Remove Space")
#Now the buttons to direct us from here
self.returnMainMenuButton = gtk.Button(" Main Menu ")
self.returnMainMenuButton.connect("clicked", self.transToMain)
self.contentManageHBoxBottom.pack_start(self.returnMainMenuButton, False, False, 30)
self.contentProceedButton = gtk.Button(" Proceed ")
self.contentManageHBoxBottom.pack_end(self.contentProceedButton, False, False, 30)
if self.updatePageRadio.get_active():
self.contentProceedButton.connect("clicked", self.updatePage)
elif self.updatePostRadio.get_active():
self.contentProceedButton.connect("clicked", self.updatePost)
elif self.pageRadio.get_active():
self.contentProceedButton.connect("clicked", self.newPage)
elif self.blogRadio.get_active():
self.contentProceedButton.connect("clicked", self.newBlogPost)
elif self.addSpaceRadio.get_active():
self.contentProceedButton.connect("clicked", self.newSpace)
elif self.removePageRadio.get_active():
self.contentProceedButton.connect("clicked", self.removePage)
elif self.removePostRadio.get_active():
self.contentProceedButton.connect("clicked", self.removeBlogPost)
elif self.removeSpaceRadio.get_active():
self.contentProceedButton.connect("clicked", self.removeSpace)
</code></pre>
http://stackoverflow.com/questions/374306/why-is-your-particular-choice-of-forum-software-the-right-one-for-you/391270#3912700Answer by f4nt for Why is your particular choice of forum software the right one for you?f4nt2008-12-24T11:19:15Z2008-12-24T11:19:15Z<p>My fav is Simple Machine Forums. Easy to setup, helpful community, and easy to modify.</p>
http://stackoverflow.com/questions/1921399/how-can-i-run-multiple-apache-2-instances-on-ubuntuComment by f4nt on How can I run multiple Apache 2 instances on Ubuntu?f4nt2009-12-18T22:50:10Z2009-12-18T22:50:10ZIt should be on serverfault. I'm not a car mechanic, and I find that I often get shoddy results when I take my broken care to my local dentist. :)http://stackoverflow.com/questions/1924293/django-dry-urls-for-model-access/1924409#1924409Comment by f4nt on Django DRY URLs for Model accessf4nt2009-12-17T21:44:38Z2009-12-17T21:44:38ZYou're probably going to have to use ifs to get that. something like:
if hasattr(model, "live_objects"):
## do something
Sorry if formatting gets hosed.http://stackoverflow.com/questions/1772133/pysvn-with-svnssh/1773231#1773231Comment by f4nt on pysvn with svn+sshf4nt2009-11-21T18:18:06Z2009-11-21T18:18:06ZI think that's about the best I can hope for probably. http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T22:08:07Z2009-08-12T22:08:07ZGot it! Thank you soooooo much for your help. Formatting is gunna hose it, but here's the fix:
self.fields['media_type'].widget = forms.CheckboxSelectMultiple(choices=self.fields['media_type'].choices)http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T22:02:23Z2009-08-12T22:02:23ZThe HTML of the form is rather customized, so I have to output each field individually. The odd part is that if I don't override it, it works fine. I override it, and it doesn't render, but the choices <i>are</i> there.http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T21:58:04Z2009-08-12T21:58:04Zwell I can see the choices showing up properly if I dump out the contents of the form. There must be something wrong in my templates I guess. Certain widgets show fine, but this one doesn't. Not sure why yet.http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T21:43:29Z2009-08-12T21:43:29Zgah.. formatting got hosed...http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T21:39:25Z2009-08-12T21:39:25ZWell I wasn't doing it right, so thanks for setting me straight there, however now I have this:
in Models.py:
media_type = models.ManyToManyField(MediaChoice)
in Forms.py:
def __init__(self, *args, **kwargs):
super(MediaContactForm, self).__init__(*args, **kwargs)
self.fields['media_type'].widget = forms.CheckboxSelectMultiple()http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T21:05:40Z2009-08-12T21:05:40ZAlso, fwiw, that doesn't seem to work. The field renders blank when I use CheckBoxSelectMultiple form. If I use MultipleChoiceField, with the Checkbox widget that sorta works, but only if I supply the form with a list of choices. Then I have to go mapping data back with overriden clean function. Maybe that's the correct way, but it "feels" wrong, and typically when something "feels" wrong, it is. Just trying to verify I'm not overdoing it here.http://stackoverflow.com/questions/1268209/django-modelform-checkbox-widget/1268493#1268493Comment by f4nt on Django ModelForm CheckBox Widgetf4nt2009-08-12T20:32:40Z2009-08-12T20:32:40ZThanks for the tip. Didn't want to use ManyToMany because I'd be creating about 6 models for information that will always be static. Seemed unnecessary.http://stackoverflow.com/questions/1084569/django-database-caching/1084583#1084583Comment by f4nt on Django Database Cachingf4nt2009-07-05T19:20:11Z2009-07-05T19:20:11ZWas a typo, sorry. Corrected ithttp://stackoverflow.com/questions/992230/django-for-loop-counter-break/992243#992243Comment by f4nt on django for loop counter breakf4nt2009-06-14T07:52:56Z2009-06-14T07:52:56ZSo, there's all my options, and then there's your blatantly obvious one that I've been overlooking. Thanks for the tip, saves me a ton of trouble!http://stackoverflow.com/questions/896532/passing-variables-to-django-comment-viewsComment by f4nt on Passing Variables to Django Comment Viewsf4nt2009-05-22T16:13:58Z2009-05-22T16:13:58ZYou guys took this the completely wrong way. Not mad at django or their comment system. Was merely looking for guidance. Sorry for the way it apparently came off.http://stackoverflow.com/questions/849463/django-template-includes/849574#849574Comment by f4nt on django template includesf4nt2009-05-11T19:56:06Z2009-05-11T19:56:06ZI feel like an idiot now.. but thank you! :)http://stackoverflow.com/questions/849463/django-template-includes/849559#849559Comment by f4nt on django template includesf4nt2009-05-11T19:28:55Z2009-05-11T19:28:55ZYeah, as noted above, it isn't working how I envisioned it would.