Renamed some webnode files. I want to make their names a bit more standardized.

This commit is contained in:
Relintai 2022-07-23 01:20:43 +02:00
parent ed92564261
commit 2cae30fcdf
20 changed files with 32 additions and 32 deletions

View File

@ -47,18 +47,18 @@ sources = [
"http_server_simple/http_writer.cpp",
"http_server_simple/http_parser/http_parser.c",
"nodes/static_pages/static_page.cpp",
"nodes/static_pages/static_page_file.cpp",
"nodes/static_pages/static_page_folder_files.cpp",
"nodes/static_pages/static_web_page.cpp",
"nodes/static_pages/static_web_page_file.cpp",
"nodes/static_pages/static_web_page_folder_files.cpp",
"nodes/folder_serve_nodes/browsable_folder_serve_node.cpp",
"nodes/folder_serve_nodes/folder_serve_node.cpp",
"nodes/folder_serve_nodes/browsable_folder_serve_web_page.cpp",
"nodes/folder_serve_nodes/folder_serve_web_page.cpp",
"nodes/list_page/list_page.cpp",
"nodes/list_page/list_web_page.cpp",
"nodes/paged_article/paged_article.cpp",
"nodes/paged_article/paged_articles.cpp",
#"nodes/paged_article/paged_articles_md_index.cpp",
"nodes/paged_article/paged_article_web_page.cpp",
"nodes/paged_article/paged_articles_web_page.cpp",
#"nodes/paged_article/paged_articles_md_index_web_page.cpp",
"nodes/redirect/redirect_web_page.cpp",
]

View File

@ -1,4 +1,4 @@
#include "browsable_folder_serve_node.h"
#include "browsable_folder_serve_web_page.h"
#include "core/os/dir_access.h"

View File

@ -4,7 +4,7 @@
#include "core/ustring.h"
#include "core/vector.h"
#include "folder_serve_node.h"
#include "folder_serve_web_page.h"
class WebServerRequest;

View File

@ -1,4 +1,4 @@
#include "folder_serve_node.h"
#include "folder_serve_web_page.h"
#include "../../file_cache.h"
#include "../../http/web_permission.h"

View File

@ -1,4 +1,4 @@
#include "list_page.h"
#include "list_web_page.h"
#include "core/error_macros.h"
#include "core/os/dir_access.h"

View File

@ -1,4 +1,4 @@
#include "paged_article.h"
#include "paged_article_web_page.h"
#include "core/os/dir_access.h"
#include "core/os/file_access.h"

View File

@ -1,4 +1,4 @@
#include "paged_articles_md_index.h"
#include "paged_articles_md_index_web_page.h"
#include "core/os/dir_access.h"
@ -6,8 +6,8 @@
#include "../../http/web_permission.h"
#include "../../http/web_server_request.h"
#include "../list_page/list_page.h"
#include "paged_article.h"
#include "../list_page/list_web_page.h"
#include "paged_article_web_page.h"
String PagedArticlesMDIndex::get_folder() {
return folder;

View File

@ -1,4 +1,4 @@
#include "paged_articles.h"
#include "paged_articles_web_page.h"
#include "core/os/dir_access.h"
#include "core/os/os.h"
@ -7,7 +7,7 @@
#include "../../html/html_builder.h"
#include "../../http/web_server_request.h"
#include "paged_article.h"
#include "paged_article_web_page.h"
String PagedArticles::get_folder() {
return _folder;

View File

@ -1,4 +1,4 @@
#include "static_page.h"
#include "static_web_page.h"
#include "../../http/web_server_request.h"
#include "core/os/file_access.h"

View File

@ -1,4 +1,4 @@
#include "static_page_file.h"
#include "static_web_page_file.h"
String StaticPageFile::get_file_path() {
return _file_path;

View File

@ -3,7 +3,7 @@
#include "core/ustring.h"
#include "static_page.h"
#include "static_web_page.h"
class StaticPageFile : public StaticPage {
GDCLASS(StaticPageFile, StaticPage);

View File

@ -1,4 +1,4 @@
#include "static_page_folder_files.h"
#include "static_web_page_folder_files.h"
#include "core/os/dir_access.h"
#include "core/os/file_access.h"

View File

@ -3,7 +3,7 @@
#include "core/ustring.h"
#include "static_page.h"
#include "static_web_page.h"
class StaticPageFolderFiles : public StaticPage {
GDCLASS(StaticPageFolderFiles, StaticPage);

View File

@ -47,17 +47,17 @@ SOFTWARE.
#include "http_server_simple/web_server_simple.h"
#include "nodes/static_pages/static_page.h"
#include "nodes/static_pages/static_page_file.h"
#include "nodes/static_pages/static_page_folder_files.h"
#include "nodes/static_pages/static_web_page.h"
#include "nodes/static_pages/static_web_page_file.h"
#include "nodes/static_pages/static_web_page_folder_files.h"
#include "nodes/folder_serve_nodes/browsable_folder_serve_node.h"
#include "nodes/folder_serve_nodes/folder_serve_node.h"
#include "nodes/folder_serve_nodes/browsable_folder_serve_web_page.h"
#include "nodes/folder_serve_nodes/folder_serve_web_page.h"
#include "nodes/list_page/list_page.h"
#include "nodes/list_page/list_web_page.h"
#include "nodes/paged_article/paged_article.h"
#include "nodes/paged_article/paged_articles.h"
#include "nodes/paged_article/paged_article_web_page.h"
#include "nodes/paged_article/paged_articles_web_page.h"
//#include "nodes/paged_article/paged_articles_md_index.h"
#include "nodes/redirect/redirect_web_page.h"