Esteban
unread,May 6, 2008, 6:56:13 PM5/6/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to cke, text editor for pocket pc
Updated and added the bugs. I've colored the things that I'm currently
working in for next version.
Concerning ihs suggestions I have some doubts :
>3) one thing, it is possible to configure the setting :
>'ignore case'
>'whole word'
>to a predefined state when cke it's opened ?
I had planned to save the state of this options between calls to cke,
in this way the most commonly used settings are most probably found
when you open cke. Even if this is not exactly what you ask for, it is
a lot easier to code and might be enough for your needs.
>5) list of function/section present in the file. the best would be if it will be configurable, for >example in ultraedit for PC, i used for txt file :
> /Function String = "%---"
If I understand it, in a text file like
chapter 1---
.......
this is a ---comment----
......
chapter 2---
.....
it will produce a list {chapter 1,chapter 2} and allow you to select
one of them a go directly to it. But, how can we avoid that the list
includes also the "this is a" and "comment" items?
While this is a very useful functionality it is not easy to think and
implement, since it should also be useful for other formats. I think
this will have to wait until I implement the regular expressions (and
that's not easy). I've added it under the "classes" item in th whish
list.
>6) Save/reload bookmark at close/reopen the same file.
OK but I suppose we need also a "forget after X days" option to avoid
that the option file becomes huge after some time. I will implement it
initially with a month.
>7) autobackup : when opening/loading a file automatically save the file in a configurable >directory with the filename composed by filename+date+time+incremental number
Even if this might seem easy to implement, I'm not sure how to handle
several issues. As I see it this functionality should need quite a few
options:
Activate / deactivate
Configurable file name ?
Max number of versions of the same file to save (that implies
counting them which is not easy)
Where to save the backup files
Upper limit in the number of Kbytes of original file to avoid
consuming the memory with copies of a huge file.
A "Clean all backup versions of this file" menu option ?
A "Restore from previous version of this file" menu option ?
I think it is better to do it when saving a modified file, otherwise
it will keep versions of unchanged files.
Thanks again for your suggestions.
Esteban