Subject | Hash | Author | Date (UTC) |
---|---|---|---|
small fix, polo¾ky pøebarvíme v¾dycky | 6b408d667cb85f06e21767c6bbd77c2bfd9a2ac7 | Alex | 2022-07-16 04:05:04 |
tree part is ready | 67d1bde2bcee775f23f8fc03cc474fd6b06c390b | Alex | 2022-07-16 03:28:08 |
finish feeds tree | deea8b12636ba4a19ee256629a9a2a9874baf9c1 | Alex | 2022-07-15 17:10:11 |
Explore window is ready... | 959e6dbf4fc77e315ac12847a481e25f50785ed4 | Alex | 2022-07-14 22:13:38 |
fixes in lurk code | d741423d070a4d51b76d270fac70e0b0c3d04035 | Alex | 2022-07-14 15:29:42 |
Clear explored list by inbuild function | 9ec9232bf28d0d83461e89fa89e8105983d5e3ba | Alex | 2022-07-14 14:09:54 |
implement URL constructing (complement URLs) | f4798ed246e9c6d4b1a611b48ed5a7eb28c8938d | Alex | 2022-07-14 01:16:31 |
parser part of Explore is ready | 87b01db3296eab71b2a510c4d0924127efac1a7f | Alex | 2022-07-13 22:36:39 |
prepare code for Explore | 76b6472a8ad28564a55c6bd39f55ba050dd3599f | Alex | 2022-07-13 19:05:02 |
advance Explore window by statusbar and Stop button | 8f7ae012ede287fc6e20fd5727fd215293c75b25 | Alex | 2022-07-13 17:24:24 |
prepare Explore window | 9da7bcfcc06c986dd4ece8813096a9086ad690fc | Alex | 2022-07-13 01:59:32 |
comment out Edit option: není na to podpora v MUI Royale. Posunout polo¾ky menu, aby kursor nedopadal poøad na Remove | 46c2f3cbbc2912eefb9504c7632f65ed57bc47e5 | Alex | 2022-07-12 23:14:48 |
fix code formatting for remove requesters | 535d4b6515a4744e0b6af6090daadbb85f38b8cf | Alex | 2022-07-12 23:04:43 |
implement adding of single feed | e938d0a6d769c7caf876dfdba9f43ce668eb4690 | Alex | 2022-07-12 22:05:10 |
implement group adding | d347e25e93e94f711c4098fecc9775af22eb7309 | Alex | 2022-07-12 20:12:00 |
make parser to work somehow | bb968a00680246434eb1f9795ebde4babea3fb05 | Alex | 2022-07-12 05:19:43 |
some preparations for parsing | 0259ef32db69fdb45bc9e67d88c74aca4ae69ce6 | Alex | 2022-07-12 03:59:45 |
prepare png icon | b7dc494acb640d92c5b7b49bc2ee93fd5a0d521c | Alex | 2022-07-11 07:17:47 |
fetching is ready | 0d01c38238a2ea7e39bc671de1997294231d8549 | Alex | 2022-07-11 06:37:06 |
read feeds from feeds.json U¾ivatel asi bude chtit mít své fidy u sebe | de14a1e9f5a99f79e44985073df04e89bae2c116 | Alex | 2022-07-11 01:26:52 |
File | Lines added | Lines deleted |
---|---|---|
feedtree.hws | 7 | 3 |
File feedtree.hws changed (mode: 100755) (index 7925171..929af40) | |||
... | ... | EndFunction | |
35 | 35 | ;č tohle musí být rekurzivní | ;č tohle musí být rekurzivní |
36 | 36 | Function p_DumpListTree(listtree$, tabletree, nodeid, muiid) | Function p_DumpListTree(listtree$, tabletree, nodeid, muiid) |
37 | 37 | Local isFound, t = mui.DoMethod(listtree$, "GetEntry", muiid, "Head", "") | Local isFound, t = mui.DoMethod(listtree$, "GetEntry", muiid, "Head", "") |
38 | While isFound | ||
38 | While isFound ;And HaveItem(t, "id") | ||
39 | ;č tady je možná chyba, kterou nemá cenu hlídat. | ||
40 | ;č pokud uživatel docílí toho, že strom vrátí prvek bez id, | ||
41 | ;č tak hlídej-nehlídej - program je odsouzen k meditaci | ||
39 | 42 | InsertItem(tabletree, {id=t.id, name=t.name, isNode=t.node, parent=nodeid}) | InsertItem(tabletree, {id=t.id, name=t.name, isNode=t.node, parent=nodeid}) |
40 | 43 | If t.Node = True Then p_DumpListTree(listtree$, tabletree, t.id, t.muiid) | If t.Node = True Then p_DumpListTree(listtree$, tabletree, t.id, t.muiid) |
41 | 44 | isFound, t = mui.DoMethod(listtree$, "GetEntry", t.muiid, "Next", "") | isFound, t = mui.DoMethod(listtree$, "GetEntry", t.muiid, "Next", "") |
... | ... | EndFunction | |
119 | 122 | ||
120 | 123 | ||
121 | 124 | Function p_MarkFeed(feedid$, status) | Function p_MarkFeed(feedid$, status) |
122 | If fd_isEqualOrSet(feedid$, "status", status) Then Return() | ||
123 | |||
125 | ;č ekonomie na nesprávném místě | ||
126 | ;If fd_isEqualOrSet(feedid$, "status", status) Then Return() | ||
127 | fd_Set(feedid$, "status", status) | ||
124 | 128 | ||
125 | 129 | Local preparse$ = "" | Local preparse$ = "" |
126 | 130 | Switch status | Switch status |