List of commits:
Subject Hash Author Date (UTC)
prepare default feeds d2b45f0007c30da84662b8b2a1f2118d03e30e1f Alex 2022-07-11 01:25:58
prepare Lock&Unlock f76041ef4fa2b6d5301afb34bda5de13f8ff2701 Alex 2022-07-10 00:37:38
prepare downloading routines f12d337da75c3cefe4ef0ccb3f08472e7701b058 Alex 2022-07-09 23:52:36
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
Commit d2b45f0007c30da84662b8b2a1f2118d03e30e1f - prepare default feeds
Author: Alex
Author date (UTC): 2022-07-11 01:25
Committer name: Alex
Committer date (UTC): 2022-07-11 01:25
Parent(s): f76041ef4fa2b6d5301afb34bda5de13f8ff2701
Signer:
Signing key:
Signing status: N
Tree: 30c2591c6232f45ff9519afa9f407c24e1db2f8d
File Lines added Lines deleted
feeds.hws 82 3
File feeds.hws changed (mode: 100755) (index 8b7ccc2..6f1fc46)
1 1 dFeeds = CreateList() ;defaultFeeds dFeeds = CreateList() ;defaultFeeds
2 2
3 /*
3 4 Function p_DefaultFeed(parent$, id$) Function p_DefaultFeed(parent$, id$)
4 InsertItem(dFeeds, {id=id$, name=id$, isNode=False, parent=parent$})
5 InsertItem(dFeeds, {id=id$, name="\27".."5"..id$, isNode=False, parent=parent$})
5 6 EndFunction EndFunction
6 7
7 8 Function p_DefaultGroup(name$) Function p_DefaultGroup(name$)
8 9 InsertItem(dFeeds, {id=name$, name="\27b"..name$, isNode=True, parent="Root"}) InsertItem(dFeeds, {id=name$, name="\27b"..name$, isNode=True, parent="Root"})
9 10 EndFunction EndFunction
11 */
10 12
13 Function p_DefaultFeed(id$)
14 InsertItem(dFeeds, {id=id$, name="\27".."5"..id$, isNode=False, parent=parent$})
15 EndFunction
11 16
17 Function p_DefaultGroup(name$)
18 InsertItem(dFeeds, {id=name$, name="\27b"..name$, isNode=True, parent="Root"})
19 parent$ = name$
20 EndFunction
12 21
13 22 p_DefaultGroup("PowerPC") p_DefaultGroup("PowerPC")
14 23 ;"GNU/Linux Open Hardware PowerPC notebook Feed" ;"GNU/Linux Open Hardware PowerPC notebook Feed"
15 p_DefaultFeed("PowerPC", "https://www.powerpc-notebook.org/en/feed/")
24 p_DefaultFeed("https://www.powerpc-notebook.org/en/feed/")
16 25 ;"GNU/Linux Open Hardware PowerPC notebook Comments Feed" ;"GNU/Linux Open Hardware PowerPC notebook Comments Feed"
17 p_DefaultFeed("PowerPC", "https://www.powerpc-notebook.org/en/comments/feed/")
26 p_DefaultFeed("https://www.powerpc-notebook.org/en/comments/feed/")
18 27
19 28
20 29 p_DefaultGroup("Amiga") p_DefaultGroup("Amiga")
30 p_DefaultFeed("http://aminet.net/feed")
31 p_DefaultFeed("http://www.amiga-future.de/rss_en.php")
32 p_DefaultFeed("http://amigaworld.net/modules/newsfeed/news_rss.php")
33 p_DefaultFeed("https://www.amigans.net/backend.php")
34 p_DefaultFeed("http://forum.amiga.org/index.php?action=.xml;board=2;type=rss")
35 p_DefaultFeed("http://eab.abime.net/external.php")
36 p_DefaultFeed("http://blog.a-eon.biz/blog/?feed=rss2")
37 p_DefaultFeed("https://amiga-news.de/en/backends/news/rss20.xml")
38
39 p_DefaultFeed("https://www.amigaportal.cz/external?type=rss2")
40 p_DefaultFeed("https://www.amigaportal.cz/external?type=rss2&nodeid=1")
41 p_DefaultFeed("https://www.ppa.pl/aktualnosci/rss/")
42 p_DefaultFeed("https://boingsworld.de/boingsworld.xml")
43 p_DefaultFeed("https://www.warmup-asso.org/backend.php")
44
45
46
47
48
49
50 ;<link rel="alternate" type="application/rss+xml" title="AmigaNG &raquo; Feed" href="https://amigang.com/feed/" />
51 ;<link rel="alternate" type="application/rss+xml" title="AmigaNG &raquo; Comments Feed" href="https://amigang.com/comments/feed/" />
52
53 ;<link rel="alternate" type="application/rss+xml" title="ALBs Blog &raquo; Feed" href="https://blog.alb42.de/feed/" />
54 ;<link rel="alternate" type="application/rss+xml" title="ALBs Blog &raquo; Kommentar-Feed" href="https://blog.alb42.de/comments/feed/" />
55
21 56
57 ;<link rel="alternate" type="application/atom+xml" title="Kalamatee&#39;s Blog - Atom" href="http://kalamatee.blogspot.com/feeds/posts/default" />
58 ;<link rel="alternate" type="application/rss+xml" title="Kalamatee&#39;s Blog - RSS" href="http://kalamatee.blogspot.com/feeds/posts/default?alt=rss" />
59 ;<link rel="service.post" type="application/atom+xml" title="Kalamatee&#39;s Blog - Atom" href="https://www.blogger.com/feeds/13134220/posts/default" />
22 60
23 61
62
63 ;<link rel='alternate' type='application/rss+xml' title='Recent files' href='http://archives.aros-exec.org/modules/rssfeed.php'><link rel='alternate' type='application/rss+xml' title='Recent news' href='http://archives.aros-exec.org/modules/notes/rssfeed.php'>
64
65 ;p_DefaultGroup("AmigaOS3")
66 ;p_DefaultFeed("http://aminet.net/feed?arch[]=m68k-amigaos")
67
68
69 p_DefaultGroup("MorphOS")
70 p_DefaultFeed("http://feed.morph.zone/news")
71 p_DefaultFeed("http://feed.morph.zone/forum")
72 p_DefaultFeed("http://www.morphos-storage.net/includes/rss.php")
73 p_DefaultFeed("http://aminet.net/feed?arch[]=ppc-morphos")
74
75 p_DefaultGroup("AmigaOS4")
76 p_DefaultFeed("http://www.os4depot.net/modules/rssfeed.php")
77 p_DefaultFeed("http://aminet.net/feed?arch[]=ppc-amigaos")
78 p_DefaultFeed("https://amigang.com/feed/")
79 p_DefaultFeed("https://amigang.com/comments/feed/")
80
81 p_DefaultGroup("AROS")
82 p_DefaultFeed("http://archives.aros-exec.org/modules/notes/rssfeed.php")
83 p_DefaultFeed("http://archives.aros-exec.org/modules/rssfeed.php")
84 p_DefaultFeed("http://aminet.net/feed?arch[]=i386-aros")
85
86 p_DefaultFeed("https://vmwaros.blogspot.com/feeds/posts/default")
87 p_DefaultFeed("https://vmwaros.blogspot.com/feeds/posts/default?alt=rss")
88 p_DefaultFeed("https://www.blogger.com/feeds/7422978141274287065/posts/default")
89
90 p_DefaultFeed("http://kalamatee.blogspot.com/feeds/posts/default")
91 p_DefaultFeed("http://kalamatee.blogspot.com/feeds/posts/default?alt=rss")
92 p_DefaultFeed("https://www.blogger.com/feeds/13134220/posts/default")
93
94 p_DefaultFeed("https://ae.amigalife.org/index.php?PHPSESSID=6be492c063f4a4e18a6af960885b0a9e&amp;type=rss;action=.xml")
95 p_DefaultFeed("https://blog.alb42.de/feed/")
96 p_DefaultFeed("https://blog.alb42.de/comments/feed/")
97 ;p_DefaultFeed("")
98
24 99 @INCLUDE "testfeeds.hws" @INCLUDE "testfeeds.hws"
100
101 StringToFile(SerializeTable(dFeeds), "feeds.json")
102
103
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/iam-git/IvoRSS

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/iam-git/IvoRSS

Clone this repository using git:
git clone git://git.rocketgit.com/user/iam-git/IvoRSS

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main