Без опису
Ви не можете вибрати більше 25 тем Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. \mainpage Lodel 2 documentation
  3. Lodel2 has two modes of operations : a standalone one, in that case Lodel2 is a customized CMS or and one, multisite case, in which it can be seen as a manager of CMS.
  4. Lodel2 has to perform 2 distinct tasks : to produce sites (cms), and to be a site.
  5. Plus, in the case of multisite install, it has to manage the produced sites.
  6. 2 parts :
  7. - Editorial Model, whom the goal is to describe the structure of the content managed by the instance. This Editorial Model has to be built, and has to produce the python code which will represent the content.
  8. - LeAPI, which is a python API to manipulate the objetcs created by the first part.
  9. In case of multisite install the manager of the sites is a lodel site itself, like the others, with a adapted Editorial Model.
  10. Editorial Model part
  11. ====================
  12. To represent the content we have :
  13. - Classes, the [EmClass](@ref lodel.editorial_model.components) module, it is a fields container which is named.
  14. - Fields, the [emField](@ref lodel.editorial_model.components) module
  15. These two modules are the components (see [EmComponent](@ref lodel.editorial_model.components)) of the content.
  16. In order to organize the different Editorial Models (for the different sites) from a single one, we have set up a system of groups,
  17. the [EmGroup](@ref lodel.editorial_model.components). This system allows each site to activate or not certain groups.
  18. A EmGroup can be seen as a EmClass end EmField named container.
  19. Some groups can depend of other groups.
  20. This means that if EmGroup A is selected and it depends of EmGroup B, it must also be activated.
  21. CMS part
  22. ========
  23. The Editorial Model, in fact, is the configuration of a lodel site, the cms.
  24. The produced CMS are instances of Lodel2.
  25. To manipulate the content (which is EmClass ) we have the [LeObject](@ref lodel.leapi.leobject) API. This class allows CRUD operations on content objects. To perform these operations it uses [LeQuery](@ref lodel.leapi.lequery) API, the bridge with the datasource.
  26. Datasources are [plugins](@ref lodel.plugin.plugins), like interfaces (IHM, cli, ...), extensions, scripts, session handlers.
  27. Plugins part
  28. ============
  29. A lodel2 instance is an API. To produce a running application, we need plugins.
  30. Several types of plugins are mandatory : datasource, interface for now.
  31. LeFactory - Migration Handler
  32. =============================
  33. */