Re: off-topic: filebrowser svn setup

2006-11-05 Thread Guillermo Fernandez Castellanos
As I've seen in other projects, people tend to put their template and media folders in the same directory as their application. Then people can symlink those directories to wherever they want. So, like this: filebrowser/trunk/ filebrowser/trunk/filebrowser filebrowser/trunk/filebrowser/models.py

Bugs in karma code

2006-10-21 Thread Guillermo Fernandez Castellanos
Hi, I know it's going to be rewritten soon. And I know I should launch the basic test cases before sending a patch. But to be honest, I've tried to launch the tests without much success (i.e. I could not launch them...). Furthermore I would like to be sure I'm not wrong before contributing a patc

Re: feature request: Bonjour support

2006-10-17 Thread Guillermo Fernandez Castellanos
Hi, There is a pyzeroconf module [1] and it seems pretty easy to use [2]. Just find in the code where it does assign the IP address, and insert the 15 lines you need to advert the service. Should be pretty easy. Now, the problemis, Django tries to use as little dependencies as possible, and this

Re: Proposal: Django Apps & Project Repository (again)

2006-08-23 Thread Guillermo Fernandez Castellanos
Hi, I would find already really useful something like a database with, for each project a name, description, type of application (middleware,... or maybe blog, photo manager,...) and a link to the project page (or blog entrance). All this should have a search function. This could replace a lot o

Re: Help needed creating a blog archive.

2006-06-20 Thread Guillermo Fernandez Castellanos
Hi, Why not use Generic Views? http://www.djangoproject.com/documentation/generic_views/ It answer all the needs you can have for an archive: it organizes posts by year, month, day, individual post,... Have also a look at: http://www.rossp.org/blog/2006/jun/08/django-blog-redux/ Enjoy, G On