Subject | Hash | Author | Date (UTC) |
---|---|---|---|
feedtree: add Copy URL option to context menu | a9170b64e6b1bca22cb807a7afa0fe35b6611cbe | Alex | 2022-07-16 23:00:07 |
feedtree: keep track of the latest guid | fa1cf2508ade717fc3aa3bf8224a51b685e1636b | Alex | 2022-07-16 22:42:30 |
lurk: track parsed position, show meaningful status to user | 80ce4ada68e657b196b4e173747a873a54f33c36 | Alex | 2022-07-16 13:34:54 |
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 |
File | Lines added | Lines deleted |
---|---|---|
AppWindow.xml | 1 | 0 |
IvoRSS.hws | 2 | 3 |
feedtree.hws | 9 | 0 |
File AppWindow.xml changed (mode: 100755) (index f90174e..b4b21e4) | |||
39 | 39 | <item id="fdtm_save" notify="selected">Save current state</item> | <item id="fdtm_save" notify="selected">Save current state</item> |
40 | 40 | <item/> | <item/> |
41 | 41 | <!-- <item id="fdtm_edit" notify="selected">Edit...</item> --> | <!-- <item id="fdtm_edit" notify="selected">Edit...</item> --> |
42 | <item id="fdtm_copyurl" notify="selected">Copy URL</item> | ||
42 | 43 | <item id="fdtm_remove" notify="selected">Remove</item> | <item id="fdtm_remove" notify="selected">Remove</item> |
43 | 44 | </menu> | </menu> |
44 | 45 | </menustrip> | </menustrip> |
File IvoRSS.hws changed (mode: 100755) (index d9afbbb..5fb3546) | |||
... | ... | Function p_MUIEvent(msg) | |
153 | 153 | Case "fdtm_remove": | Case "fdtm_remove": |
154 | 154 | p_RemoveCurrent() | p_RemoveCurrent() |
155 | 155 | ||
156 | |||
156 | Case "fdtm_copyurl": | ||
157 | p_CopyTreeURL() | ||
157 | 158 | ||
158 | 159 | EndSwitch | EndSwitch |
159 | 160 | Case "Listtree": | Case "Listtree": |
... | ... | InstallEventHandler({MUIRoyale = p_MUIEvent}) | |
346 | 347 | ||
347 | 348 | p_StartUpLoading() | p_StartUpLoading() |
348 | 349 | ||
349 | |||
350 | |||
351 | 350 | Repeat | Repeat |
352 | 351 | WaitEvent | WaitEvent |
353 | 352 | Forever | Forever |
File feedtree.hws changed (mode: 100755) (index 966f871..a1ac5af) | |||
... | ... | Function p_Fetch(url$) | |
308 | 308 | Return(#FEED_STATUS_ERROR) | Return(#FEED_STATUS_ERROR) |
309 | 309 | EndIf | EndIf |
310 | 310 | EndFunction | EndFunction |
311 | |||
312 | |||
313 | Function p_CopyTreeURL() | ||
314 | Local isFound, t = mui.DoMethod(#LIST_TREE, "GetEntry", "Active", "Active", "") | ||
315 | If isFound | ||
316 | err_code = ?SetClipboard(#CLIPBOARD_TEXT, t.id) | ||
317 | p_Replay(err_code, "Copied!") | ||
318 | EndIf | ||
319 | EndFunction |