1d18b7fa12- updated to the new pikotools api (child spaces were removed) some plugins need to be fixed yet: ticket, gallery, group, menu - added current user to default models as "user" - renamed in User: super_user -> is_super_user, env -> admin_env, pass_hash_salted -> is_pass_hash_salted - now Users class has a WinixModel as a base class some plugin calls have to be fixed yet - added UserWrapper model with a pointer to User class - removed from ItemContent: methods for accessing 'meta' and 'admin_meta', now ezc can iterate through Space classes - fixed in env winix function: if there is "changeuser" parameter then we should only switch the user (not save anything)Tomasz Sowa2021-06-27 23:31:50 +02:00
b6340a30d2updated to the new pikotools api (changes in Log)Tomasz Sowa2021-06-24 21:17:03 +02:00
bf1f0954b9fixed: changed "%g" to "%f" when printing request/ezc times SetNonZeroDigitsAfterComma() incorrectly terminated the string if the format was "%g" (in the case where it was used as %e)Tomasz Sowa2021-06-24 16:11:02 +02:00
2f1cdcf379added printing info how much time winix spent in the ezc engineTomasz Sowa2021-06-24 15:33:44 +02:00
2c5062ba22UrlEncode() methods from core/misc.h are now thread safeTomasz Sowa2021-06-23 17:04:07 +02:00
99df807095Makefile: added new macros to CFLAGS
Tomasz Sowa
2021-06-21 20:22:15 +02:00
8ab07d11b1fixed: cur.request->function->fun didn't have a model connector set when a request startedTomasz Sowa2021-06-21 16:51:35 +02:00
a1c0f6f7f0added config option: add_header_cache_no_store_in_htmx_request send "Cache-Control: no-store, max-age=0" http header if a request is made by htmx library (ajax) if a webbrowser get a page from the cache then it will render just the last request without the whole html page (css, js, etc) https://github.com/bigskysoftware/htmx/issues/497Tomasz Sowa2021-06-21 11:43:59 +02:00
ade96bf6d3some methods from templates/item.cpp moved to ItemContentTomasz Sowa2021-06-20 21:22:08 +02:00
801fc062efadded FunctionBase::Clear() which is called at the end of a requestTomasz Sowa2021-06-20 20:47:59 +02:00
f35840e7desome work in html templates: changed some functions from item_* to item.*Tomasz Sowa2021-06-20 18:12:43 +02:00
79eda7abb0- added to FunctionBase: bool register_default_models (default true) if true then winix will add default models for ezc templates such as "request", "item", etc. - some methods from templates/item.cpp moved to ItemTomasz Sowa2021-06-20 18:04:50 +02:00
e7c7324058ItemContent::user_name(EzcEnv & env) changed to ItemContent::user(morm::ModelWrapper ** model_wrapper) and we return a User class ItemContent::group_name(EzcEnv & env) changed to ItemContent::group(morm::ModelWrapper ** model_wrapper) and we return a Group class added ItemContent::display_user_name(EzcEnv & env) some functions in templates/item.cpp moved to ItemTomasz Sowa2021-06-19 23:48:12 +02:00
d8c1a81bcbremoved config options: ezc_error_prefix and ezc_error_postfix Ezc::PatternParser and Ezc::Generator use only pt::Log as a logger nowTomasz Sowa2021-06-19 20:33:35 +02:00
ec94dff7d7some ezc functions from templates/item.cpp moved to Item and ItemContent methods HasAccess() HasReadAccess() and similar moved from System to Item and ItemContentTomasz Sowa2021-06-18 19:18:13 +02:00
ebd791a256changed: now Request class is a model class - we have fields() method there to map fields for ezc templates (currently only dir_tab) removed: [dir_tab] ezc statement changed: Ls winix function loads its own dir_tab container (beforehand it was loaded by [dir_tab] ezc statement) it's available by [child_dirs] nameTomasz Sowa2021-06-17 21:44:29 +02:00
ab89ffe096fixed in Item: void Item::link(Ezc::FunInfo<HtmlTextStream> & env) now returns a correct directory for the item (before the current directory was returned) added to Item: void Item::dir_link(Ezc::FunInfo<HtmlTextStream> & env) added to WinixModel: Dirs * get_dirs(); Mounts * get_mounts(); Users * get_users(); Groups * get_groups(); SLog * get_session_logger(); // not finished yetTomasz Sowa2021-06-16 23:42:23 +02:00
6dddc5e948renamed: WinixModel -> WinixModelDeprecated (this class will be removed) added: WinixModel (models/winixmodel.h|cpp) - a class inheriting from morm::WinixModel, we have methods such as: get_config(), get_logger(), get_request() and this class will be a base class for our models added: WinixModelConnector (models/winixmodelconnector.h|cpp) - a class inheriting from morm::WinixModelConnector this connector we are using instead of morm::ModelConnector - there are pointers to winix objects there (config, request, log) added to Request: Ezc::Models models removed from TemplatesFunctions: Ezc::Models ezc_models; changed: ImgCrop winix functions is using its own item_tab vector now (not finished yet) added: Item::is(), Item::link(), ItemContent::print_content()Tomasz Sowa2021-06-16 18:07:44 +02:00
6e4f8f5191start adding support for Models objects from EzcTomasz Sowa2021-05-31 18:59:20 +02:00
22de3322ae- added to Request: is_htmx_request (bool) - true if the request is made by htmx library (ajax) - commented out using mount_page_arg_is "subject" and "info" from fun_cat.html and fun_run.html - they will be removed soon - some improvements in fun_reply.html, fun_showthreads.html and fun_thread.html (scrolling)Tomasz Sowa2021-05-31 10:58:34 +02:00
e6fae4598cupdated to the new pikotools api: [ezc out] and [out] changed to [ezc frame] or just [frame] - when returning json streams changed "out" field to "frames" - renamed config parameter: allow_ezc_out_in_executable_items -> allow_ezc_frames_in_executable_items - added basic support for ajax requests in thread pluginTomasz Sowa2021-05-28 18:36:19 +02:00
ba331dea4aadded basic support for htmx (ajax) - if there is HX-Request header present we sent only a part of the whole html - we return only specific stream defined by [out ...] ezc statement - the name of the stream is passed in the 'frame' parameter (if not present then 'content' is assumed) - added ezc function: winix_is_htmx_requestTomasz Sowa2021-05-27 19:36:04 +02:00
1292a56d1badded htmx 1.4.0 loaded by default in html/index_head_adder.htmlTomasz Sowa2021-05-27 13:41:29 +02:00
fc24570062fixed compilation: pikotools is in src subdirectory now
Tomek
2021-05-27 12:04:41 +02:00
aa71abd725some workarounds in Thread plugin (don't show stale info in html forms)Tomasz Sowa2021-05-27 10:29:26 +02:00
fb64f5e456fixed: reply winix function (from thread plugin) didn't add a reply - system->Add() didn't set the model_connector to the itemTomasz Sowa2021-05-26 19:55:50 +02:00
61fe6ea219updated to the new api from ezc: changed semantic of [def] and Vars moved outside of GeneratorTomasz Sowa2021-05-23 10:14:08 +02:00
a94e09f0aaadded support for Model migrations now we have a table core.migration and each model (User, Group, Item, ItemContent and a new Migration) have its own row in the table with a version numberTomasz Sowa2021-05-14 03:31:29 +02:00
4df10de6b7methods eq() from finder can have now a table nameTomasz Sowa2021-05-13 19:33:19 +02:00
ee354d2dedrenamed in Models: map_fields() to fields(), prepare_table() to table()Tomasz Sowa2021-05-13 03:29:41 +02:00
e64bd1fba8added more html tags to extraAllowedContent (ckeditor)Tomasz Sowa2021-05-13 03:24:37 +02:00
031e673c51fixed: passwd winix function: pass_encrypted was not cleared if we are not using rsa for encrypting passwords anymoreTomasz Sowa2021-05-13 02:02:15 +02:00
4277f90badstart working on User and Group classes - User and Group has been moved to 'models' directory - removed UserPass struct (passwords fields were put to User struct) not working yet, we need support for binary blobs in mormTomasz Sowa2021-04-30 01:34:48 +02:00
ccda2bc2fdadded option do_migration_to_winix_fullmorm do the config (only temporarily) if true then we make Item::do_migration() and exitTomasz Sowa2021-04-14 14:13:47 +02:00
a8a9db53beremove some Lock() and Unlock() from PluginTomasz Sowa2021-04-11 12:09:42 +02:00
634cf07d44using Winix::Lock object instead of Lock() method in ThreadManagerTomasz Sowa2021-04-10 21:12:28 +02:00
0e0c006d5afixed: thread locking problem in Image: method Lock() was used instead of Winix::Lock objectTomasz Sowa2021-04-10 19:46:50 +02:00
486067a4b2clang thread sanitizer reported a data race in App::Start() synchro.was_stop_signal was read without lockingTomasz Sowa2021-04-10 17:14:51 +02:00
35e10ed469updated to the new Pikotools api (new Space struct)Tomasz Sowa2021-04-09 17:50:58 +02:00
bbc0a67153added support for new morm api - field(...) methods from Model take now FT structure instead of insertable/updatable/primary_key boolean flags - table name is set in a prepare_table() method now - added meta and admin_meta from ItemContent (morm has a field() method with PT::Space argument now)Tomasz Sowa2021-03-11 18:48:18 +01:00
e8ba2a7bd1fixed: incorrect status was set when editing a file now System::EditFile() returns booleanTomasz Sowa2021-03-11 18:42:26 +01:00
57aad8b454removed from Item: update() and save() methods which take the 'url_was_changed' argument and added ItemModelData (based on morm::ModelData) class which has 'prepare_unique_url' field, an object of this class is passed to update(), insert() and save() methodsTomasz Sowa2021-03-08 21:06:50 +01:00
ab5c44a2cbremoved some old methods for adding/editing Item from DbTomasz Sowa2021-02-25 00:17:07 +01:00
afbe82e9f4changed the way how prefixes are added to urls instead at the end we adding a prefix before an extension, e.g: filename_(2).jpgTomasz Sowa2021-02-25 00:12:45 +01:00
51b1aed483removed DbItemQuery and DbItemColumns which were used for database accessing for Item classTomasz Sowa2021-02-24 22:54:36 +01:00
32e93a04c5Item class has been moved to a new directory 'models', a new class has been added: ItemContent and same fields from Item were moved to ItemContentTomasz Sowa2021-02-24 01:19:47 +01:00
3191369eceadded 'using PT::FileLog::init' to FileLog to suppress clang warning: warning: 'Winix::FileLog::init' hides overloaded virtual function [-Woverloaded-virtual]Tomasz Sowa2021-02-17 18:06:00 +01:00
a4de11d69cfixed: Image did not use 'savelog' when creating logsTomasz Sowa2021-02-17 16:17:36 +01:00
4832c7db4bfixed: clang address sanitizer reports that there is an use after free bug at the end when winix shuts down:Tomasz Sowa2021-02-17 15:58:05 +01:00
be83d62f96changed html in index templates: [include "index_head_functions_add.html"] -> [include "index_head_adder.html"]Tomasz Sowa2021-02-16 20:10:29 +01:00