summaryrefslogtreecommitdiffstats
path: root/kexi/doc/dev/kexi_general_import_export.txt
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/doc/dev/kexi_general_import_export.txt
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kexi/doc/dev/kexi_general_import_export.txt')
-rw-r--r--kexi/doc/dev/kexi_general_import_export.txt53
1 files changed, 53 insertions, 0 deletions
diff --git a/kexi/doc/dev/kexi_general_import_export.txt b/kexi/doc/dev/kexi_general_import_export.txt
new file mode 100644
index 00000000..493349f7
--- /dev/null
+++ b/kexi/doc/dev/kexi_general_import_export.txt
@@ -0,0 +1,53 @@
+Main goals:
+ *) easy extendability
+ *) common look and feel for common tasks
+
+**************************
+
+Workflow importing :
+Step 1:
+ a)
+ Project->Import
+ -> File
+ -> Connection
+ ==> All types
+
+ b)
+ RMB item group in navigator->Import
+ -> File
+ -> Connection
+ ==> Only type of item group
+
+------
+File based:
+Step 2:
+ *) Lookup of any ImportSource plugin capable handling any of the possible types
+ *) Filling of mime filter list on file dialog page
+ *) Loading of plugin previously looked up for handing specified file
+Step 3:
+ *) Showing user all possible imports, eg all tables from a database
+ *) Allowing source specific configuration, eg range selection in a kspread document
+Step 4:
+ *) loading import GUI plugin for destination kexi mimetype
+ *) Allow the user to choose how to import
+ eg for tables: import new table,
+ append data to an existing table
+ column remapping, renaming, ...
+Step 5:
+ *) doing import
+ tables : handing the chosen configuration over to PiggZ's kexidb-import architecture
+ * : GUI plugin is responsible for importing directly or loading an additional, NON visual plugin
+Step 6:
+ *) DONE
+
+
+**************************
+
+Needed facilities:
+ Page Interface: Wizard<-> Source plugin
+ Wizard<-> Destination plugin
+ Source interfaces: Depending on destination type, eg table import interface, report import interface, ....
+ Needed for communication between Source and Destination GUI
+
+
+JoWenn