diff options
Diffstat (limited to 'themes/baggy')
-rw-r--r-- | themes/baggy/config.twig | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/themes/baggy/config.twig b/themes/baggy/config.twig index d83b69ab..95db92fe 100644 --- a/themes/baggy/config.twig +++ b/themes/baggy/config.twig | |||
@@ -105,15 +105,36 @@ | |||
105 | {% endif %} | 105 | {% endif %} |
106 | 106 | ||
107 | <h2>{% trans "Import" %}</h2> | 107 | <h2>{% trans "Import" %}</h2> |
108 | <p>{% trans "Please execute the import script locally as it can take a very long time." %}</p> | 108 | <p>1. {% trans "Select a file on your computer and upload it." %}</p> |
109 | <p>{% trans "More info in the official documentation:" %} <a href="http://doc.wallabag.org/doku.php?id=users:migrate">wallabag.org</a></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> | ||
110 | <ul> | 123 | <ul> |
111 | <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> |
112 | <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> |
113 | <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> |
114 | <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> |
115 | </ul> | 128 | </ul> |
116 | 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 "You can fetch content for imported items." %} <a href="cron.php?limit=10&user-id={{ user_id }}&token={{token}}" target="_blank">Click here</a> to fetch content for 10 articles.</p> | ||
134 | <p>{% trans "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 | |||
117 | <h2>{% trans "Export your wallabag data" %}</h2> | 138 | <h2>{% trans "Export your wallabag data" %}</h2> |
118 | {% if constant('STORAGE') == 'sqlite' %} | 139 | {% if constant('STORAGE') == 'sqlite' %} |
119 | <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 %} |