Index: branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_edit.tpl
===================================================================
diff -u
--- branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_edit.tpl (revision 0)
+++ branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_edit.tpl (revision 10912)
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: branches/RC/core/units/sections/sections_config.php
===================================================================
diff -u -r10846 -r10912
--- branches/RC/core/units/sections/sections_config.php (.../sections_config.php) (revision 10846)
+++ branches/RC/core/units/sections/sections_config.php (.../sections_config.php) (revision 10912)
@@ -283,7 +283,7 @@
'parent' => 'in-portal:tools',
'icon' => 'in-portal:tool_import',
'label' => 'la_tab_ImportData',
- 'url' => Array ('index_file' => 'import/step1.php', 'pass' => 'm'),
+ 'url' => Array ('t' => 'tools/import1'),
'permissions' => Array ('view'),
'priority' => 4,
'type' => stTREE,
Index: branches/RC/core/units/admin/admin_config.php
===================================================================
diff -u -r10780 -r10912
--- branches/RC/core/units/admin/admin_config.php (.../admin_config.php) (revision 10780)
+++ branches/RC/core/units/admin/admin_config.php (.../admin_config.php) (revision 10912)
@@ -22,6 +22,7 @@
'system_tools' => Array ('format' => '!la_title_SystemTools!'),
'backup' => Array ('format' => '!la_performing_backup!'),
+ 'import' => Array ('format' => '!la_performing_import!'),
'restore' => Array ('format' => '!la_performing_restore!'),
'server_info' => Array ('format' => '!la_tab_ServerInfo!'),
'sql_query' => Array ('format' => '!la_tab_QueryDB!'),
Index: branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_list.tpl
===================================================================
diff -u
--- branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_list.tpl (revision 0)
+++ branches/RC/core/admin_templates/spelling_dictionary/spelling_dictionary_list.tpl (revision 10912)
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
Index: branches/RC/kernel/units/sections/sections_config.php
===================================================================
diff -u -r10846 -r10912
--- branches/RC/kernel/units/sections/sections_config.php (.../sections_config.php) (revision 10846)
+++ branches/RC/kernel/units/sections/sections_config.php (.../sections_config.php) (revision 10912)
@@ -283,7 +283,7 @@
'parent' => 'in-portal:tools',
'icon' => 'in-portal:tool_import',
'label' => 'la_tab_ImportData',
- 'url' => Array ('index_file' => 'import/step1.php', 'pass' => 'm'),
+ 'url' => Array ('t' => 'tools/import1'),
'permissions' => Array ('view'),
'priority' => 4,
'type' => stTREE,
Index: branches/RC/core/units/spelling_dictionary/spelling_dictionary_config.php
===================================================================
diff -u
--- branches/RC/core/units/spelling_dictionary/spelling_dictionary_config.php (revision 0)
+++ branches/RC/core/units/spelling_dictionary/spelling_dictionary_config.php (revision 10912)
@@ -0,0 +1,75 @@
+ 'spelling-dictionary',
+ 'ItemClass' => Array ('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
+ 'ListClass' => Array ('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
+ 'EventHandlerClass' => Array ('class' => 'kDBEventHandler', 'file' => '', 'build_event' => 'OnBuild'),
+ 'TagProcessorClass' => Array ('class' => 'kDBTagProcessor', 'file' => '', 'build_event' => 'OnBuild'),
+
+ 'AutoLoad' => true,
+
+ 'QueryString' => Array (
+ 1 => 'id',
+ 2 => 'Page',
+ 3 => 'event',
+ 4 => 'mode',
+ ),
+
+ 'IDField' => 'SpellingDictionaryId',
+
+ 'TableName' => TABLE_PREFIX.'SpellingDictionary',
+
+ 'TitleField' => 'MisspelledWord',
+
+ 'TitlePresets' => Array (
+ 'default' => Array (
+ 'new_status_labels' => Array ('spelling-dictionary' => '!la_title_AddingSpellingDictionary!'),
+ 'edit_status_labels' => Array ('spelling-dictionary' => '!la_title_EditingSpellingDictionary!'),
+ ),
+
+ 'spelling_dictionary_list' => Array ('prefixes' => Array ('spelling-dictionary_List'), 'format' => "!la_title_SpellingDictionary! (#spelling-dictionary_recordcount#)"),
+ 'spelling_dictionary_edit' => Array ('prefixes' => Array ('spelling-dictionary'), 'format' => "#spelling-dictionary_status# '#spelling-dictionary_titlefield#'"),
+ ),
+
+ 'PermSection' => Array('main' => 'in-portal:spelling_dictionary'),
+
+ 'Sections' => Array (
+ 'in-portal:spelling_dictionary' => Array (
+ 'parent' => 'in-portal:site',
+ 'icon' => 'custom',
+ 'label' => 'la_title_SpellingDictionary',
+ 'url' => Array('t' => 'spelling_dictionary/spelling_dictionary_list', 'pass' => 'm'),
+ 'permissions' => Array('view', 'add', 'edit', 'delete'),
+ 'priority' => 4.1,
+ 'type' => stTREE,
+ ),
+ ),
+
+ 'ListSQLs' => Array (
+ '' => ' SELECT %1$s.* %2$s FROM %1$s',
+ ),
+
+ 'ListSortings' => Array (
+ '' => Array (
+ 'Sorting' => Array ('MisspelledWord' => 'asc'),
+ )
+ ),
+
+ 'Fields' => Array (
+ 'SpellingDictionaryId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
+ 'MisspelledWord' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
+ 'SuggestedCorrection' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
+ ),
+
+ 'Grids' => Array (
+ 'Default' => Array (
+ 'Icons' => Array ('default' => 'icon16_custom.gif'),
+ 'Fields' => Array (
+ 'SpellingDictionaryId' => Array ('title' => 'la_col_Id', 'data_block' => 'grid_checkbox_td', 'filter_block' => 'grid_range_filter', ),
+ 'MisspelledWord' => Array ('title' => 'la_col_MisspelledWord', 'filter_block' => 'grid_like_filter',),
+ 'SuggestedCorrection' => Array ('title' => 'la_col_SuggestedCorrection', 'filter_block' => 'grid_like_filter',),
+ ),
+ ),
+ ),
+ );
\ No newline at end of file
Index: branches/RC/admin/install/langpacks/english.lang
===================================================================
diff -u -r10750 -r10912
--- branches/RC/admin/install/langpacks/english.lang (.../english.lang) (revision 10750)
+++ branches/RC/admin/install/langpacks/english.lang (.../english.lang) (revision 10912)
@@ -1034,6 +1034,7 @@
SW1wb3J0IGVuY291bnRlcmVkIGFuIGVycm9yIGFuZCBkaWQgbm90IGNvbXBsZXRlLg==
TGluayBJbWFnZSBOYW1l
VGFibGUgTmFtZSBQcmVmaXg=
+ SW1wb3J0IFNvdXJjZQ==
SW5pdGlhbCBJbXBvcnQgQ2F0ZWdvcnk=
SW4tTGluayBEYXRhYmFzZSBOYW1l
SW4tTGluayBEYXRhYmFzZSBQYXNzd29yZA==
Index: branches/RC/core/admin_templates/tools/import1.tpl
===================================================================
diff -u
--- branches/RC/core/admin_templates/tools/import1.tpl (revision 0)
+++ branches/RC/core/admin_templates/tools/import1.tpl (revision 10912)
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
Index: branches/RC/core/admin_templates/tools/import2.tpl
===================================================================
diff -u
--- branches/RC/core/admin_templates/tools/import2.tpl (revision 0)
+++ branches/RC/core/admin_templates/tools/import2.tpl (revision 10912)
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file