Subject | Hash | Author | Date (UTC) |
---|---|---|---|
textfield: cover hexadecimals | 3bc99f838278ef79f881d542d74f025198fdae13 | Alex | 2022-07-31 22:33:15 |
add AROS support | 6ea946474f04f9b0bbb51d2413dd6d541b25267d | Alex | 2022-07-29 03:14:44 |
add icon for AROS too | b7a731d1438e42b51dcf1533f06dc98e1544acf5 | Aleksei Gerasimov | 2022-07-29 02:03:42 |
update readme | 37653dab91d6fd2f154df755878d18a904e80ba1 | Alex | 2022-07-28 18:09:02 |
IvoRSS: fix moved icon | 35d52463f8782ea03c664ed713f74248a333fa1a | Alex | 2022-07-28 13:33:41 |
create glowed icons for AmigaOS3 and AmigaOS4 | 84d7c7741cb57d297a7cee43fafc2ed30d7bd1e2 | Aleksei Gerasimov | 2022-07-28 13:14:52 |
IvoRSS: ok, we should differentiate the latest changes | 59f206d1bbd3d4cc490da01ee4944738bb112c99 | Alex | 2022-07-27 23:12:45 |
AppWindow: play with frames. Probably it will look a little bit better under AmigaOS? | 26822c76dba9beec3a57e9ea44a48480aa45daae | Alex | 2022-07-27 23:05:39 |
IvoR: track any changes of character data | 4fcc7054b0b726b898fd1e2a6637a7a26027e315 | Alex | 2022-07-27 22:12:50 |
textfield: fix html characters substituting. I forgot IIf calculates both expressions :) | e16c8c6f3576a1e98f292a18a6e5140230129536 | Alex | 2022-07-27 21:47:42 |
prepare AmigaOS4 icon | 19747a4b22ffb76cd46f312751998e8c7b9522c8 | Aleksei Gerasimov | 2022-07-27 08:58:09 |
better lighted RSS image | 8b948d3509fe4bf1965cbb422421ef9351d130f7 | Alex | 2022-07-27 08:36:36 |
prepare Amiga style selected icon | 4a7d2609b85565b82a64ef47b37faaa5e002b570 | Alex | 2022-07-27 07:40:30 |
ReadMe: typo and feeds mention | faa9536b0bbc36f55bcbd930c1962c1cb13a3aec | Alex | 2022-07-27 06:00:50 |
ReadMe: describe changes | 4a3738dabb171bcb26169807703ef379948f754b | Alex | 2022-07-27 05:53:05 |
IvoR: workaround for fast switching | 3f699a83db36204bf93105a98244c49e31ea5a18 | Alex | 2022-07-27 05:09:24 |
textfield: cover more html characters | aecd5997b5f1db463524550a9f3a784701c080c8 | Alex | 2022-07-27 04:59:07 |
feedtree: polish status messages | 3eb570cfff3d3f8d285542954368cf11aa449615 | Alex | 2022-07-27 02:54:45 |
feedtree: implement direct work with curl's easy interface | 7ff0dc14b7a436545cedf9ea3d3c8e724dba323c | Alex | 2022-07-27 02:36:08 |
IvoRSS: prepare optional parametr UseDefaultDownloader | c167731044a81a2091f93557d7d908f671c20133 | Alex | 2022-07-26 02:32:56 |
File | Lines added | Lines deleted |
---|---|---|
textfield.hws | 6 | 0 |
File textfield.hws changed (mode: 100755) (index 6a7d367..28e795e) | |||
... | ... | Function tf_HtmlCharacters(html$) | |
44 | 44 | ||
45 | 45 | ;č A teď... | ;č A teď... |
46 | 46 | html$ = PatternReplaceStr(html$, "&#(%d+);", Chr) | html$ = PatternReplaceStr(html$, "&#(%d+);", Chr) |
47 | html$ = PatternReplaceStr(html$, "&#x(%x+);", xChr) | ||
47 | 48 | html$ = PatternReplaceStr(html$, "&(.-);", htmlChr) | html$ = PatternReplaceStr(html$, "&(.-);", htmlChr) |
48 | 49 | ||
49 | 50 | Return(html$) | Return(html$) |
50 | 51 | EndFunction | EndFunction |
51 | 52 | ||
53 | Function xChr(str$) | ||
54 | Local code = Val("0x"..str$) | ||
55 | Return(Chr(code)) | ||
56 | EndFunction | ||
57 | |||
52 | 58 | Function htmlChr(str$) | Function htmlChr(str$) |
53 | 59 | Local code = RawGet(html_table, str$) | Local code = RawGet(html_table, str$) |
54 | 60 | If IsNil(code) | If IsNil(code) |