Re: FileBrowser Test Version

2006-07-23 Thread patrickk
thanks, benj. I will update as soon as possible - still trying to install the svn-repository ... Am 23.07.2006 um 03:36 schrieb benj: > > Patrick, > Thanks for this great extension! > One snag I hit is that your code assumes we serve our admin media from > /media/, which I happen not to. I jus

Re: FileBrowser Test Version

2006-07-22 Thread benj
Patrick, Thanks for this great extension! One snag I hit is that your code assumes we serve our admin media from /media/, which I happen not to. I just ran ''' sed -i -e "s:/media/:/admin-media/:g" *html ''' in the templates dir, but this setting is already available in django.conf.settings.ADMIN_

Re: FileBrowser Test Version

2006-07-12 Thread patrickk
as mentioned before, I´m currently getting help from my hosting- provider. trac is already set up on our server - of course, help is still appreciated. Am 12.07.2006 um 16:42 schrieb favo: > > could anyone can help va:patrick.kranzlmueller to setup a open svn > trunk even with a trac system?

Re: FileBrowser Test Version

2006-07-12 Thread favo
could anyone can help va:patrick.kranzlmueller to setup a open svn trunk even with a trac system? It's very hard to communicte with feedback - upload - feedback... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dj

Re: FileBrowser Test Version

2006-07-12 Thread Phil Powell
Still having trouble with those thumbnails Patrick: Seems that whenever I click on the thumbnail link, or the "delete" link, a blank filebrowser index page is returned to me. The URL seems to be formed properly in the form: /admin/filebrowser/makethumb/my_file.jpg Seems to be rendering the res

Re: FileBrowser Test Version

2006-07-12 Thread Niels
Great stuff, a big thank you. One proposition to add to views.py just below the variable declaration block: for (k,v) in EXTENSIONS.items(): for e in v[:]: v.append(e.upper()) which makes extension lookup work for uppercase as well. And one glitch that occurs on winXP/IE6: An extra

Re: FileBrowser Test Version

2006-07-12 Thread patrickk
makethumb works for me - although the makethumb-image is not displayed correctly (I´ve already changed that). change line 170 of filebrowser/views.py from path_to_file = '/media/img/filebrowser_Thumb.gif' to path_to_file = '/media/img/filebrowser/filebrowser_Thumb.gif' note: our hosting-provid

Re: FileBrowser Test Version

2006-07-12 Thread Phil Powell
Thanks for the update Patrick. I've got this part working, but having trouble with makethumb on existing files on the server - not had time to delve too deeply yet to see what the problem is though. -Phil On 11/07/06, va:patrick.kranzlmueller <[EMAIL PROTECTED]> wrote: > > a new version of the

Re: FileBrowser Test Version

2006-07-11 Thread va:patrick.kranzlmueller
a new version of the filebrowser is available for download. CHANGES: 001: You may define an initial directory for each FileBrowseField by adding a path to the help_text: Like "FileBrowser: /images/blog/" or "FileBrowser: /documents/pdf/". 002: Sorting algorithm also works with Python 2.3 now

Re: FileBrowser Test Version

2006-07-11 Thread va:patrick.kranzlmueller
thanks. I will take a look at the bugs mentioned by archatas - so there'll probably be a new version for download later today. SVN: I´ve never worked with SVN (well, besides using django), no idea how to do the setup. It´d be very useful but I don´t have the time to digg into that right no

Re: FileBrowser Test Version

2006-07-11 Thread Phil Powell
This is fantastic stuff! I'll be taking a look at testing it out and possibly implementing for a current project (thousands of image files to manage). Any plans for a SVN address? -Phil On 08/07/06, patrickk <[EMAIL PROTECTED]> wrote: > > today we´ve finished the test version of our django fil

Re: FileBrowser Test Version

2006-07-11 Thread Archatas
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 Pytho

Re: FileBrowser Test Version

2006-07-10 Thread patrickk
yes, working on that one ... Am 09.07.2006 um 15:39 schrieb favo: > > It's very cool, open svn address is better:-) > > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to th

Re: FileBrowser Test Version

2006-07-09 Thread Panos Laganakos
Great Job mate, thanks for releasing. --~--~-~--~~~---~--~~ 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

Re: FileBrowser Test Version

2006-07-09 Thread favo
It's very cool, open svn address is better:-) --~--~-~--~~~---~--~~ 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,

Re: FileBrowser Test Version

2006-07-08 Thread Jorge Gajon
Wow, thank you this is fantastic. It's highly probable that I'll use this soon. When I do, I'll make sure to give you feedback and contribute back with something of course. Thank you for releasing this, it will be very useful for a project we will work on soon. Cheers, Jorge On 7/8/06, patri