Re: New Release of IBM_DB_DJANGO (1.0.4)

2012-05-17 Thread Gath
Seems like it does not support Informix!? On May 16, 1:20 pm, Rahul wrote: > IBM_DB_DJANGO-1.0.4 > --- > IBM_DB_DJANGO adaptor enables access to IBM databases from Django > applicationshttp://www.djangoproject.com/. The adaptor is

Re: Coding used for dropbox

2012-03-12 Thread Gath
99% python. On Mar 12, 8:29 am, Mario Gudelj wrote: > http://en.wikipedia.org/wiki/Dropbox_(service)#Technology > > No reason why it can't be made in Django. > > On 12 March 2012 16:06, pankaj sharma wrote: > > > > > > > > > Hello everyone, >

Re: Contribute to Django

2012-02-10 Thread Gath
Sorry, had not seen that! Thanks. On Feb 9, 10:19 pm, yati sagade <yati.sag...@gmail.com> wrote: > Django docs explain this quite nicely :) > > https://docs.djangoproject.com/en/dev/internals/contributing/?from=ol... > > > > > > > > > > On Fri, Feb 1

Contribute to Django

2012-02-09 Thread Gath
Guys, What do i need to learn/know before i start contributing to django development? Thanks Gath -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubs

Re: Why are my two django objects of the same type behaving differently?

2011-10-31 Thread Gath
>>> type(content_query) Works well. Thanks On Oct 31, 5:30 pm, Gath <pgath...@gmail.com> wrote: > Help! > > I have two objects that i have created using different techniques in > django; > > >>> from django.contrib.contenttypes.models import ContentTyp

Why are my two django objects of the same type behaving differently?

2011-10-31 Thread Gath
query[0] # error # Attribute: 'str' object has no attribute 'items' Method B >>> bld = Building.objects.raw("Select * from pms_building where name like >>> '%build%' ") >>> type(bld) >>>bld[0] My question is why are the two objects of the same type

Re: Has anyone used the "djangoles-tutorial.pdf" tutorial?

2011-07-24 Thread Gath
What's the problem you having? On Jul 25, 12:48 am, William C Grisaitis wrote: > Hi all, > > I'm new to Django and started following a tutorial I found on google, named > "djangoles-tutorial.pdf", which shows you how to make a very basic Django > web app with Eclipse and

Re: Django Internals

2011-07-13 Thread Gath
There was a long talk by James Bannett called "Django In Depth" during pycon 2010, it would be good to check it out http://djangocon.blip.tv/file/3322277/ Gath On Jul 13, 7:36 pm, Venkatraman S <venka...@gmail.com> wrote: > Except for the code, is there any good place to s

Re: Our new startup site build on Django and GAE is now live!

2011-06-02 Thread Gath
Great stuff!! Thumbs up. I like the concept! Please share you knowledge on how you did the Django/GAE integration. Gath On Jun 2, 10:02 am, maverick <zhihong@gmail.com> wrote: > We build a pretty cool website LOCQL (www.LOCQL.com) purely on Django > and run on GAE has just went

Re: Django 1.3 docs PDF

2011-06-01 Thread Gath
Good stuff, thanks. On Jun 2, 12:47 am, Oscar Carballal wrote: > Hello, > > I've just created a PDF (5.6MB, 1042 pages) with all the django 1.3 > docs [|], just in case someone need it (sometimes it's useful to have > the docs offline). > > Cheers, > Oscar > >

Re: failing to pass model objects to template for some reason....

2011-05-21 Thread Gath
Chris, Try to print out the entire list object in the template, see if it has anything i.e. {{ messages }} This should tell you if data is been transfered from your view to the template. Gath On May 21, 7:51 am, Chris Seberino <cseber...@gmail.com> wrote: > I have a model class calle

Re: Google App Engine supports Django 1.2!

2011-02-14 Thread Gath
Please give me a pointer/link to a tutorial on how i can use GAE with django. Thanks, Gath. On Feb 14, 7:12 am, Sarang <sar...@mycontactid.net> wrote: > Thanks for the clarification. Yes, I am using django-nonrel which installed > 1.3.0 alpha 1 for me. > > Regards, > Sar

Re: Pinax: worth installing?

2011-01-18 Thread Gath
Magee, Wow! Now thats what we call a response. You made me understand this subject more. Thanks a lot Magee. Gath. On Jan 18, 5:32 pm, Russell Keith-Magee <russ...@keith-magee.com> wrote: > On Tue, Jan 18, 2011 at 9:43 PM, Cal Leeming [Simplicity Media Ltd] >

Re: jQuery UI Stylesheet

2011-01-16 Thread Gath
- app Then my base.html; Hope this helps ... Gath On Jan 17, 6:26 am, Fletcher Haynes <kuroskni...@gmail.com> wrote: > Hello, > I'm having some trouble getting jQuery UI to work. It

Re: Total in a django template

2010-11-08 Thread Gath
Try using custom tags Create a folder called "templatetags" in your application folder, in there create two files __init__.py customtags.py# this will have your custom tags/filters, please note it can be any name. Open your customtags.py file and drop the following lines and save. from

Django in Depth

2010-10-06 Thread Gath
Guys, Please someone out there help me with a download link of James Bennett video on "Django in Depth" that was presented during pycon2010. All the links am getting don't have a download link. Thanks Paul -- You received this message because you are subscribed to the Google Groups "Django

Django regroup not working as expected

2010-10-05 Thread Gath
}} and {{ sale.qty }} in the inner loop shows nothing! Blank. What am i missing? Gath -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email

Django in Depth

2010-09-28 Thread Gath
Guys, James Bannett the release manager for Django gave a very comprehensive talk during Pycon2010, "Django In Depth". Where can i get that video for download. Download link please. Gath. -- You received this message because you are subscribed to the Google Groups "Djan

Re: Sample Django AppEngine App

2010-07-03 Thread Gath
://code.google.com/appengine/articles/django.html Gath On Jul 3, 12:40 am, Mak <mkhan1...@gmail.com> wrote: > I am completely new to Django. I am wondering if there is a sample > Django AppEngine application somewhere with explanation on how it is > setup? -- You received this mess

How do i test django ratings in my project?

2010-06-24 Thread Gath
Hi, I have installed django ratings application in my project http://github.com/dcramer/django-ratings Am wondering how best can i test my app voting functionality, because django ratings is only allowing me to vote only once for the same user, object and Ip address. Is there a way i can disable

Re: How to copy project folder from one folder location to another

2010-05-11 Thread Gath
Sorry, i fixed it! it was a case of wrong PYTHONPATH. Thanks. On May 10, 5:21 pm, Gath <pgath...@gmail.com> wrote: > Am using eclipse+pydev to build my django apps. I created a new > workspace, built a new pydev project then created an empty folder in > the new pydev project

How to copy project folder from one folder location to another

2010-05-10 Thread Gath
Am using eclipse+pydev to build my django apps. I created a new workspace, built a new pydev project then created an empty folder in the new pydev project. In that empty folder i imported my old django application. Eclipse copied all the files & folders from my old django location to the new

Coltrane application not appearing on the admin index page

2009-08-26 Thread Gath
db, the tables are created properly. Am using Django 1.1 Python 2.6 Windows Vista. What am i missing out. Gath --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, se

Re: Time & Date calculation in template

2009-05-13 Thread Gath
tting from the view that's calling the template. gath On May 13, 9:47 pm, Michael Radziej <m...@noris.de> wrote: > On Wed, May 13, Joshua Partogi wrote: > > Dear all, > > > Is it possible to do time and or date calculation in the template? > > > Let's say I have

Re: What debugger do you use?

2009-05-12 Thread Gath
I use pyDev for eclipse, i think its the best debugger for Python/ Django. Gath On May 12, 10:52 pm, "ristretto.rb" <ristretto...@gmail.com> wrote: > I second that!  WingIDE is aweome. > > I'm using NB with xdebug for PHP with one client, and WingIDE Pro > (which g

Re: New site: www.portaltotheuniverse.org

2009-04-24 Thread Gath
This is i darn so coo l!!! Man you guys are killing me with this stuff... This is such a coincidence; - Am i django developer - i love it - and am a fanatic of Astronomy... so i get to learn both topics which are so dear to my heart, all in ONE portal i have no words ... thanks. Gath On Apr 23

How to use JSON on my application

2009-04-19 Thread Gath
on my view! Please help Gath --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send em

JQuery Autocomplete in Django Not Working

2009-04-09 Thread Gath
GET http://127.0.0.1:8000/taglookup/?query=test 404 NOT FOUND JQuery-1.3.2.js (line 3633) Any ideas where am goofing? Gath --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

How do i use dojo in my Django application

2009-04-02 Thread Gath
All, I have downloaded Dojo 1.3, i want to start sampling some examples in the Dojo website using Django, where do i place the package? How do i call it in my template? Gath --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Django wont display images on my CSS file

2009-03-27 Thread Gath
is displayed! But when i directly inject the background style on my template it works perfect. What am i not doing right! Gath --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to

Django and WMD editor

2009-01-26 Thread Gath
Good people! How can i hook up WMD editor on my django form? http://wmd-editor.com Paul --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Where can i get a wiki formatting widget?

2009-01-24 Thread Gath
Guys Where can i get a wiki formatting widget for django? I have enough notes fields in my models and i would want a nice wiki widget for entering data! Paul --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

How do i display a count of items related to a model?

2009-01-22 Thread Gath
In Django how can i return the total number of items (count) that a related to another model, e.g the way stackoverflow.com does a list of questions then on the side it shows the count on the answers related to that question. This is easy if i get the questionid, i can return all answers related

Re: Empty object list!!!

2009-01-16 Thread Gath
}} Please someone explain to me the relationship btw Paginator and my models... Thanks all Paul On Jan 16, 7:45 pm, Gath <pgath...@gmail.com> wrote: > Roseman, > > Even after removing the attribute object_list, the answerobj still > does not return any length. > > Am st

Re: Empty object list!!!

2009-01-16 Thread Gath
Roseman, Even after removing the attribute object_list, the answerobj still does not return any length. Am still very stuck! Paul On Jan 16, 5:35 pm, Daniel Roseman <roseman.dan...@googlemail.com> wrote: > On Jan 16, 12:45 pm, Gath <pgath...@gmail.com> wrote: > > >

Empty object list!!!

2009-01-16 Thread Gath
Guys, I might be lazy or am blind! but the following code is returning ZERO! items, while very well i know there is some items in the list, View: def post_answer(request, quest_id=None): answer_list = Answer.objects.filter (questionis__pk=quest_id).select_related() ... # if a put a

Re: Instance Error when saving my form!!

2009-01-16 Thread Gath
Great Malcolm, it was supposed to be questionid_id! solved. But i wonder why for userid am not doing userid_id???, userid works well !!! hmm Paul On Jan 16, 2:19 pm, Gath <pgath...@gmail.com> wrote: > Guys > Am getting the following error message when try to save on my form

Instance Error when saving my form!!

2009-01-16 Thread Gath
Guys Am getting the following error message when try to save on my form: Cannot assign "U'1'": "Answer.Questionid" must be "Question" instance On my Answer Model questionid is Foreign field to the Question model defined as follows, Class Answer(models.Model):

Re: How do i combine a list and a form in the same page using django?

2009-01-16 Thread Gath
Yep! I've done what Malcolm has suggested, removed everything and added one section at a time, and i guess its behaving. The problem seems to lie with a "extends" tag and a css am using. Thanks guys. On Jan 16, 12:10 pm, Gath <pgath...@gmail.com> wrote: > Am buil

How do i combine a list and a form in the same page using django?

2009-01-16 Thread Gath
Am building a Q page, sort of stackoverflow.com kinda page! Am having a bit of a problem trying to render the form. Am pasing 3 objects to the template that renders the page i.e. Question object, Answers related to the question and Answer form object. In the first part of the page i want to

Using admin CSS in my project

2008-11-05 Thread Gath
All, Am new in django, but am just wondering if i wanted to make use of the nice css files in the admin site in my local project how would i do that? Am able to point the media url on my settings.py to the correct admin css folder, and actually my project is able to pick the css styles, but