summaryrefslogtreecommitdiffstats
path: root/tdeui/TODO.tdespell
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-02 15:57:34 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-02 15:57:34 -0600
commit7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch)
treec76702a7f6310fbe9d437e347535422e836e94e9 /tdeui/TODO.tdespell
parenta2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff)
parent27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff)
downloadtdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz
tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'tdeui/TODO.tdespell')
-rw-r--r--tdeui/TODO.tdespell34
1 files changed, 34 insertions, 0 deletions
diff --git a/tdeui/TODO.tdespell b/tdeui/TODO.tdespell
new file mode 100644
index 000000000..99c9df408
--- /dev/null
+++ b/tdeui/TODO.tdespell
@@ -0,0 +1,34 @@
+from Daniel Naber, 2002-02-17:
+
+- there's the pspell library that offers an API to ispell and aspell,
+ it would make our code much simpler. It's not asynchronous by itself,
+ but maybe that can be added in KSpell.
+
+- add an option to ignore HTML/XML markup (-h). It's currently not
+ possible (i.e. it doesn't work) because we feed the text into ispell
+ line by line and it gets confused if tags are spread over more
+ than one line.
+
+from Wolfram Diestel:
+
+- add more charsets - need support from users of this charsets
+- rewrite the all the stuff to make it more asynchronous:
+ o one process should send data
+ o one process should read data
+ synchronization is done only by counting empty output lines from ispell
+
+old todo from David Sweet
+-------------------------
+
+properly handle capitalization on "Replace All" (in parseOneResponse())
+
+ensure that KSpell is reusable with the same replace/ignore lists
+ for multiple spellchecks in a single editing session
+
+allow saving of ignore/replace lists for multiple spellchecks of a
+ given document across multiple sessions
+
+add a "move()" function to move the dialog box (calling app should use this
+ in response to a misspelled() signal to move the d.b. out of the way
+ of the misspelled word)
+ This is done, but it doesn't work on the first call -- any ideas?