Fork de wikipp, le moteur de wiki en c++, basé sur cppcms. Le fork ajoute la langue française
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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