Summary: | Automatic Replacement of accented characters | ||
---|---|---|---|
Product: | [Unmaintained] quanta | Reporter: | Alvaro Aguilera <alvaro.aguilera> |
Component: | general | Assignee: | András Manţia <amantia> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | matti60 |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Alvaro Aguilera
2006-06-20 23:19:53 UTC
I totally agree. Numeric character references are very hard to read. You can't see if you have typed the wrong character. But as HTML entities are limited to a subset of Unicode characters, users should have the choice to use one or another (and may be the choice to use numeric character reference in hexadecimal). Two great possible enhancements would be a dockable list box for special characters and the possiblity to change the encoding on a text block (useful when copy/paste from a text file). Bump I would post the same wish request and found this. Using Version 3.5.7. Are there any efforts to add that feature? It would be very nice. I believe that in PSPad (my editor of choice in Windows), it would show you the accented character, but the file itself would have either ä or ä. I'm not completely sure on that, but that would be an ideal solution. Due to this problem for most european user this program is not usefull yet. For example in BlueFish i see all special character correctly. Quanta replace it an others. It is not good. I dont see "ű ü ó ú í" characters in HTML source code. SVN commit 769457 by amantia: Insert literal character entities if possible. BUG: 129520 M +1 -0 ChangeLog M +119 -119 data/chars M +2 -2 src/document.cpp M +11 -1 src/quanta_init.cpp M +9 -0 utility/quantacommon.cpp M +9 -0 utility/quantacommon.h WebSVN link: http://websvn.kde.org/?view=rev&revision=769457 Thank you very much Andras! Dear Andr Just a short summary here about how Quanta works. The conversion happens only if one the following conditions is true: - the introduced character cannot be encoded in the codepage selected for the document - the automatic conversion is enabled To completely avoid automatic conversion, you should use UTF8 for your documents and disabled the conversion in the settings dialog. <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Sans Serif'; font-size:10pt; font-weight:400; font-style:normal;"> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Just a short summary here about how Quanta works. The conversion happens only if one the following conditions is true:</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- the introduced character cannot be encoded in the codepage selected for the document</p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">- the automatic conversion is enabled</p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">To completely avoid automatic conversion, you should use UTF8 for your documents and disabled the conversion in the settings dialog. </p> <p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> |