FileBrowser 3.4 is compatible with Django 1.3 and Grappelli 2.3.
With version 3.4 of the FileBrowser, the code has been moved to GitHub. We did a major code cleanup and the performance has been improved. Custom actions have been added and the flash-based uploader has been replaced with an ajax-uploader.
Due to the new FileBrowser sites, adding the filebrowser url-pattern has changed compared with previous versions.
Instead of:
urlpatterns = patterns('',
(r'^admin/filebrowser/', include('filebrowser.urls')),
)
you now need to define the urls like this:
from filebrowser.sites import site
urlpatterns = patterns('',
url(r'^admin/filebrowser/', include(site.urls)),
)