diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-03-14 08:37:40 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-03-14 08:37:40 +0100 |
commit | c0586a906c2bee5f5be445e614696a7078a7c906 (patch) | |
tree | cfd440fa9651b18f65f2449f71b51dea2db11b67 /themes/default | |
parent | 181d16fe22ce67412a6766bcb9fa85b18f56bef8 (diff) | |
download | wallabag-c0586a906c2bee5f5be445e614696a7078a7c906.tar.gz wallabag-c0586a906c2bee5f5be445e614696a7078a7c906.tar.zst wallabag-c0586a906c2bee5f5be445e614696a7078a7c906.zip |
[fix] new import section in old themes #559
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/config.twig | 36 |
1 files changed, 29 insertions, 7 deletions
diff --git a/themes/default/config.twig b/themes/default/config.twig index 8121da3c..5d20e0ea 100644 --- a/themes/default/config.twig +++ b/themes/default/config.twig | |||
@@ -12,7 +12,7 @@ | |||
12 | <li>Chrome: <a href="http://doc.wallabag.org/doku.php?id=users:chrome_extension" title="download the chrome extension">{% trans "download the extension" %}</a></li> | 12 | <li>Chrome: <a href="http://doc.wallabag.org/doku.php?id=users:chrome_extension" title="download the chrome extension">{% trans "download the extension" %}</a></li> |
13 | <li>Android: <a href="https://f-droid.org/app/fr.gaulupeau.apps.InThePoche" title="download the application">{% trans "via F-Droid" %}</a> {% trans " or " %} <a href="https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche" title="download the application">{% trans "via Google Play" %}</a></li> | 13 | <li>Android: <a href="https://f-droid.org/app/fr.gaulupeau.apps.InThePoche" title="download the application">{% trans "via F-Droid" %}</a> {% trans " or " %} <a href="https://play.google.com/store/apps/details?id=fr.gaulupeau.apps.InThePoche" title="download the application">{% trans "via Google Play" %}</a></li> |
14 | <li>iOS: <a href="https://itunes.apple.com/app/wallabag/id828331015?mt=8" title="download the iOS application">{% trans "download the application" %}</a></li> | 14 | <li>iOS: <a href="https://itunes.apple.com/app/wallabag/id828331015?mt=8" title="download the iOS application">{% trans "download the application" %}</a></li> |
15 | <li>Windows Phone: <a href="https://www.windowsphone.com/en-us/store/app/poche/334de2f0-51b5-4826-8549-a3d805a37e83" title="download the window phone application">{% trans "download the application" %}</a></li></a></li> | 15 | <li>Windows Phone: <a href="http://www.windowsphone.com/en-us/store/app/wallabag/ff890514-348c-4d0b-9b43-153fff3f7450" title="download the window phone application">{% trans "download the application" %}</a></li> |
16 | <li> | 16 | <li> |
17 | <form method="get" action="index.php"> | 17 | <form method="get" action="index.php"> |
18 | <label class="addurl" for="config_plainurl">{% trans "By filling this field" %}:</label> | 18 | <label class="addurl" for="config_plainurl">{% trans "By filling this field" %}:</label> |
@@ -104,15 +104,37 @@ | |||
104 | {% endif %} | 104 | {% endif %} |
105 | 105 | ||
106 | <h2>{% trans "Import" %}</h2> | 106 | <h2>{% trans "Import" %}</h2> |
107 | <p>{% trans "Please execute the import script locally as it can take a very long time." %}</p> | 107 | <p>{% trans "Importing from other services can be quite long, and webservers default configuration often prevents long scripts execution time, so it must be done in multiple parts." %}</p> |
108 | <p>{% trans "More info in the official documentation:" %} <a href="http://doc.wallabag.org/doku.php?id=users:migrate">wallabag.org</a></p> | 108 | <p>1. {% trans "First, select the export file on your computer and upload it." %}</p> |
109 | <form method="post" action="?uploadfile" name="uploadfile" enctype="multipart/form-data"> | ||
110 | <fieldset class="w500p"> | ||
111 | <div class="row"> | ||
112 | <label class="col w150p" for="file">{% trans "File:" %}</label> | ||
113 | <input class="col" type="file" id="file" name="file" tabindex="4"> | ||
114 | </div> | ||
115 | <div class="row mts txtcenter"> | ||
116 | <button class="bouton" type="submit" tabindex="4">{% trans "Upload" %}</button> | ||
117 | </div> | ||
118 | </fieldset> | ||
119 | <input type="hidden" name="MAX_FILE_SIZE" value="1048576"> | ||
120 | <input type="hidden" name="returnurl" value="{{ referer }}"> | ||
121 | </form> | ||
122 | <p>2. {% trans "Then, click on the right link below." %}</p> | ||
109 | <ul> | 123 | <ul> |
110 | <li><a href="./?import&from=pocket">{% trans "Import from Pocket" %}</a> {{ '(you must have a %s file on your server)'|trans|format(constant('POCKET_FILE')) }}</li> | 124 | <li><a href="./?import&from=pocket">{% trans "Import from Pocket" %}</a> {{ '(after uploaded %s file)'|trans|format(constant('POCKET_FILE')) }}</li> |
111 | <li><a href="./?import&from=readability">{% trans "Import from Readability" %}</a> {{ '(you must have a %s file on your server)'|trans|format(constant('READABILITY_FILE')) }}</li> | 125 | <li><a href="./?import&from=readability">{% trans "Import from Readability" %}</a> {{ '(after uploaded %s file)'|trans|format(constant('READABILITY_FILE')) }}</li> |
112 | <li><a href="./?import&from=instapaper">{% trans "Import from Instapaper" %}</a> {{ '(you must have a %s file on your server)'|trans|format(constant('INSTAPAPER_FILE')) }}</li> | 126 | <li><a href="./?import&from=instapaper">{% trans "Import from Instapaper" %}</a> {{ '(after uploaded %s file)'|trans|format(constant('INSTAPAPER_FILE')) }}</li> |
113 | <li><a href="./?import&from=poche">{% trans "Import from wallabag" %}</a> {{ '(you must have a %s file on your server)'|trans|format(constant('POCHE_FILE')) }}</li> | 127 | <li><a href="./?import&from=poche">{% trans "Import from wallabag" %}</a> {{ '(after uploaded %s file)'|trans|format(constant('POCHE_FILE')) }}</li> |
114 | </ul> | 128 | </ul> |
115 | 129 | ||
130 | {% if token == '' %} | ||
131 | <p>{% trans "3. Your feed token is currently empty and must first be generated to fetch content. Click <a href='?feed&action=generate'>here to generate it</a>." %}</p> | ||
132 | {% else %} | ||
133 | <p>3. {% trans "Finally, you have to fetch content for imported items." %} <a href="cron.php?limit=10&user-id={{ user_id }}&token={{token}}" target="_blank">{% trans "Click here" %}</a> {% trans "to fetch content for 10 articles" %}.</p> | ||
134 | <p>{% trans "If you have console access to your server, you can also create a cron task:" %}</p> | ||
135 | <pre><code>0 */4 * * * cd /path/to/wallabag && php cron.php --limit=10 --user-id={{user_id}} --token={{token}} >/dev/null 2>&1</code></pre> | ||
136 | {% endif %} | ||
137 | |||
116 | <h2>{% trans "Export your wallabag data" %}</h2> | 138 | <h2>{% trans "Export your wallabag data" %}</h2> |
117 | {% if constant('STORAGE') == 'sqlite' %} | 139 | {% if constant('STORAGE') == 'sqlite' %} |
118 | <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %} | 140 | <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %} |