User ha22109 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T07:02:49Z http://stackoverflow.com/feeds/user/104824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1749105/how-to-mime-type-of-the-url 0 how to mime type of the url ha22109 2009-11-17T14:02:15Z 2009-11-18T10:36:23Z <p>Hi , I am using cxf as a webservice.It supports xml and json format output of the requested data.I want to know that if some exception has occured in my code then i want to return him back the error code either in xml or json format.But i dont know when to give json and xml ,it depends on the requested url that user has asked.</p> <p>example</p> <p>@Path("/reports/ad-view/loginId/{loginId}/publisher/")</p> <pre><code>PublisherReports getPublisherReportsAdView( @PathParam("loginId") String loginId, @QueryParam("fromDate") String fromDate, @QueryParam("toDate") String toDate, @QueryParam("filterValue") String filterValue); </code></pre> http://stackoverflow.com/questions/1714854/how-to-check-the-path-in-web-service 0 how to check the path in web service ha22109 2009-11-11T12:22:29Z 2009-11-13T14:56:01Z <p>I m using cxf webservices.I have a service path @Path'/summary/abc/{xyz}/name/{login}'.</p> <p>I want to generate some custom error message when someone give wrong url like</p> <p>'/summary/ab/{xyz}/na/{login}/'</p> http://stackoverflow.com/questions/1706111/django-fastcgi-nginx 0 django fastcgi nginx ha22109 2009-11-10T07:09:25Z 2009-11-10T11:30:08Z <p>i m using django with fastcgi + nginx.I want to know were the logs (error) are stored in this case</p> http://stackoverflow.com/questions/851636/django-admin-filter 5 django admin filter ha22109 2009-05-12T07:52:20Z 2009-11-06T11:06:01Z <p>how can i change the default filter choice from 'ALL'.I have a field named as 'status' which has three values :- 'activate','pending','rejected'.when i use list_filter in django_admin ,the filter is by default set to 'All' but i want to set it to pending by default.</p> http://stackoverflow.com/questions/1612866/django-query-set 0 django query set ha22109 2009-10-23T11:38:01Z 2009-10-28T17:34:12Z <p>I am writing queryset in django. In the first queryset it is working fine. In the second it is giving the error " cannot resolve xyz into a field .. .. "</p> <p>In models.py</p> <pre><code>class XYZ(models.Model): id= models.AutoField(primary_key=True) name = models.CharField(max_length=200) addres= models.CharField(max_length=200) def __unicode__(): return self.name class ASD(models.Model): id= models.AutoField(primary_key=True) pub = models.ForeignKey(XYZ) city= models,CHarField(max_length=200) </code></pre> <p>First queryset:</p> <pre><code>queryset= XYZ.objects.filter(asd__pub____exact='4535344sds3646fhgf7987') </code></pre> <p>Second queryset:</p> <pre><code>queryset= ASD.objects.filter(xyz__id____exact='4535344sds3646fhgf7987') </code></pre> <p>But acccording to <a href="http://docs.djangoproject.com/en/dev/topics/db/queries/#lookups-that-span-relationships" rel="nofollow">django docs</a> it should work.</p> http://stackoverflow.com/questions/1562064/md5-hashing-in-python -2 md5 hashing in python ha22109 2009-10-13T18:24:38Z 2009-10-14T17:35:17Z <p>Is there any way to decrypt the encrypted MD5 string, given the key.</p> http://stackoverflow.com/questions/1123898/django-static-page 0 Django static page? ha22109 2009-07-14T07:12:43Z 2009-10-07T17:41:32Z <p>I want to make a static page which will be shown to the user only if he/she clicks on a link provided in one of my models. I can do this by making a Python page alone and calling it, but I want it be called from Django. The user interface should constructed using the Django API only. </p> <p>Any suggestions?</p> http://stackoverflow.com/questions/939157/how-to-store-the-name-of-user-logged-in 0 How to store the name of user logged in? ha22109 2009-06-02T12:07:42Z 2009-10-06T10:12:00Z <p>I want to store the name of the user who is currently logged into Django in a custom form. In the admin we can do so by writing modified_by=request.user.username, but how do I do this in my own form?</p> http://stackoverflow.com/questions/985800/template-in-django 0 Template in Django ha22109 2009-06-12T09:22:20Z 2009-10-05T23:43:00Z <p>Inline template</p> <p>In my template can I use a &lt;a href&gt; tag? I want that if there is a field named 'id' it should give a href link over there. I have tried following options:</p> <p>1){% ifequal field.field.label "Id" %}</p> <pre><code>&lt;a href =../../{{field.field}}&gt;click here &lt;/a&gt; </code></pre> <p>2){% ifequal field.field.label "Id" %}</p> <pre><code>&lt;a href ="../../{{field.field}}"&gt;click here &lt;/a&gt; </code></pre> <p>3){% ifequal field.field.label "Id" %}</p> <pre><code>&lt;a href =../../{{field.field.value}}&gt;click here &lt;/a&gt; </code></pre> <p>4){% ifequal field.field.label "Id" %}</p> <pre><code>&lt;a href ="../../"{{field.field}}&gt;click here &lt;/a&gt; </code></pre> <p>5){% ifequal field.field.label "Id" %}</p> <pre><code>&lt;a href ={{field.field}}&gt;click here &lt;/a&gt; </code></pre> <p>In this case it is showing the address of the current page. Means not showing the value of field.field.</p> <p>All the options do not work. It is not showing the value of field.field in href.field.field.label shows Id in href when I displays the value field.field</p> <p>{{field.field}} it is showing correct value.</p> http://stackoverflow.com/questions/891621/collecting-additional-information-in-the-django-administration-page 0 Collecting additional information in the Django administration page? ha22109 2009-05-21T06:26:39Z 2009-09-29T07:00:04Z <p>on save if user select certain option i want to take user to a page where he can have one more field to be filled and then redirect to admin default page</p> http://stackoverflow.com/questions/856837/listfilter-in-admin 0 list_filter in admin ha22109 2009-05-13T08:47:50Z 2009-09-16T17:53:20Z <pre><code>DECOM_CHOICES = ( ('N', 'No'), ('Y', 'Yes'), ) class Host(models.Model): hostname = models.CharField(max_length=36, unique=True) decommissioned = models.CharField(max_length=1, choices=DECOM_CHOICES, default='N') ip_address = models.IPAddressField() def __unicode__(self): return self.hostname class HostAdmin(admin.ModelAdmin): fieldsets = [ ('Host Info', {'fields': ['hostname','decommissioned','ip_address']}), list_display = ('hostname', 'ip_address', 'decommissioned') list_filter = ('decommissioned') </code></pre> <p><strong>Now is there any way so that i can set decommissioned filter to <code>'N'</code> by default instead of <code>'All'</code>?</strong></p> http://stackoverflow.com/questions/1327254/how-to-make-a-page-in-django 0 how to make a page in django ha22109 2009-08-25T10:01:50Z 2009-09-09T21:16:05Z <p>Hello ,</p> <p>I have two models ,</p> <pre><code>class A(models.Model): id = models.AutoField(primary_key=True) name = models.CharField(max_length=200) type = models.CHarFIeld(max_length=200) .. .. .. class B(models.Model): a= models.ForeignKey(A) state = models.CharField(max_length=200) </code></pre> <p>now when i am seeing the page of class A i want a link that can show me all the data related to b .</p> <p>ANy suggestions</p> http://stackoverflow.com/questions/914946/view-on-site -2 view on site ha22109 2009-05-27T10:09:32Z 2009-09-03T10:21:15Z <p>I am using <code>def get_absolute_url</code> in my model. It is giving the wrong "View on Site" link. How can it be corrected?</p> http://stackoverflow.com/questions/914946/view-on-site/1372619#1372619 0 Answer by ha22109 for view on site ha22109 2009-09-03T10:21:15Z 2009-09-03T10:21:15Z <p>it is very simple just to to template directory and comment out the line where there is view on site.simple will work </p> <p>But mind it if u r not using it anyother place</p> http://stackoverflow.com/questions/1078897/storing-file-content-in-db 1 storing file content in DB ha22109 2009-07-03T11:15:13Z 2009-09-03T09:18:12Z <p>I am making a model in which i have a filefield.I wan to store file content in the DB column instead of file path.ANy suggestions</p> http://stackoverflow.com/questions/1078897/storing-file-content-in-db/1372358#1372358 0 Answer by ha22109 for storing file content in DB ha22109 2009-09-03T09:18:12Z 2009-09-03T09:18:12Z <p>it is very easy</p> <p>just overide save method in admin</p> <p>filecontent=form.cleaned_data.get('upload_file')</p> <p>data =filecontent.read()</p> <p>from django.db import connection</p> <p>cursor = connection.cursor()</p> <p>cursor.execute("update filecontent set filecontent=(%s) where id=(%s)",[data,obj.id])</p> <p>connection.connection.commit()</p> <p>cursor.close()</p> <p>connection.close()</p> <p>this will store filecontent in db column filecontent of table filecontent</p> http://stackoverflow.com/questions/906551/how-to-make-fields-readonly-while-updating 1 How to make fields readonly while updating. ha22109 2009-05-25T12:31:22Z 2009-09-03T09:14:29Z <p>I have a form. Once the form is filled I don't want the user to change anything in the form.</p> <p>But the user can see the values. Meaning all the fields are non editable. I can do this by using instance method but this does not help in foreignkey.</p> http://stackoverflow.com/questions/906551/how-to-make-fields-readonly-while-updating/1372339#1372339 0 Answer by ha22109 for How to make fields readonly while updating. ha22109 2009-09-03T09:14:29Z 2009-09-03T09:14:29Z <p>you can use readonlyAdmin </p> http://stackoverflow.com/questions/1339845/redirect-on-save 0 redirect on save ha22109 2009-08-27T09:11:54Z 2009-08-31T09:00:51Z <p>Hello,</p> <p>How can i redirect user to different app on save ?</p> <p>I have two app say app1 and app2.If user click on save in app2 then it should be redirected to app1 rather then the default page</p> <p>I want in admin not in customform</p> http://stackoverflow.com/questions/1339845/redirect-on-save/1356549#1356549 0 Answer by ha22109 for redirect on save ha22109 2009-08-31T09:00:51Z 2009-08-31T09:00:51Z <p>def change_view(self, request, object_id,extra_context=None):</p> <pre><code>result = super(mymodeladmin, self).change_view(request, object_id, extra_context) result['Location'] = "your location" return result </code></pre> http://stackoverflow.com/questions/892101/inlines-django 0 inlines -django ha22109 2009-05-21T09:33:41Z 2009-08-19T22:02:50Z <p>I am having 2 models.i want to have model2 inline with model1 .On the admin page I want to show some fields of model 2 as a inlines and all of them as readonly.ALso when i click on the value of the inline i should link me to the model2 with that value</p> <p><strong>A inline that show fields readonly .I want to show inline model fields as readonly</strong></p> http://stackoverflow.com/questions/1293056/bulk-insert-in-db-table -2 bulk insert in db table ha22109 2009-08-18T10:26:36Z 2009-08-18T11:18:44Z <p>Hello,</p> <p>I'm having an array I want to insert in a single query in a table. Any idea?</p> http://stackoverflow.com/questions/1271502/python-db-insert 0 python db insert ha22109 2009-08-13T11:49:32Z 2009-08-13T12:59:47Z <p>Hello </p> <p>I am in facing a performance problem in my code.I am making db connection a making a select query and then inserting in a table.Around 500 rows in one select query ids populated .Before inserting i am running select query around 8-9 times first and then inserting then all using cursor.executemany.But it is taking 2 miuntes to insert which is not qood .Any idea </p> <pre><code>def insert1(id,state,cursor): cursor.execute("select * from qwert where asd_id =%s",[id]) if sometcondition: adding.append(rd[i]) cursor.executemany(indata, adding) </code></pre> <p>where rd[i] is a aray for records making and indata is a insert statement</p> <pre><code>#prog start here cursor.execute("select * from assd") for rows in cursor.fetchall() if rows[1]=='aq': insert1(row[1],row[2],cursor) if rows[1]=='qw': insert2(row[1],row[2],cursor) </code></pre> http://stackoverflow.com/questions/867120/how-to-check-value-transition-in-django-django-admin 1 How to check value transition in Django (django-admin) ? ha22109 2009-05-15T05:43:20Z 2009-08-03T12:30:14Z <p>I have a status field which has 3 values: pending, activated and rejected. If I am changing the value of status I want to have a check that activated cannot be changed to pending. I do not want to write stored-procs for this. Can I have the previous value in Django before saving?</p> <p>Means new and old value.</p> http://stackoverflow.com/questions/1187989/excel-in-django 0 excel in django ha22109 2009-07-27T12:48:57Z 2009-07-28T19:02:29Z <p>Hi,How can i make user to downlaoad a excel from the django app.i HAVE A MODEL WHICH gives the report.Now i want a option from user can download the file in excel form.ANy Solution</p> http://stackoverflow.com/questions/1102091/redirecting-to-a-page 0 redirecting to a page ha22109 2009-07-09T06:11:40Z 2009-07-09T09:52:26Z <p>I am facing a problem .I want to give a link in my change form that will redirect to a page which may be simple php page also or any page ,in that page i want to perform some db queries and display them.I also wan to pass id on click.Is it posssible.</p> <p>in my view.py </p> <p>i wrote:</p> <p>from django.shortcuts import render_to_response</p> <p>from django.template import RequestContext</p> <p>def MyClass(self,id,request):</p> <pre><code>return render_to_response('admin/custom_change_form.html')#my template location </code></pre> <p>my model and admin files are simple</p> http://stackoverflow.com/questions/339969/django-foreign-keys-read-only/1078084#1078084 1 Answer by ha22109 for Django Foreign Keys Read Only ha22109 2009-07-03T06:58:30Z 2009-07-03T06:58:30Z <p>use this code and import it in admin.py as ReadonlyAdmin.This is modified form of readonly admin.</p> <p>from django import forms from django.utils.safestring import mark_safe from datetime import datetime</p> <p>class ReadOnlyWidget(forms.Widget):</p> <pre><code>def __init__(self, original_value, display_value): self.original_value = original_value self.display_value = display_value super(ReadOnlyWidget, self).__init__() def render(self, name, value, attrs=None): if self.display_value is not None: return unicode(self.display_value) return unicode(self.original_value) def value_from_datadict(self, data, files, name): return self.original_value </code></pre> <h1>to make fields foreignkey readonly</h1> <p>class ReadOnlyAdminFields(object):</p> <pre><code>def get_form(self, request, obj=None): form = super(ReadOnlyAdminFields, self).get_form(request, obj) if hasattr(self, 'readonly') and obj is not None: for field_name in self.readonly: if field_name in form.base_fields: if hasattr(obj, 'get_%s_display' % field_name): display_value = getattr(obj, 'get_%s_display' % field_name)() else: display_value = None if getattr(obj, field_name).__class__ in [unicode , long, int, float, datetime, list]: form.base_fields[field_name].widget = ReadOnlyWidget(getattr(obj, field_name), display_value) else: form.base_fields[field_name].widget = ReadOnlyWidget(getattr(obj, field_name).id, display_value) form.base_fields[field_name].required = False return form return form </code></pre> http://stackoverflow.com/questions/914946/view-on-site/995652#995652 0 Answer by ha22109 for view on site ha22109 2009-06-15T11:43:25Z 2009-06-15T11:43:24Z <p>commment out this line in sudo vi ~/python/../django/contrib/admin/tempplates/admin/change_form.html {% if has_absolute_url %}<li>{% trans "View on site" %}</li>{% endif%}</p> http://stackoverflow.com/questions/964868/view-on-site 0 view on site ha22109 2009-06-08T13:16:09Z 2009-06-15T11:31:38Z <p>Why view on site linked to an unwanted page.Can i disable view on site</p> http://stackoverflow.com/questions/964868/view-on-site/995621#995621 0 Answer by ha22109 for view on site ha22109 2009-06-15T11:31:38Z 2009-06-15T11:31:38Z <p>sudo vi /usr/local/lib/python2.6/dist-packages/django/contrib/admin/templates/admin$/change_from.html.</p> <p>in this file comment out the if condition</p> <p><strong>{% if has_absolute_url %} <li>{% trans "View on site" %}</li>{% endif%}</strong></p> <p>then view on site will never appear </p> http://stackoverflow.com/questions/1749105/how-to-mime-type-of-the-url/1755100#1755100 Comment by ha22109 on how to mime type of the url ha22109 2009-11-24T12:13:25Z 2009-11-24T12:13:25Z got it.But i m not setting the header.there are two aap one aap will call another.I think @consumes will be better in this case http://stackoverflow.com/questions/1749105/how-to-mime-type-of-the-url/1755100#1755100 Comment by ha22109 on how to mime type of the url ha22109 2009-11-24T05:02:15Z 2009-11-24T05:02:15Z i m not getting it http://stackoverflow.com/questions/1749105/how-to-mime-type-of-the-url/1755100#1755100 Comment by ha22109 on how to mime type of the url ha22109 2009-11-19T05:50:10Z 2009-11-19T05:50:10Z if i print content-type it is giving value 'null' http://stackoverflow.com/questions/1749105/how-to-mime-type-of-the-url/1755100#1755100 Comment by ha22109 on how to mime type of the url ha22109 2009-11-19T04:54:43Z 2009-11-19T04:54:43Z how to define headerparam in the url can u explain little more http://stackoverflow.com/questions/1749105/how-to-mime-type-of-the-url/1749256#1749256 Comment by ha22109 on how to mime type of the url ha22109 2009-11-18T10:04:48Z 2009-11-18T10:04:48Z in this case i m making extra function which will increase my code size.Instead of that i can pass the query param which will tell me mimetype as xml or json. And i dont need to know mimeType if there is no exception in my code.If everything is fine then cxf will automatically return the requested format http://stackoverflow.com/questions/1612866/django-query-set/1613637#1613637 Comment by ha22109 on django query set ha22109 2009-10-26T05:22:22Z 2009-10-26T05:22:22Z see django docs please http://stackoverflow.com/questions/906551/how-to-make-fields-readonly-while-updating/911627#911627 Comment by ha22109 on How to make fields readonly while updating. ha22109 2009-09-03T10:24:26Z 2009-09-03T10:24:26Z i know but if it can be simple then why not use that http://stackoverflow.com/questions/1078897/storing-file-content-in-db/1081421#1081421 Comment by ha22109 on storing file content in DB ha22109 2009-09-03T10:23:01Z 2009-09-03T10:23:01Z i only want to store the filecontent in db column of a table ,not interested in wasting table for it.I can regain the file content again in same patern. http://stackoverflow.com/questions/1339845/redirect-on-save/1340106#1340106 Comment by ha22109 on redirect on save ha22109 2009-08-27T11:02:07Z 2009-08-27T11:02:07Z i am not aware of this that we have to accept answer manually. http://stackoverflow.com/questions/1339845/redirect-on-save/1340106#1340106 Comment by ha22109 on redirect on save ha22109 2009-08-27T10:22:50Z 2009-08-27T10:22:50Z can u explain it little more .I am not able to find it out http://stackoverflow.com/questions/1339845/redirect-on-save/1340106#1340106 Comment by ha22109 on redirect on save ha22109 2009-08-27T10:19:58Z 2009-08-27T10:19:58Z i havent said that i am not accepting the answer.It was typing mistake and i have corrected it. http://stackoverflow.com/questions/1339845/redirect-on-save Comment by ha22109 on redirect on save ha22109 2009-08-27T10:01:28Z 2009-08-27T10:01:28Z in admin not in custom form.it is simple admin, i am overriding the save function http://stackoverflow.com/questions/1327254/how-to-make-a-page-in-django/1327266#1327266 Comment by ha22109 on how to make a page in django ha22109 2009-08-26T04:53:45Z 2009-08-26T04:53:45Z inline will work but if data i much much high then it will take huge tiume to save it .Thus not a gud solution.It should be optional http://stackoverflow.com/questions/1327254/how-to-make-a-page-in-django Comment by ha22109 on how to make a page in django ha22109 2009-08-26T04:52:45Z 2009-08-26T04:52:45Z i want a page in admin interface only.I can display it using inline but the data is huge and then it will take time in saving http://stackoverflow.com/questions/1271502/python-db-insert/1271815#1271815 Comment by ha22109 on python db insert ha22109 2009-08-17T12:27:35Z 2009-08-17T12:27:35Z i m using regex in my logic and i think regex cannot be used in db scripts.Since all my things are in python so i want some uniformity.