Subject | Hash | Author | Date (UTC) |
---|---|---|---|
feedtree: bacha na mezery v indexech | d286760ac19d7b5cf4c3b591a2818f37f2ece3d7 | Alex | 2022-07-23 23:32:34 |
textfiled: malinkatá puntičkářská změna | 4dc5b68943d1b28fa4f83bd4289e3887668b668f | Alex | 2022-07-23 21:58:13 |
feedtree: guid-less channels workaround | 99e7e725b1e5ec6a3682b2fbd670f3a719d5727c | Alex | 2022-07-23 02:14:23 |
lurk: rework links parsing | 27d2aa01be8796427acc9753918a25ca336a523f | Alex | 2022-07-23 01:50:51 |
lurk: accept more possible MIME types | 851689d4324eea12e0c2ecca65557a130006d253 | Alex | 2022-07-22 23:58:37 |
pridat mezeru | 9e6e85bc191e313bbe842052bd92671bfece74c1 | Alex | 2022-07-21 02:18:44 |
add Readme file | 0a25299e82fc60cd3d4f2b1fdc0c7047b299bf78 | Alex | 2022-07-20 01:54:53 |
add LICENSE file | f073c68dbdfd517bdf39f2700369ecfb37f74a2d | Alex | 2022-07-19 10:12:47 |
IvoRSS: fix version number | 8488a8ae206d0ed23ed9a434e25db373168e36ed | Alex | 2022-07-19 10:09:34 |
clean up feeds | f53c9a65d7439041b12d204d1127026935baedf9 | Alex | 2022-07-19 09:59:11 |
IvoRSS: Ready to publish | abccdae2fe21522a92f2c92fbffb4cafec089f23 | Alex | 2022-07-19 09:41:44 |
track changes of Atom feeds by updated tag | 1c115173dd62c39d1fc50dc2e7b36da338a306ef | Alex | 2022-07-19 07:46:35 |
implement images opt-out | 6852d7d1c12f23487c2771f77fc8d17bc7f7a761 | Alex | 2022-07-19 06:57:56 |
implement image loading | b408a53d97f23784bbfc668eac663619a3afebe7 | Alex | 2022-07-19 06:27:44 |
implement channel link support | f2378ce83c04b95304c5ff21b14806edf90a2216 | Alex | 2022-07-19 01:26:03 |
bold unread articles (It wasn't planned before) | 35a66771b2285811a5c5f8adefafdda4d2bf4e38 | Alex | 2022-07-19 00:11:29 |
dodat i zmìny z IvoRSS | 78d71c13bd806cf849eb16d1a672aea5551b6b2c | Alex | 2022-07-18 02:14:12 |
totálnì hustej HTML parsing je implementován | eeba45d9811c83e9199d3a5929102c192e54b216 | Alex | 2022-07-18 02:11:49 |
add show source feature | 8c963667a609e9c91f5a94963786ca2e4a7f88a4 | Alex | 2022-07-17 03:46:17 |
IvoR: if parser falls, try to convert to utf-8 from system encoding | ea17d81bc65b6a5e79d202d5a6b36fcae854cc1b | Alex | 2022-07-17 02:33:02 |
File | Lines added | Lines deleted |
---|---|---|
feedtree.hws | 4 | 1 |
File feedtree.hws changed (mode: 100755) (index 77b847a..3582f8e) | |||
... | ... | EndFunction | |
194 | 194 | Function p_AddFeed(feedid$) | Function p_AddFeed(feedid$) |
195 | 195 | If EmptyStr(feedid$) Then Return() | If EmptyStr(feedid$) Then Return() |
196 | 196 | feedid$ = StripStr(feedid$) | feedid$ = StripStr(feedid$) |
197 | feedid$ = ReplaceStr(feedid$, " ", "%20", True, 0, #ENCODING_RAW) | ||
197 | 198 | If p_HasItem(feedid$, "Root") | If p_HasItem(feedid$, "Root") |
198 | 199 | mui.Set("status", "Contents", feedid$ .. " \27balready exists") | mui.Set("status", "Contents", feedid$ .. " \27balready exists") |
199 | 200 | Else | Else |
... | ... | EndFunction | |
212 | 213 | ||
213 | 214 | ;č tohle musí být rekurzivní | ;č tohle musí být rekurzivní |
214 | 215 | Function p_HasItem(nodeid$, muiid) | Function p_HasItem(nodeid$, muiid) |
216 | nodeid$ = StripStr(nodeid$) | ||
217 | ;č mezera zboří serializator | ||
218 | nodeid$ = ReplaceStr(nodeid$, " ", "%20", True, 0, #ENCODING_RAW) | ||
215 | 219 | Local isFound, t = mui.DoMethod(#LIST_TREE, "GetEntry", muiid, "Head", "") | Local isFound, t = mui.DoMethod(#LIST_TREE, "GetEntry", muiid, "Head", "") |
216 | 220 | While isFound | While isFound |
217 | ;InsertItem(tabletree, {id=t.id, name=t.name, isNode=t.node, parent=nodeid}) | ||
218 | 221 | If LowerStr(t.id) = LowerStr(nodeid$) Then Return(True) | If LowerStr(t.id) = LowerStr(nodeid$) Then Return(True) |
219 | 222 | If t.Node And p_HasItem(nodeid$, t.muiid) Then Return(True) | If t.Node And p_HasItem(nodeid$, t.muiid) Then Return(True) |
220 | 223 | isFound, t = mui.DoMethod(#LIST_TREE, "GetEntry", t.muiid, "Next", "") | isFound, t = mui.DoMethod(#LIST_TREE, "GetEntry", t.muiid, "Next", "") |