Summary | Using aspell driver with portuguese |
Queue | IMP |
Queue Version | Git master |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | slusarz (at) horde (dot) org |
Requester | leandro.damascena (at) gmail (dot) com |
Created | 06/07/2010 (5504 days ago) |
Due | |
Updated | 06/07/2010 (5504 days ago) |
Assigned | |
Resolved | 06/07/2010 (5504 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
Bug #9079: Don't send HTML entities when using HTML editorhttp://git.horde.org/diff.php/imp/lib/Ui/Compose.php?rt=horde-git&r1=f8cf11858dc9f8e328fecd7e146ccf6bec2b8eb6&r2=f5752c3c412f9193b9176762ff7c8d43781b9c61
New Attachment: patch_entities.diff
Priority ⇒ 2. Medium
Patch ⇒ No
Milestone ⇒
Queue ⇒ IMP
Summary ⇒ Using aspell driver with portuguese
Type ⇒ Bug
State ⇒ Unconfirmed
ckeditor + aspell. The ckeditor by default uses html entities, and
aspell cannot work with this. Below is an example command line aspell:
That command does not work (using html entities)
echo "vídeo" | aspell -a --sug-mode=fast
--encoding='ISO-8859-1' --lang='pt_BR' -H
@(#) International Ispell Version 3.1.20 (but really Aspell 0.60.3)
*
& deo 18 9: doe, doê, dei, de, do, dê, dó, dedo, demo, depô, devo,
deu, duo, dão, dôo, der, dez, dês
That command works (not using html entities)
echo "vídeo" | aspell -a --sug-mode=fast --encoding='ISO-8859-1'
--lang='pt_BR' -H
@(#) International Ispell Version 3.1.20 (but really Aspell 0.60.3)
*
I made a patch and now is working.