Subject | Hash | Author | Date (UTC) |
---|---|---|---|
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 |
---|---|---|
AppWindow.xml | 4 | 1 |
IvoRSS.hws | 6 | 3 |
File AppWindow.xml changed (mode: 100755) (index 014d1d2..8e2dc19) | |||
18 | 18 | <listview id="lv3" frame="readlist" notify="appmessage"><column/></listview> | <listview id="lv3" frame="readlist" notify="appmessage"><column/></listview> |
19 | 19 | <vgroup> | <vgroup> |
20 | 20 | <listview id="lv1" frame="readlist" notify="appmessage"><column/></listview> | <listview id="lv1" frame="readlist" notify="appmessage"><column/></listview> |
21 | <listview id="lv2" frame="readlist" notify="appmessage"><column/></listview> | ||
21 | <floattext id="textfield" weight="50" background="readlistback" tabsize="4" justify="true"> | ||
22 | |||
23 | </floattext> | ||
24 | |||
22 | 25 | </vgroup> | </vgroup> |
23 | 26 | </hgroup> | </hgroup> |
24 | 27 | </window> | </window> |
File IvoRSS.hws changed (mode: 100755) (index 222f215..949a899) | |||
7 | 7 | @APPTITLE "IvoRSS" | @APPTITLE "IvoRSS" |
8 | 8 | @APPVERSION "$VER: IvoRSS 0.1 (16.6.22)" | @APPVERSION "$VER: IvoRSS 0.1 (16.6.22)" |
9 | 9 | @APPCOPYRIGHT "© 2022, Aleksei Gerasimov" | @APPCOPYRIGHT "© 2022, Aleksei Gerasimov" |
10 | @APPAUTHOR "Stefan Stuntz" | ||
10 | @APPAUTHOR "Aleksei Gerasimov" | ||
11 | 11 | @APPDESCRIPTION "Simple RSS reader" | @APPDESCRIPTION "Simple RSS reader" |
12 | 12 | @REQUIRE "muiroyale", {Version=1, Revision=7} | @REQUIRE "muiroyale", {Version=1, Revision=7} |
13 | 13 | @REQUIRE "hurl" | @REQUIRE "hurl" |
... | ... | InstallEventHandler({MUIRoyale = p_MUIEvent}) | |
56 | 56 | ||
57 | 57 | ||
58 | 58 | ||
59 | url$ = "https://www.seznam.cz/" | ||
59 | url$ = "https://www.powerpc-notebook.org/en/feed/" | ||
60 | 60 | ||
61 | DownloadFile(url$, {File = "index.html", Adapter = "hurl"}) | ||
61 | DownloadFile(url$, {File = "feed.xml", Adapter = "hurl"}) | ||
62 | |||
63 | text$ = FileToString("feed.xml") | ||
64 | mui.Set("textfield", "Text", text$) | ||
62 | 65 | ||
63 | 66 | Repeat | Repeat |
64 | 67 | WaitEvent | WaitEvent |