Commit Graph

  • 2d1b2e6b6e Makefile.dep Tomasz Sowa 2018-07-05 11:15:42 +00:00
  • 350fc551e5 fixed: a default winix function was selected before the mount point was calculated also a mount point should be cleared (set to an empty mount point) at the end of a request Tomasz Sowa 2018-07-02 12:02:19 +00:00
  • 1c05c31721 added: antispam mechanism each html form has a hidden form_id and counter_id counter_id on the client side is generated through javascript code on the server the form_id and counter_id is stored in the session after sending the html form the server checks the form_id and counter_id Tomasz Sowa 2018-07-02 11:16:36 +00:00
  • 08123fe6ac changed the algorithm how sessions work: - if the IP is banned or there is no a winix function then we set a temporary session - else if there is a session's cookie sent by the client then: - if the cookie is a correct session's cookie then we set the session from the cookie - or if the cookie is not a correct session's cookie (e.g. session expired) and the winix function requires a cookie then we set a new session - or if there is no cookie sent then if a winix function requires a session we create a new session Tomasz Sowa 2018-06-20 15:00:02 +00:00
  • 35b93b1655 changed: now we are parsing directories and functions before checking a session added: need_session to FunctionBase (true if the functions requires a session) default: true Tomasz Sowa 2018-06-19 13:52:08 +00:00
  • 436a198c36 changed: using PT::ToLower instead of ToSmall using PT::ToUpper instead of ToCapital using PT::EqualNoCase instead of EqualNoCase Tomasz Sowa 2018-05-25 17:22:12 +00:00
  • aa58faf145 some work on integrating ckeditor4 added ezc blocks: ckeditor_old_browsers_support, ckeditor, ckeditor_small defined in ckeditor.html Tomasz Sowa 2018-05-10 17:21:39 +00:00
  • dcc6d35cba added: start integrating CKEditor4 Tomasz Sowa 2018-05-09 22:48:14 +00:00
  • 3f29cdc01e changed: config parameters: log_check_proxy_ip_header -> check_proxy_ip_header and log_proxy_ip_header -> proxy_ip_header added: Request::ip_str (std::wstring) (string of the client's IP address) Tomasz Sowa 2018-05-01 11:22:55 +00:00
  • ba7d55b7c1 added: config parameters: bool log_check_proxy_ip_header; // check whether there is a 'log_proxy_ip_header' header // and if so then log the IP address from it // default: false Tomasz Sowa 2018-05-01 10:43:20 +00:00
  • 6252a0e732 added: Request::post_in (PT::Space) for input when application/json content type is used from the client Tomasz Sowa 2018-04-26 18:56:31 +00:00
  • ca14b1a427 added: Request::header_in (Space) http input headers (without cookies) added: config parameter: log_env_http_variables (bool) (for logging http headers) added: support for DELETE http method, added method FunctionBase::MakeDelete() changed: winix version incremented to 0.6.6 Tomasz Sowa 2018-04-25 19:48:47 +00:00
  • b01db89942 added config parameter: db_postgresql_smaller_than_10 default false if true then we are not using ROW() statements in sql queries Tomasz Sowa 2018-04-25 09:37:56 +00:00
  • fd421c54e3 changed: Makefile (added Logger from pikotools) Tomasz Sowa 2018-04-23 14:29:58 +00:00
  • 55992b5066 added: std::wstring * Request::ParamValuep(const wchar_t * param_name) for taking a pointer (can be null) to a parameter value added: bool System::IsSSLRequired(bool try_to_use_ssl) returns true if we should use ssl try_to_use_ssl is to be meant: config->use_ssl, config->use_ssl_static, config->use_ssl_common Tomasz Sowa 2018-04-22 21:26:56 +00:00
  • a5dfc9974f added: a virtual dctor() for BaseThread class Tomasz Sowa 2018-04-16 22:44:59 +00:00
  • 7b4a17c934 changed: makefile dep Tomasz Sowa 2018-03-23 19:27:32 +00:00
  • c2a1097dd5 added: dependency on the morm project Tomasz Sowa 2018-03-13 22:34:59 +00:00
  • ccf78dcb02 updated to the new Pikotools API Tomasz Sowa 2018-01-06 18:12:53 +00:00
  • 3eff400d88 added: "assume_connection_is_through_ssl" config parameter winix is testing an environment variable "HTTPS" for the value "on" to think that the connection is made via SSL you can set assume_connection_is_through_ssl to true for the winix to not testing any environment variables but just think the connection was made by https (useful when using proxy) default: false Tomasz Sowa 2018-01-01 00:14:02 +00:00
  • 5ab816b5be fixed: in progresql 10 we have to use ROW() expression to construct a row where only one item is given Tomasz Sowa 2018-01-01 00:12:33 +00:00
  • e57840faed fixed: static files loaded to /var such as /var/ckeditor_winix.js were not properly returned (html filter was used but they are mostly javascript files) added: new Item::ContentType: ct_other if an item has ct_other then the html filter is not used for the content Tomasz Sowa 2016-07-13 13:13:56 +00:00
  • 240bf4dc5d changed: the way how raw template is set option for setting raw template from 'emacs' function has been removed now we have index_raw.html template and it can be set from 'template' function removed: template index_fullscreen.html changed: some work in miscspace (changed: space_list_tab, space_list_tab_value and space_list_tab_has_next) fixed: main index template could not be set through 'template' function Tomasz Sowa 2016-04-04 16:02:36 +00:00
  • abd1500f07 changed: some refactoring in miscspace Tomasz Sowa 2016-03-23 15:20:42 +00:00
  • 42144bb31c some refactoring in miscspace(.h|.cpp) space() renamed to space_value() and takes a third parameter: escape (bool) space_noescape() removed Tomasz Sowa 2016-03-22 14:53:43 +00:00
  • 7ed41a03ae fixed: some paths in Makefile.dep were not relative Tomasz Sowa 2016-03-18 08:56:19 +00:00
  • 1286ceeddf changed: winix project has been moved to 'winixd' subdirectory in Makefiles we are caltulating relative paths now (by using relative_path program) Tomasz Sowa 2016-03-17 13:46:20 +00:00
  • 145efe937c moved winix directories to winixdsubdirectory Tomasz Sowa 2016-03-17 08:26:02 +00:00
  • ed5adb3f23 moved winix directories to winixd subdirectory Tomasz Sowa 2016-03-17 08:24:59 +00:00
  • 7d0508961e added: log info about what html template is used Tomasz Sowa 2016-03-16 14:11:47 +00:00
  • e53e2e6af9 added: some work in RegisterMail plugin (added looking for files in a config directory) Tomasz Sowa 2016-02-03 18:10:40 +00:00
  • 4fafd2a478 changed: Makefile Tomasz Sowa 2016-02-01 11:12:54 +00:00
  • f15da4d049 fixed: in FunctionParser we do not treat '+' as a space added: some work in MailRegister plugin (adding mails to db, showing mails) Tomasz Sowa 2016-02-01 10:15:23 +00:00
  • 057607f9e5 start working on a new plugin: mailregister Tomasz Sowa 2016-01-31 19:52:17 +00:00
  • c433b3fd41 updated to the new Ezc API [ezc stream] has gone, now we have [ezc out] and [out] the output streams have names now: it's a std::map, before we have a std::vector and the streams are serialized to "out" space in json Request::out_streams[] are split into Request::out_main_stream and Request::out_streams class Tomasz Sowa 2015-11-15 22:23:36 +00:00
  • 632b49ab90 fixed: meta and admin meta information were not saved in memory (in system.dirs) when 'meta' winix function was used added: to DbItemsQuery sort_index_asc and sort_index_date different sort type can be made by 'index' and by 'date' Tomasz Sowa 2015-06-16 02:37:07 +00:00
  • f54df8d600 updated: to the new EZC api (ezc functions can be methods of some special objects) 0.6.5 Tomasz Sowa 2015-06-14 18:24:08 +00:00
  • d8451ceaa0 fixed: checking for ssl redirect we should take into account cur.request->function->need_ssl too Tomasz Sowa 2015-05-29 09:46:29 +00:00
  • 62f178c2ee fixed: in App::CheckIfNeedSSLredirect() winix made an incorrect redirect from/to SSL Tomasz Sowa 2015-05-29 09:24:43 +00:00
  • eb4e7343e7 changed: now 'emacs' winix function uses CodeMirror editor currently only htmlmixed mode is implemented Tomasz Sowa 2015-04-18 18:50:39 +00:00
  • 5274e8e8ff added: "server_mode" config option (std::wstring) you can assign any string to it such as "production" "dev" this value is not used by winix itself you can refer to it from [server_mode] and [server_mode_is] ezc functions Tomasz Sowa 2015-04-16 14:43:52 +00:00
  • ae2a885d6c fixed: rm winix function returned incorrectly formated json when using jquery upload (delete file button) Tomasz Sowa 2015-03-20 11:00:22 +00:00
  • 901663b145 updated: to the new ezc api added: following ezc functions: ezc_and_not, ezc_any_not, ezc_or_not, ezc_one_not, is, is_not, is_empty, is_not_empty Tomasz Sowa 2015-03-08 23:22:05 +00:00
  • dc301d4c50 changed: editors (emacs, ckeditor...) doesn't set an item's title now (if it was empty) Tomasz Sowa 2015-03-02 21:23:29 +00:00
  • 34f0535a26 added: some ezc functions for displaying current date current_sec, current_min, current_hour, current_year, ... Tomasz Sowa 2015-02-22 10:23:52 +00:00
  • af0e2a778d changed: some refactoring in System: in IsMemberOfGroup method changed: some log messages at startup (about non existing empty group for uploads directory) Tomasz Sowa 2015-01-02 08:18:06 +00:00
  • 904f1e70f2 fixed: compiling on Debian (it has no MSG_EOF flag) Tomasz Sowa 2015-01-02 07:15:22 +00:00
  • ddf7ef30ad fixed: compiling od Debian sockaddr_un has no sun_len member Tomasz Sowa 2015-01-02 07:14:15 +00:00
  • 0a43870e76 fixed: the way how winix is closing beforehand we made a http connection from the special thread now we just send a fastcgi packet to the unix socket Tomasz Sowa 2015-01-02 07:01:08 +00:00
  • f875bd2944 changed: when a client doesn't send a session cookie we can instead of ban just use a temporary session added: config option: // the way we behave when no_session_cookie_treshold limit is exceeded // 0 - if a client doesn't send a session cookie again then use a temporary session // (other sessions from this IP address are not affected) // 1 - add this IP address to ban list and create a temporary session // (this will block other sessions from this IP address too) // default: 0 int no_session_cookie_ban_mode; Tomasz Sowa 2014-11-25 12:02:22 +00:00
  • c9bf20201b added: possibility to ban if a session cookie is incorrect (when we are using encoded cookies) added: possibility to ban if a client tries to hijack the session cookie added: possibility to ban if a client did not send a session cookie renamed: ezc functions: login_cannot_login -> ipban_is_login_allowed_from_this_ip (and the return value was changed) login_when_available_login -> ipban_current_ip_expires_time added: config options: // after how many broken encoded cookie we should ban the current IP // default: 2 (value in the range <0 - 65535>) size_t broken_encoded_cookie_treshold; Tomasz Sowa 2014-11-24 20:22:30 +00:00
  • 76314aab10 added: possibility to encode the session cookie (added files core/sessionidmanager.h and core/sessionidmanager.cpp) added: config options: // whether or not we should encode the session cookie // (we have a special algorithm) // default: false bool session_cookie_encode; Tomasz Sowa 2014-11-22 15:30:56 +00:00
  • 3547d326b8 define AR macro in the main Makefile this is for pikotools and tito libraries Tomasz Sowa 2014-11-12 04:14:16 +00:00
  • 0ecb2ac70e added: to HtmlTextStream: Escape(bool) method now the output html streams can be turn into no-escaping mode default true (set when a request is clearing) Tomasz Sowa 2014-11-06 21:17:41 +00:00
  • 8f8defe0de updated: to the new Ezc API removed statements: [if-index ...] [is ...] [is-no ...] added: generic ezc functions: and, any (the same as and), or, one (the same as or), not, cmp, trim to_lower, to_upper, index changed: in misc: added treat_new_line_as_white flag to IsWhite() SkipWhite() and TrimWhite() TrimWhite(), TrimFirst(), TrimLast(), Trim() are using only wide characters now (they were templates before) added: IsInt(), IsSize(), IsFloat() changed: version to 0.6.4 0.6.4 Tomasz Sowa 2014-11-02 17:47:34 +00:00
  • db5572e864 removed: svn:executable attribute from files Tomasz Sowa 2014-11-01 17:05:20 +00:00
  • 1100cf75d7 updated: to the new Ezc API Tomasz Sowa 2014-10-28 19:14:46 +00:00
  • 4fda06b547 fixed: PatternCacher incorrectly rebuilt the cache some new Ezc::Pattern objects were inserted the storage container is std::map<long,...> but we traverse it as a std::vector e.g.: for(size_t i=0 ; i<pattern_tab.size() ; ++i) RebuildCache(pattern_tab[i].pattern); so eventually new patterns were added to the map (operator []) Tomasz Sowa 2014-10-21 07:27:21 +00:00
  • fb18b2238e added: two options to the config: ezc_error_prefix (string) ezc_error_postfix (string) // prefix and postfix used when there is an error in Ezc patterns // default: // prefix: "<!-- " // postfix: " -->" added: Ezc::Blocks to templates added: although patterns have pointers to functions and blocks cached the Ezc::Generator should use SetFunctions() and SetBlocks() method in order to correctly recognize variables (aliases) Tomasz Sowa 2014-10-19 21:20:09 +00:00
  • 5266a7e4e5 updated: to the new Ezc API Tomasz Sowa 2014-10-18 18:12:04 +00:00
  • 8196fb77d1 changed: now we do not use std::string and char* in the Winix API everywhere we are using std::wstring and wchar_t* (std::string and char* is used only locally in some places especially when creating a path to OS file system etc.) added: to the special thread when winix closes: a write function for curl: FetchPageOnExitCurlCallback() without this function the curl library will print the page's content to the standart output changed: TextStream<> class from core can make UTF8<->wide strings conversions removed: from config: utf8 option now winix expects UTF8 from the user's input (html forms, url-es) and outputs strings in the UTF8 format 0.6.3 Tomasz Sowa 2014-10-09 20:44:56 +00:00
  • 4abf6642f7 setting a Winix Licence: 2 Clause BSD Licence changed: version to 0.6.2 0.6.2 Tomasz Sowa 2014-10-04 18:04:03 +00:00
  • e3284dcfbc fixed: winix incorrectly used config options: upload_dirs_chmod and upload_files_chmod added: to config: upload_group a group name for newly uploaded files (and created necessary directories in the file system) Tomasz Sowa 2014-09-28 17:30:05 +00:00
  • f064ff6b3d added: htmltextstream escapes more characters now: added characters: " -> &#quot; ' -> &#39; (&apos; but IE8 has a problem with &apos;) 10 -> &#10; 13 -> &#13; added: two ezc filters: fil_html_quote " -> &#quot; ' -> &#39; (&apos; but IE8 has a problem with &apos;) fil_html_newline 10 -> &#10; 13 -> &#13; changed: fun_subject.html uses <div class="winix_input_a"> now Tomasz Sowa 2014-09-22 23:54:24 +00:00
  • bfa5d8cc05 changed: plugin jQuery File Upload has been updated to version 9.7.0 (changed 'upload' and 'rm' winix functions) Tomasz Sowa 2014-08-06 20:14:10 +00:00
  • 6614919c13 added: possibility to save a pid file new config option: pid_file (a full path to a pid file) Tomasz Sowa 2014-08-04 21:11:14 +00:00
  • 8379acdb7f fixed: item content should not be escaped in 'raw' mode (it was not escaped only when execute bits were set) Tomasz Sowa 2014-08-03 18:33:07 +00:00
  • 160ddc258d added: to htmlfilter: the filter is able to recognize a special tag, default called: <nofilter> content between <nofilter>...</nofilter> will not be filtered Tomasz Sowa 2014-06-18 23:18:28 +00:00
  • 01892d2766 added: flag has_pass to User structure if false that means the user has not set a password yet (this can be used by a plugins to create a new account without a password set) in order to login the user first has to set a new password (this can be done from a some kind of activation link send via email etc) 0.6.1 Tomasz Sowa 2014-06-07 11:20:44 +00:00
  • 222955a2e7 fixed: in Synchro: we should have a table (map) of reference counters each one for each thread fixed: on Linux: pthread mutexes by default behaves differently than on FreeBSD we have to set PTHREAD_MUTEX_ERRORCHECK attribute when creating a mutex Tomasz Sowa 2014-02-14 11:20:22 +00:00
  • 37b22c3559 added: some debug logs to export plugin Tomasz Sowa 2014-02-12 22:32:06 +00:00
  • afbd522362 fixed: in Makefile: 'cp' in Linux behaves differently Tomasz Sowa 2014-02-12 20:49:50 +00:00
  • a4bed3ab14 fixed: compiling on Debian with GCC 4.8 Tomasz Sowa 2014-02-12 17:21:42 +00:00
  • 7468e7a36c added: namespace Winix over all *.h/*.cpp files 0.6.0 Tomasz Sowa 2014-02-12 16:30:49 +00:00
  • 145445c713 changed: now we use curl to fetch a page from the special thread when winix quits (before we were using BSD's fetch) fixed: we didn't use FCGX_Finish_r() on the request made from the special thread so the thread hangs (now we can use pthread_join correctly from the main thread) Tomasz Sowa 2014-02-11 21:00:32 +00:00
  • 7fa9314c6b changed: in ClearOutputStreams() referencing 'config' only if not null Tomasz Sowa 2013-12-23 03:29:33 +00:00
  • 5d37b6c6ae fixed: winix incorrectly sent the binary stream headers and cookies were not sent (instead of headers the content was sent, so the client's browser was unable to open it correctly) added: standard http headers are added by winix only if there are not such headers already e.g. if a plugin adds "Content-Type" header then winix will not overwrite it (headers names are case sensitive) Tomasz Sowa 2013-12-19 17:19:47 +00:00
  • fe1f84e29d added: -O0 -g for CXXFLAGS for temporarily debugging Tomasz Sowa 2013-12-18 12:13:28 +00:00
  • 83e27a6653 fixed: problem with building added #include <utility> to App (for std::move) Tomasz Sowa 2013-12-09 16:03:45 +00:00
  • ee9c68b04e added: generating Content-Length header when text answer is sent to the client added: now we are able to use the html filter for the whole out_streams (when ajax is used the output is filtered too) splitted FilterCompressSend() function -- first we are making the filtering (after filtering we know the size of the content to send) added: to Compress: Compressing(const char * source, size_t source_len, BinaryPage & out_stream, int encoding); changed: some refactoring in App Tomasz Sowa 2013-12-04 01:21:57 +00:00
  • c04874397b fixed: security vulnerability in 'ln' winix function a user could create a hardlink to any file and the new link had user_id, group_id and permissions the same as for new generated files, this allowes to overwrite any existing file in the filesystem, now user_id, group_id, permissions are the same as from the oryginal file Tomasz Sowa 2013-12-03 12:33:41 +00:00
  • 375604edd6 removed: Request::debug all stream used for debugging info some environment variables were put there removed: config variable: debug_info removed: Request::role (responder, authorizer) now we have only one role: responder added: new config variables: log_env_variables (default false) - when true then fastcgi environment variables are logged to the log file log_http_answer_headers (default false) - when true all http headers created by winix ale logged (note that the www server can add/adjust other headers) changed: some refactoring in Request struct changed: CookieTab to std::map<std::wstring, std::wstring> beforehand std::string was used (changed CookieParser as well) changed: Request::SetCookie() to AddCookie() added: Request::out_headers (a PT::Space struct) http headers (without cookies) send back to the client added: Request::out_cookies (a PT::Space struct) cookies send to the client changed: App class to use Request::out_headers and Request::out_cookies some SendHeaders...() methods were renamed to PrepareHeaders...() and they create output in Request::out_headers first (and out_cookies) and later it is sent added: two plugin messages: // http headers (without cookies) were created and are ready to send // here you can make some changes to them // in p1 you have a pointer to the PT::Space (Request::out_headers) #define WINIX_PREPARE_TO_SEND_HTTP_HEADERS 31070 Tomasz Sowa 2013-11-29 21:39:23 +00:00
  • 3e32f3784f removed: -O0 -g from production Makefile Tomasz Sowa 2013-11-25 23:44:01 +00:00
  • 5c4a54d998 added: -O0 -g to the production Makefile Tomasz Sowa 2013-11-25 23:37:52 +00:00
  • 3af3ac3f6f removed: ezn patterns for rawcontent and ajaxcontent: index_rawcontent.html, index_ajaxcontent.html now we have out_streams in Request and some special keyword in ezc templates for sending content to the specified streams changed: the way how winix answers to the client's browsers: info from Request class: winix answer send to the client's browser | | depending on send_bin_stream ------------------------------------------------- | | text answer binary answer | | depending on return_json sending out_bin_stream ------------------------------------ | | normal request ajax request | | sending out_streams[0] depending on return_info_only ------------------------------------------------------ | | generating JSON object from: generating JSON object only from info out_streams and info, e.g.: e.g.: { { info object serialized here } "stream_1": "some html content", "stream_2": "some other html content", "info": { info object serialized here } } note that out_streams[0] is not sent in JSON answers 0.5.6 Tomasz Sowa 2013-11-14 20:59:23 +00:00
  • d801f53154 changed: now we are using the C++ 11 language (-std=c++11) and we are using the clang compiler by default changed: Makefile files have been a little cleaned the main Makefile now will not compile winix and winix.so if there were not any changes to source files (it's faster) (added Makefile.dep in the global directory with list of all source/header files) changed: winix version to 0.5.5 0.5.5 Tomasz Sowa 2013-10-15 21:57:51 +00:00
  • a6b06f82e9 fixed: compiling in the clang (new version of c++ std lib) (added some header files) added: three messsages in ticket plugin: // send by showtickets winix function when tickets are loaded (and sorted) // in p1 you have a pointer to the ticket tab: std::vector<Ticket::Ticket> (include "ticket.h") // in p2 you have a pointer to the sort tab: std::vector<Item*> // those tables don't have to be equal in size (in the case when there is no some tickets in the database) #define WINIX_PL_TICKET_TICKETS_LOADED 4106 Tomasz Sowa 2013-10-10 11:59:21 +00:00
  • b7f3f84080 changed: in 'showtickets' winix function now tickets are sorted by the sort_index and then by date changed: html in 'sort' winix function (added items' subjects to the item lists) Tomasz Sowa 2013-07-08 14:42:14 +00:00
  • 26715bdd4c changed: html for 'upload' winix function all static files (css/js) are downloaded from our server now Tomasz Sowa 2013-07-02 07:14:19 +00:00
  • 083fa7857f fixed: in notify/notify.cpp: a correct locale id should be taken (we were not able to send: a mail with an activation link and a mail with the reset password link when we didn't have a locale with id 0 loaded) Tomasz Sowa 2013-05-16 21:02:17 +00:00
  • 9ffda3e070 changed: in passwd: a redirect make only if a password has been changed Tomasz Sowa 2013-05-16 20:11:27 +00:00
  • 81160dbbe9 fixed: a passwd winix function should allow a non loged person to reset his password (permission fix) Tomasz Sowa 2013-05-16 20:08:07 +00:00
  • 7c266b85e2 added: winix function 'account' code for activating an account has been moved here from Pw changed: the form for reseting a user's password has been moved to 'passwd' winix function (it was in Pw before) Tomasz Sowa 2013-05-16 19:26:44 +00:00
  • 48cdca7549 changed: in fun_gallery.html: added js code to get the proper image id from url Tomasz Sowa 2013-05-14 08:37:22 +00:00
  • 1c401eae3b added: to Rm function: bool Rm::RemoveFileOrSymlink(long item_id, bool check_access) added: in ticket plugin: possibility to remove a file/image (not finished yet) Tomasz Sowa 2013-05-06 07:23:44 +00:00
  • 0e9eb30b5d added: some ezc function to ticket plugin: ticket_param_value_for_param_id tickets_tab_param_value_for_param_id tickets_tab_conf_tab_param_name tickets_tab_conf_tab_file_tab tickets_tab_conf_tab_file_tab_index tickets_tab_conf_tab_file_tab_path tickets_tab_conf_tab_file_tab_itemid tickets_tab_conf_tab_file_tab_meta Tomasz Sowa 2013-04-24 01:21:19 +00:00
  • c10c9393c0 changed: plugin 'export': export winix function the checkbox is now selected when we want to export static files too (default it is not checked) Tomasz Sowa 2013-04-17 00:37:39 +00:00
  • 8705b3437c fixed: imgcrop winix function should load only images (when called in a directory) added: to reload winix function: reloading (clearing) the cache from 'menu' plugin added: to 'menu' plugin possibility to read 'meta' information from files third argument 'withmeta' to menu_dir_tab ezc function e.g. [for menu_dir_tab "/directory" "..." "withmeta"]...[end] and some ezc functions to retrieve the meta values Tomasz Sowa 2013-04-16 09:51:36 +00:00
  • aed891764a added: to config: HasValue() methods for checking if a value exists (useful for checking lists -- they don't have to be copied out) Tomasz Sowa 2013-04-02 22:24:30 +00:00
  • 495499d12f added: a new winix function: imgcrop for cropping images (and thumbnails) www.domain.com/dir/file.jpg/imgcrop -- crop an image www.domain.com/dir/file.jpg/imgcrop/thumb -- crop an image's thumbnail www.domain.com/dir/file.jpg/imgcrop/newthumb -- crop and create a new thumbnail (from an original image) www.domain.com/dir/imgcrop -- show images' list with above options added: to Image class: some methods for cropping 0.5.4 Tomasz Sowa 2013-03-29 22:03:28 +00:00