rcpp_framework/web_modules/paged_article/paged_article.h

42 lines
775 B
C
Raw Normal View History

#ifndef PAGED_ARTICLE_H
#define PAGED_ARTICLE_H
#include <map>
#include "core/containers/vector.h"
#include "core/string.h"
2022-02-05 16:55:07 +01:00
#include "web/file_cache.h"
#include "web/http/web_node.h"
#include "web/http/request.h"
class PagedArticle : public WebNode {
RCPP_OBJECT(PagedArticle, WebNode);
public:
void handle_request_main(Request *request);
void load();
void load_folder(const String &folder, const String &path);
String get_index_page();
String get_summary();
virtual void generate_summary();
2022-02-05 02:45:11 +01:00
void _notification(const int what);
PagedArticle();
~PagedArticle();
String articles_folder;
bool serve_folder_relative;
String serve_folder;
protected:
String index_page;
String summary;
std::map<String, String *> pages;
FileCache *file_cache;
};
#endif