Subject | Hash | Author | Date (UTC) |
---|---|---|---|
move default feeds to feeds.hws | 6efc0f7c1767a2feba618938c8f83eab43f93b0e | Alex | 2022-07-09 14:16:44 |
set up EmptyNodes attribute | 41e19a0974fbf63f959fe7e3135d2efb9cb48ce6 | Alex | 2022-07-09 11:44:03 |
disable icon menu | 540099f84a9d1a567dd079ca8ba5ac667ec8945f | Alex | 2022-07-08 23:37:47 |
implement tree manipulation commands | dfa3a877079a75d7c5a724bb9c6e84a6db1d4677 | Alex | 2022-07-08 21:07:10 |
implement coping to clipboard | 380b60dad4bd182a92199db5cde4339baaa84521 | Alex | 2022-07-08 20:35:05 |
prepare context menus | eb75fc61825de235f63b47176ca9ec88f8966d2b | Alex | 2022-07-08 15:01:46 |
add cycle chains | b0d80feff1cfb953d50a79e7773077a846cc72c2 | Alex | 2022-07-08 12:25:15 |
prepare layout | 46613958a1e87944104f74aa77ebb106dc22a2ad | Alex | 2022-07-07 23:36:19 |
implement Load/Save feeds' tree | ce6ded536ef07a49e96f181c07c84c1239ef607d | Alex | 2022-07-05 23:10:44 |
implement feed tree filling | dad148576a106072f87be33803e7a916cb044d35 | Alex | 2022-07-05 17:09:20 |
implement item selection | b42586a38c98a4087937b8f85f7dd2570cb61bf7 | Alex | 2022-06-19 02:42:29 |
show items list | ee6686fc57690fc236aefc334861dbf0fd65b2ce | Alex | 2022-06-19 01:42:38 |
parse channel title and description | 96ec5e38931158d27a75c0fe922fd14a8647dba1 | Alex | 2022-06-18 23:53:49 |
add XML parser... | 4f2d6297a47fe2f9f377bf9ce5afd9545cf9ae2f | Alex | 2022-06-18 14:29:17 |
prepare textfield | b88f2e78f55a4ba7e62f674bcdf38615f3d3eb09 | Alex | 2022-06-18 02:35:37 |
initial commit | 702a1b31f80bf565bf20cc6ecc4e9d748d772363 | Alex | 2022-06-17 23:42:13 |
File | Lines added | Lines deleted |
---|---|---|
feeds.hws | 24 | 0 |
File feeds.hws added (mode: 100755) (index 0000000..8b7ccc2) | |||
1 | dFeeds = CreateList() ;defaultFeeds | ||
2 | |||
3 | Function p_DefaultFeed(parent$, id$) | ||
4 | InsertItem(dFeeds, {id=id$, name=id$, isNode=False, parent=parent$}) | ||
5 | EndFunction | ||
6 | |||
7 | Function p_DefaultGroup(name$) | ||
8 | InsertItem(dFeeds, {id=name$, name="\27b"..name$, isNode=True, parent="Root"}) | ||
9 | EndFunction | ||
10 | |||
11 | |||
12 | |||
13 | p_DefaultGroup("PowerPC") | ||
14 | ;"GNU/Linux Open Hardware PowerPC notebook Feed" | ||
15 | p_DefaultFeed("PowerPC", "https://www.powerpc-notebook.org/en/feed/") | ||
16 | ;"GNU/Linux Open Hardware PowerPC notebook Comments Feed" | ||
17 | p_DefaultFeed("PowerPC", "https://www.powerpc-notebook.org/en/comments/feed/") | ||
18 | |||
19 | |||
20 | p_DefaultGroup("Amiga") | ||
21 | |||
22 | |||
23 | |||
24 | @INCLUDE "testfeeds.hws" |