Re: full-text indexing

2007-08-08 Thread Gábor Farkas
Jarek Zgoda wrote: > I don't know what do you mean by "transactions" in case of full-text > search engine as it doesn't do any multi-step updates (only single- > step deletes or inserts in case of PyLucene). > > Anybody who wants to use PyLucene, be aware that you cann't embed (iow > "use",

Re: mod_python/django problems

2007-08-06 Thread Gábor Farkas
Jacob Kaplan-Moss wrote: > On 8/3/07, Aljosa Mohorovic <[EMAIL PROTECTED]> wrote: >> on few blogs/web sites it is stated that > 30 django sites on one >> server running apache/mod_python have some issues, like untraceable >> errors and wrong site displaying for some domain. >> any comments on

Re: mod_python/django problems

2007-08-06 Thread Gábor Farkas
Matt Davies wrote: > We've got over 70 sites running on lighttpd, no problems at all. > with fastcgi/flup? gabor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

database replication/failover...

2007-08-06 Thread Gábor Farkas
hi, how do/did you approach/solve the "what happens if the database (server) dies?" problem? what kind of replication/failover solutions do you use? (i'm primarily interested in postgres..) i'm not talking about database-replication solutions for performance reasons (scaling etc..). i

Re: mod_python, multiple django-sites, memory usage

2007-07-24 Thread Gábor Farkas
Graham Dumpleton wrote: > On Jul 24, 6:28 pm, Gábor Farkas <[EMAIL PROTECTED]> wrote: >> hi, >> >> how does it work exactly, when i have multiple django sites running in >> one apache server using mod_python? >> >> for example, imagine that i have 10

mod_python, multiple django-sites, memory usage

2007-07-24 Thread Gábor Farkas
hi, how does it work exactly, when i have multiple django sites running in one apache server using mod_python? for example, imagine that i have 10 django sites running in one apache server. does that mean, that in every apache process, i have 10 python interpreters loaded? or in other

Re: nasa site on django

2007-07-04 Thread Gábor Farkas
Jeremy Dunck wrote: >> Frankly I think a generic python application server similar to tomcat >> would do a world of good for python apps in general. Something similar to >> cherrypy... but this is beyond the responsibilities of the django community >> which have plenty great work left. > >

newforms-stability, django0.96

2007-06-21 Thread Gábor Farkas
hi, i have to add some forms to our django0.96-using application. until now i used oldforms. are the newforms the recommended way to go with django0.96? thanks, gabor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: Mysql sleeping queries

2007-06-19 Thread Gábor Farkas
David Reynolds wrote: > Malcolm, > > On 19 Jun 2007, at 8:09 am, Malcolm Tredinnick wrote: > >> It would be interesting to know if anything prior to [5482] (that's >> 5482, not 5492) works. There was a very large change in [5482] that >> should be mostly invisible but may have some side-effects

Re: WYSIWYG-editior in django

2007-06-19 Thread Gábor Farkas
yarovit wrote: > Hello. How to connect FCKeditor to django? > there is some documentation about how to use the Dojo and the TinyMCE wysiwyg editors with django, maybe those help. go to code.djangoproject.com, search for "wysiwyg", and you should get the relevant links. gabor

Re: Mysql sleeping queries

2007-06-18 Thread Gábor Farkas
David Reynolds wrote: > Morning, > > We are experiencing a problem with Mysql with django. Since an svn up > yesterday (which seems to be revision 5492) we have lots of sleeping > (hanging) mysql processes and we keep hitting our limit of processes > (which we weren't doing before). Anyone

Re: recommendations for hosts

2007-06-18 Thread Gábor Farkas
shabda wrote: > Hi, > > What host do you people recommend for hosting a small-medium traffic > django site. Its just a hobby hobby site so I dont want too costly a > host, but since this is the first django app I would be hosting, I > would prefer a host with reasonable support and one which

Re: User profile views - Does something like this make sense?

2007-06-18 Thread Gábor Farkas
zenx wrote: > I want to show the user the latest users that have seen his profile. > So everytime a logged user views another user's profile a ProfieView > object is stored in the database (or the date is updated if the user > that is viewing the profile has already viewed it before). I know this

Re: get subversion revision-number in a django-project

2007-06-16 Thread Gábor Farkas
Udi wrote: > Mind if I ask why? > i've got the idea from here: http://www.thinkvitamin.com/features/webapps/serving-javascript-fast the idea is that you serve all your media files (js/css/png/jpg) at urls that contain for example the svn version number, like: /media/1432/js/form.js and you

get subversion revision-number in a django-project

2007-06-15 Thread Gábor Farkas
hi, in my project i need to get the svn-revision-number of the project somehow. in other words, i need to be able to find out my project's revision number in python (i am not talking about django's revision-number. i'm talking about my own revision number) the best way i could find is to

Re: json serializing without certain fields

2007-06-01 Thread Gábor Farkas
web-junkie wrote: > Hi > how can I get JSON out of my Django object without having certain > fields in there for obvious reasons? > I found solutions like serializers.serialize("json", > Something.objects.all(), fields='myfield' ) > which do not work, there's also a ticket on that >

Re: Too many queries generated by ChangeManipulator

2007-06-01 Thread Gábor Farkas
Russell Keith-Magee wrote: > On 6/1/07, char <[EMAIL PROTECTED]> wrote: >> Obviously, the performance deteriorates rapidly as the number of >> GamesOfInterest added to a Profile increases. Is there any way to >> avoid this? > > This is a known problem, and one of the many reasons that the forms

Re: Checking group permissions in template code

2007-05-31 Thread Gábor Farkas
vida wrote: > After reading the docs and looking for posts relating this problem > here and in .developers, I found no "standard" way of checking for a > user's group permissions in the templates. > > So what I did is to add the following method to auth.models.User > (yeah, yeah, it *should* be

Re: single-sign-on

2007-05-30 Thread Gábor Farkas
David Larlet wrote: > 2007/5/29, Gábor Farkas <[EMAIL PROTECTED]>: >> hi, >> >> i probably will have to implement a single-sign-on (SSO) solution for >> several django-based intranet web-applications. >> >> i looked into the mailing list archives, and

single-sign-on

2007-05-29 Thread Gábor Farkas
hi, i probably will have to implement a single-sign-on (SSO) solution for several django-based intranet web-applications. i looked into the mailing list archives, and found this: http://blog.case.edu/bmb12/2006/12/cas_for_django_part_2 it uses CAS

non-cascading delete?

2007-04-19 Thread Gábor Farkas
hi, i'm trying to somehow limit my users to non-cascading deletes. the problem is the following: when you delete() something in django, it deletes also all the related objects. i do not want this. i'd like to find a way, which TRIES to delete the object, and if not possible

Re: cyrillic text garbled if used as question in polls example

2006-12-11 Thread Gábor Farkas
Anton Daneika wrote: > Well, I tried this conf modification. > Before it I could do > mysql> insert into polls_poll (`question`, `pub_date`) values ('Часто > ли у вас возникают проблемы с кирилицей?', NOW()); > > Then the select statement would produce a correct cyrillic output, but > after

Re: forcing UTF8 data inside django

2006-12-11 Thread Gábor Farkas
Victor Ng wrote: > Hi all, > > The unicode problem seems to creep up in this list a lot, so here's > what I've done to solve my problems. > > My particular problem is that I need to be able to deal with Unicode > data in the URLs as well as the regular request GET/POST data. > > This is a

Re: Django + FastCGI Problems

2006-11-28 Thread Gábor Farkas
Uros Trebec wrote: > On Nov 27, 6:55 pm, "Uros Trebec" <[EMAIL PROTECTED]> wrote: > >> ATM, if I go to "http://localhost:8484/django.fcgi; I only get "403 >> Forbidden" response. > > OK, nevermind... I had to run "django-fcgi.py" too. > http://manuals.textdrive.com/read/book/15 > >> Now, how

Re: Django or TurboGears for a new survery application?

2006-11-05 Thread Gábor Farkas
Matt Culbreth wrote: > Hello Friends, > > I'm beginning a new project for a client and I'm going to use either > Django or TurboGears. I'd like to get some feedback from this group on > the direction I should take. > > > > > So, based on this, my initial leaning had been to go to

Re: Index of an item in a QuerySet

2006-11-01 Thread Gábor Farkas
Frankie Robertson wrote: > On 01/11/06, Gábor Farkas <[EMAIL PROTECTED]> wrote: >> samuel wrote: >>>>> I'm probably just not seeing it, but how do I go about getting the >>>>> index of an item in a query set? I.E., this article is the Xth article >

Re: Index of an item in a QuerySet

2006-11-01 Thread Gábor Farkas
samuel wrote: >>> I'm probably just not seeing it, but how do I go about getting the >>> index of an item in a query set? I.E., this article is the Xth article >>> in this queryset of articles sorted by date. >> If you're looping through them in the template with the 'for' tag, >> each time

Re: postresql: CREATE UNIQUE INDEX unnecessary (duplicate)?

2006-10-25 Thread Gábor Farkas
Kenneth Gonsalves wrote: > > On 25-Oct-06, at 4:06 PM, Kenneth Gonsalves wrote: > >>> hmmm.. which db version? >> postgresql 7.4.x on debian sarge > > and to add - my sqlall does not create an index for unique=True. It > leaves it to postgresql > maybe it's a misunderstanding... it also

Re: postresql: CREATE UNIQUE INDEX unnecessary (duplicate)?

2006-10-25 Thread Gábor Farkas
Kenneth Gonsalves wrote: > > On 25-Oct-06, at 3:21 PM, Gábor Farkas wrote: > >> === >> Indexes: >> "fileman_filemanager_pkey" PRIMARY KEY, btree (id) >> "fileman_filemanager_name" UNIQUE, btree (name) >&

postresql: CREATE UNIQUE INDEX unnecessary (duplicate)?

2006-10-25 Thread Gábor Farkas
hi, imagine the following model: === class FileManager(Model): name = SlugField(maxlength=100,unique=True) directory = CharField(maxlength=500) = the sqlall for it looks like this: == BEGIN; CREATE TABLE "fileman_filemanager"

Re: Best configuration for small VPS

2006-10-25 Thread Gábor Farkas
orestis wrote: > Anyway, I'm interested in minimizing memory usage. > > > > I'll have to figure out why I have 10 mysqld instances eating 45M out > of 64M of memory. maybe you could try to use sqlite as the database? (no idea about it's memory usage, but i would expect it to be smaller

long-running process. how to do it?

2006-10-05 Thread Gábor Farkas
hi, i have the following "problem". in my django app, at some point i have to send out a LOT of emails (several thousand). this sending takes a long time, so an usual web based approach (click the send-button, send the mail, and show the response to the user) does not work, because the

Re: Unicode and django/db/backends/util.py

2006-10-04 Thread Gábor Farkas
Malcolm Tredinnick wrote: > On Tue, 2006-10-03 at 22:26 -0700, Beau Hartshorne wrote: >> On 3-Oct-06, at 7:36 PM, Malcolm Tredinnick wrote: >> >>> So this is the value that the string has right at the moment the >>> exception occurs? Can you paste the traceback you see, please (and >>> preferably

Re: "slice" xhtml content and keep it valid xhtml?

2006-09-27 Thread Gábor Farkas
Luke Plant wrote: > On Wednesday 27 September 2006 08:09, Gábor Farkas wrote: > >> i have the following problem: >> >> >> in a page-template, i have to display the first 100 characters of >> some html content. >> >> the problem is, that

SlugField is not unique?

2006-09-27 Thread Gábor Farkas
hi, i've just checked and SlugField does not imply unique=True. i somehow always assumed that it does. so before i go and add the unique=True to all my SlugFields, is there any reason to have non-unique SlugFields? as far as i understand, SlugFields are mostly used in URLs which imho

"slice" xhtml content and keep it valid xhtml?

2006-09-27 Thread Gábor Farkas
hi, i have the following problem: in a page-template, i have to display the first 100 characters of some html content. the problem is, that if i simply slice the html-content as if it were plaintext, then sometimes some tags get cut in the half etc... so, is there a way to do this slicing

get the content-type in a template?

2006-09-26 Thread Gábor Farkas
hi, i many times use the object's content-type's "model" attribute, when generating URLs for certain actions. and i many times need to get the given object's content-type in the template. unfortunately i haven't found any way to do it, so i: - either do it in the view - or i add a

Re: HTTP response-code for missing querystring?

2006-09-22 Thread Gábor Farkas
Malcolm Tredinnick wrote: > On Fri, 2006-09-22 at 15:28 +0200, Gábor Farkas wrote: > [...] >> in this case, technically the user should not be able to have the url >> without the querystring, except if he is playing with the url :) >> >> i mean "what is the m

HTTP response-code for missing querystring?

2006-09-22 Thread Gábor Farkas
hi, imagine that you have a view function, that requires a parameter in the querystring. for example, it needs to have: http://foo.com/bla/?param=15 now, what should happen if it gets: http://foo.com/bla/ ? in this case, technically the user should not be able to have the url without the

non-cascading delete?

2006-09-12 Thread Gábor Farkas
hi, as far as i understand, when you delete an object in django, it also deletes all the objects that reference it. is there a way to only delete the object, and get an exception if other objects reference it? thanks, gabor --~--~-~--~~~---~--~~ You

Re: Dojo Editor2 invocation from Django

2006-09-06 Thread Gábor Farkas
Gloria wrote: > Hi there. I found this nifty when I searched for Django and Dojo: > > http://code.djangoproject.com/wiki/AddDojoEditor > > The thread on this link is closed, so I am starting a new one. > > Please explain how I invoke this code. I am fairly new to Django, and > I've avoided

Re: foreignKey + manipulator...performance problem, SOLVED

2006-08-31 Thread Gábor Farkas
[EMAIL PROTECTED] wrote: > What do you mean with "2000 thing objects"? Are there 2000 records in > the database for that table, or did you have 2000 records in memory at > runtime? > if you don't use raw_id_admin, then (from my understanding at least), the manipulator loads all of them into the

Re: Unicode, unicode, more unicode

2006-08-25 Thread Gábor Farkas
Sean Schertell wrote: > Fweeew!!! > > That's really good news. I'd have been really disappointed if I > couldn't do these sites in django. Hooray! > yes, as others already said, if you do not need to "work with" those strings, you can just set everything (page-templates, database) to

Re: Django 0.95 on Dreamhost

2006-08-24 Thread Gábor Farkas
Apple wrote: >> hmm.. let's try the following. >> >> 1. take the 2 files attached to this email. >> >> 2. put them to some folder on dreamhost that's accessible from the outside. >> >> 3. now go to that folder using your browser. >> >> 4. click on the test.fcgi file >> >> >> does it work? >> >>

Re: Django 0.95 on Dreamhost

2006-08-16 Thread Gábor Farkas
Apple wrote: > >> generally this means that you should put in some url-rewriting... > > Do you mean url rewriting in my url.py or in my .htacess? > > I've tried removing the .htacess file and directly accessing the fcgi > file. It still generates a 500 Error. At this point I have not a clue >

Re: Django 0.95 on Dreamhost

2006-08-14 Thread Gábor Farkas
Apple wrote: > Hi has anyone tried running Django 0.95 on Dreamhost? I only tried to > setup a simple project following the dreamhost's wiki. I am getting a > string index out of range exception on common.py: hi, generally this means that you should put in some url-rewriting... just for the

Re: MySQL UnicodeEncodeError

2006-08-08 Thread Gábor Farkas
Wade Leftwich wrote: > Gábor Farkas wrote: >> Niran Babalola wrote: >>> I've been developing a Django application using SQLite, and now I'm >>> trying to move over to MySQL and actually launch the site. The >>> application is storing data from RSS/Atom feeds us

Re: MySQL UnicodeEncodeError

2006-08-08 Thread Gábor Farkas
Niran Babalola wrote: > I've been developing a Django application using SQLite, and now I'm > trying to move over to MySQL and actually launch the site. The > application is storing data from RSS/Atom feeds using Universal Feed > Parser, which uses unicode strings for all its data. When I try to

Re: Using custom forms with generic views

2006-08-08 Thread Gábor Farkas
jeffmikels wrote: > Thanks for your help. I ended up creating a view to do the work. If the > data is simple enough and just plain text, is there a compelling reason > to use AddManipulator or other manipulators instead of just > object.save()? > > hi, for example, if you want to validate

Re: Is AJAX Alone Reason to Use TG?`

2006-08-03 Thread Gábor Farkas
James Bennett wrote: > On 8/2/06, gabor <[EMAIL PROTECTED]> wrote: >> django does not force you to use the django-templating-system (you can >> use myghty/zope-tal/whatever instead), but it clearly recommends the >> django-templating-system, and that's the system which is the most >>

Re: json serialization

2006-07-31 Thread Gábor Farkas
Jyrki Pulliainen wrote: > 2006/7/31, Gábor Farkas <[EMAIL PROTECTED]>: >> >> datetime.datetime inherits from datetime. >> > > Definetly not > sorry, of course i meant "datetime.datetime inherits from datetime.time" gabor --~--~-~--~-

Re: json serialization

2006-07-31 Thread Gábor Farkas
siniy wrote: > Hi all, > I've downloaded today a new release of Django and played with json > serialization. I found that if you use DateTime field the resulting > json string contains only date, but not all datetime. So I viewed a > source code of django/core/serializers/json.py and found that:

apache, fastcgi, auto-reload?

2006-07-13 Thread Gábor Farkas
hi, (yes, i know that the devel-server does auto-reload) i'm using apache with fastcgi with flup with django. is there a way to somehow have my source-code changes cause a reload? (so that i do not have to restart the fastcgi server (or apache) after every source-code change?) thanks,

Re: Django & Apache 1.x

2006-07-06 Thread Gábor Farkas
Carlos Yoder wrote: > * Important * > > Does anyone know if Django will run on a config with Apache 1.x + > FastCGI, but without flup? At servage.net they just told me that they > don't support flup "because of high memory usage", so I don't know > what to do. > > I'll be most obliged if anyone

Re: Django & Apache 1.x

2006-07-04 Thread Gábor Farkas
Carlos Yoder wrote: >>> Can anybody confirm having a Django app running under Apache 1.x + >>> FastCGI? Is this actually a silly question, since let's say Dreamhost >>> gives only Apache 1.x support? :-) >> i have a website served by apache 1.x + fastcgi. no problems. >> >> gabor > > Thank you

Re: Cutting output of flup's FastCGI server

2006-06-20 Thread Gábor Farkas
PythonistL wrote: > Hello Ivan, > It is intereresting. > But why do you use/prefer FastCGI to mod_python ? > I am asking because I used for my Django apps FastCGI with Dreamhost > but a lot of problems - Apache server used to hang when there were a > lot of visitors. Now I switched to mod_python

Re: going crazy: foreignkey-reverse-lookup: tests work,my code fails

2006-06-15 Thread Gábor Farkas
James Bennett wrote: > On 6/14/06, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: >> Yeah, sorry about that. We really need to fix this. :-( >> >> But it's not entirely trivial from what I remember last time I dived in >> there. > > Better to let Guido and company fix relative imports in Python,

Re: Tips for integrate pyLucene in django?

2006-06-09 Thread Gábor Farkas
Ian Holsman wrote: > another option you might want to look at is using SolR - http:// > incubator.apache.org/projects/solr.html , which is a search server > which uses lucene. > you could then use a regular HTTP client to communicate with it. great, thanks for the link... have you tried

capistrano/switchtower python equivalent?

2006-06-06 Thread Gábor Farkas
hi, is there something similar to Capistrano (http://wiki.rubyonrails.com/rails/pages/Capistrano) in python? what i'm looking for is a tool which i can configure to do the release-process automatically.. mostly things like: - checkout the newest version of the source code on all the servers

non mod-python deployment...any experiences? (dedicated server)

2006-05-02 Thread Gábor Farkas
hi, is anyone running django using fastcgi/scgi/lighttpd or anything else that is not the standard apache+mod_python configuration? at work i will have to release a new site using django, and for various reasons apache2 + mod_python might not be possible. i've heard many complaints here

"fake"/custom Package/ContentType. is it dangerous?

2006-04-18 Thread Gábor Farkas
hi, i'm working on a django project, where 99% of the functionality is provided by the admin module. but for that 1%, i have the following problem: i have some pages, that are purely views. they are not backed by any django models. but i'd like to reflect any change to them into the

Re: TEMPLATE_DIRS relative to project?

2006-04-18 Thread Gábor Farkas
Nebojsa Djordjevic wrote: > jrs wrote: >> Then I just exclude settings_env.py from the rsync command that posts >> the site. I also have my database, base_url, cache and any other >> environment specific configuration there. Works like a charm. > > I would recommend using subversion or another

Re: UNICODE database API How to

2006-04-18 Thread Gábor Farkas
> =Department(department=matches[1].encode('utf-8','replace') hi, you can remove that ['replace']. there shouldn't be any unicode character that cannot be represented in utf-8, so the error-condition for which you specify the behaviour is never going to happen. gabor

Re: Djangoproject site and documentation

2006-03-23 Thread Gábor Farkas
[EMAIL PROTECTED] wrote: > Right now I cant get access to djangoproject.com. > > And, as I know, its global problem. > > Is there any other place, where i get django documentation right now? http://www.nekomancer.net/djangodoc/index.html they're the text-version docs, and it's only there for

Re: Attn. Dreamhost users

2006-03-08 Thread Gábor Farkas
Amit Upadhyay wrote: > On 3/8/06, *PythonistL* <[EMAIL PROTECTED] > wrote: > > But how can I kill ALL of them? > One by one something like: > kill processNumber > ? > > > pkill is your friend. > > I use "pkill -9 python2.4" on abovenet for most code

Re: only show something(form) if javascript-enabled

2006-02-21 Thread Gábor Farkas
Brett Parker wrote: > On Mon, Feb 20, 2006 at 10:36:38PM +, Graham King wrote: >> You could make the form invisible using css: >> >> #theFormId { >>display: none; >> } >> >> then use Javascript to change this to display = block. If they don't >> have Javascript the form won't appear.

recommended javascript books/tutorials/howtos?

2006-02-14 Thread Gábor Farkas
hi, i'd like to increase/enhance my javascript knowledge, which right now is rather limited (zero?) :) so, are there are books/websites you can recommend? i'm primarily interested in the application of javascript to the webpages, so DOM manipulation and things like that. of course i am

imagefield, admin, wrong link

2006-01-19 Thread Gábor Farkas
hi, i have an ImageField in a model. when i use the admin interface, everything is fine, except one thing: the ImageField part consists of: == Currently: LINK Change: == and the LINK is wrong. it's content is ok, but the HREF is empty. example: Currently: logos/firstlogo.png

custom form, validation, is there an easier way?

2006-01-13 Thread Gábor Farkas
hi, i am implementing a VERY simple usermanagement screen for the admin view. functionality: create new user, change existing user, delete user. for an user, the following data is "available": username, password, groups. so when they create/change an user, they can change the username,

Re: Django admin Chinese character problem.

2006-01-11 Thread Gábor Farkas
Jeroen Ruigrok van der Werven wrote: For my Japanese<>Dutch dictionary project I didn't have to do anything fancy. Only thing I had added to my base template is: Nothing else is/was needed. i understand you. but the code mr. Gonsales quoted did not do anything with the webpage (at least

Re: Django admin Chinese character problem.

2006-01-11 Thread Gábor Farkas
Kenneth Gonsalves wrote: On Wednesday 11 Jan 2006 5:46 pm, Gábor Farkas wrote: event = events.get_list()[0] title = event.title.decode('utf8') why do you need this? dont you set the utf8 in the template/webpage itself? ? :) if i want to work with the title, i HAVE

Re: Django admin Chinese character problem.

2006-01-11 Thread Gábor Farkas
Albert Lee wrote: I use uft-8 encoding, and in admin page, when I insert a record, the Chinese character will become ? hi, i am not sure what exactly are you trying to do, here is what i did as a quick test. my config: postgresql-8.0. database created as UNICODE (which in case of

Re: Django screencast

2005-12-13 Thread Gábor Farkas
Tom Dyson wrote: I've made a short screencast which introduces some of Django's key concepts: http://www.throwingbeans.org/django_screencasts.html btw. isn't it funny, that virtually all web-app screencasts (ruby on rails, turbogears, django) are done on mac osx? :) i sometimes wonder if

Re: Django screencast

2005-12-13 Thread Gábor Farkas
Tom Dyson wrote: I've made a short screencast which introduces some of Django's key concepts: http://www.throwingbeans.org/django_screencasts.html It's intended as a demonstration, rather than a tutorial, and in the course of building a simple CMS in seven minutes, it covers quite a lot of

Re: how do you pronounce 'Django'

2005-09-26 Thread Gábor Farkas
Jacob Kaplan-Moss wrote: On Sep 26, 2005, at 6:46 AM, Gábor Farkas wrote: how do you pronounce 'Django'? Have you checked the FAQ? http://www.djangoproject.com/documentation/faq/#what-does-django-mean- and-how-do-you-pronounce-it thanks. ;(( my second didnt-check-the-faq mistake