Index: branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_list.tpl =================================================================== diff -u -N -r10912 -r11029 --- branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_list.tpl (.../spelling_dictionary_list.tpl) (revision 10912) +++ branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_list.tpl (.../spelling_dictionary_list.tpl) (revision 11029) @@ -25,9 +25,15 @@ std_delete_items('spelling-dictionary') } ) ); - a_toolbar.AddButton( new ToolBarSeparator('sep1') ); + a_toolbar.AddButton( new ToolBarButton('export', '', function() { + std_csv_export('spelling-dictionary', 'Default', 'export/export_progress'); + } + ) ); + + a_toolbar.AddButton( new ToolBarSeparator('sep2') ); + a_toolbar.AddButton( new ToolBarButton('view', '', function() { show_viewmenu(a_toolbar,'view'); } Index: branches/RC/core/admin_templates/thesaurus/thesaurus_list.tpl =================================================================== diff -u -N -r10923 -r11029 --- branches/RC/core/admin_templates/thesaurus/thesaurus_list.tpl (.../thesaurus_list.tpl) (revision 10923) +++ branches/RC/core/admin_templates/thesaurus/thesaurus_list.tpl (.../thesaurus_list.tpl) (revision 11029) @@ -25,9 +25,15 @@ std_delete_items('thesaurus') } ) ); - a_toolbar.AddButton( new ToolBarSeparator('sep1') ); + a_toolbar.AddButton( new ToolBarButton('export', '', function() { + std_csv_export('thesaurus', 'Default', 'export/export_progress'); + } + ) ); + + a_toolbar.AddButton( new ToolBarSeparator('sep2') ); + a_toolbar.AddButton( new ToolBarButton('view', '', function() { show_viewmenu(a_toolbar,'view'); } Index: branches/RC/kernel/admin_templates/users/users_list.tpl =================================================================== diff -u -N -r10028 -r11029 --- branches/RC/kernel/admin_templates/users/users_list.tpl (.../users_list.tpl) (revision 10028) +++ branches/RC/kernel/admin_templates/users/users_list.tpl (.../users_list.tpl) (revision 11029) @@ -57,6 +57,13 @@ } ) ); + a_toolbar.AddButton( new ToolBarButton('export', '', function() { + std_csv_export('u', 'Default', 'export/export_progress'); + } + ) ); + + a_toolbar.AddButton( new ToolBarSeparator('sep3') ); + a_toolbar.AddButton( new ToolBarButton('view', '', function() { show_viewmenu(a_toolbar,'view'); }