Fork de wikipp, le moteur de wiki en c++, basé sur cppcms. Le fork ajoute la langue française
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

master_content.h 651B

12345678910111213141516171819202122232425262728293031
  1. #ifndef MASTER_DATA_H
  2. #define MASTER_DATA_H
  3. #include <cppcms/view.h>
  4. #include <cppcms/form.h>
  5. #include <booster/function.h>
  6. #include <string>
  7. namespace apps { class wiki; }
  8. namespace content {
  9. struct master : public cppcms::base_content {
  10. std::string media;
  11. std::string syntax_highlighter;
  12. std::string cookie_prefix;
  13. std::string main_link;
  14. std::string main_local;
  15. std::string login_link;
  16. std::string toc;
  17. std::string changes;
  18. std::string edit_options;
  19. std::string contact;
  20. std::string wiki_title,about,copyright;
  21. std::map<std::string,std::string> languages;
  22. booster::function<std::string(std::string const &)> markdown;
  23. };
  24. }
  25. #endif