sveedocuments

Django application to manage documents in ReStructuredText
Download

sveedocuments Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Price:
  • FREE
  • Publisher Name:
  • David Thenon
  • Publisher web site:
  • https://github.com/sveetch/

sveedocuments Tags


sveedocuments Description

sveedocuments is a Django app to manage text documents. It work almost like a Wiki except the collaborative way.Internationalization and localizationThis application make usage of the Django internationalization system, see the Django documentation about this if you want to add a new language translation.InstallIn your projectSettingsFirst, register the application and his dependancies in your project settings like this :INSTALLED_APPS = ( ... 'mptt', 'crispy_forms', 'autobreadcrumbs', 'djangocodemirror', 'sveedocuments', ...)Then you have to add the context processor of autobreadcrumbs in your settings :TEMPLATE_CONTEXT_PROCESSORS = ( ... 'autobreadcrumbs.context_processors.AutoBreadcrumbsContext', ...)Application settingsAll default app settings is located in the settings_local.py file of sveedocuments, you can modify them in your project settings.Note: All app settings are overwritten if present in your project settings with the exception of dict variables. This is to be remembered when you want to add a new entry in a list variable, you will have to copy the default version in your settings with the new entry otherwise default variable will be lost.UrlsYou have to add the application urls to your project, for this the easy way is to include the shipped urls like this :urlpatterns = patterns('', ... (r'^documents/', include('sveedocuments.urls')), ...)If needed you can change the mounting directory documents/ to another. For more possibilities you can define your own urls for sveedocuments views. (More details to come)Database synchronizationThe application is now installed in your project, you just need to add his tables to your database, you have to do this with the django-admin command line :django-admin syncdbProduct's homepage


sveedocuments Related Software