rcpp_framework/core
2020-12-11 19:55:19 +01:00
..
application.cpp Started working on settings. 2020-12-08 16:22:18 +01:00
application.h Started working on settings. 2020-12-08 16:22:18 +01:00
database_manager.cpp Implement basic functionality of the DatabaseManager. Also made MysqlConnection inherint from Database, and it's now possible to create instances from it. 2020-12-01 14:47:24 +01:00
database_manager.h Implement basic functionality of the DatabaseManager. Also made MysqlConnection inherint from Database, and it's now possible to create instances from it. 2020-12-01 14:47:24 +01:00
database.cpp Implement drop table for the table builder, fix a warning, and made the message page's migration runnable multiple times (for now). 2020-12-02 00:49:17 +01:00
database.h Implemented a QueryResult object for mysql. messagepage now queries the db too. 2020-12-02 00:43:46 +01:00
file_cache.cpp Implemented body caching and cleanups to FileCache. 2020-11-25 14:53:53 +01:00
file_cache.h Implemented body caching and cleanups to FileCache. 2020-11-25 14:53:53 +01:00
form_validator.cpp Renamed form.h and cpp to form_validator.h and cpp. 2020-12-11 17:14:00 +01:00
form_validator.h Renamed form.h and cpp to form_validator.h and cpp. 2020-12-11 17:14:00 +01:00
handler_instance.cpp Now handlers need to have a new Object* parameter, this can be used to optionally carry class instances. (think of it as self in python object methods, except it can be null). 2020-12-01 12:56:04 +01:00
handler_instance.h Now handlers need to have a new Object* parameter, this can be used to optionally carry class instances. (think of it as self in python object methods, except it can be null). 2020-12-01 12:56:04 +01:00
html_builder.cpp Added and implemented a HTML builder. 2020-12-11 19:55:19 +01:00
html_builder.h Added and implemented a HTML builder. 2020-12-11 19:55:19 +01:00
http_server.cpp Now requests have to be sent manually, with a new send() method. This makes it possible to handle requests in a full on async callback-like way. 2020-11-26 11:26:02 +01:00
http_server.h Renamed the framework folder to core. 2020-11-25 13:28:34 +01:00
object.cpp Initial TableBuilder implementation, and simple migrations. 2020-12-01 23:37:10 +01:00
object.h Initial TableBuilder implementation, and simple migrations. 2020-12-01 23:37:10 +01:00
query_builder.cpp Now the mysql query builder is usable. 2020-12-01 22:23:28 +01:00
query_builder.h Now the mysql query builder is usable. 2020-12-01 22:23:28 +01:00
query_result.cpp Implemented a QueryResult object for mysql. messagepage now queries the db too. 2020-12-02 00:43:46 +01:00
query_result.h Implemented a QueryResult object for mysql. messagepage now queries the db too. 2020-12-02 00:43:46 +01:00
request.cpp Added a head and body string to Request, and removed themes. I think themes added unnecessary complexity, and code non-locality (The view methods would have been in a different class.). I think in a language which have headers this is unwanted (The code will be broken up with the mvc pattern, but the methods don't need to be in separate classes.). Themes are still easily implementable by either adding different css links to the new head variable, or by inheritance. 2020-12-11 16:54:41 +01:00
request.h Added a head and body string to Request, and removed themes. I think themes added unnecessary complexity, and code non-locality (The view methods would have been in a different class.). I think in a language which have headers this is unwanted (The code will be broken up with the mvc pattern, but the methods don't need to be in separate classes.). Themes are still easily implementable by either adding different css links to the new head variable, or by inheritance. 2020-12-11 16:54:41 +01:00
SCsub Implemented a scons based build script based on godot's. Will need to be cleaned up when I understand how scons works better. 2020-11-25 21:48:47 +01:00
settings.cpp Started working on settings. 2020-12-08 16:22:18 +01:00
settings.h Started working on settings. 2020-12-08 16:22:18 +01:00
table_builder.cpp Implement drop table for the table builder, fix a warning, and made the message page's migration runnable multiple times (for now). 2020-12-02 00:49:17 +01:00
table_builder.h Implement drop table for the table builder, fix a warning, and made the message page's migration runnable multiple times (for now). 2020-12-02 00:49:17 +01:00