changed: winix 'upload' function is a file manager now
we're using an jquery upload plugin added: Item struct has new rows: hash, hash_type, file_size, sort_index added: css mount parameter you can specify css files there, and javascript wysiwyg editors (ckeditor, tinymce) can make use of it changed: post parsers can parse post variables with the same name (a postfix is added in such a case) added: common_dir parameter to the config this is a path to common directory (directory with common static files) it is needed to the 'css' mount parameter git-svn-id: svn://ttmath.org/publicrep/winix/trunk@746 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -122,6 +122,13 @@ namespace TemplatesFunctions
|
||||
void doc_base_url_static(Info & i);
|
||||
void doc_base_url_common(Info & i);
|
||||
void doc_current_url(Info & i);
|
||||
void doc_css_tab(Info & i);
|
||||
void doc_css_tab_file(Info & i);
|
||||
void doc_css_tab_file_is_global(Info & i);
|
||||
void doc_css_tab_has_next(Info & i);
|
||||
void doc_css_is_empty(Info & i);
|
||||
void doc_css_is_one(Info & i);
|
||||
void doc_css_more_than_one(Info & i);
|
||||
|
||||
|
||||
/*
|
||||
@@ -177,6 +184,7 @@ namespace TemplatesFunctions
|
||||
void item_is_link_to(Info & i);
|
||||
void item_link_to(Info & i);
|
||||
void item_is_link_redirect(Info & i);
|
||||
void item_file_size(Info & i);
|
||||
|
||||
void item_tab(Info & i);
|
||||
void item_tab_id(Info & i);
|
||||
@@ -189,6 +197,8 @@ namespace TemplatesFunctions
|
||||
void item_tab_dir(Info & i);
|
||||
void item_tab_url(Info & i);
|
||||
void item_tab_link(Info & i);
|
||||
void item_tab_filetype_is_none(Info & i);
|
||||
void item_tab_filetype_is_image(Info & i);
|
||||
void item_tab_can_read(Info & i);
|
||||
void item_tab_can_write(Info & i);
|
||||
void item_tab_user(Info & i);
|
||||
@@ -210,7 +220,9 @@ namespace TemplatesFunctions
|
||||
void item_tab_is_link_to(Info & i);
|
||||
void item_tab_link_to(Info & i);
|
||||
void item_tab_is_link_redirect(Info & i);
|
||||
|
||||
void item_tab_file_size(Info & i);
|
||||
void item_tab_has_next(Info & i);
|
||||
|
||||
|
||||
/*
|
||||
last
|
||||
@@ -229,6 +241,13 @@ namespace TemplatesFunctions
|
||||
void mount_page_arg_is(Info & i);
|
||||
void mount_has_html_template(Info & i);
|
||||
void mount_first_html_template(Info & i);
|
||||
void mount_css_tab(Info & i);
|
||||
void mount_css_tab_file(Info & i);
|
||||
void mount_css_tab_file_is_global(Info & i);
|
||||
void mount_css_tab_has_next(Info & i);
|
||||
void mount_css_is_empty(Info & i);
|
||||
void mount_css_is_one(Info & i);
|
||||
void mount_css_more_than_one(Info & i);
|
||||
void mount_cur_type(Info & i);
|
||||
void mount_cur_dir(Info & i);
|
||||
void mount_cur_fs(Info & i);
|
||||
@@ -239,6 +258,7 @@ namespace TemplatesFunctions
|
||||
void mount_tab_fs(Info & i);
|
||||
void mount_tab_parlist(Info & i);
|
||||
|
||||
|
||||
/*
|
||||
|
||||
*/
|
||||
@@ -412,6 +432,7 @@ public:
|
||||
void CreateFunctions(); // should be called before reading patterns (patterns will cache ezc functions)
|
||||
void Generate();
|
||||
void GenerateRunRaw();
|
||||
void Generate(Ezc::Pattern & pattern);
|
||||
|
||||
private:
|
||||
|
||||
|
Reference in New Issue
Block a user