Very nice, but there are some gotchas/bugs: 1. to make it work on Python 2.3, you need to change line 198 in views.py file_list.sort(cmp, lambda x: x[int(o)]) to file_list.sort(lambda x, y: cmp(x[int(o)], y[int(o)])) (sort method takes only the comparisson function as a parameter in Python 2.3)
2. The links in the admin breadcrubs are not relative as in the original admin, therefore I need to change all templates if I have my django project in some directory instead of in the root of the domain. 3. If I upload an image to the root of uploads, the thumbnail isn't showed, because of additional slash in the path that is added next to the dir_name which doesn't exist. I think, you should also check whether dir_name is set at all, and only then add that slash at the end. 4. It works in Firefox, but it seems a little bit strange and may not work in other browsers, because all the uploaded images are being accessed with additional slash at the end of the URL. That were my notices. But on the whole, great work! Aidas Bendoraitis [aka Archatas] patrickk wrote: > today we´ve finished the test version of our django filebrowser. > > some screenshots are here: > http://www.vonautomatisch.at/django/filebrowser/ > > you can download the filebrowser here: > http://www.vonautomatisch.at/django/filebrowser/FileBrowser.zip > > installation shouldn´t take more than 5-10 minutes. > requirements: we are using PIL to create the thumbnails. > > this version is for testing (although we´re already using it). I hope > that some of you will find the time to install the filebrowser. > feedback is more than welcome. > > thanks, > patrick --~--~---------~--~----~------------~-------~--~----~ 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 email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---