User drozzy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:44:03Z http://stackoverflow.com/feeds/user/74865 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1834610/serving-simple-image-with-app-engine-django-patch 1 Serving simple image with App Engine django patch? drozzy 2009-12-02T17:46:02Z 2009-12-02T18:36:47Z <p>How the heck do i serve a simple img without all that <a href="http://code.google.com/p/app-engine-patch/wiki/MediaGenerator" rel="nofollow">MediaGenerator</a> nonsense, in Django on App Engine? I am using app engine patch.</p> <p>I got layout like this:</p> <ul> <li>django_app_engine_project_folder <ul> <li>my_app</li> </ul></li> </ul> <p>Where should my folder for my media be? In my_app? Or do I put everything in the top media folder?</p> <p>I want to do something like this in my HTML template... </p> <pre><code>&lt;img src="/site_media/my_image.jpg" /&gt; </code></pre> <p>Note that <strong>/media</strong> prefix is already beign used for admin media.</p> http://stackoverflow.com/questions/1834610/serving-simple-image-with-app-engine-django-patch/1834921#1834921 2 Answer by drozzy for Serving simple image with App Engine django patch? drozzy 2009-12-02T18:36:47Z 2009-12-02T18:36:47Z <p>Well it seems that using app.yaml works out:</p> <pre><code>- url: /my_app/media/ static_dir: my_app/media </code></pre> <p>Which allows me to refer to image a.jpg in folder my_app/media with a url like:</p> <pre><code>&lt;img src="/my_app/media/a.jpg" /&gt; </code></pre> http://stackoverflow.com/questions/1809155/mouse-over-listener-for-flextable-in-gwt-1-7 0 Mouse Over listener for FlexTable in GWT 1.7? drozzy 2009-11-27T14:41:43Z 2009-11-27T23:52:50Z <p>How do you add an event listener or handler to widgets in GWT 1.7?</p> <p>I know there are some questions alreayd about this on SO but it seems they are outdated. For example (ignoring the fact that there is a :hover in CSS) how do I add a Hover listener to a FlexTable for example?</p> http://stackoverflow.com/questions/1809164/view-gwt-html-source 1 View GWT HTML source? drozzy 2009-11-27T14:44:01Z 2009-11-27T17:28:45Z <p>Is there a way to VIEW the HTML source code that GWT produces? Currently I just give my flex table the DIV id and that DIV is all HTML I can see in ViewSource.</p> <p>Is there a way to structure my table in HTML (say using div's and lists) and than create a something like FlexTable around that?</p> http://stackoverflow.com/questions/1809164/view-gwt-html-source/1809220#1809220 0 Answer by drozzy for View GWT HTML source? drozzy 2009-11-27T14:55:50Z 2009-11-27T14:55:50Z <p>Well well it seems the answer is in the documentation. In particular <a href="http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html" rel="nofollow">Organizing Projects</a> outlines how we can bind different widgets to different id's on the page. So I can effectively do something like:</p> <pre><code># html &lt;div id="id_table"&gt;&lt;/div&gt; &lt;div id="id_next_button"&gt;&lt;/div&gt; # java t = new FlexTable() RootPanel.get("id_table").add(t); nextbtn = new Button("next"); RootPanel.get("id_next_button").add(nextbtn); </code></pre> <p>Wohoo!</p> http://stackoverflow.com/questions/722463/is-google-app-engine-better-than-webfaction-for-a-beginner-in-django-dev/1732851#1732851 3 Answer by drozzy for Is Google App Engine better than Webfaction for a beginner in Django dev? drozzy 2009-11-14T01:02:46Z 2009-11-21T20:26:05Z <p><strong>Webfaction</strong>:</p> <p>Plus:</p> <ol> <li>Great shell access. Ability to install python modules, or anything else you might need. You will love checking out source code from shell to update your production (no need for FTPing anything anymore!)</li> <li>Very good performance and reliability</li> <li>Great support + wealth of info on help knowledge base and in the forums. (FORGET bluehost or anything else you ever tried). I was surprised by amount of answers I found to what I thought would be difficult questions.</li> <li>You can use regular database and you can do joins (see app engine plus #1)</li> </ol> <p>Minus:</p> <ol> <li>Setting up initial deployment can be a bit tricky the first few times around (as is to be expected from shell).</li> <li>Growing-scaling can be expensive and you probably will not survive beign "slashdotted"</li> </ol> <p><strong>App Engine</strong></p> <p>Plus:</p> <ol> <li>Free to start with</li> <li>Initial database is easier to setup.</li> <li>Deployment is a breeze</li> <li>Enforcement of "good" design principles from the start which help you with #4. (Such as hard limits, db denormalizing etc)</li> <li>Scalability (but this does not come free - you need to think ahead).</li> <li>No maintanence: auto backups, security comes for free, logging + centralized dashboard, software updates are automatic.</li> </ol> <p>Minus:</p> <ol> <li>Database model takes a little bit of time to wrap your head around. THis is not your moma's SQL server. For example you have to denormalize your DB from the start, and you cannot do Joins (unless they are self joins)</li> <li>The usual things you are used to are not always there. Some things such as testing and data-importing are not that easy anymore.</li> <li>You are tied down to App Engine and migrating your data to another DB or server, while not impossible, is not easy. (Not that you do data migration that often! Probably never)</li> <li>Hard limits in requests, responses and file sizes (last time I heard about 1MB).</li> </ol> <p>Can't think of anything else so far. I am currently with Webfaction and am testing App Engine as well. I have no difficulty going from Django-Webfaction to App-Engine way of thinking. However, I am not sure if the AppEngine -> Standalone servers route would be just as easy.</p> <p><strong>References</strong></p> <p>Talks:</p> <ul> <li>Guido on Google App Engine <a href="http://www.youtube.com/watch?v=CmyFcChTc4M" rel="nofollow">http://www.youtube.com/watch?v=CmyFcChTc4M</a></li> <li>Task Queues in App Engine: <a href="http://www.youtube.com/watch?v=o3TuRs9ANhs" rel="nofollow">http://www.youtube.com/watch?v=o3TuRs9ANhs</a></li> </ul> http://stackoverflow.com/questions/1774285/in-picasa-api-how-to-check-if-photo-is-already-loaded 0 In Picasa Api how to check if photo is already loaded? drozzy 2009-11-21T02:14:10Z 2009-11-21T02:14:10Z <p>How do I check in Picasa Python API if the photo is already loaded? I.e. if I already fetched the photo before, and just need to let the user use their local cached version.</p> <p>My current implementation of the gallery is very slow, as my thumbnails have to reload Every time, even if I just click refresh!</p> http://stackoverflow.com/questions/1760329/how-to-get-album-url-from-picasa-api 0 How to get Album URL from picasa API? drozzy 2009-11-19T01:20:31Z 2009-11-19T01:48:58Z <p>I really don't like the Picasa feed-oriented API. Why couldn't they create rest interface?</p> <p>Does anyone know how I can get the URL for a particular album? For example say i got:</p> <pre><code>gd_client = gdata.photos.service.PhotosService() albums = gd_client.GetUserFeed(user="user@gmail.com") album = albums.entry[0] </code></pre> <p>What is it's url? I am looking for something like:</p> <pre><code>http://picasaweb.google.com/username/AlbumTitle </code></pre> <p>that when I click on it will take me to picasa to view that album!</p> <p>PS: Note that you cannot just put the <strong>album.title</strong> there because it might have spaces, and is not really the same </p> http://stackoverflow.com/questions/1734736/django-fetch-model-objects-based-on-time-with-interval-on-the-model-itself/1734987#1734987 2 Answer by drozzy for Django fetch model objects based on time with interval on the model itself drozzy 2009-11-14T17:43:46Z 2009-11-14T17:43:46Z <p>Hm... I am not sure if you can modify the value of the field being looked up. Database would still need to retrieve the value first, apply the function timedelta on it and than do a comparison.</p> <p>I think you might need to rethink your architecture... but I might be wrong. Maybe instead of storing last_check, store the <strong>expired</strong> property, that you can check directly:</p> <pre><code>MyModel.objects.filter(expired__lte=current_date) </code></pre> <p>and then when updating the model:</p> <pre><code>def save(self): self.expired = datetime.now() + self.interval; </code></pre> <p>or something like that.</p> http://stackoverflow.com/questions/1718758/haystack-whoosh-spelling-suggestion-too-greedy 0 Haystack Whoosh Spelling Suggestion too greedy drozzy 2009-11-11T23:12:37Z 2009-11-12T13:17:16Z <p>This questions is about Django Haystack, with Whoosh backend. I would like to use spelling suggestion in my search. The problem is that it is suggesting TOO much.</p> <p>Say I have two models: Apples and Oranges.</p> <p>If I have somethine like this:</p> <pre><code>result = SearchQuerySet().models(Apples).filter( content=escaped_value).spelling_suggestion(escaped_value) </code></pre> <p>it will actually LOOK into Oranges model and return a spelling suggestion from that! It seems like <em>models(Apples)</em> restriction does not work.</p> <p>I have indexes setup for both models, with "text" attribute as document=True. My spelling is ON. I am using Whoosh as backend.</p> http://stackoverflow.com/questions/1718758/haystack-whoosh-spelling-suggestion-too-greedy/1722114#1722114 0 Answer by drozzy for Haystack Whoosh Spelling Suggestion too greedy drozzy 2009-11-12T13:17:16Z 2009-11-12T13:17:16Z <p>This is the problem because Haystack creates spelling suggestions based on the fields which have <strong>document=True</strong> (which in my case are the primary search field in all models and they have the same name). So it does not care about models at all and alway searches across all the knowledgebase.</p> <p>I filed an issue with haystack and brought it up on the discussion board. Dev is very helpful: <a href="http://groups.google.com/group/django-haystack/browse%5Fthread/thread/025e5ed42ccde8b9#" rel="nofollow">http://groups.google.com/group/django-haystack/browse%5Fthread/thread/025e5ed42ccde8b9#</a></p> <p>Issue: <a href="http://github.com/toastdriven/django-haystack/issues/#issue/124" rel="nofollow">http://github.com/toastdriven/django-haystack/issues/#issue/124</a></p> http://stackoverflow.com/questions/1690008/django-multiple-view-parameters-and-duplicated-named-urls 0 Django multiple view parameters and duplicated named urls drozzy 2009-11-06T20:01:10Z 2009-11-06T20:03:33Z <p>I was just pondering if make two named urls the same produces any problems. I tried it and it works. So for example, I have a view that is able to do paging:</p> <pre><code>def info(request, page_num = 1) </code></pre> <p>and I would like to call it both ways, as:</p> <pre><code>/info /info/page/1 </code></pre> <p>so I made urls like:</p> <pre><code>url(r'^info/$', 'views.info', name='info'), url(r'^info/(?P&lt;page_num&gt;)\d+)/$', 'views.info', name='info'), </code></pre> <p>and it seems to work. Anything wrong with that, or should I name my second url differently, like <strong>info_paginated</strong> for example.</p> http://stackoverflow.com/questions/1044421/django-template-tag-for-model-query-result/1689473#1689473 1 Answer by drozzy for Django template tag for Model query result drozzy 2009-11-06T18:39:08Z 2009-11-06T18:39:08Z <p>You can try <a href="http://blog.elsdoerfer.name/2008/07/09/django-tables-a-queryset-renderer/" rel="nofollow">django-tables</a> app, which allows you to do the following, given model Book:</p> <pre><code># Define class BookTable(tables.ModelTable): id = tables.Column(sortable=False, visible=False) book_name = tables.Column(name='title') author = tables.Column(data='author__name') class Meta: model = Book # In your views initial_queryset = Book.objects.all() books = BookTable(initial_queryset) return render_to_response('table.html', {'table': books}) # In your template table.html &lt;table&gt; &lt;!-- Table header --&gt; &lt;tr&gt; {% for column in table.columns %} &lt;th&gt;{{ column }}&lt;/th&gt; {% endfor %} &lt;/tr&gt; &lt;!-- Table rows --&gt; {% for row in table.rows %} &lt;tr&gt; {% for value in row %} &lt;td&gt;{{ value }}&lt;/td&gt; {% endfor %} &lt;/tr&gt; {% endfor %} &lt;/table&gt; </code></pre> <p>I think the above is much more elegant and self explanatory than just doing {% table book_list %}</p> http://stackoverflow.com/questions/1433333/matplotlib-svg-requires-plugin-to-view 0 matplotlib svg requires plugin to view drozzy 2009-09-16T14:29:22Z 2009-09-16T14:44:31Z <p>I am trying to dymamically render an SVG image from matplotlib and insert it into the HTML document.</p> <p>I am using Cairo.SVG as the matplotlib backend.</p> <p>Now whenever I try to insert it into the </p> <pre><code>&lt;img src="/url_to_graph" /&gt; //or &lt;object data="/url_to_graph" /&gt; </code></pre> <p>I either get nothing or the "Missing Plugins" error from Firefox.</p> <p>FYI I am using Firefox. Also any other examples of SVG images I find on the web, work just fine - and require no plugin.</p> <p>Does matplotlib render the SVG images in some special format I don't know about?</p> http://stackoverflow.com/questions/1172722/iterating-over-model-attributes-when-creating-a-template-in-django/1173384#1173384 5 Answer by drozzy for Iterating over model attributes when creating a template in Django drozzy 2009-07-23T17:47:07Z 2009-08-28T12:26:47Z <p>In template you cannot access __underscored__ attributes or functions. I suggest instead you create a function in your model/class:</p> <pre><code>class Person(models.Model): first_name = models.CharField(max_length=256) last_name = models.CharField(max_length=256) def attrs(self): for attr, value in self.__dict__.iteritems(): yield attr, value def sorted_attrs(self): # Silly example of sorting return [(key, self.__dict__[key]) for key in sorted(self.__dict__)] </code></pre> <p>In template it's just:</p> <pre><code> &lt;tr&gt; {% for name, value in person.attrs %} &lt;td&gt;{{name}}&lt;/td&gt; &lt;td&gt;{{value}}&lt;/td&gt; {% endfor %} &lt;/tr&gt; </code></pre> <p>Now this will give you "first_name" instead of "First", but you get the idea. You can extend the method to be a mixin, or be present in a parent-class etc.. Similarly you can use this if you have a few person objects you want to iterate over:</p> <pre><code>{% for person in persons %} &lt;tr&gt; {% for name, value in person.attrs %} &lt;td&gt;{{name}}&lt;/td&gt; &lt;td&gt;{{value}}&lt;/td&gt; {% endfor %} &lt;/tr&gt; {% endfor %} </code></pre> http://stackoverflow.com/questions/742651/loadcontent-does-not-work-in-my-components 2 LoadContent does not work in my components drozzy 2009-04-12T23:37:59Z 2009-08-10T20:26:03Z <p>For some reason the LoadContent method does not get called in my Components. For example I have Game class in which I do:</p> <pre><code>//Game.cs protected override void LoadContent() { editor = new Editor(...); Components.Add(editor); } //Editor.cs public class Editor : DrawableGameComponent{ Game game; public Editor(Game game, ...):base(game){ this.game = game; } //THIS method never gets called! protected override void LoadContent() { background = game.Content.Load&lt;Texture2D&gt;("background"); base.LoadContent(); } } </code></pre> <p>Any tips?</p> <p>EDIT: When you keep in mind the order of Initialize and LoadContent everything works out fine!</p> http://stackoverflow.com/questions/775125/how-to-write-a-simple-txt-content-processor-in-xna 2 How to write a simple .txt content processor in XNA? drozzy 2009-04-21T23:34:55Z 2009-07-29T01:58:38Z <p>I don't really understand how Content importer/processor works in XNA.</p> <p>I need to read a text file (Content/levels/level1.txt) of the form:</p> <pre><code>x x x x x x </code></pre> <p>where x's are just integers, into an int[,] array.</p> <p>Any tips on writting a SIMPLE .txt importer??? By searching google/msdn I only found .x/.fbx file importer examples. And they seem too complicated.</p> http://stackoverflow.com/questions/1108967/separation-of-orm-and-validation/1111592#1111592 0 Answer by drozzy for Separation of ORM and validation drozzy 2009-07-10T19:43:55Z 2009-07-10T19:43:55Z <p><strong>DB/Model validation</strong></p> <p>The data store in database must always be in a certain form/state. For example: required first name, last name, foreign key, unique constraint. This is where the logic of you app resides. No matter where you think the data comes from - it should be "validated" here and an exception raised if the requirements are not met.</p> <p><strong>Form validation</strong></p> <p>Data being entered should <em>look</em> right. It is ok if this data is entered differently through some other means (through admin or api calls). Examples: length of person's name, proper capitalization of the sentence...</p> <p><strong>Example1</strong>: Object has a <em>StartDate</em> and an <em>EndDate</em>. <em>StartDate</em> must always be before <em>EndDate</em>. Where do you validate this? In the model of course! Consider a case when you might be importing data from some other system - you don't want this to go through.</p> <p><strong>Example2</strong>: Password confirmation. You have a field for storing the password in the db. However you display two fields: password1 and password2 on your form. The form, and only the form, is responsible for comparing those two fields to see that they are the same. After form is valid you can safely store the password1 field into the db as the password.</p> http://stackoverflow.com/questions/1110082/swfupload-failing-in-my-django-runserver/1111531#1111531 0 Answer by drozzy for swfupload failing in my django runserver drozzy 2009-07-10T19:30:47Z 2009-07-10T19:30:47Z <p>Make sure you have write permission to your server. In the folder you installed that thing. Check the user that is running runserver. If in windows - check folder is not readonly.</p> http://stackoverflow.com/questions/1111173/how-to-build-an-ecommerce-shopping-cart-in-django/1111510#1111510 1 Answer by drozzy for How to build an Ecommerce Shopping Cart in Django ? drozzy 2009-07-10T19:27:35Z 2009-07-10T19:27:35Z <p>Ingredients:</p> <ul> <li>one cup PayPal (or subsitute with other equivalent payment system)</li> <li>few cups html</li> <li>add css to taste</li> <li>add django if desired</li> </ul> <p>Cooking:</p> <ul> <li>Mix well.</li> <li>Bake for 1-2 month.</li> </ul> <p>Release as open source :-) </p> http://stackoverflow.com/questions/1110153/what-is-the-most-efficent-way-to-store-a-list-in-the-django-models/1111475#1111475 1 Answer by drozzy for What is the most efficent way to store a list in the Django models? drozzy 2009-07-10T19:21:37Z 2009-07-10T19:21:37Z <pre><code>class Course(models.Model): name = models.CharField(max_length=256) students = models.ManyToManyField(Student) class Student(models.Model): first_name = models.CharField(max_length=256) student_number = models.CharField(max_length=128) # other fields, etc... friends = models.ManyToManyField('self') </code></pre> http://stackoverflow.com/questions/1111207/how-do-python-and-php-compare-for-ecommerce/1111393#1111393 1 Answer by drozzy for How do Python and PHP compare for ecommerce? drozzy 2009-07-10T19:03:53Z 2009-07-10T19:03:53Z <p>I don't think you'll get a good answer to this one. Everyone uses php, and python ecommerce is probably mainly in-house built. If there was a popular python solution (something like django for web platforms) - then I doubt there would be any discussion.</p> <p>However - as of now I have yet to see a good all-in one system. On the upside, using python you can easily create something simple for your business.</p> <p>As there are not going to be a lot of new drastic revisions to the Python language in the future, we can expect some good apps to come out soon. My bet today is on django apps.</p> <p>Using php is probably good in the short run. Not that I would ever go back to it...</p> <p>PS: I forgot about another one: ASP.NET (mvc?). If you are feeling particularly adventurous, they have loads of "controls" and products. However it all confuses me a lot.</p> http://stackoverflow.com/questions/1093313/make-onclick-event-stick-after-page-reload 0 Make onclick event stick after page reload drozzy 2009-07-07T16:16:07Z 2009-07-07T17:44:37Z <p>I have Javascript that opens another window and registers a click handler for all the links:</p> <pre><code>//Inside a class somewhere this.file_browser_window = $(window.open("/filebrowser", "file_browser_window", "width=800,height=600")) Event.observe(this.file_browser_window, 'load', function (){ //This is the event I am after Event.observe(this.file_browser_window, 'click', handle_click_in_browser); }.bindAsEventListener(this)); // The Handler function function handle_click_in_browser(evt){ evt.stop(); url = evt.target.href; if(url &amp;&amp; url.endsWith('.png')){ console.log("Image clicked"); //REMMEMBER THIS URL ON MAIN PAGE this.close(); } else{ console.log("Regular stuff clicked", this); this.location = url; //&lt;-- THIS is the breaking point } } </code></pre> <p>However, when the user clicks on some link in that popup window, when the page reloads, my CLICK handlers are gone!</p> <p>The links in the popup window point to the same domain.</p> <p>Now, I <strong>cannot alter the source(html) on the popup window</strong>. I need to <strong>catch</strong> the href of the link-tag (if it points to image) that the user clicked on.</p> <p>I am running <a href="http://code.google.com/p/django-filebrowser/" rel="nofollow">django-filebrowser</a> in the popup window if anyone is interested.</p> http://stackoverflow.com/questions/1092651/javascript-window-with-passback-parameters-after-close 1 Javascript window with passback parameters after close drozzy 2009-07-07T14:26:59Z 2009-07-07T16:18:33Z <p>How can I pass back some arguments from a window that is closed?</p> <p>For example <a href="http://tinymce.moxiecode.com/examples/full.php" rel="nofollow">Insert file</a> dialog in TinyMCE does this. When file is selected the url is pasted into editor. (The url is passed back to the main window)</p> <p>I am using Prototype fyi, if that helps.</p> <p>PS: I rephrased this question to better describe my requirements <a href="http://stackoverflow.com/questions/1093313/make-onclick-event-stick-after-page-reload">here</a>.</p> http://stackoverflow.com/questions/1078786/best-practice-for-uploading-and-image-file-with-django-forms-django-1-0/1080344#1080344 0 Answer by drozzy for Best practice for uploading and image file with Django Forms (Django 1.0) drozzy 2009-07-03T18:02:26Z 2009-07-03T18:02:26Z <p>This is just a matter of following the <a href="http://docs.djangoproject.com/en/1.0/topics/http/file-uploads/#basic-file-uploads" rel="nofollow">docs</a>.</p> <p>You are not using the correct form initialization in your post. In particular you are missing <em>request.FILES</em> parameter:</p> <pre><code> form = ProfileForm(request.POST, request.FILES) </code></pre> <p>after the above the uploaded file can be retrieved from the FILES array:</p> <pre><code> photo_file = request.FILES['photo'] </code></pre> http://stackoverflow.com/questions/1068572/skip-steps-on-a-django-formwizard/1079855#1079855 1 Answer by drozzy for Skip steps on a django FormWizard drozzy 2009-07-03T15:27:33Z 2009-07-03T15:27:33Z <p>The hook method <a href="http://docs.djangoproject.com/en/dev/ref/contrib/formtools/form-wizard/#django.contrib.formtools.wizard.FormWizard.process%5Fstep" rel="nofollow">process_step()</a> gives you exactly that opportunity. After the form is validated you can modify the <strong>self.form_list</strong> variable, and delete the forms you don't need.</p> <p>Needles to say if you logic is very complicated, you are better served creating separate views for each step/form, and forgoing the FormWizard altogether.</p> http://stackoverflow.com/questions/1070398/how-to-set-a-value-of-a-variable-inside-a-template-code/1079836#1079836 0 Answer by drozzy for How to set a value of a variable inside a template code? drozzy 2009-07-03T15:20:57Z 2009-07-03T15:20:57Z <p>Get rid of the Django variable completely and put in <strong>text</strong>:</p> <pre><code>&lt;html&gt; &lt;div&gt;Hello John!&lt;/div&gt; &lt;/html&gt; </code></pre> <p>What is the point of replacing variable with another that you are going to make up yourself?</p> <p>Designers don't need to know/use any variables. Later the coder can go in and put the variables as needed.</p> http://stackoverflow.com/questions/1075314/allow-changing-of-user-fields-like-email-with-django-profiles/1079784#1079784 2 Answer by drozzy for Allow changing of User fields (like email) with django-profiles drozzy 2009-07-03T15:08:01Z 2009-07-03T15:08:01Z <p>I think that implementing a Separate page just for change of email is best, since it would need to be verified etc...</p> <p>If you would like to enable users to modify all their profile info together with their <em>main</em> email address, then you need to create your own Form (ModelForm will not work here). I suggest you start doing this and post a question when you get stuck.</p> <p>Start by copying all the fields out of django-profile model into your custom form, and add the users primary email field.</p> <p>You will have to "override" the django-profile edit url and basically copy the html template if there is one.</p> <p>Another option (bad) would be to hack django-profiles app and change it there. But that will, likely, introduce a lot of bugs, and will render your app <em>unapgradable</em>.</p> http://stackoverflow.com/questions/1077130/not-null-foreignkeyself/1079730#1079730 1 Answer by drozzy for Not null ForeignKey('self') drozzy 2009-07-03T14:57:14Z 2009-07-03T14:57:14Z <p>Shouldn't your type field be <em>null=True, blank=True</em>? Otherwise what is your base case? I mean if you only have one object in the db what is it's type?</p> <p>Having the object loop onto itself can be overcome by adopting a convention that an empty <strong>type</strong> field means exactly that - that object refers to itself!</p> <p>If <strong>type</strong> field is not empty, that means it refers to another Alias object, which works out just peachy.</p> <p>Your question does not make sense at the algorithmic level (unless i am missing something), so how can you make it work in db?</p> <pre><code>Alias(MyBaseModel): type = models.ForeignKey('self', blank=True, null=True) a = Alias() a.save() # Now a refers to itself b = Alias() b.type = a b.save() # b does not refer to itself, but rather a </code></pre> <p>I know I redefined the problem a little, so sorry if that's not what you are after! Cheers.</p> http://stackoverflow.com/questions/1079629/django-queries-generic-contenttypes/1079667#1079667 1 Answer by drozzy for Django queries, generic content_types drozzy 2009-07-03T14:43:52Z 2009-07-03T14:43:52Z <p>No, it is the <em>TaggedItem</em> model that has a field of type ContentType, which is called <strong>content_type</strong>.</p> <p>Each model has a <a href="http://docs.djangoproject.com/en/dev/ref/models/instances/#django.db.models.Model.pk" rel="nofollow">primary key</a> to which you refer by "pk". Most of the time it IS the "id" field. But <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/#primary-key" rel="nofollow">sometimes it is not</a>.</p> <p>In order to be consistent about it you can refer to id field as the pk. So when you are saying <strong>filter(content_type__pk=...</strong> it is similar to <strong>filter(content_type__id...</strong> </p> <p>The double underscore (__) means a reference to field of that model. You can keep stacking these:</p> <pre><code>Car.objects.filter(category__supercategory__name = "Nice Cars") </code></pre> <p>if you had a model Car with a foreign key to Category, which in turn had foreign key to SuperCategory which had a field named <strong>name</strong>. </p> <p>Anyone correct me if I am wrong.</p> http://stackoverflow.com/questions/267761/what-does-your-gitconfig-contain/267884#267884 Comment by drozzy on What does your ~/.gitconfig contain? drozzy 2009-12-08T17:30:50Z 2009-12-08T17:30:50Z What does the renamelimit do? I've looked at it in git docs but I still don't get it. http://stackoverflow.com/questions/1011599/django-on-google-app-engine/1012376#1012376 Comment by drozzy on Django on Google App Engine drozzy 2009-12-02T13:59:40Z 2009-12-02T13:59:40Z I found the app engine patch to be a PIA. It always looks for some strange python modules, oftentimes returns wierd errors, and functions completely different than django runserver. http://stackoverflow.com/questions/871732/turn-off-tooltips-in-eclipse-aptana/871859#871859 Comment by drozzy on Turn off tooltips in Eclipse / Aptana drozzy 2009-11-29T19:58:41Z 2009-11-29T19:58:41Z I don't see how this has anything to do with Ecplise or other editors. http://stackoverflow.com/questions/871732/turn-off-tooltips-in-eclipse-aptana/994153#994153 Comment by drozzy on Turn off tooltips in Eclipse / Aptana drozzy 2009-11-29T19:58:00Z 2009-11-29T19:58:00Z That's the stuff! Just disable Combined Hover. You can bring it up by stepping on the word and pressing F2. http://stackoverflow.com/questions/1809155/mouse-over-listener-for-flextable-in-gwt-1-7/1811045#1811045 Comment by drozzy on Mouse Over listener for FlexTable in GWT 1.7? drozzy 2009-11-29T15:48:18Z 2009-11-29T15:48:18Z I didn't try it yet but i'll mark it accepted for now http://stackoverflow.com/questions/1809164/view-gwt-html-source Comment by drozzy on View GWT HTML source? drozzy 2009-11-27T23:52:45Z 2009-11-27T23:52:45Z Heh my friend! I am just starting digging around in it. I am a Django/python/prototype developer but Javascript is really getting to me. Just fiddling with GWT for now. See my other answer here comparing GWT to regular hosting: <a href="http://stackoverflow.com/questions/722463/is-google-app-engine-better-than-webfaction-for-a-beginner-in-django-dev/1732851#1732851" rel="nofollow" title="is google app engine better than webfaction for a beginner in django dev">stackoverflow.com/questions/722463/&hellip;</a> http://stackoverflow.com/questions/1809155/mouse-over-listener-for-flextable-in-gwt-1-7/1809842#1809842 Comment by drozzy on Mouse Over listener for FlexTable in GWT 1.7? drozzy 2009-11-27T19:47:01Z 2009-11-27T19:47:01Z Also this shows how to implement this.. but I can't seem to cast the event to the elent that generated it: (Label)event.getEventTarget() doesnt work! <a href="http://code.google.com/webtoolkit/articles/dom_events_memory_leaks_and_you.html" rel="nofollow">code.google.com/webtoolkit/articles/&hellip;</a> http://stackoverflow.com/questions/1809155/mouse-over-listener-for-flextable-in-gwt-1-7/1809842#1809842 Comment by drozzy on Mouse Over listener for FlexTable in GWT 1.7? drozzy 2009-11-27T19:20:44Z 2009-11-27T19:20:44Z Do you know how I could handle that on the FlexTable? I found this link but I don't really understand how it works: <a href="http://www.java2s.com/Code/Java/GWT/TableMouseOverEvent.htm" rel="nofollow">java2s.com/Code/Java/&hellip;</a> http://stackoverflow.com/questions/1809164/view-gwt-html-source/1809503#1809503 Comment by drozzy on View GWT HTML source? drozzy 2009-11-27T18:16:38Z 2009-11-27T18:16:38Z Thanks, Inspect element is what I was looking for! http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90046#90046 Comment by drozzy on Reasons not to use django drozzy 2009-11-27T15:03:52Z 2009-11-27T15:03:52Z Nope, elif allows you to put Logic into your templates. Do your logic in your views and models. http://stackoverflow.com/questions/90032/reasons-not-to-use-django/230675#230675 Comment by drozzy on Reasons not to use django drozzy 2009-11-27T15:02:31Z 2009-11-27T15:02:31Z I suggest you look into Django on App Engine. http://stackoverflow.com/questions/90032/reasons-not-to-use-django/92535#92535 Comment by drozzy on Reasons not to use django drozzy 2009-11-27T15:01:00Z 2009-11-27T15:01:00Z Django is worth it for the urls and templating alone. If you design your app in a restful way with raw SQL i don't see any problems with aggregation. Furthermore consider separating your aggregation pieces and computationaly intensive components. http://stackoverflow.com/questions/1044421/django-template-tag-for-model-query-result/1689473#1689473 Comment by drozzy on Django template tag for Model query result drozzy 2009-11-10T17:38:08Z 2009-11-10T17:38:08Z In that case try asp.net http://stackoverflow.com/questions/588718/jquery-svg-vs-raphael/845401#845401 Comment by drozzy on jQuery SVG vs. Raphael drozzy 2009-10-09T17:26:21Z 2009-10-09T17:26:21Z Sorry but site site looks horrible. I love the work you do on Raphael, and would be very interested in checking out more progress, but after staring at a Yellow Page with a Yellow graph my Eyes go googly :-) It is very hard to find what is where on your site. You do some interesting things however! http://stackoverflow.com/questions/906551/how-to-make-fields-readonly-while-updating/1372339#1372339 Comment by drozzy on How to make fields readonly while updating. drozzy 2009-10-06T01:10:00Z 2009-10-06T01:10:00Z Oh yah.. that's very &quot;simple&quot; :-)