Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

maindoc.py 1.5KB

12345678910111213141516171819202122232425262728
  1. #-*- coding: utf-8 -*-
  2. ## @mainpage
  3. #
  4. # @section lodel_general_description General Description
  5. # Lodel is a web publishing system which is configurable to one's specific needs. It is a member of the content management systems' category.
  6. #
  7. # In its 2.0 version, it is composed from a main package, called "lodel" which contains all of its core packages and modules.
  8. #
  9. # @section lodel_core_components Core Components
  10. # The application contains the following packages in its core :
  11. #
  12. # - lodel.auth : the authentication system used to deal with the users' sessions
  13. # - lodel.editorial_model : a package containing all the tools to read/write/update an editorial model
  14. # - lodel.leapi : the main API that will be used to access the documents' data
  15. # - lodel.plugin : a plugin manager (with modules to deal with the hooks, the scripts, the options, etc ... brought in by each plugin)
  16. # - lodel.plugins : this package is used to store all the plugins that are added in Lodel
  17. # - lodel.settings : the settings management tools
  18. # - lodel.utils : several small tools that are useful and common to several core modules
  19. #
  20. # Aside from that, there are core modules :
  21. # - lodel.context : the context manager (used for the multisite functionality)
  22. # - lodel.logger : a global logging tool
  23. #
  24. # @section one_code_and_multiple_websites One code and multiple websites
  25. # Lodel can be used to manage one or many websites using the same core code. Each website will have its own activated plugins,
  26. # editorial model options and settings, all managed by the context manager.
  27. #