4 Enigma2 (Dreambox) plugin that lets you view the contents of remote
5 *plain text* files, e.g. HTTP URLs.
7 Multiple URLs can be configured and navigated.
16 - Load any remote plain text files, e.g. via HTTP
17 - Unlimited number of remote URLs/pages
19 - Non-blocking URL loading
21 - Configurable page titles
22 - Configurable text size
23 - Configurable default page
24 - Import complete page list from Atom feed
25 - Visible in the main menu or the extension menu (configurable)
26 - Configurable menu title
27 - Help screen for main window and settings window
36 After installing CurlyTx and restarting Enigma2, open the main menu.
37 The first entry will be "CurlyTx" - activate it.
39 You will see the main window with the message
40 "Go and add a page in the settings".
41 Do just that end press the red button to access the settings window.
43 Now we'll add the first URL:
45 - Press the yellow button ("New"); the "page edit" window will show up
46 - Enter the page URL, e.g. http://ip.cweiske.de
47 - If you wish, enter a page title, e.g. "My IP"
48 - Set the text size if you want. 20 is a good default value.
49 - Press the green button ("OK"), and you are back on the settings window.
50 - The page you have just created is in the configuration list now.
53 If you made a mistake and want to change it, select the page with the
54 up/down buttons and press "OK" - the page edit window will open.
56 Press the green button and the settings will be saved.
57 You're back on the main window now and the URL you just configured will be loaded.
62 You can use the settings window to add new pages, but this gets tedious if you
63 want to add many pages.
65 It's better to use the Atom feed import in this case.
66 All you need is a text editor and a web server you can serve the feed page with.
68 Here is an example feed::
70 <?xml version="1.0" encoding="utf-8"?>
71 <feed xmlns="http://www.w3.org/2005/Atom">
72 <title>URL list for CurlyTx</title>
74 <name>Christian Weiske</name>
75 <email>cweiske@cweiske.de</email>
77 <link rel="self" href="http://home.cweiske.de/pagefeed.atom"/>
81 <link rel="alternate" type="text/html" href="http://ip.cweiske.de/" />
85 <title>House temperatures</title>
86 <link rel="alternate" type="text/html" href="http://home/temperatures.txt" />
90 Start CurlyTx, go to the settings and write the feed URL in the
91 "Page feed URL" field.
92 Then press "OK" and the feed's pages will be loaded into the settings window.
102 Beginning a new translation
103 ---------------------------
104 Replace ``$lang_code`` with your two-letter language code::
107 $ cp messages.po $lang_code.po
108 ... edit $lang_code.po now
112 Editing an existing translation
113 -------------------------------
119 This will update the translation template ``messages.pot`` from the source code
120 and will merge the changes into the single translation files.
123 Testing a translation
124 ---------------------
125 Link your compiled translation file into ::
127 src/locale/$lang_code/LC_MESSAGES/CurlyTx.mo
129 Enigma2 will pick it up automatically.
134 First upgrade the version number in ``CONTROL/control``.
140 Directory ``releases/`` will contain the freshly baked ``.ipk`` file that can
141 then be transferred to your dreambox, e.g. via ``scp``::
143 $ scp releases/enigma2-plugin-extensions-curlytx_2.3_mipsel.ipk dreambox:
145 $ ipkg install enigma2-plugin-extensions-curlytx_2.3_mipsel.ipk
147 You will need the ``ipkg-build`` script from
148 http://reichholf.net/files/dreambox/tools/ipkg-build
150 Also see http://dream.reichholf.net/wiki/Howto:IPK_Pakete_erstellen
155 - move mode to re-order pages
156 - how to show clock in lcd?
164 https://open-dreambox.org/trac/dreambox/wiki/CurlyTx
168 Christian Weiske, cweiske@cweiske.de
172 The plugin is subject to the GPLv3_ or later.
174 .. _GPLv3: http://www.gnu.org/licenses/agpl.html