]>
Commit | Line | Data |
---|---|---|
4cc3c2ac NL |
1 | {% extends "layout.twig" %} |
2 | ||
3 | {% block title %}{% trans "config" %}{% endblock %} | |
4 | {% block menu %} | |
5 | {% include '_menu.twig' %} | |
6 | {% endblock %} | |
7 | {% block content %} | |
3628b24d | 8 | <h2>{% trans "Saving articles" %}</h2> |
efd0a9f5 JS |
9 | <p>{% trans "There are several ways to save an article:" %} {% trans "(<a href=\"http://doc.wallabag.org/en/User_documentation/Save_your_first_article\" target=\"_blank\" title=\"Documentation\">?</a>)" %}</p> |
10 | <p> | |
11 | <form method="get" action="index.php"> | |
12 | <label class="addurl" for="config_plainurl">{% trans "By filling this field" %}:</label><br> | |
13 | <input required placeholder="example.com/article" class="addurl" id="config_plainurl" name="plainurl" type="url" /> | |
14 | <input type="submit" value="{% trans "bag it!" %}" /> | |
15 | </form> | |
16 | </p> | |
17 | <h3>Browser Plugins</h3> | |
4cc3c2ac | 18 | <ul> |
efd0a9f5 JS |
19 | <li><a href="https://addons.mozilla.org/firefox/addon/wallabag/" target="_blank">{% trans "Firefox Add-On" %}</a></li> |
20 | <li><a href="https://chrome.google.com/webstore/detail/wallabag/bepdcjnnkglfjehplaogpoonpffbdcdj" target="_blank">{% trans "Chrome Extension" %}</a></li> | |
4cc3c2ac | 21 | </ul> |
efd0a9f5 | 22 | <h3>Mobile Apps</h3> |
4cc3c2ac | 23 | <ul> |
efd0a9f5 JS |
24 | <li>Android: <a href="https://f-droid.org/app/fr.gaulupeau.apps.InThePoche" target="_blank">{% trans "via F-Droid" %}</a> {% trans " or " %} <a href="https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche" target="_blank">{% trans "via Google Play" %}</a></li> |
25 | <li>iOS: <a href="https://itunes.apple.com/app/wallabag/id828331015?mt=8" target="_blank">{% trans "download the application" %}</a></li> | |
313355cd | 26 | <li>Windows Phone: <a href="http://www.windowsphone.com/en-US/store/app/wallabag/d5226cf1-f422-4e00-996c-88e9c5233332" target="_blank">{% trans "download the application" %}</a></li> |
4cc3c2ac | 27 | </ul> |
efd0a9f5 JS |
28 | <h3>{% trans "Bookmarklet" %}</h3> |
29 | <p> | |
1c911789 | 30 | {% trans "Drag & drop this link to your bookmarks bar:" %} <a id="bookmarklet" ondragend="this.click();" href="javascript:if(top['bookmarklet-url@wallabag.org']){top['bookmarklet-url@wallabag.org'];}else{(function(){var%20url%20=%20location.href%20||%20url;window.open('{{ poche_url }}?action=add&autoclose=true&url='%20+%20btoa(url),'_blank');})();void(0);}">{% trans "bag it!" %}</a> |
efd0a9f5 | 31 | </p> |
72c20a52 NL |
32 | |
33 | <h2>{% trans "Feeds" %}</h2> | |
34 | {% if token == '' %} | |
aeea7c6a | 35 | <p>{% trans "Your feed token is currently empty and must first be generated to enable feeds. Click <a href='?feed&action=generate'>here to generate it</a>." %}</p> |
72c20a52 NL |
36 | {% else %} |
37 | <ul> | |
aeea7c6a WT |
38 | <li><a href="?feed&type=home&user_id={{ user_id }}&token={{ token }}" target="_blank">{% trans "Unread feed" %}</a></li> |
39 | <li><a href="?feed&type=fav&user_id={{ user_id }}&token={{ token }}" target="_blank">{% trans "Favorites feed" %}</a></li> | |
40 | <li><a href="?feed&type=archive&user_id={{ user_id }}&token={{ token }}" target="_blank">{% trans "Archive feed" %}</a></li> | |
72c20a52 | 41 | </ul> |
efd0a9f5 JS |
42 | <p class="more-info"> |
43 | {% trans "Your token:" %} <strong>{{token}}</strong><br> | |
44 | {% trans "Your user id:" %} <strong>{{user_id}}</strong><br> | |
45 | {% trans "You can regenerate your token: <a href='?feed&action=generate'>generate!</a>." %} | |
46 | </p> | |
72c20a52 | 47 | {% endif %} |
4cc3c2ac NL |
48 | |
49 | <h2>{% trans "Change your theme" %}</h2> | |
50 | <form method="post" action="?updatetheme" name="changethemeform"> | |
efd0a9f5 | 51 | <fieldset class="w500p inline"> |
4cc3c2ac NL |
52 | <div class="row"> |
53 | <label class="col w150p" for="theme">{% trans "Theme:" %}</label> | |
54 | <select class="col" id="theme" name="theme"> | |
f4fbfaa7 NL |
55 | {% for key, theme in themes %} |
56 | <option value="{{ key }}" {{ theme.current ? 'selected' : '' }}>{{ theme.name }}</option> | |
4cc3c2ac NL |
57 | {% endfor %} |
58 | </select> | |
59 | </div> | |
60 | <div class="row mts txtcenter"> | |
61 | <button class="bouton" type="submit" tabindex="4">{% trans "Update" %}</button> | |
62 | </div> | |
63 | </fieldset> | |
64 | <input type="hidden" name="returnurl" value="{{ referer }}"> | |
65 | <input type="hidden" name="token" value="{{ token }}"> | |
66 | </form> | |
67 | ||
5011388f NL |
68 | <h2>{% trans "Change your language" %}</h2> |
69 | <form method="post" action="?updatelanguage" name="changelanguageform"> | |
efd0a9f5 | 70 | <fieldset class="w500p inline"> |
5011388f NL |
71 | <div class="row"> |
72 | <label class="col w150p" for="language">{% trans "Language:" %}</label> | |
73 | <select class="col" id="language" name="language"> | |
74 | {% for language in languages %} | |
c9bd17a1 | 75 | <option value="{{ language.value }}" {{ language.current ? 'selected' : '' }}>{{ language.name }}</option> |
5011388f NL |
76 | {% endfor %} |
77 | </select> | |
78 | </div> | |
79 | <div class="row mts txtcenter"> | |
80 | <button class="bouton" type="submit" tabindex="4">{% trans "Update" %}</button> | |
81 | </div> | |
82 | </fieldset> | |
83 | <input type="hidden" name="returnurl" value="{{ referer }}"> | |
84 | <input type="hidden" name="token" value="{{ token }}"> | |
85 | </form> | |
86 | ||
efd0a9f5 JS |
87 | <h2><a name="import"></a>{% trans "Import" %}</h2> |
88 | <p>{% trans "You can import your Pocket, Readability, Instapaper, Wallabag or any data in appropriate json or html format." %}</p> | |
89 | <p>{% trans "Please select export file on your computer and press \"Import\" button below. Wallabag will parse your file, insert all URLs and start fetching of articles if required." %}</p> | |
90 | <form method="post" action="?import" name="uploadfile" enctype="multipart/form-data"> | |
91 | <fieldset class="w500p"> | |
92 | <div class="row"> | |
93 | <label class="col w150p" for="file">{% trans "File:" %}</label> | |
94 | <input class="col" type="file" id="file" name="file" tabindex="4" required="required"> | |
95 | </div> | |
96 | <div class="row mts txtcenter"> | |
97 | <button class="bouton" type="submit" tabindex="4">{% trans "Import" %}</button> | |
98 | </div> | |
99 | </fieldset> | |
100 | </form> | |
101 | <p><a href="?import">{% trans "You can click here to fetch content for articles with no content." %}</a></p> | |
102 | <p class="more-info">{% trans "Fetching process is controlled by two constants in your config file: IMPORT_LIMIT (how many articles are fetched at once) and IMPORT_DELAY (delay between fetch of next batch of articles)." %}</p> | |
103 | ||
104 | <h2>{% trans "Export your wallabag data" %}</h2> | |
92659b8e | 105 | <p><a href="?export" target="_blank">{% trans "JSON export" %}</a><br> |
efd0a9f5 JS |
106 | <span class="more-info">Data will be exported in a single JSON file.</span></p> |
107 | ||
108 | <h2>{% trans "Fancy an E-Book ?" %}</h2> | |
8492f373 | 109 | <p>{% trans "Click to get all your articles in one ebook :" %} |
110 | <ul> | |
111 | <li><a href="./?epub&method=all" title="Generate ePub file">ePub 3</a></li> | |
112 | <li><a href="./?mobi&method=all" title="Generate Mobi file">Mobi</a></li> | |
113 | <li><a href="./?pdf&method=all" title="Generate PDF file">PDF</a></li> | |
114 | </ul> | |
dc69d3e8 | 115 | </p> |
8492f373 | 116 | |
dc69d3e8 | 117 | <span class="more-info">{% trans "This can <b>take a while</b> and can <b>even fail</b> if you have too many articles, depending on your server configuration." %}</span></p> |
efd0a9f5 JS |
118 | |
119 | <h2><a name="cache"></a>{% trans "Cache" %}</h2> | |
120 | <p><a href="?empty-cache">{% trans "Delete Cache" %}</a><br> | |
121 | <span class="more-info">Deleting the cache may help with display or other problems.</span></p> | |
122 | ||
df6afaf0 | 123 | {% if http_auth == 0 %} |
4cc3c2ac NL |
124 | <h2>{% trans "Change your password" %}</h2> |
125 | <form method="post" action="?config" name="loginform"> | |
126 | <fieldset class="w500p"> | |
127 | <div class="row"> | |
128 | <label class="col w150p" for="password">{% trans "New password:" %}</label> | |
129 | <input class="col" type="password" id="password" name="password" placeholder="{% trans "Password" %}" tabindex="2"> | |
130 | </div> | |
131 | <div class="row"> | |
132 | <label class="col w150p" for="password_repeat">{% trans "Repeat your new password:" %}</label> | |
133 | <input class="col" type="password" id="password_repeat" name="password_repeat" placeholder="{% trans "Password" %}" tabindex="3"> | |
134 | </div> | |
135 | <div class="row mts txtcenter"> | |
136 | <button class="bouton" type="submit" tabindex="4">{% trans "Update" %}</button> | |
137 | </div> | |
138 | </fieldset> | |
139 | <input type="hidden" name="returnurl" value="{{ referer }}"> | |
140 | <input type="hidden" name="token" value="{{ token }}"> | |
141 | </form> | |
df6afaf0 | 142 | {% endif %} |
8492f373 | 143 | |
07da8611 | 144 | <h2>{% trans 'Add user' %}</h2> |
07da8611 | 145 | <form method="post" action="?newuser"> |
146 | <fieldset class="w500p"> | |
147 | <div class="row"> | |
148 | <label class="col w150p" for="newusername">{% trans 'Login for new user' %}</label> | |
efd0a9f5 | 149 | <input class="col" type="text" id="newusername" name="newusername" placeholder="{% trans 'Login' %}" required> |
07da8611 | 150 | </div> |
151 | <div class="row"> | |
152 | <label class="col w150p" for="password4newuser">{% trans "Password for new user" %}</label> | |
efd0a9f5 | 153 | <input class="col" type="password" id="password4newuser" name="password4newuser" placeholder="{% trans 'Password' %}" required> |
07da8611 | 154 | </div> |
280972a6 | 155 | <div class="row"> |
156 | <label class="col w150p" for="newuseremail">{% trans 'Email for new user (not required)' %}</label> | |
157 | <input class="col" type="email" id="newuseremail" name="newuseremail" placeholder="{% trans 'Email' %}"> | |
158 | </div> | |
07da8611 | 159 | <div class="row mts txtcenter"> |
efd0a9f5 | 160 | <button type="submit">{% trans "Add user" %}</button> |
07da8611 | 161 | </div> |
162 | </fieldset> | |
163 | </form> | |
efd0a9f5 | 164 | |
07da8611 | 165 | <h2>{% trans "Delete account" %}</h2> |
166 | {% if not only_user %}<form method="post" action="?deluser"> | |
167 | <p>{% trans "You can delete your account by entering your password and validating." %}<br /><b>{% trans "Be careful, data will be erased forever (that is a very long time)." %}</b></p> | |
168 | <fieldset class="w500p"> | |
169 | <div class="row"> | |
170 | <label class="col w150p" for="password4deletinguser">{% trans "Type here your password" %}</label> | |
171 | <input class="col" type="password" id="password4deletinguser" name="password4deletinguser" placeholder="{% trans "Password" %}"> | |
172 | </div> | |
173 | <div class="row mts txtcenter"> | |
efd0a9f5 | 174 | <button type="submit">{% trans "Delete account" %}</button> |
07da8611 | 175 | </div> |
176 | </form> | |
efd0a9f5 JS |
177 | {% else %}<p>{% trans "You are the only user, you cannot delete your own account." %}</p> |
178 | <p>{% trans "To completely remove wallabag, delete the wallabag folder on your web server (and eventual databases)." %}</p>{% endif %} | |
179 | ||
180 | <h2>{% trans "Upgrading wallabag" %}</h2> | |
181 | <ul> | |
182 | <li>{% trans "Installed version" %}: <strong>{{ constant('POCHE') }}</strong></li> | |
183 | <li>{% trans "Latest stable version" %}: {{ prod }}. {% if compare_prod == -1 %}<strong><a href="http://wallabag.org/">{% trans "A more recent stable version is available." %}</a></strong>{% else %}{% trans "You are up to date." %}{% endif %} ({% trans "Last check:" %} {{ check_time_prod }})</li> | |
184 | {% if constant('DEBUG_POCHE') == 1 %}<li>{% trans "Latest dev version" %}: {{ dev }}. {% if compare_dev == -1 %}<strong><a href="http://wallabag.org/">{% trans "A more recent development version is available." %}</a></strong>{% else %}{% trans "You are up to date." %}{% endif %} ({% trans "Last check:" %} {{ check_time_dev }}){% endif %}</li> | |
185 | </ul> | |
186 | <p class="more-info">{% trans "You can clear cache to check the latest release." %}</p> | |
187 | ||
894c36ea | 188 | {% endblock %} |